MerchantConfirmService.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text.RegularExpressions;
  5. using MySystem.Models;
  6. using Library;
  7. using LitJson;
  8. using System.Threading;
  9. namespace MySystem
  10. {
  11. public class MerchantConfirmService
  12. {
  13. public readonly static MerchantConfirmService Instance = new MerchantConfirmService();
  14. private MerchantConfirmService()
  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>("MerchantConfirmQueue");
  27. if (!string.IsNullOrEmpty(content))
  28. {
  29. try
  30. {
  31. JsonData jsonObj = JsonMapper.ToObject(content);
  32. int MerchantId = int.Parse(jsonObj["MerchantId"].ToString());
  33. int Kind = 0;
  34. if(content.Contains("\"Kind\""))
  35. {
  36. Kind = int.Parse(jsonObj["Kind"].ToString());
  37. }
  38. StartDo(MerchantId, Kind);
  39. }
  40. catch (Exception ex)
  41. {
  42. function.WriteLog(DateTime.Now.ToString() + ":" + ex.ToString(), "public_service");
  43. }
  44. }
  45. else
  46. {
  47. Thread.Sleep(2000);
  48. }
  49. }
  50. }
  51. public void StartDo(int MerchantId, int Kind = 0)
  52. {
  53. WebCMSEntities db = new WebCMSEntities();
  54. MerchantAddInfo AddInfo = db.MerchantAddInfo.FirstOrDefault(m => m.Id == MerchantId);
  55. MerchantInfo merchant = db.MerchantInfo.FirstOrDefault(m => m.Id == MerchantId);
  56. if (AddInfo != null && merchant != null)
  57. {
  58. string BusinessCode = AddInfo.BusinessCode;
  59. if (string.IsNullOrEmpty(BusinessCode))
  60. {
  61. BusinessCode = "LKB" + DateTime.Now.ToString("yyyyMMddHHmmssfff") + function.get_Random(5);
  62. AddInfo.BusinessCode = BusinessCode;
  63. }
  64. merchant.LoginPwd = function.MD532(AddInfo.MobilePhone.Substring(5));
  65. MerchantParamSet query = db.MerchantParamSet.FirstOrDefault(m => m.Id == MerchantId);
  66. if (query == null)
  67. {
  68. query = new MerchantParamSet();
  69. query.IsAll = 1;
  70. db.MerchantParamSet.Add(query);
  71. db.SaveChanges();
  72. }
  73. MerchantForMobile merchantForMobile = db.MerchantForMobile.FirstOrDefault(m => m.Mobile == AddInfo.MobilePhone);
  74. if (merchantForMobile == null)
  75. {
  76. merchantForMobile = db.MerchantForMobile.Add(new MerchantForMobile()
  77. {
  78. Mobile = AddInfo.MobilePhone,
  79. }).Entity;
  80. db.SaveChanges();
  81. }
  82. merchantForMobile.MerchantId = MerchantId;
  83. db.SaveChanges();
  84. //微信
  85. if (Kind == 0 || Kind == 2)
  86. {
  87. string result = WeChatFunction.Instance.MerchantCreate(AddInfo, merchant);
  88. if (result.Contains("\"applyment_id\":"))
  89. {
  90. JsonData jsonObj = JsonMapper.ToObject(result);
  91. AddInfo.ApplymentId = jsonObj["applyment_id"].ToString();
  92. AddInfo.Status = 0;
  93. db.SaveChanges();
  94. List<MerchantSign> signs = RedisDbconn.Instance.GetList<MerchantSign>("MerchantSignList", 1, 10000000);
  95. bool op = signs.Any(m => m.BusinessCode == BusinessCode);
  96. if (!op)
  97. {
  98. RedisDbconn.Instance.AddList("WeChatSignQueue", new MerchantSign()
  99. {
  100. BusinessCode = BusinessCode,
  101. MerchantAddInfoId = MerchantId,
  102. Status = ""
  103. });
  104. }
  105. signs.Clear();
  106. AddInfo.ApplymentId = AddInfo.ApplymentId;
  107. AddInfo.Status = AddInfo.Status;
  108. db.SaveChanges();
  109. }
  110. else if (result.Contains("\"message\":"))
  111. {
  112. JsonData jsonObj = JsonMapper.ToObject(result);
  113. AddInfo.Status = -1;
  114. merchant.Status = -1;
  115. string Season = function.CheckNull(AddInfo.SeoDescription);
  116. if (string.IsNullOrEmpty(Season))
  117. {
  118. Season = "WeChat:" + jsonObj["message"].ToString() + ";";
  119. }
  120. else
  121. {
  122. Season = Regex.Replace(Season, "WeChat:.*?;", "");
  123. Season += "WeChat:" + jsonObj["message"].ToString() + ";";
  124. }
  125. AddInfo.SeoDescription = Season;
  126. AddInfo.SeoDescription = AddInfo.SeoDescription;
  127. AddInfo.Status = AddInfo.Status;
  128. db.SaveChanges();
  129. }
  130. }
  131. //支付宝
  132. if (Kind == 0 || Kind == 1)
  133. {
  134. bool checkAlipay = true;
  135. string content = AlipayFunction.Instance.GetBatchNo(AddInfo.IdCardName, AddInfo.MobilePhone, AddInfo.ContactEmail);
  136. JsonData json = JsonMapper.ToObject(content);
  137. if (json["alipay_open_agent_create_response"]["code"].ToString() == "10000")
  138. {
  139. string batch_no = json["alipay_open_agent_create_response"]["batch_no"].ToString();
  140. string Qualifications = AddInfo.Qualifications;
  141. if (!string.IsNullOrEmpty(Qualifications))
  142. {
  143. Qualifications = function.getPath("/" + Qualifications);
  144. }
  145. content = AlipayFunction.Instance.CommonSign(batch_no, AddInfo.UpdateMan, AddInfo.LicenseNumber, AddInfo.LicenseCopy, AddInfo.LicenseCopy, AddInfo.StoreEntrancePic, AddInfo.IndoorPic);
  146. json = JsonMapper.ToObject(content);
  147. if (json["alipay_open_agent_facetoface_sign_response"]["code"].ToString() == "10000")
  148. {
  149. content = AlipayFunction.Instance.AgentConfirm(batch_no);
  150. json = JsonMapper.ToObject(content);
  151. if (json["alipay_open_agent_confirm_response"]["code"].ToString() == "10000")
  152. {
  153. RedisDbconn.Instance.AddList("AlipaySignQueue", new MerchantSign()
  154. {
  155. BusinessCode = batch_no,
  156. MerchantAddInfoId = MerchantId,
  157. Status = ""
  158. });
  159. // content = AlipayFunction.Instance.QuerySignStatus(batch_no);
  160. // content = AlipayFunction.Instance.CommonSignConfirm(batch_no);
  161. // json = JsonMapper.ToObject(content);
  162. // if (json["alipay_open_agent_commonsign_confirm_response"]["code"].ToString() == "10000")
  163. // {
  164. // AddInfo.QueryCount = 0;
  165. // AddInfo.SeoTitle = batch_no;
  166. // db.SaveChanges();
  167. // List<MerchantSign> signs = RedisDbconn.Instance.GetList<MerchantSign>("MerchantSignList", 1, 10000000);
  168. // bool op = signs.Any(m => m.BusinessCode == batch_no);
  169. // if (!op)
  170. // {
  171. // RedisDbconn.Instance.AddList("AlipaySignQueue", new MerchantSign()
  172. // {
  173. // BusinessCode = batch_no,
  174. // MerchantAddInfoId = MerchantId,
  175. // Status = ""
  176. // });
  177. // }
  178. // signs.Clear();
  179. // if (db.MerchantInfo.Any(m => m.Id == merchant.Id) == false)
  180. // {
  181. // RedisDbconn.Instance.AddList("MerchantList:" + merchant.UserId, merchant);
  182. // }
  183. // }
  184. // else
  185. // {
  186. // checkAlipay = false;
  187. // }
  188. }
  189. else
  190. {
  191. checkAlipay = false;
  192. }
  193. }
  194. else
  195. {
  196. checkAlipay = false;
  197. }
  198. }
  199. else
  200. {
  201. checkAlipay = false;
  202. }
  203. if (!checkAlipay)
  204. {
  205. JsonData jsonObj = JsonMapper.ToObject(content);
  206. AddInfo.QueryCount = -1;
  207. merchant.Status = -1;
  208. string Season = function.CheckNull(AddInfo.SeoDescription);
  209. if (string.IsNullOrEmpty(Season))
  210. {
  211. Season = "Alipay:" + jsonObj["alipay_open_agent_create_response"]["sub_msg"].ToString() + ";";
  212. }
  213. else
  214. {
  215. Season = Regex.Replace(Season, "Alipay:.*?;", "");
  216. Season = "Alipay:" + jsonObj["alipay_open_agent_create_response"]["sub_msg"].ToString() + ";" + Season;
  217. }
  218. AddInfo.SeoDescription = Season;
  219. AddInfo.SeoDescription = AddInfo.SeoDescription;
  220. AddInfo.QueryCount = AddInfo.QueryCount;
  221. db.SaveChanges();
  222. }
  223. }
  224. }
  225. db.Dispose();
  226. }
  227. }
  228. }