AlipayPayBackService.cs 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using MySystem.PxcModels;
  5. using Library;
  6. using LitJson;
  7. namespace MySystem
  8. {
  9. public class AlipayPayBackService
  10. {
  11. public readonly static AlipayPayBackService Instance = new AlipayPayBackService();
  12. private AlipayPayBackService()
  13. { }
  14. public void Start()
  15. {
  16. try
  17. {
  18. dosomething();
  19. }
  20. catch (Exception ex)
  21. {
  22. function.WriteLog(DateTime.Now.ToString() + ":" + ex.ToString(), "支付回调异常");
  23. }
  24. }
  25. private void dosomething()
  26. {
  27. bool op = true;
  28. while (op)
  29. {
  30. string content = RedisDbconn.Instance.RPop<string>("PayCallBack");
  31. if (!string.IsNullOrEmpty(content))
  32. {
  33. bool pass = true;
  34. string[] datalist = content.Split(new string[] { "#cut#" }, StringSplitOptions.None);
  35. JsonData jsonObj = JsonMapper.ToObject(datalist[1]);
  36. string OrderNo = "";
  37. if(datalist[0] == "wechat")
  38. {
  39. if(jsonObj["event_type"].ToString() != "TRANSACTION.SUCCESS")
  40. {
  41. pass = false;
  42. }
  43. string ciphertext = jsonObj["resource"]["ciphertext"].ToString();
  44. OrderNo = "";
  45. }
  46. if(pass)
  47. {
  48. WebCMSEntities db = new WebCMSEntities();
  49. ConsumerOrderForNo forNo = db.ConsumerOrderForNo.FirstOrDefault(m => m.OrderNo == OrderNo);
  50. if (forNo != null)
  51. {
  52. ConsumerOrders order = db.ConsumerOrders.FirstOrDefault(m => m.Id == forNo.OrderIds && m.Status == 0);
  53. if (order != null)
  54. {
  55. order.Status = 1;
  56. order.UpdateDate = DateTime.Now;
  57. order.PayMoney = order.PayMoney;
  58. order.MaxDivi = order.MaxDivi;
  59. db.SaveChanges();
  60. RedisDbconn.Instance.AddList("ConsumerOrders:Divi:1:List", order.Id.ToString());
  61. // RedisDbconn.Instance.AddRightList("ConsumerOrders:Divi:1:" + order.MerchantId, order);
  62. // ConsumerOrdersStatService.Instance.Stat(order);
  63. }
  64. }
  65. db.Dispose();
  66. }
  67. }
  68. else
  69. {
  70. op = false;
  71. }
  72. }
  73. }
  74. }
  75. }