WeChatPayBackService.cs 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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(dosomething);
  22. th.IsBackground = true;
  23. th.Start();
  24. }
  25. public void dosomething()
  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. JsonData jsonObj = JsonMapper.ToObject(content);
  36. if (jsonObj.Count > 0)
  37. {
  38. if (jsonObj["event_type"].ToString() == "TRANSACTION.SUCCESS")
  39. {
  40. JsonData resource = jsonObj["resource"];
  41. //开始解密
  42. string WxPayResourceDecryptModel = AesGcmDecrypt(resource["associated_data"].ToString(), resource["nonce"].ToString(), resource["ciphertext"].ToString());
  43. // {\"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\"}}
  44. JsonData orderObj = JsonMapper.ToObject(WxPayResourceDecryptModel);
  45. string OrderNo = orderObj["out_trade_no"].ToString();
  46. string TradeNo = orderObj["transaction_id"].ToString();
  47. WebCMSEntities db = new WebCMSEntities();
  48. ConsumerOrderForNo forNo = db.ConsumerOrderForNo.FirstOrDefault(m => m.OrderNo == OrderNo);
  49. if (forNo != null)
  50. {
  51. ConsumerOrders order = db.ConsumerOrders.FirstOrDefault(m => m.Id == forNo.OrderIds && m.Status == 0);
  52. if (order != null)
  53. {
  54. order.Status = 1;
  55. order.UpdateDate = DateTime.Now;
  56. order.PayMoney = order.PayMoney;
  57. order.MaxDivi = order.MaxDivi;
  58. order.SeoTitle = TradeNo;
  59. MerchantInfo merchant = db.MerchantInfo.FirstOrDefault(m => m.Id == order.MerchantId) ?? new MerchantInfo();
  60. order.UserId = merchant.UserId;
  61. db.SaveChanges();
  62. if(order.IsAct == 1)
  63. {
  64. MerchantAddInfo merchantAdd = db.MerchantAddInfo.FirstOrDefault(m => m.Id == order.MerchantId) ?? new MerchantAddInfo();
  65. //添加分账接收方
  66. if(merchant.Version == 0)
  67. {
  68. WeChatFunction.Instance.AddReceive(merchantAdd.SubMchid, "MERCHANT_ID", WeChatFunction.Instance.MchId, "四川客小爽科技有限公司", "PARTNER");
  69. merchantAdd.Version = 1;
  70. db.SaveChanges();
  71. }
  72. //发起分账
  73. decimal fee = order.PayMoney * 0.62M; //单位:分
  74. if(fee >= 1)
  75. {
  76. List<ReceiverList> Receivers = new List<ReceiverList>();
  77. Receivers.Add(new ReceiverList()
  78. {
  79. type = "MERCHANT_ID", //分账接收方类型
  80. account = WeChatFunction.Instance.MchId, //分账接收方账号
  81. amount = int.Parse(fee.ToString("f2")), //分账金额
  82. description = "服务费", //分账描述
  83. });
  84. WeChatFunction.Instance.ProfitShare(merchantAdd.SubMchid, TradeNo, OrderNo, Receivers);
  85. }
  86. RedisDbconn.Instance.AddList("ConsumerOrders:Divi:List", order.Id.ToString());
  87. RedisDbconn.Instance.AddRightList("ConsumerOrders:Divi:" + order.MerchantId, order);
  88. }
  89. }
  90. }
  91. db.Dispose();
  92. }
  93. }
  94. }
  95. catch (Exception ex)
  96. {
  97. function.WriteLog(DateTime.Now.ToString() + ":" + ex.ToString(), "微信支付回调异常");
  98. }
  99. }
  100. else
  101. {
  102. Thread.Sleep(2000);
  103. }
  104. }
  105. }
  106. private string ALGORITHM = "AES/GCM/NoPadding";
  107. private int TAG_LENGTH_BIT = 128;
  108. private int NONCE_LENGTH_BYTE = 12;
  109. public string AesGcmDecrypt(string associatedData, string nonce, string ciphertext)
  110. {
  111. GcmBlockCipher gcmBlockCipher = new GcmBlockCipher(new AesEngine());
  112. AeadParameters aeadParameters = new AeadParameters(
  113. new KeyParameter(Encoding.UTF8.GetBytes(AppConfig.WeChatParam.AesGemKey)),
  114. 128,
  115. Encoding.UTF8.GetBytes(nonce),
  116. Encoding.UTF8.GetBytes(associatedData));
  117. gcmBlockCipher.Init(false, aeadParameters);
  118. byte[] data = Convert.FromBase64String(ciphertext);
  119. byte[] plaintext = new byte[gcmBlockCipher.GetOutputSize(data.Length)];
  120. int length = gcmBlockCipher.ProcessBytes(data, 0, data.Length, plaintext, 0);
  121. gcmBlockCipher.DoFinal(plaintext, length);
  122. return Encoding.UTF8.GetString(plaintext);
  123. }
  124. }
  125. }