|
@@ -1,4 +1,5 @@
|
|
|
using GxPress.Common.WechatPay;
|
|
|
+using GxPress.Service.Interface.Order;
|
|
|
using Microsoft.AspNetCore.Authorization;
|
|
|
using Microsoft.AspNetCore.Http;
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
@@ -14,16 +15,18 @@ namespace GxPress.Api.WebControllers
|
|
|
{
|
|
|
private IHttpContextAccessor _contextAccessor;
|
|
|
private HttpContext _context { get { return _contextAccessor.HttpContext; } }
|
|
|
- public WxpayController(IHttpContextAccessor contextAccessor)
|
|
|
+ private IOrderService orderService;
|
|
|
+ public WxpayController(IHttpContextAccessor contextAccessor, IOrderService orderService)
|
|
|
{
|
|
|
_contextAccessor = contextAccessor;
|
|
|
+ this.orderService = orderService;
|
|
|
}
|
|
|
[HttpGet()]
|
|
|
[AllowAnonymous]
|
|
|
public string GetNativePayUrl()
|
|
|
{
|
|
|
var nativePay = new NativePay();
|
|
|
- return nativePay.GetPayUrl("637263608658642540","汪峰讲故事",7);
|
|
|
+ return nativePay.GetPayUrl("637263608658642540", "汪峰讲故事", 7);
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 回调地址
|
|
@@ -38,30 +41,39 @@ namespace GxPress.Api.WebControllers
|
|
|
if (!notifyData.IsSet("transaction_id"))
|
|
|
{
|
|
|
//若transaction_id不存在,则立即返回结果给微信支付后台
|
|
|
- WxPayData res = new WxPayData();
|
|
|
- res.SetValue("return_code", "FAIL");
|
|
|
- res.SetValue("return_msg", "支付结果中微信订单号不存在");
|
|
|
- return (res.ToXml());
|
|
|
+ notifyData = new WxPayData();
|
|
|
+ notifyData.SetValue("return_code", "FAIL");
|
|
|
+ notifyData.SetValue("return_msg", "支付结果中微信订单号不存在");
|
|
|
+ return (notifyData.ToXml());
|
|
|
}
|
|
|
string transaction_id = notifyData.GetValue("transaction_id").ToString();
|
|
|
//查询订单,判断订单真实性
|
|
|
if (!Common.WechatPay.WxPayApi.QueryOrder(transaction_id))
|
|
|
{
|
|
|
//若订单查询失败,则立即返回结果给微信支付后台
|
|
|
- WxPayData res = new WxPayData();
|
|
|
- res.SetValue("return_code", "FAIL");
|
|
|
- res.SetValue("return_msg", "订单查询失败");
|
|
|
- return (res.ToXml());
|
|
|
+ notifyData = new WxPayData();
|
|
|
+ notifyData.SetValue("return_code", "FAIL");
|
|
|
+ notifyData.SetValue("return_msg", "订单查询失败");
|
|
|
+ return (notifyData.ToXml());
|
|
|
}
|
|
|
//查询订单成功
|
|
|
else
|
|
|
{
|
|
|
- WxPayData res = new WxPayData();
|
|
|
- res.SetValue("return_code", "SUCCESS");
|
|
|
- res.SetValue("return_msg", "OK");
|
|
|
- return (res.ToXml());
|
|
|
+ notifyData = new WxPayData();
|
|
|
+ //创建订单
|
|
|
+ if (await orderService.InsertWxOrderAsync(notifyData))
|
|
|
+ {
|
|
|
+ notifyData.SetValue("return_code", "SUCCESS");
|
|
|
+ notifyData.SetValue("return_msg", "OK");
|
|
|
+ return (notifyData.ToXml());
|
|
|
+ }
|
|
|
}
|
|
|
+ notifyData = new WxPayData();
|
|
|
+ notifyData.SetValue("return_code", "FAIL");
|
|
|
+ notifyData.SetValue("return_msg", "支付结果中微信订单号不存在");
|
|
|
+ return (notifyData.ToXml());
|
|
|
}
|
|
|
+
|
|
|
private async Task<WxPayData> GetNotifyData()
|
|
|
{
|
|
|
var body = string.Empty;
|