CheckWeChatSignService.cs 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  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 CheckWeChatSignService
  12. {
  13. public readonly static CheckWeChatSignService Instance = new CheckWeChatSignService();
  14. private CheckWeChatSignService()
  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>("WeChatSignQueue");
  27. if (!string.IsNullOrEmpty(content))
  28. {
  29. string result = StartDo(Newtonsoft.Json.JsonConvert.DeserializeObject<MerchantSign>(content));
  30. if(result == "wait")
  31. {
  32. Thread.Sleep(10000);
  33. RedisDbconn.Instance.AddList("WeChatSignQueue", content);
  34. }
  35. }
  36. else
  37. {
  38. Thread.Sleep(2000);
  39. }
  40. }
  41. }
  42. public string StartDo(MerchantSign sign)
  43. {
  44. try
  45. {
  46. PxcModels.WebCMSEntities db = new PxcModels.WebCMSEntities();
  47. List<MerchantSign> deletes = new List<MerchantSign>();
  48. Dictionary<string, object> dic = new WeChatFunction().QueryMerchant(sign.BusinessCode);
  49. if (dic["applyment_state"].ToString() == "APPLYMENT_STATE_TO_BE_SIGNED")
  50. {
  51. string sign_url = dic["sign_url"].ToString();
  52. PxcModels.MerchantAddInfo merchantadd = db.MerchantAddInfo.FirstOrDefault(m => m.Id == sign.MerchantAddInfoId && m.Status == 0);
  53. if (merchantadd != null)
  54. {
  55. merchantadd.Status = 1;
  56. merchantadd.SubMchid = dic["sub_mchid"].ToString();
  57. string SignUrlList = function.CheckNull(merchantadd.SeoKeyword);
  58. if (string.IsNullOrEmpty(SignUrlList))
  59. {
  60. SignUrlList = "WeChat:" + sign_url + ";";
  61. }
  62. else
  63. {
  64. SignUrlList += "WeChat:" + sign_url+ ";";
  65. }
  66. merchantadd.SeoKeyword = SignUrlList;
  67. PxcModels.MerchantInfo merchant = db.MerchantInfo.FirstOrDefault(m => m.Id == sign.MerchantAddInfoId);
  68. if (merchantadd.Status > 0 && merchantadd.QueryCount > 0)
  69. {
  70. merchant.Status = 1;
  71. }
  72. db.SaveChanges();
  73. }
  74. return "wait";
  75. }
  76. else if (dic["applyment_state"].ToString() == "APPLYMENT_STATE_FINISHED")
  77. {
  78. PxcModels.MerchantAddInfo merchantadd = db.MerchantAddInfo.FirstOrDefault(m => m.Id == sign.MerchantAddInfoId && m.Status == 1);
  79. if (merchantadd != null)
  80. {
  81. merchantadd.Status = 2;
  82. merchantadd.SubMchid = dic["sub_mchid"].ToString();
  83. RedisDbconn.Instance.Set("MerchantAddInfo:" + sign.MerchantAddInfoId, merchantadd);
  84. PxcModels.MerchantInfo merchant = db.MerchantInfo.FirstOrDefault(m => m.Id == sign.MerchantAddInfoId);
  85. if (merchantadd.Status == 2 && merchantadd.QueryCount == 2)
  86. {
  87. merchant.Status = 2;
  88. }
  89. db.SaveChanges();
  90. if (merchantadd.Status == 2 && merchantadd.QueryCount == 2)
  91. {
  92. List<MerchantInfo> merchants = RedisDbconn.Instance.GetList<MerchantInfo>("TmpMerchantInfo:" + merchant.UserId, 1, 1000000);
  93. MerchantInfo check = merchants.FirstOrDefault(m => m.Id == sign.MerchantAddInfoId);
  94. if (check != null)
  95. {
  96. merchants.Remove(check);
  97. RedisDbconn.Instance.Clear("TmpMerchantInfo:" + merchant.UserId);
  98. RedisDbconn.Instance.AddList("TmpMerchantInfo:" + merchant.UserId, merchants.ToArray());
  99. }
  100. }
  101. deletes.Add(sign);
  102. }
  103. }
  104. else if (dic["applyment_state"].ToString() == "APPLYMENT_STATE_REJECTED")
  105. {
  106. PxcModels.MerchantAddInfo merchantadd = db.MerchantAddInfo.FirstOrDefault(m => m.Id == sign.MerchantAddInfoId);
  107. if (merchantadd != null)
  108. {
  109. string Season = function.CheckNull(merchantadd.SeoDescription);
  110. if (string.IsNullOrEmpty(Season))
  111. {
  112. Season = "WeChat:" + dic["reject_reason"].ToString() + ";";
  113. }
  114. else
  115. {
  116. Season = Regex.Replace(Season, "WeChat:.*?;", "");
  117. Season += "WeChat:" + dic["reject_reason"].ToString() + ";";
  118. }
  119. merchantadd.SeoDescription = Season;
  120. merchantadd.Status = -1;
  121. PxcModels.MerchantInfo merchant = db.MerchantInfo.FirstOrDefault(m => m.Id == sign.MerchantAddInfoId);
  122. if (merchant != null)
  123. {
  124. merchant.Status = -1;
  125. }
  126. db.SaveChanges();
  127. deletes.Add(sign);
  128. }
  129. }
  130. else if (dic["applyment_state"].ToString() == "APPLYMENT_STATE_AUDITING")
  131. {
  132. return "wait";
  133. }
  134. else
  135. {
  136. string sub_mchid = "";
  137. if (dic.ContainsKey("sub_mchid"))
  138. {
  139. sub_mchid = dic["sub_mchid"].ToString();
  140. PxcModels.MerchantAddInfo merchantadd = db.MerchantAddInfo.FirstOrDefault(m => m.Id == sign.MerchantAddInfoId);
  141. if (merchantadd != null)
  142. {
  143. merchantadd.SubMchid = sub_mchid;
  144. db.SaveChanges();
  145. }
  146. }
  147. }
  148. }
  149. catch (Exception ex)
  150. {
  151. function.WriteLog(DateTime.Now.ToString() + ":" + ex.ToString(), "微信进件回调队列异常");
  152. }
  153. return "";
  154. }
  155. }
  156. }