MerchantConfirmService.cs 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  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) && AddInfo.Status <= 0)
  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.WeChatRemark = "";
  93. AddInfo.Status = 0;
  94. merchant.Status = 0;
  95. db.SaveChanges();
  96. List<MerchantSign> signs = RedisDbconn.Instance.GetList<MerchantSign>("MerchantSignList", 1, 10000000);
  97. bool op = signs.Any(m => m.BusinessCode == BusinessCode);
  98. if (!op)
  99. {
  100. RedisDbconn.Instance.AddList("WeChatSignQueue", new MerchantSign()
  101. {
  102. BusinessCode = BusinessCode,
  103. MerchantAddInfoId = MerchantId,
  104. Status = ""
  105. });
  106. }
  107. signs.Clear();
  108. AddInfo.ApplymentId = AddInfo.ApplymentId;
  109. db.SaveChanges();
  110. }
  111. else if (result.Contains("\"message\":"))
  112. {
  113. JsonData jsonObj = JsonMapper.ToObject(result);
  114. AddInfo.Status = -1;
  115. merchant.Status = -1;
  116. AddInfo.WeChatRemark = jsonObj["message"].ToString();
  117. db.SaveChanges();
  118. }
  119. }
  120. //支付宝
  121. if ((Kind == 0 || Kind == 1) && AddInfo.QueryCount <= 0)
  122. {
  123. string content = AlipayFunction.Instance.GetBatchNo(AddInfo.IdCardName, AddInfo.MobilePhone, AddInfo.CreateMan);
  124. JsonData json = JsonMapper.ToObject(content);
  125. if (json["alipay_open_agent_create_response"]["code"].ToString() == "10000")
  126. {
  127. AddInfo.AlipayRemark = "";
  128. AddInfo.QueryCount = 0;
  129. merchant.QueryCount = 0;
  130. db.SaveChanges();
  131. string batch_no = json["alipay_open_agent_create_response"]["batch_no"].ToString();
  132. string Qualifications = AddInfo.Qualifications;
  133. if (!string.IsNullOrEmpty(Qualifications))
  134. {
  135. Qualifications = function.getPath("/" + Qualifications);
  136. }
  137. content = AlipayFunction.Instance.CommonSign(batch_no, AddInfo.UpdateMan, AddInfo.LicenseNumber, AddInfo.LicenseCopy, AddInfo.LicenseCopy, AddInfo.StoreEntrancePic, AddInfo.IndoorPic);
  138. json = JsonMapper.ToObject(content);
  139. if (json["alipay_open_agent_facetoface_sign_response"]["code"].ToString() == "10000")
  140. {
  141. content = AlipayFunction.Instance.AgentConfirm(batch_no);
  142. json = JsonMapper.ToObject(content);
  143. if (json["alipay_open_agent_confirm_response"]["code"].ToString() == "10000")
  144. {
  145. // AddInfo.AlipayAuthToken = json["alipay_open_agent_confirm_response"]["app_auth_token"].ToString();
  146. db.SaveChanges();
  147. RedisDbconn.Instance.AddList("AlipaySignQueue", new MerchantSign()
  148. {
  149. BusinessCode = batch_no,
  150. MerchantAddInfoId = MerchantId,
  151. Status = ""
  152. });
  153. // content = AlipayFunction.Instance.QuerySignStatus(batch_no);
  154. // content = AlipayFunction.Instance.CommonSignConfirm(batch_no);
  155. // json = JsonMapper.ToObject(content);
  156. // if (json["alipay_open_agent_commonsign_confirm_response"]["code"].ToString() == "10000")
  157. // {
  158. // AddInfo.QueryCount = 0;
  159. // AddInfo.SeoTitle = batch_no;
  160. // db.SaveChanges();
  161. // List<MerchantSign> signs = RedisDbconn.Instance.GetList<MerchantSign>("MerchantSignList", 1, 10000000);
  162. // bool op = signs.Any(m => m.BusinessCode == batch_no);
  163. // if (!op)
  164. // {
  165. // RedisDbconn.Instance.AddList("AlipaySignQueue", new MerchantSign()
  166. // {
  167. // BusinessCode = batch_no,
  168. // MerchantAddInfoId = MerchantId,
  169. // Status = ""
  170. // });
  171. // }
  172. // signs.Clear();
  173. // if (db.MerchantInfo.Any(m => m.Id == merchant.Id) == false)
  174. // {
  175. // RedisDbconn.Instance.AddList("MerchantList:" + merchant.UserId, merchant);
  176. // }
  177. // }
  178. // else
  179. // {
  180. // checkAlipay = false;
  181. // }
  182. }
  183. else
  184. {
  185. AddInfo.AlipayRemark = json["alipay_open_agent_confirm_response"]["sub_msg"].ToString();
  186. AddInfo.QueryCount = -1;
  187. merchant.QueryCount = -1;
  188. db.SaveChanges();
  189. }
  190. }
  191. else
  192. {
  193. AddInfo.AlipayRemark = json["alipay_open_agent_facetoface_sign_response"]["sub_msg"].ToString();
  194. AddInfo.QueryCount = -1;
  195. merchant.QueryCount = -1;
  196. db.SaveChanges();
  197. }
  198. }
  199. else
  200. {
  201. AddInfo.AlipayRemark = json["alipay_open_agent_create_response"]["sub_msg"].ToString();
  202. AddInfo.QueryCount = -1;
  203. merchant.QueryCount = -1;
  204. db.SaveChanges();
  205. }
  206. }
  207. }
  208. db.Dispose();
  209. }
  210. }
  211. }