Explorar o código

fix 修复 临时处理satoken对dubbo内部调用的情况考虑不周 导致无法获取上下文都bug

疯狂的狮子Li hai 1 ano
pai
achega
6628ead2ea

+ 49 - 0
ruoyi-common/ruoyi-common-dubbo/src/main/java/cn/dev33/satoken/context/dubbo3/filter/SaTokenDubbo3ContextFilter.java

@@ -0,0 +1,49 @@
+/*
+ * Copyright 2020-2099 sa-token.cc
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package cn.dev33.satoken.context.dubbo3.filter;
+
+import cn.dev33.satoken.SaManager;
+import cn.dev33.satoken.context.SaHolder;
+import cn.dev33.satoken.context.dubbo3.util.SaTokenContextDubbo3Util;
+import cn.dev33.satoken.util.SaTokenConsts;
+import org.apache.dubbo.common.constants.CommonConstants;
+import org.apache.dubbo.common.extension.Activate;
+import org.apache.dubbo.rpc.*;
+
+/**
+ * Sa-Token 整合 Dubbo3 上下文初始化过滤器
+ *
+ * @author click33
+ * @since 1.42.0
+ */
+@Activate(group = {CommonConstants.PROVIDER}, order = SaTokenConsts.RPC_CONTEXT_FILTER_ORDER)
+public class SaTokenDubbo3ContextFilter implements Filter {
+
+    @Override
+    public Result invoke(Invoker<?> invoker, Invocation invocation) {
+        if(SaHolder.getContext().isValid()) {
+            return invoker.invoke(invocation);
+        } else {
+            try {
+                SaTokenContextDubbo3Util.setContext(RpcContext.getServiceContext());
+                return invoker.invoke(invocation);
+            } finally {
+                SaManager.getSaTokenContext().clearContext();
+            }
+        }
+    }
+
+}