|
@@ -20,6 +20,7 @@ import com.beifan.foxlibc.modules.pojo.webio.io.AuthenticationCodeIn;
|
|
|
import com.beifan.foxlibc.modules.pojo.webio.io.AuthenticationOut;
|
|
|
import com.beifan.foxlibc.modules.pojo.webio.io.AuthenticationSecUserIn;
|
|
|
import com.beifan.foxlibc.modules.pojo.webio.io.AuthenticationUserIn;
|
|
|
+import com.beifan.foxlibc.modules.service.UserOperateService;
|
|
|
import com.beifan.foxlibc.modules.service.UserService;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
@@ -46,6 +47,8 @@ public class AuthenticationController {
|
|
|
|
|
|
@Autowired
|
|
|
private UserService userService;
|
|
|
+ @Autowired
|
|
|
+ private UserOperateService userOperateService;
|
|
|
|
|
|
// @Value("${foxlibc.debug}") private boolean __DEBUG__;
|
|
|
|
|
@@ -100,7 +103,6 @@ public class AuthenticationController {
|
|
|
public R<AuthenticationOut> validToken(@RequestHeader Map<String, String> headers) {
|
|
|
String token = headers.get("authorization");
|
|
|
String authId = headers.get("authid");
|
|
|
- log.debug("authId: {}", authId);
|
|
|
/* WRAN: 异常信息中的 -C401 是指定返回Code。
|
|
|
如果删除了前端将不能通过 401 判断用户是否过期 */
|
|
|
// Assert.throwIfBool(!jvmCache.contains(CacheConst.TOKEN_BLACKLIST(code)), "-C401 TOKEN已被禁用");
|
|
@@ -112,6 +114,9 @@ public class AuthenticationController {
|
|
|
Date expireTime = userLogininfo.getExpireTime();
|
|
|
|
|
|
Assert.throwIfBool(!DateUtils.gteq(new Date(), expireTime), "-C401 TOKEN已过期");
|
|
|
+ if (Objects.nonNull(authId)) {
|
|
|
+ userOperateService.operateLog(userLogininfo.getUserId(), authId);
|
|
|
+ }
|
|
|
|
|
|
return R.ok();
|
|
|
}
|