|
@@ -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";
|
|
|
+ }
|
|
|
}
|
|
|
}
|