MerchantConfirmService.cs 9.8 KB

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