李昊 4 years ago
parent
commit
8308bd4735

+ 1 - 1
gx_api/GxPress/Api/GxPress.Api/WebControllers/AlipayController.cs

@@ -30,7 +30,7 @@ namespace GxPress.Api.WebControllers
         public string GetNativePayUrl()
         {
             var alipay = new PcPay();
-            return alipay.PayRequest("637263608658642543_7", "汪峰讲故事", "0.01", "汪峰讲故事");
+            return alipay.PayRequest("637263608658642543_7", "汪峰讲故事", "0.01", "汪峰讲故事","");
         }
         /// <summary>
         /// 回调地址

+ 23 - 0
gx_api/GxPress/Api/GxPress.Api/WebControllers/PayController.Dto.cs

@@ -0,0 +1,23 @@
+namespace GxPress.Api.WebControllers
+{
+    public partial class PayController
+    {
+
+    }
+    /// <summary>
+    /// 支付地址返回
+    /// </summary>
+    public class PayResult
+    {
+        /// <summary>
+        /// 支付地址
+        /// </summary>
+        /// <value></value>
+        public string PayQrCore { get; set; }
+        /// <summary>
+        /// 订单号微信独有
+        /// </summary>
+        /// <value></value>
+        public string AutoNumber { get; set; }
+    }
+}

+ 30 - 7
gx_api/GxPress/Api/GxPress.Api/WebControllers/PayController.cs

@@ -23,7 +23,7 @@ namespace GxPress.Api.WebControllers
     [Route("api/web/pay")]
     [ApiController]
     [Authorize]
-    public class PayController : Controller
+    public partial class PayController : Controller
     {
         private readonly IOrderService orderService;
         private IHttpContextAccessor _contextAccessor;
@@ -47,8 +47,9 @@ namespace GxPress.Api.WebControllers
         /// <param name="request"></param>
         /// <returns></returns>
         [HttpPost()]
-        public async Task<string> GetNativePayUrl(PayRequest request)
+        public async Task<PayResult> GetNativePayUrl(PayRequest request)
         {
+            var result = new PayResult();
             if (request.PayWayType == 0)
                 throw new BusinessException("支付方式有误");
             var userId = _loginContext.AccountId;
@@ -122,20 +123,42 @@ namespace GxPress.Api.WebControllers
                     if (request.PayWayType == PayWayTypeConst.AliyPay.GetHashCode())
                     {
                         var alipay = new PcPay();
-                        return alipay.PayRequest(attach, title, price.ToString(), title);
+                        result.PayQrCore = alipay.PayRequest(attach, title, price.ToString(), title, request.NotifyUrl);
                     }
                     else
                     {
                         var nativePay = new NativePay();
-                        return nativePay.GetPayUrl(antoNumber, title, attach, Convert.ToInt32(price * 100));
+                        result.PayQrCore = nativePay.GetPayUrl(antoNumber, title, attach, Convert.ToInt32(price * 100));
+                        result.AutoNumber = antoNumber;
                     }
                 }
                 else
                     throw new BusinessException("参数错误");
             }
-            return string.Empty;
-
-
+            return result;
+        }
+        /// <summary>
+        ///  查询订单 是否支付成功
+        /// </summary>
+        /// <param name="antoNumber"></param>
+        /// <returns></returns>
+        [HttpGet("{antoNumber}")]
+        [AllowAnonymous]
+        public async Task<bool> QueryOrder(string antoNumber)
+        {
+            var order = await orderRepository.GetOrderAsync(antoNumber);
+            WxPayData req = new WxPayData();
+            req.SetValue("transaction_id", order.TransactionId);
+            WxPayData res = WxPayApi.OrderQuery(req);
+            if (res.GetValue("return_code").ToString() == "SUCCESS" &&
+                res.GetValue("result_code").ToString() == "SUCCESS")
+            {
+                return true;
+            }
+            else
+            {
+                return false;
+            }
         }
     }
 }

+ 3 - 2
gx_api/GxPress/Infrastructure/GxPress.Common/AliPay/PcPay.cs

@@ -13,8 +13,9 @@ namespace GxPress.Common.AliPay
         /// <param name="subject">订单名称</param>
         /// <param name="totalAmout">付款金额</param>
         /// <param name="itemBody">商品描述</param>
+        /// <param name="notifyUrl">设置异步通知接收地址</param>
         /// <returns></returns>
-        public string PayRequest(string tradeno, string subject, string totalAmout, string itemBody)
+        public string PayRequest(string tradeno, string subject, string totalAmout, string itemBody, string notifyUrl)
         {
             DefaultAopClient client = new DefaultAopClient(Config.Gatewayurl, Config.AppId, Config.PrivateKey, "json", "2.0",
                 Config.SignType, Config.AlipayPublicKey, Config.CharSet, false);
@@ -31,7 +32,7 @@ namespace GxPress.Common.AliPay
             // 设置同步回调地址
             request.SetReturnUrl("http://payzzz.top/api/web/alipay/notify");
             // 设置异步通知接收地址
-            request.SetNotifyUrl("");
+            request.SetNotifyUrl(notifyUrl);
             // 将业务model载入到request
             request.SetBizModel(model);
 

+ 5 - 0
gx_api/GxPress/Model/GxPress.Request/Pay/PayRequest.cs

@@ -20,5 +20,10 @@ namespace GxPress.Request.Pay
         /// </summary>
         /// <value></value>
         public int PayWayType { get; set; }
+        /// <summary>
+        /// 设置异步通知接收地址 支付宝独有
+        /// </summary>
+        /// <value></value>
+        public string NotifyUrl { get; set; }
     }
 }