HomeController.cs 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. using System.Linq;
  2. using Library;
  3. using LitJson;
  4. using System;
  5. using System.IO;
  6. using System.Text.RegularExpressions;
  7. namespace MySystem.Controllers
  8. {
  9. public class HomeController : Controller
  10. {
  11. private readonly ILogger<HomeController> _logger;
  12. public HomeController(ILogger<HomeController> logger)
  13. {
  14. _logger = logger;
  15. }
  16. public IActionResult Index()
  17. {
  18. return View();
  19. }
  20. public IActionResult Error()
  21. {
  22. string isapi = Request.Headers["Api"].ToString();
  23. if (isapi != "1")
  24. {
  25. if (Response.StatusCode == 500)
  26. {
  27. return Redirect("/public/errpage/pc/500.html");
  28. }
  29. else if (Response.StatusCode == 502)
  30. {
  31. return Redirect("/public/errpage/pc/502.html");
  32. }
  33. else if (Response.StatusCode == 404)
  34. {
  35. return Redirect("/public/errpage/pc/404.html");
  36. }
  37. else if (Response.StatusCode == 401)
  38. {
  39. return Content("401");
  40. }
  41. }
  42. return View();
  43. }
  44. public string auth(string app_id, string source, string application_type, string app_auth_code, string state)
  45. {
  46. return app_id + "\n" + source + "\n" + application_type + "\n" + app_auth_code + "\n" + state + "\n" + Request.QueryString.ToString();
  47. }
  48. public string test()
  49. {
  50. string result = "ok";
  51. // List<ReceiverList> Receivers = new List<ReceiverList>();
  52. // Receivers.Add(new ReceiverList()
  53. // {
  54. // type = "MERCHANT_ID", //分账接收方类型
  55. // account = "1611167423", //分账接收方账号
  56. // amount = 1, //分账金额
  57. // description = "服务费", //分账描述
  58. // });
  59. // Receivers.Add(new ReceiverList()
  60. // {
  61. // type = "PERSONAL_OPENID", //分账接收方类型
  62. // account = "ooDpv5LkCKEguE-LMZO-rSV4TDpk", //分账接收方账号
  63. // amount = 1, //分账金额
  64. // description = "优惠", //分账描述
  65. // });
  66. // result = new WeChatFunction().ProfitShare("1645266943", "4200001846202306021274142861", "2023060214014405449699901", Receivers);
  67. // result = new WeChatFunction().AddReceive("1645266943", "PERSONAL_OPENID", "ooDpv5LkCKEguE-LMZO-rSV4TDpk", "", "USER");
  68. // result = new WeChatFunction().QueryProfitShare("1645266943", "4200001815202306025662773463", "2023060213335030713572885");
  69. // result += new WeChatFunction().Unfreeze("1647917209","4200001851202306296256433756","2023062914544345583469577", "结算");
  70. // result += new WeChatFunction().Unfreeze("1647917209","4200001871202306297971809063","2023062914503970424085049", "结算");
  71. // result += new WeChatFunction().Unfreeze("1647917209","4200001861202306299303626271","2023062914274571909443048", "结算");
  72. // result = new WeChatFunction().ProfitShareReturn("1646405429", "1611167423", "2023060810550382756164803", DateTime.Now.ToString("yyyyMMddHHmmssfff") + function.get_Random(8), 0.02M);
  73. // result = new WeChatFunction().GetPublicKey();
  74. // string content = function.ReadInstance("1.txt");
  75. // string[] list = content.Split('\n');
  76. // foreach(string sub in list)
  77. // {
  78. // RedisDbconn.Instance.AddList("WeChatPayBackHd", sub);
  79. // }
  80. string logcontent = function.ReadInstance("直联微信.log");
  81. string[] contents = logcontent.Split('\n');
  82. foreach(string content in contents)
  83. {
  84. RedisDbconn.Instance.AddList("WeChatPayBack", content);
  85. }
  86. logcontent = function.ReadInstance("银联微信.log");
  87. contents = logcontent.Split('\n');
  88. foreach(string content in contents)
  89. {
  90. RedisDbconn.Instance.AddList("WeChatPayBackHd", content);
  91. }
  92. logcontent = function.ReadInstance("银联支付宝.log");
  93. contents = logcontent.Split('\n');
  94. foreach(string content in contents)
  95. {
  96. RedisDbconn.Instance.AddList("WeChatPayBackHd", content);
  97. }
  98. return result;
  99. }
  100. public string OrderCheck(string d, int m)
  101. {
  102. string[] datelist = d.Split('-');
  103. string path = "";
  104. if(m == 1) path = "支付宝服务平台支付回调(好哒)";
  105. if(m == 2) path = "微信服务平台支付回调(好哒)";
  106. string logcontent = function.ReadInstance("/log/" + path + "/" + datelist[0] + "/" + datelist[1] + "/" + datelist[2] + "/content.log");
  107. MatchCollection mc = Regex.Matches(logcontent, "{.*?}");
  108. foreach(Match match in mc)
  109. {
  110. string content = match.Value;
  111. RedisDbconn.Instance.AddList("WeChatPayBackHd", content);
  112. }
  113. return "ok";
  114. }
  115. }
  116. }