From 0ecadf2d4500e018ef59c5d7c0eb3b23856580f0 Mon Sep 17 00:00:00 2001
From: chenhaozhe <cgz@hz-kingdee.com>
Date: 星期一, 27 四月 2026 15:11:11 +0800
Subject: [PATCH] 调整 token自动刷新接口,解决token 无法自动刷新的问题

---
 WebAPI/Service/JwtAuthorizeAttribute.cs |   65 +++++++++++++++++++++++++++++---
 1 files changed, 59 insertions(+), 6 deletions(-)

diff --git a/WebAPI/Service/JwtAuthorizeAttribute.cs b/WebAPI/Service/JwtAuthorizeAttribute.cs
index ca96e21..3ef48a0 100644
--- a/WebAPI/Service/JwtAuthorizeAttribute.cs
+++ b/WebAPI/Service/JwtAuthorizeAttribute.cs
@@ -1,6 +1,8 @@
 锘縰sing System;
+using System.Linq;
 using System.Net;
 using System.Net.Http;
+using System.Reflection;
 using System.Security.Claims;
 using System.Threading;
 using System.Threading.Tasks;
@@ -31,7 +33,7 @@
     {
         try
         {
-            // 妫�鏌ュ尶鍚嶈闂�
+            // 妫�鏌ュ尶鍚嶈闂�(璁よ瘉)
             if (IsAnonymousAllowed(actionContext)) return;
 
             // 鑾峰彇Token
@@ -51,12 +53,63 @@
                 return;
             }
 
-            // 楠岃瘉鏄惁鎷ユ湁璁块棶妯″潡鐨勬潈闄�
-            // 鏈変袱绉嶅垽鏂柟寮� 涓�绉嶆槸閫氳繃瑙掕壊鍘诲垽鏂紝涓�绉嶆槸閫氳繃鐢ㄦ埛鍘诲垽鏂� 鐩墠鏆傛椂涓嶅仛鍖哄垎锛屽悗缁彲澧炲姞绯荤粺鍙傛暟鏉ヨ繘琛屽尯鍒�
-            
-
             // 璁剧疆鐢ㄦ埛
             actionContext.RequestContext.Principal = principal;
+
+            // 楠岃瘉鏄惁鎷ユ湁璁块棶妯″潡鐨勬潈闄�
+            // 鏈変袱绉嶅垽鏂柟寮� 涓�绉嶆槸閫氳繃瑙掕壊鍘诲垽鏂紝涓�绉嶆槸閫氳繃鐢ㄦ埛鍘诲垽鏂� 鐩墠鏆傛椂涓嶅仛鍖哄垎锛屽悗缁彲澧炲姞绯荤粺鍙傛暟鏉ヨ繘琛屽尯鍒�
+            // 瀹夊叏鎺у埗鍣ㄦ弿鏍囩
+            var controllerAttr = actionContext.ControllerContext?.ControllerDescriptor?.GetCustomAttributes<PermissionAttribute>().FirstOrDefault();
+
+            // 瀹夊叏鑾峰彇Action鏍囩
+            var actionAttr = actionContext.ActionDescriptor?.GetCustomAttributes<PermissionAttribute>().FirstOrDefault();
+
+            string PermissionStr = string.Empty;
+            // 鍒ゆ柇鎺у埗鍣ㄧ骇鍒笂鏄惁鍚敤浜嗛壌鏉冩爣绛�
+            if(controllerAttr != null && !string.IsNullOrWhiteSpace(controllerAttr?.HModName))
+            {
+                PermissionStr += controllerAttr.HModName;
+
+                // 鏌ョ湅鏄惁闇�瑕佹洿缁嗙矑搴︾殑鎺у埗
+                if(actionAttr != null && !string.IsNullOrWhiteSpace(actionAttr?.Operate))
+                {
+                    // 璇ュ姩浣滃搴旂殑妯″潡鍚嶅拰鎺у埗鍣ㄥ悕鏄惁涓嶄竴鑷�
+                    if (string.IsNullOrWhiteSpace(actionAttr.HModName))
+                    {
+                        PermissionStr = actionAttr.HModName + actionAttr.Operate;
+                    }
+                    else
+                    {
+                        PermissionStr += actionAttr.Operate;
+                    }
+
+                }
+
+                if(!string.IsNullOrWhiteSpace(PermissionStr))
+                {
+                    if (!DBUtility.ClsPub.Security_Log(PermissionStr, 1, false, JWTHelper.getUserName(token)))
+                    {
+                        HandleForbidden(actionContext);
+                        return;
+                    }
+                }
+                
+            }else if (actionAttr != null && !string.IsNullOrWhiteSpace(actionAttr?.HModName) && !string.IsNullOrWhiteSpace(actionAttr?.Operate))
+            {
+                // 鍗曠嫭鍦ㄥ姩浣滀笂鍚敤閴存潈鍔熻兘
+                PermissionStr = actionAttr.HModName + actionAttr.Operate;
+
+                if (!string.IsNullOrWhiteSpace(PermissionStr))
+                {
+                    if (!DBUtility.ClsPub.Security_Log(PermissionStr, 1, false, JWTHelper.getUserName(token)))
+                    {
+                        HandleForbidden(actionContext);
+                        return;
+                    }
+                }
+            }
+
+           
         }
         catch (Exception e)
         {
@@ -111,7 +164,7 @@
         var response = new HttpResponseMessage(HttpStatusCode.Forbidden);
         objjson.code = "0";
         objjson.count = 0;
-        objjson.Message = "褰撳墠瑙掕壊鏃犳潈闄�";
+        objjson.Message = "鎮ㄦ病鏈夎妯″潡鏉冮檺,璇蜂笌绠$悊鍛樿仈绯伙紒";
         response.Content = new StringContent(Newtonsoft.Json.JsonConvert.SerializeObject(objjson),
             System.Text.Encoding.UTF8, "application/json");
         context.Response = response;

--
Gitblit v1.9.1