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

+ 5 - 2
AppStart/Alipay/AlipayFunction.cs

@@ -25,6 +25,9 @@ namespace MySystem
         {
             _context = context;
         }
+        public AlipayFunction()
+        {
+        }
 
 
         #region 代商家签约
@@ -172,13 +175,13 @@ namespace MySystem
         #endregion
         
         #region 小程序支付请调用MySystemLib下的统一收单交易创建,返回交易号返给小程序请求支付my.tradePay
-        public string GetToken()
+        public string GetToken(string code)
         {
             IAopClient client = new DefaultAopClient("https://openapi.alipay.com/gateway.do", AppId, PrivateKey, "json", "1.0", "RSA2", AlipayPublicKey, "utf-8", false);
             AlipayOpenAuthTokenAppRequest request = new AlipayOpenAuthTokenAppRequest();
             request.BizContent = "{" +
             "\"grant_type\":\"authorization_code\"," +
-            "\"code\":\"P16be77ee92264acc99553528b8a7103\"" +
+            "\"code\":\"" + code + "\"" +
             "  }";
             string result = "";
             try

+ 21 - 0
Areas/Api/Controllers/AlipayController.cs

@@ -71,6 +71,27 @@ namespace MySystem.Areas.Api.Controllers.v1
             }
             return result;
         }
+
+        public string MerAuth(string app_auth_code)
+        {
+            function.WriteLog(DateTime.Now.ToString() + "\n" + Request.QueryString.ToString(), "支付宝代商家授权回调日志");
+            string result = new AlipayFunction().GetToken(app_auth_code);
+            function.WriteLog(result, "支付宝代商家授权回调日志");
+            //{"alipay_open_auth_token_app_response":{"code":"10000","msg":"Success","app_auth_token":"202306BB5e2aa2157bef47b7a8d918cadb0f1X25","app_refresh_token":"202306BB57fdb346273840b7aca1d63b34110D25","auth_app_id":"2021004102667228","expires_in":31536000,"re_expires_in":32140800,"tokens":[{"app_auth_token":"202306BB5e2aa2157bef47b7a8d918cadb0f1X25","app_refresh_token":"202306BB57fdb346273840b7aca1d63b34110D25","auth_app_id":"2021004102667228","expires_in":31536000,"re_expires_in":32140800,"user_id":"2088402028451259"}],"user_id":"2088402028451259"},"sign":"NLGZMLHbvb39KXeTBj0UPMVCeIYdxKymSXSBJAdRnuE8zCdJJTkk+flaclj63ljhK2WC/KOue/K1RSAjCepjtLVJaQxBfnTD/YXWHMRwcd8MM3aOX2D/wfl4VBgvzMJ2/fNAgycZ7ps2TiWyDrLz82DXtWpvXIRq0/NuZ6gILIdIl1jS/h4rgUB44ld+23ihNUuyqn1zV2EEm8ZZScEObnwg48sZ7Kd0PfOoXTJX/vfotFm3QXOzUwMNRDm6I2q+UvCGA355QaUvZhUzHOVUldvM4MaZom2TQDvpYf5EFTxSOZ7OglWjvJim1/ZcjUbqY00mTgoMoorrOH7p0OQyfA=="}
+            JsonData jsonObj = JsonMapper.ToObject(result);
+            if(jsonObj["alipay_open_auth_token_app_response"]["code"].ToString() == "10000")
+            {
+                string app_auth_token = jsonObj["alipay_open_auth_token_app_response"]["app_auth_token"].ToString();
+                MerchantAddInfo addInfo = maindb.MerchantAddInfo.FirstOrDefault(m => m.Id == 0);
+                if(addInfo != null)
+                {
+                    addInfo.AlipayAuthToken = app_auth_token;
+                    maindb.SaveChanges();
+                }
+            }
+
+            return "授权成功";
+        }
         
         private SortedDictionary<string, string> GetRequestPost(string canshu)
         {

+ 1 - 0
Areas/Api/Controllers/v1/MainServer/MerchantInfoController.cs

@@ -750,6 +750,7 @@ namespace MySystem.Areas.Api.Controllers.v1
         }
         public Dictionary<string, object> DetailBySnDo(string value)
         {
+            function.WriteLog(value, "商户-通过sn获取商户详情");
             JsonData data = JsonMapper.ToObject(value);
             Dictionary<string, object> Obj = new Dictionary<string, object>();
             string Sn = data["Sn"].ToString();

+ 6 - 0
Controllers/HomeController.cs

@@ -6,6 +6,7 @@ using System.Linq;
 using Library;
 using LitJson;
 using System;
+using System.IO;
 
 namespace MySystem.Controllers
 {
@@ -48,6 +49,11 @@ namespace MySystem.Controllers
             return View();
         }
 
+        public string auth(string app_id, string source, string application_type, string app_auth_code, string state)
+        {
+            return app_id + "\n" + source + "\n" + application_type + "\n" + app_auth_code + "\n" + state + "\n" + Request.QueryString.ToString();
+        }
+
         public string test()
         {
             string result = "";