|
@@ -1,8 +1,10 @@
|
|
|
using GxPress.Common.WechatPay;
|
|
|
+using GxPress.Repository.Interface.Order;
|
|
|
using GxPress.Service.Interface.Order;
|
|
|
using Microsoft.AspNetCore.Authorization;
|
|
|
using Microsoft.AspNetCore.Http;
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
+using System;
|
|
|
using System.IO;
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
@@ -15,18 +17,21 @@ namespace GxPress.Api.WebControllers
|
|
|
{
|
|
|
private IHttpContextAccessor _contextAccessor;
|
|
|
private HttpContext _context { get { return _contextAccessor.HttpContext; } }
|
|
|
+
|
|
|
+ private readonly IOrderRepository orderRepository;
|
|
|
private IOrderService orderService;
|
|
|
- public WxpayController(IHttpContextAccessor contextAccessor, IOrderService orderService)
|
|
|
+ public WxpayController(IHttpContextAccessor contextAccessor, IOrderService orderService, IOrderRepository orderRepository)
|
|
|
{
|
|
|
_contextAccessor = contextAccessor;
|
|
|
this.orderService = orderService;
|
|
|
+ this.orderRepository = orderRepository;
|
|
|
}
|
|
|
[HttpGet()]
|
|
|
[AllowAnonymous]
|
|
|
public string GetNativePayUrl()
|
|
|
{
|
|
|
var nativePay = new NativePay();
|
|
|
- return nativePay.GetPayUrl("637263608658642540", "汪峰讲故事", 7);
|
|
|
+ return nativePay.GetPayUrl("637263608658642540", "汪峰讲故事", 7, 1);
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 回调地址
|
|
@@ -73,7 +78,20 @@ namespace GxPress.Api.WebControllers
|
|
|
notifyData.SetValue("return_msg", "支付结果中微信订单号不存在");
|
|
|
return (notifyData.ToXml());
|
|
|
}
|
|
|
-
|
|
|
+ /// <summary>
|
|
|
+ /// 退款
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="orderNumber"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ [HttpGet("{orderNumber}")]
|
|
|
+ [AllowAnonymous]
|
|
|
+ public async Task<string> Refund(string orderNumber)
|
|
|
+ {
|
|
|
+ var order = await orderRepository.GetOrderAsync(orderNumber);
|
|
|
+ var nativePay = new NativePay();
|
|
|
+ var price = Convert.ToInt32((order.Price) * 100).ToString();
|
|
|
+ return nativePay.Refund(order.TransactionId, order.OutTradeNo, price, price);
|
|
|
+ }
|
|
|
private async Task<WxPayData> GetNotifyData()
|
|
|
{
|
|
|
var body = string.Empty;
|