Browse Source

用户权限验证日志

andy 1 year ago
parent
commit
06cab36a88

+ 6 - 1
src/main/java/com/beifan/foxlibc/modules/controller/AuthenticationController.java

@@ -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();
     }

+ 5 - 0
src/main/java/com/beifan/foxlibc/modules/service/UserOperateService.java

@@ -0,0 +1,5 @@
+package com.beifan.foxlibc.modules.service;
+
+public interface UserOperateService {
+    void operateLog(String userId,String authId);
+}

+ 18 - 0
src/main/java/com/beifan/foxlibc/modules/service/UserOperateServiceImpl.java

@@ -0,0 +1,18 @@
+package com.beifan.foxlibc.modules.service;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.jdbc.core.JdbcTemplate;
+import org.springframework.stereotype.Service;
+
+@Service
+public class UserOperateServiceImpl implements UserOperateService {
+
+    @Autowired
+    private JdbcTemplate jdbcTemplate;
+
+    @Override
+    public void operateLog(String userId, String authId) {
+        jdbcTemplate.update("insert into  t_user_operate_history(user_id,auth_id) value (?,?)",userId,authId);
+
+    }
+}