PayController.cs 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. using System;
  2. using System.Threading.Tasks;
  3. using GxPress.Auth;
  4. using GxPress.Common.AliPay;
  5. using GxPress.Common.Exceptions;
  6. using GxPress.Common.Tools;
  7. using GxPress.Common.WechatPay;
  8. using GxPress.EnumConst;
  9. using GxPress.Repository.Interface.Media;
  10. using GxPress.Repository.Interface.VipEquity;
  11. using GxPress.Request.Pay;
  12. using GxPress.Service.Interface.Order;
  13. using Microsoft.AspNetCore.Authorization;
  14. using Microsoft.AspNetCore.Http;
  15. using Microsoft.AspNetCore.Mvc;
  16. using GxPress.Repository.Interface.Order;
  17. namespace GxPress.Api.WebControllers
  18. {
  19. /// <summary>
  20. /// 支付接口
  21. /// </summary>
  22. [Route("api/web/pay")]
  23. [ApiController]
  24. [Authorize]
  25. public partial class PayController : Controller
  26. {
  27. private readonly IOrderService orderService;
  28. private IHttpContextAccessor _contextAccessor;
  29. private readonly ILoginContext _loginContext;
  30. private HttpContext _context { get { return _contextAccessor.HttpContext; } }
  31. private readonly IMediaRepository mediaRepository;
  32. private readonly IVipEquityRepository vipEquityRepository;
  33. private IOrderRepository orderRepository;
  34. public PayController(IOrderService orderService, IHttpContextAccessor contextAccessor, ILoginContext _loginContext, IMediaRepository mediaRepository, IVipEquityRepository vipEquityRepository, IOrderRepository orderRepository)
  35. {
  36. this.orderService = orderService;
  37. _contextAccessor = contextAccessor;
  38. this._loginContext = _loginContext;
  39. this.mediaRepository = mediaRepository;
  40. this.vipEquityRepository = vipEquityRepository;
  41. this.orderRepository = orderRepository;
  42. }
  43. /// <summary>
  44. /// 统一的返回支付地址
  45. /// </summary>
  46. /// <param name="request"></param>
  47. /// <returns></returns>
  48. [HttpPost()]
  49. public async Task<PayResult> GetNativePayUrl(PayRequest request)
  50. {
  51. var result = new PayResult();
  52. if (request.PayWayType == 0)
  53. throw new BusinessException("支付方式有误");
  54. var userId = _loginContext.AccountId;
  55. if (userId == 0)
  56. _context.Response.StatusCode = LoginCodeConst.UnLogin.GetHashCode();
  57. else
  58. {
  59. decimal price = 0;
  60. var title = string.Empty;
  61. var antoNumber =SnowflakeHelper.MakeSnowflake();
  62. var attach = antoNumber;
  63. if (request.MediaId > 0 || request.VipType > 0)
  64. {
  65. //商品
  66. if (request.MediaId > 0)
  67. {
  68. var media = await mediaRepository.GetAsync(request.MediaId);
  69. if (media == null)
  70. throw new BusinessException("服务器异常");
  71. price = decimal.Parse("0.01");
  72. //创建订单
  73. var order = new Entity.Order.Order()
  74. {
  75. IsRefund = false,
  76. PayWay = request.PayWayType,
  77. OrderType = 1,
  78. IsVip = false,
  79. MediaId = media.Id,
  80. OrderNumber = antoNumber,
  81. UserId = userId,
  82. Name = _loginContext.Name,
  83. Explain = media.Title,
  84. Price = price,
  85. IsSuccess = false
  86. };
  87. var orderId = await orderRepository.InsertAsync(order);
  88. if (orderId <= 0)
  89. throw new BusinessException("服务器异常");
  90. title = media.Title;
  91. }
  92. //权益
  93. if (request.VipType > 0)
  94. {
  95. var vipEquity = await vipEquityRepository.GetByVipTypeAsync(request.VipType);
  96. if (vipEquity == null)
  97. throw new BusinessException("不存在权益");
  98. var vipTypeConst = ((VipCardTypeConst)vipEquity.VipType);
  99. if (vipTypeConst.GetHashCode() == 0)
  100. throw new BusinessException("服务器异常");
  101. // attach = $"{antoNumber}_{userId}_{PayUrlRequetTypeConst.Vip.GetHashCode()}_{vipEquity.Id}";
  102. price = decimal.Parse("0.01");
  103. var order = new Entity.Order.Order()
  104. {
  105. IsRefund = false,
  106. PayWay = request.PayWayType,
  107. OrderType = 2,
  108. IsVip = false,
  109. MediaId = vipEquity.Id,
  110. OrderNumber = antoNumber,
  111. UserId = userId,
  112. Name = _loginContext.Name,
  113. Explain = vipTypeConst.GetDescriptionOriginal(),
  114. Price = price,
  115. IsSuccess = false
  116. };
  117. var orderId = await orderRepository.InsertAsync(order);
  118. if (orderId <= 0)
  119. throw new BusinessException("服务器异常");
  120. title = vipTypeConst.GetDescriptionOriginal();
  121. }
  122. //支付宝
  123. if (request.PayWayType == PayWayTypeConst.AliyPay.GetHashCode())
  124. {
  125. var alipay = new PcPay();
  126. result.PayQrCore = alipay.PayRequest(attach, title, price.ToString(), title, request.NotifyUrl);
  127. }
  128. else
  129. {
  130. var nativePay = new NativePay();
  131. result.PayQrCore = nativePay.GetPayUrl(antoNumber, title, attach, Convert.ToInt32(price * 100));
  132. result.AutoNumber = antoNumber;
  133. }
  134. }
  135. else
  136. throw new BusinessException("参数错误");
  137. }
  138. return result;
  139. }
  140. /// <summary>
  141. /// 查询订单 是否支付成功
  142. /// </summary>
  143. /// <param name="antoNumber"></param>
  144. /// <returns></returns>
  145. [HttpGet("{antoNumber}")]
  146. [AllowAnonymous]
  147. public async Task<bool> QueryOrder(string antoNumber)
  148. {
  149. var order = await orderRepository.GetOrderAsync(antoNumber);
  150. if (string.IsNullOrEmpty(order.TransactionId))
  151. return false;
  152. WxPayData req = new WxPayData();
  153. req.SetValue("transaction_id", order.TransactionId);
  154. WxPayData res = WxPayApi.OrderQuery(req);
  155. if (res.GetValue("return_code").ToString() == "SUCCESS" &&
  156. res.GetValue("result_code").ToString() == "SUCCESS")
  157. {
  158. return true;
  159. }
  160. else
  161. {
  162. return false;
  163. }
  164. }
  165. }
  166. }