CheckAlipaySignService.cs 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using MySystem.PxcModels;
  5. using Library;
  6. using LitJson;
  7. using System.Text.RegularExpressions;
  8. using System.Threading;
  9. namespace MySystem
  10. {
  11. public class CheckAlipaySignService
  12. {
  13. public readonly static CheckAlipaySignService Instance = new CheckAlipaySignService();
  14. private CheckAlipaySignService()
  15. { }
  16. public void Start()
  17. {
  18. Thread th = new Thread(StartListen);
  19. th.IsBackground = true;
  20. th.Start();
  21. }
  22. public void StartListen()
  23. {
  24. while (true)
  25. {
  26. string content = RedisDbconn.Instance.RPop<string>("AlipaySignQueue");
  27. if (!string.IsNullOrEmpty(content))
  28. {
  29. StartDo(Newtonsoft.Json.JsonConvert.DeserializeObject<MerchantSign>(content));
  30. }
  31. else
  32. {
  33. Thread.Sleep(2000);
  34. }
  35. }
  36. }
  37. public void StartDo(MerchantSign sign)
  38. {
  39. try
  40. {
  41. PxcModels.WebCMSEntities db = new PxcModels.WebCMSEntities();
  42. string content = new AlipayFunction().QuerySignStatus(sign.BusinessCode);
  43. JsonData dic = JsonMapper.ToObject(content);
  44. if (dic["alipay_open_agent_order_query_response"]["code"].ToString() == "10000")
  45. {
  46. if (dic["alipay_open_agent_order_query_response"]["order_status"].ToString() == "MERCHANT_CONFIRM")
  47. {
  48. string sign_url = dic["alipay_open_agent_order_query_response"]["confirm_url"].ToString();
  49. PxcModels.MerchantAddInfo merchantadd = db.MerchantAddInfo.FirstOrDefault(m => m.Id == sign.MerchantAddInfoId && m.QueryCount == 0);
  50. if (merchantadd != null)
  51. {
  52. merchantadd.QueryCount = 1;
  53. string confirm_url = "/static/alipay_confirm_url/";
  54. string fileName = function.MD5_16(Guid.NewGuid().ToString());
  55. function.CreateQRCode2(sign_url, fileName, "/bsserver_com" + confirm_url);
  56. string SignUrlList = function.CheckNull(merchantadd.SeoKeyword);
  57. if (string.IsNullOrEmpty(SignUrlList))
  58. {
  59. SignUrlList = "Alipay:" + confirm_url + ";";
  60. }
  61. else
  62. {
  63. SignUrlList = "Alipay:" + confirm_url+ ";" + SignUrlList;
  64. }
  65. merchantadd.SeoKeyword = SignUrlList;
  66. merchantadd.SeoTitle = dic["alipay_open_agent_order_query_response"]["merchant_pid"].ToString();
  67. db.SaveChanges();
  68. }
  69. }
  70. else if (dic["alipay_open_agent_order_query_response"]["order_status"].ToString() == "MERCHANT_CONFIRM_SUCCESS")
  71. {
  72. PxcModels.MerchantAddInfo merchantadd = db.MerchantAddInfo.FirstOrDefault(m => m.Id == sign.MerchantAddInfoId && m.QueryCount < 2);
  73. if (merchantadd != null)
  74. {
  75. merchantadd.QueryCount = 2;
  76. db.SaveChanges();
  77. RedisDbconn.Instance.Set("MerchantAddInfo:" + sign.MerchantAddInfoId, merchantadd);
  78. if (merchantadd.Status == 2 && merchantadd.QueryCount == 2)
  79. {
  80. PxcModels.MerchantInfo merchant = db.MerchantInfo.FirstOrDefault(m => m.Id == sign.MerchantAddInfoId);
  81. List<PxcModels.MerchantInfo> merchants = RedisDbconn.Instance.GetList<PxcModels.MerchantInfo>("TmpMerchantInfo:" + merchant.UserId, 1, 1000000);
  82. PxcModels.MerchantInfo check = merchants.FirstOrDefault(m => m.Id == sign.MerchantAddInfoId);
  83. if (check != null)
  84. {
  85. merchants.Remove(check);
  86. RedisDbconn.Instance.Clear("TmpMerchantInfo:" + merchant.UserId);
  87. RedisDbconn.Instance.AddList("TmpMerchantInfo:" + merchant.UserId, merchants.ToArray());
  88. }
  89. }
  90. }
  91. }
  92. else if (dic["alipay_open_agent_order_query_response"]["order_status"].ToString() == "MERCHANT_APPLY_ORDER_CANCELED")
  93. {
  94. PxcModels.MerchantAddInfo merchantadd = db.MerchantAddInfo.FirstOrDefault(m => m.Id == sign.MerchantAddInfoId);
  95. if (merchantadd != null)
  96. {
  97. string Season = function.CheckNull(merchantadd.SeoDescription);
  98. if (string.IsNullOrEmpty(Season))
  99. {
  100. Season = "Alipay:" + dic["alipay_open_agent_order_query_response"]["reject_reason"].ToString() + ";";
  101. }
  102. else
  103. {
  104. Season = Regex.Replace(Season, "Alipay:.*?;", "");
  105. Season += "Alipay:" + dic["alipay_open_agent_order_query_response"]["reject_reason"].ToString() + ";";
  106. }
  107. merchantadd.SeoDescription = Season;
  108. merchantadd.QueryCount = -1;
  109. PxcModels.MerchantInfo merchant = db.MerchantInfo.FirstOrDefault(m => m.Id == sign.MerchantAddInfoId);
  110. if (merchant != null)
  111. {
  112. merchant.Status = -1;
  113. }
  114. db.SaveChanges();
  115. }
  116. }
  117. }
  118. }
  119. catch (Exception ex)
  120. {
  121. function.WriteLog(DateTime.Now.ToString() + ":" + ex.ToString(), "public:merchant:signerr");
  122. }
  123. }
  124. }
  125. }