WeChatPayBackService.cs 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. using System;
  2. using System.Collections.Generic;
  3. using Library;
  4. using LitJson;
  5. using System.Linq;
  6. using MySystem.PxcModels;
  7. using Org.BouncyCastle.Crypto.Modes;
  8. using Org.BouncyCastle.Crypto.Engines;
  9. using Org.BouncyCastle.Crypto.Parameters;
  10. using System.Text;
  11. using System.Threading;
  12. namespace MySystem
  13. {
  14. public class WeChatPayBackService
  15. {
  16. public readonly static WeChatPayBackService Instance = new WeChatPayBackService();
  17. private WeChatPayBackService()
  18. { }
  19. public void Start()
  20. {
  21. Thread th = new Thread(Listen);
  22. th.IsBackground = true;
  23. th.Start();
  24. }
  25. public void Listen()
  26. {
  27. bool op = true;
  28. while (op)
  29. {
  30. string content = RedisDbconn.Instance.RPop<string>("WeChatPayBack");
  31. if (!string.IsNullOrEmpty(content))
  32. {
  33. try
  34. {
  35. dosomething(content);
  36. }
  37. catch (Exception ex)
  38. {
  39. function.WriteLog(DateTime.Now.ToString() + ":" + ex.ToString(), "微信支付回调异常");
  40. }
  41. }
  42. else
  43. {
  44. Thread.Sleep(2000);
  45. }
  46. }
  47. }
  48. public void dosomething(string content)
  49. {
  50. JsonData jsonObj = JsonMapper.ToObject(content);
  51. if (jsonObj.Count > 0)
  52. {
  53. if (jsonObj["event_type"].ToString() == "TRANSACTION.SUCCESS")
  54. {
  55. JsonData resource = jsonObj["resource"];
  56. //开始解密
  57. string WxPayResourceDecryptModel = AesGcmDecrypt(resource["associated_data"].ToString(), resource["nonce"].ToString(), resource["ciphertext"].ToString());
  58. // {\"sp_mchid\":\"1611167423\",\"sub_mchid\":\"1622024882\",\"sp_appid\":\"wxe2c051b3e46c0f6f\",\"out_trade_no\":\"2022022621562926396898863\",\"transaction_id\":\"4200001412202202267619496496\",\"trade_type\":\"JSAPI\",\"trade_state\":\"SUCCESS\",\"trade_state_desc\":\"支付成功\",\"bank_type\":\"OTHERS\",\"attach\":\"\",\"success_time\":\"2022-02-26T21:56:42+08:00\",\"payer\":{\"sp_openid\":\"omawy5W6jb0pgPfuKUVs6K3bEhzk\",\"sub_openid\":\"\"},\"amount\":{\"total\":1,\"payer_total\":1,\"currency\":\"CNY\",\"payer_currency\":\"CNY\"}}
  59. JsonData orderObj = JsonMapper.ToObject(WxPayResourceDecryptModel);
  60. string OrderNo = orderObj["out_trade_no"].ToString();
  61. string TradeNo = orderObj["transaction_id"].ToString();
  62. WebCMSEntities db = new WebCMSEntities();
  63. ConsumerOrderForNo forNo = db.ConsumerOrderForNo.FirstOrDefault(m => m.OrderNo == OrderNo);
  64. if (forNo != null)
  65. {
  66. ConsumerOrders order = db.ConsumerOrders.FirstOrDefault(m => m.Id == forNo.OrderIds && m.Status == 0);
  67. if (order != null)
  68. {
  69. order.Status = 1;
  70. order.UpdateDate = DateTime.Now;
  71. order.PayMoney = order.PayMoney;
  72. order.MaxDivi = order.MaxDivi;
  73. order.SeoTitle = TradeNo;
  74. MerchantInfo merchant = db.MerchantInfo.FirstOrDefault(m => m.Id == order.MerchantId) ?? new MerchantInfo();
  75. order.UserId = merchant.UserId;
  76. db.SaveChanges();
  77. MerchantParamSet set = db.MerchantParamSet.FirstOrDefault(m => m.Id == order.MerchantId) ?? new MerchantParamSet();
  78. if(order.IsAct == 1 && order.PayMoney >= set.MinPayMoney)
  79. {
  80. MerchantAddInfo merchantAdd = db.MerchantAddInfo.FirstOrDefault(m => m.Id == order.MerchantId) ?? new MerchantAddInfo();
  81. //添加分账接收方
  82. if(merchant.Version == 0)
  83. {
  84. WeChatFunction.Instance.AddReceive(merchantAdd.SubMchid, "MERCHANT_ID", WeChatFunction.Instance.MchId, "四川客小爽科技有限公司", "PARTNER");
  85. merchantAdd.Version = 1;
  86. db.SaveChanges();
  87. }
  88. //发起分账
  89. decimal fee = order.PayMoney; //单位:分
  90. if(fee >= 1)
  91. {
  92. List<ReceiverList> Receivers = new List<ReceiverList>();
  93. Receivers.Add(new ReceiverList()
  94. {
  95. type = "MERCHANT_ID", //分账接收方类型
  96. account = WeChatFunction.Instance.MchId, //分账接收方账号
  97. amount = int.Parse(fee.ToString("f0")), //分账金额
  98. description = "服务费", //分账描述
  99. });
  100. WeChatFunction.Instance.ProfitShare(merchantAdd.SubMchid, TradeNo, OrderNo, Receivers);
  101. }
  102. RedisDbconn.Instance.AddList("ConsumerOrders:Divi:List", order.Id.ToString());
  103. RedisDbconn.Instance.AddRightList("ConsumerOrders:Divi:" + order.MerchantId, order);
  104. }
  105. }
  106. }
  107. db.Dispose();
  108. }
  109. }
  110. }
  111. private string ALGORITHM = "AES/GCM/NoPadding";
  112. private int TAG_LENGTH_BIT = 128;
  113. private int NONCE_LENGTH_BYTE = 12;
  114. public string AesGcmDecrypt(string associatedData, string nonce, string ciphertext)
  115. {
  116. GcmBlockCipher gcmBlockCipher = new GcmBlockCipher(new AesEngine());
  117. AeadParameters aeadParameters = new AeadParameters(
  118. new KeyParameter(Encoding.UTF8.GetBytes(AppConfig.WeChatParam.AesGemKey)),
  119. 128,
  120. Encoding.UTF8.GetBytes(nonce),
  121. Encoding.UTF8.GetBytes(associatedData));
  122. gcmBlockCipher.Init(false, aeadParameters);
  123. byte[] data = Convert.FromBase64String(ciphertext);
  124. byte[] plaintext = new byte[gcmBlockCipher.GetOutputSize(data.Length)];
  125. int length = gcmBlockCipher.ProcessBytes(data, 0, data.Length, plaintext, 0);
  126. gcmBlockCipher.DoFinal(plaintext, length);
  127. return Encoding.UTF8.GetString(plaintext);
  128. }
  129. }
  130. }