CheckWeChatSignService.cs 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  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. string SignUrlList = function.CheckNull(merchantadd.SeoKeyword);
  57. if (string.IsNullOrEmpty(SignUrlList))
  58. {
  59. SignUrlList = "WeChat:" + sign_url + ";";
  60. }
  61. else
  62. {
  63. SignUrlList += "WeChat:" + sign_url+ ";";
  64. }
  65. merchantadd.SeoKeyword = SignUrlList;
  66. PxcModels.MerchantInfo merchant = db.MerchantInfo.FirstOrDefault(m => m.Id == sign.MerchantAddInfoId);
  67. if (merchantadd.Status > 0 && merchantadd.QueryCount > 0)
  68. {
  69. merchant.Status = 1;
  70. }
  71. db.SaveChanges();
  72. }
  73. return "wait";
  74. }
  75. else if (dic["applyment_state"].ToString() == "APPLYMENT_STATE_FINISHED")
  76. {
  77. PxcModels.MerchantAddInfo merchantadd = db.MerchantAddInfo.FirstOrDefault(m => m.Id == sign.MerchantAddInfoId && m.Status == 1);
  78. if (merchantadd != null)
  79. {
  80. merchantadd.Status = 2;
  81. RedisDbconn.Instance.Set("MerchantAddInfo:" + sign.MerchantAddInfoId, merchantadd);
  82. PxcModels.MerchantInfo merchant = db.MerchantInfo.FirstOrDefault(m => m.Id == sign.MerchantAddInfoId);
  83. if (merchantadd.Status == 2 && merchantadd.QueryCount == 2)
  84. {
  85. merchant.Status = 2;
  86. }
  87. db.SaveChanges();
  88. if (merchantadd.Status == 2 && merchantadd.QueryCount == 2)
  89. {
  90. List<MerchantInfo> merchants = RedisDbconn.Instance.GetList<MerchantInfo>("TmpMerchantInfo:" + merchant.UserId, 1, 1000000);
  91. MerchantInfo check = merchants.FirstOrDefault(m => m.Id == sign.MerchantAddInfoId);
  92. if (check != null)
  93. {
  94. merchants.Remove(check);
  95. RedisDbconn.Instance.Clear("TmpMerchantInfo:" + merchant.UserId);
  96. RedisDbconn.Instance.AddList("TmpMerchantInfo:" + merchant.UserId, merchants.ToArray());
  97. }
  98. }
  99. deletes.Add(sign);
  100. }
  101. }
  102. else if (dic["applyment_state"].ToString() == "APPLYMENT_STATE_REJECTED")
  103. {
  104. PxcModels.MerchantAddInfo merchantadd = db.MerchantAddInfo.FirstOrDefault(m => m.Id == sign.MerchantAddInfoId);
  105. if (merchantadd != null)
  106. {
  107. string Season = function.CheckNull(merchantadd.SeoDescription);
  108. if (string.IsNullOrEmpty(Season))
  109. {
  110. Season = "WeChat:" + dic["reject_reason"].ToString() + ";";
  111. }
  112. else
  113. {
  114. Season = Regex.Replace(Season, "WeChat:.*?;", "");
  115. Season += "WeChat:" + dic["reject_reason"].ToString() + ";";
  116. }
  117. merchantadd.SeoDescription = Season;
  118. merchantadd.Status = -1;
  119. PxcModels.MerchantInfo merchant = db.MerchantInfo.FirstOrDefault(m => m.Id == sign.MerchantAddInfoId);
  120. if (merchant != null)
  121. {
  122. merchant.Status = -1;
  123. }
  124. db.SaveChanges();
  125. deletes.Add(sign);
  126. }
  127. }
  128. else if (dic["applyment_state"].ToString() == "APPLYMENT_STATE_AUDITING")
  129. {
  130. return "wait";
  131. }
  132. else
  133. {
  134. string sub_mchid = "";
  135. if (dic.ContainsKey("sub_mchid"))
  136. {
  137. sub_mchid = dic["sub_mchid"].ToString();
  138. PxcModels.MerchantAddInfo merchantadd = db.MerchantAddInfo.FirstOrDefault(m => m.Id == sign.MerchantAddInfoId);
  139. if (merchantadd != null)
  140. {
  141. merchantadd.SubMchid = sub_mchid;
  142. db.SaveChanges();
  143. }
  144. }
  145. }
  146. }
  147. catch (Exception ex)
  148. {
  149. function.WriteLog(DateTime.Now.ToString() + ":" + ex.ToString(), "微信进件回调队列异常");
  150. }
  151. return "";
  152. }
  153. }
  154. }