增加登录设备展示

This commit is contained in:
hanhh
2021-09-25 00:41:38 +08:00
parent 381c32a3b4
commit 9ab08a71c0
3 changed files with 40 additions and 10 deletions
+25 -9
View File
@@ -50,6 +50,7 @@ export default class AuthService {
twoFactorActivated,
twoFactorActived,
tokens = {},
platform,
} = content;
// patch old field
twoFactorActivated = twoFactorActivated || twoFactorActived;
@@ -103,22 +104,29 @@ export default class AuthService {
retries: 0,
lastip: ip,
lastaddr: address,
platform: req.platform,
isTwoFactorChecking: false,
});
await this.notificationService.notify(
'登陆通知',
`你于${new Date(
timestamp,
).toLocaleString()}${address} 登陆成功,ip地址 ${ip}`,
`你于${new Date(timestamp).toLocaleString()}${address} ${
req.platform
} 登陆成功,ip地址 ${ip}`,
);
await this.getLoginLog();
await this.insertDb({
type: AuthDataType.loginLog,
info: { timestamp, address, ip, status: LoginStatus.success },
info: {
timestamp,
address,
ip,
platform: req.platform,
status: LoginStatus.success,
},
});
return {
code: 200,
data: { token, lastip, lastaddr, lastlogon, retries },
data: { token, lastip, lastaddr, lastlogon, retries, platform },
};
} else {
this.updateAuthInfo(content, {
@@ -126,17 +134,24 @@ export default class AuthService {
lastlogon: timestamp,
lastip: ip,
lastaddr: address,
platform: req.platform,
});
await this.notificationService.notify(
'登陆通知',
`你于${new Date(
timestamp,
).toLocaleString()}${address} 登陆失败,ip地址 ${ip}`,
`你于${new Date(timestamp).toLocaleString()}${address} ${
req.platform
} 登陆失败,ip地址 ${ip}`,
);
await this.getLoginLog();
await this.insertDb({
type: AuthDataType.loginLog,
info: { timestamp, address, ip, status: LoginStatus.fail },
info: {
timestamp,
address,
ip,
platform: req.platform,
status: LoginStatus.fail,
},
});
return { code: 400, message: config.authError };
}
@@ -243,6 +258,7 @@ export default class AuthService {
this.updateAuthInfo(authInfo, {
lastip: ip,
lastaddr: address,
platform: req.platform,
});
return { code: 430, message: '验证失败' };
}