فهرست منبع

拦截指定接口到新服务

lcl 1 سال پیش
والد
کامیت
1b0968079c

BIN
.DS_Store


+ 3 - 0
Areas/Api/Controllers/v1/MainServer/ConsumerOrdersController.cs

@@ -332,6 +332,9 @@ namespace MySystem.Areas.Api.Controllers.v1
         #endregion
 
 
+
+
+
         public string test()
         {
             return new WeChatFunction(_accessor.HttpContext).GetPlatCert();

+ 7 - 0
Areas/Api/Controllers/v1/MainServer/MerchantAddInfoController.cs

@@ -589,6 +589,13 @@ namespace MySystem.Areas.Api.Controllers.v1
         #endregion
 
 
+        #region 桥接mpap2
+        public JsonResult businessscope(string value)
+        {
+            return Json(new AppResultJson());
+        }
+        #endregion
+
 
 
 

+ 5 - 0
Filter/GlobalActionFilter.cs

@@ -23,9 +23,12 @@ namespace MySystem
             foreach (var keyValue in stringArgs)
             {
                 string path = context.ActionDescriptor.AttributeRouteInfo.Template.ToLower();
+                function.WriteLog(path, "拦截器日志");
                 if(keyValue.Key == "value" && AllowApiList().Contains(path))
                 {
+                    function.WriteLog(keyValue.Value.ToString(), "拦截器日志");
                     string result = function.PostWebRequest(AppConfig.Base.Host2 + path, "value=" + keyValue.Value.ToString());
+                    function.WriteLog(result, "拦截器日志");
                     result = result.Replace("null", "\"\"");
                     result = result.Replace("\"status\"", "\"Status\"");
                     result = result.Replace("\"data\"", "\"Data\"");
@@ -43,7 +46,9 @@ namespace MySystem
         {
             List<string> result = new List<string>();
             result.Add("api/v1/merchantaddinfo/add");
+            result.Add("api/v1/merchantaddinfo/options");
             result.Add("api/v1/merchantaddinfo/businessscope");
+            result.Add("api/v1/consumerorders/pay");
             return result;
         }
     }