MerchantConfirmService.cs 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  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, Kind);
  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. RedisDbconn.Instance.Set("MerchantParamSet:" + MerchantId, query);
  69. }
  70. PxcModels.MerchantForMobile merchantForMobile = db.MerchantForMobile.FirstOrDefault(m => m.Mobile == AddInfo.MobilePhone);
  71. if (merchantForMobile == null)
  72. {
  73. merchantForMobile = db.MerchantForMobile.Add(new PxcModels.MerchantForMobile()
  74. {
  75. Mobile = AddInfo.MobilePhone,
  76. }).Entity;
  77. db.SaveChanges();
  78. }
  79. merchantForMobile.MerchantId = MerchantId;
  80. db.SaveChanges();
  81. //微信
  82. if (Kind == 0 || Kind == 2)
  83. {
  84. string result = new WeChatFunction().MerchantCreate(AddInfo, merchant);
  85. if (result.Contains("\"applyment_id\":"))
  86. {
  87. JsonData jsonObj = JsonMapper.ToObject(result);
  88. AddInfo.ApplymentId = jsonObj["applyment_id"].ToString();
  89. AddInfo.Status = 0;
  90. db.SaveChanges();
  91. List<MerchantSign> signs = RedisDbconn.Instance.GetList<MerchantSign>("MerchantSignList", 1, 10000000);
  92. bool op = signs.Any(m => m.BusinessCode == BusinessCode);
  93. if (!op)
  94. {
  95. RedisDbconn.Instance.AddList("WeChatSignQueue", new MerchantSign()
  96. {
  97. BusinessCode = BusinessCode,
  98. MerchantAddInfoId = MerchantId,
  99. Status = ""
  100. });
  101. }
  102. signs.Clear();
  103. AddInfo.ApplymentId = AddInfo.ApplymentId;
  104. AddInfo.Status = AddInfo.Status;
  105. db.SaveChanges();
  106. }
  107. else if (result.Contains("\"message\":"))
  108. {
  109. JsonData jsonObj = JsonMapper.ToObject(result);
  110. AddInfo.Status = -1;
  111. merchant.Status = -1;
  112. string Season = function.CheckNull(AddInfo.SeoDescription);
  113. if (string.IsNullOrEmpty(Season))
  114. {
  115. Season = "WeChat:" + jsonObj["message"].ToString() + ";";
  116. }
  117. else
  118. {
  119. Season = Regex.Replace(Season, "WeChat:.*?;", "");
  120. Season += "WeChat:" + jsonObj["message"].ToString() + ";";
  121. }
  122. AddInfo.SeoDescription = Season;
  123. AddInfo.SeoDescription = AddInfo.SeoDescription;
  124. AddInfo.Status = AddInfo.Status;
  125. db.SaveChanges();
  126. }
  127. }
  128. //支付宝
  129. if (Kind == 0 || Kind == 1)
  130. {
  131. bool checkAlipay = true;
  132. string content = new AlipayFunction().GetBatchNo(AddInfo.CreateMan, AddInfo.IdCardName, AddInfo.MobilePhone, AddInfo.ContactEmail);
  133. JsonData json = JsonMapper.ToObject(content);
  134. if (json["alipay_open_agent_create_response"]["code"].ToString() == "10000")
  135. {
  136. string batch_no = json["alipay_open_agent_create_response"]["batch_no"].ToString();
  137. string Qualifications = AddInfo.Qualifications;
  138. if (!string.IsNullOrEmpty(Qualifications))
  139. {
  140. Qualifications = function.getPath("/bsserver_com" + Qualifications);
  141. }
  142. content = new AlipayFunction().CommonSign(batch_no, AddInfo.UpdateMan, AddInfo.LicenseNumber, function.getPath("/bsserver_com" + AddInfo.LicenseCopy), Qualifications);
  143. json = JsonMapper.ToObject(content);
  144. if (json["alipay_open_agent_common_sign_response"]["code"].ToString() == "10000")
  145. {
  146. content = new AlipayFunction().CommonSignConfirm(batch_no);
  147. json = JsonMapper.ToObject(content);
  148. if (json["alipay_open_agent_commonsign_confirm_response"]["code"].ToString() == "10000")
  149. {
  150. AddInfo.QueryCount = 0;
  151. AddInfo.SeoTitle = batch_no;
  152. db.SaveChanges();
  153. List<MerchantSign> signs = RedisDbconn.Instance.GetList<MerchantSign>("MerchantSignList", 1, 10000000);
  154. bool op = signs.Any(m => m.BusinessCode == batch_no);
  155. if (!op)
  156. {
  157. RedisDbconn.Instance.AddList("AlipaySignQueue", new MerchantSign()
  158. {
  159. BusinessCode = batch_no,
  160. MerchantAddInfoId = MerchantId,
  161. Status = ""
  162. });
  163. }
  164. signs.Clear();
  165. if (db.MerchantInfo.Any(m => m.Id == merchant.Id) == false)
  166. {
  167. RedisDbconn.Instance.AddList("MerchantList:" + merchant.UserId, merchant);
  168. }
  169. }
  170. else
  171. {
  172. checkAlipay = false;
  173. }
  174. }
  175. else
  176. {
  177. checkAlipay = false;
  178. }
  179. }
  180. else
  181. {
  182. checkAlipay = false;
  183. }
  184. if (!checkAlipay)
  185. {
  186. JsonData jsonObj = JsonMapper.ToObject(content);
  187. AddInfo.QueryCount = -1;
  188. merchant.Status = -1;
  189. string Season = function.CheckNull(AddInfo.SeoDescription);
  190. if (string.IsNullOrEmpty(Season))
  191. {
  192. Season = "Alipay:" + jsonObj["alipay_open_agent_create_response"]["sub_msg"].ToString() + ";";
  193. }
  194. else
  195. {
  196. Season = Regex.Replace(Season, "Alipay:.*?;", "");
  197. Season = "Alipay:" + jsonObj["alipay_open_agent_create_response"]["sub_msg"].ToString() + ";" + Season;
  198. }
  199. AddInfo.SeoDescription = Season;
  200. AddInfo.SeoDescription = AddInfo.SeoDescription;
  201. AddInfo.QueryCount = AddInfo.QueryCount;
  202. db.SaveChanges();
  203. }
  204. }
  205. }
  206. db.Dispose();
  207. }
  208. }
  209. }