feat(server/middleware): add middleware to track ip addresses on each logged-in request

This commit is contained in:
☙◦ The Tablet ❀ GamerGirlandCo ◦❧ 2023-10-11 13:24:44 -04:00
parent e8bd88e58c
commit bd9e3d5336
Signed by: tablet
GPG Key ID: 924A5F6AF051E87C

View File

@ -0,0 +1,20 @@
export default eventHandler(async (ev) => {
if (ev.context.currentUser) {
let log = ev.context.currentUser.ipLog;
if (
ev.context.clientAddress !== undefined &&
!/127\.0\.0\.1|localhost|::1/.test(ev.context.clientAddress)
) {
let found = log.findIndex((a) => a.ip === ev.context.clientAddress);
if (found !== -1) {
ev.context.currentUser.ipLog[found].lastAccess = new Date();
} else {
ev.context.currentUser.ipLog.push({
ip: ev.context.clientAddress!,
lastAccess: new Date(),
});
}
}
await ev.context.currentUser.save();
}
});