123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- using System.Linq;
- using Library;
- using LitJson;
- using System;
- using System.IO;
- using System.Text.RegularExpressions;
- namespace MySystem.Controllers
- {
- public class HomeController : Controller
- {
- private readonly ILogger<HomeController> _logger;
- public HomeController(ILogger<HomeController> logger)
- {
- _logger = logger;
- }
- public IActionResult Index()
- {
- return View();
- }
- public IActionResult Error()
- {
- string isapi = Request.Headers["Api"].ToString();
- if (isapi != "1")
- {
- if (Response.StatusCode == 500)
- {
- return Redirect("/public/errpage/pc/500.html");
- }
- else if (Response.StatusCode == 502)
- {
- return Redirect("/public/errpage/pc/502.html");
- }
- else if (Response.StatusCode == 404)
- {
- return Redirect("/public/errpage/pc/404.html");
- }
- else if (Response.StatusCode == 401)
- {
- return Content("401");
- }
- }
- 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 = "ok";
- // List<ReceiverList> Receivers = new List<ReceiverList>();
- // Receivers.Add(new ReceiverList()
- // {
- // type = "MERCHANT_ID", //分账接收方类型
- // account = "1611167423", //分账接收方账号
- // amount = 1, //分账金额
- // description = "服务费", //分账描述
- // });
- // Receivers.Add(new ReceiverList()
- // {
- // type = "PERSONAL_OPENID", //分账接收方类型
- // account = "ooDpv5LkCKEguE-LMZO-rSV4TDpk", //分账接收方账号
- // amount = 1, //分账金额
- // description = "优惠", //分账描述
- // });
- // result = new WeChatFunction().ProfitShare("1645266943", "4200001846202306021274142861", "2023060214014405449699901", Receivers);
- // result = new WeChatFunction().AddReceive("1645266943", "PERSONAL_OPENID", "ooDpv5LkCKEguE-LMZO-rSV4TDpk", "", "USER");
- // result = new WeChatFunction().QueryProfitShare("1645266943", "4200001815202306025662773463", "2023060213335030713572885");
- // result += new WeChatFunction().Unfreeze("1647917209","4200001851202306296256433756","2023062914544345583469577", "结算");
- // result += new WeChatFunction().Unfreeze("1647917209","4200001871202306297971809063","2023062914503970424085049", "结算");
- // result += new WeChatFunction().Unfreeze("1647917209","4200001861202306299303626271","2023062914274571909443048", "结算");
- // result = new WeChatFunction().ProfitShareReturn("1646405429", "1611167423", "2023060810550382756164803", DateTime.Now.ToString("yyyyMMddHHmmssfff") + function.get_Random(8), 0.02M);
- // result = new WeChatFunction().GetPublicKey();
- // string content = function.ReadInstance("1.txt");
- // string[] list = content.Split('\n');
- // foreach(string sub in list)
- // {
- // RedisDbconn.Instance.AddList("WeChatPayBackHd", sub);
- // }
- string logcontent = function.ReadInstance("直联微信.log");
- string[] contents = logcontent.Split('\n');
- foreach(string content in contents)
- {
- RedisDbconn.Instance.AddList("WeChatPayBack", content);
- }
- logcontent = function.ReadInstance("银联微信.log");
- contents = logcontent.Split('\n');
- foreach(string content in contents)
- {
- RedisDbconn.Instance.AddList("WeChatPayBackHd", content);
- }
- logcontent = function.ReadInstance("银联支付宝.log");
- contents = logcontent.Split('\n');
- foreach(string content in contents)
- {
- RedisDbconn.Instance.AddList("WeChatPayBackHd", content);
- }
- 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";
- }
- }
- }
|