lcl 10 місяців тому
батько
коміт
40cc80ec27
1 змінених файлів з 18 додано та 5 видалено
  1. 18 5
      Controllers/HomeController.cs

+ 18 - 5
Controllers/HomeController.cs

@@ -1,12 +1,9 @@
-using System.Collections.Generic;
-using Microsoft.AspNetCore.Mvc;
-using Microsoft.Extensions.Logging;
-using MySystem.MainModels;
-using System.Linq;
+using System.Linq;
 using Library;
 using LitJson;
 using System;
 using System.IO;
+using System.Text.RegularExpressions;
 
 namespace MySystem.Controllers
 {
@@ -113,5 +110,21 @@ namespace MySystem.Controllers
 
             return result;
         }
+
+        public string OrderCheck(string d, int m)
+        {
+            string[] datelist = d.Split('-');
+            string path = "";
+            if(m == 1) path = "支付宝服务平台支付回调(好哒)";
+            if(m == 2) path = "微信服务平台支付回调(好哒)";
+            string logcontent = function.ReadInstance("/log/" + path + "/" + datelist[0] + "/" + datelist[1] + "/" + datelist[2] + "/content.log");
+            MatchCollection mc = Regex.Matches(logcontent, "{.*?}");
+            foreach(Match match in mc)
+            {
+                string content = match.Value;
+                RedisDbconn.Instance.AddList("WeChatPayBackHd", content);
+            }
+            return "ok";
+        }
     }
 }