hrjy 3 年之前
父節點
當前提交
0151dc8803

+ 33 - 0
app/api/controller/AlipayController.php

@@ -0,0 +1,33 @@
+<?php
+
+namespace app\api\controller;
+
+use app\Request;
+use crmeb\repositories\PaymentRepositories;
+use crmeb\services\AlipayService;
+use crmeb\services\SystemConfigService;
+use crmeb\utils\Hook;
+
+class AlipayController
+{
+    public function Notify()
+    {
+        $alipay = SystemConfigService::more(['alipay_app_id', 'alipay_pub_key', 'alipay_private_key', 'alipay_key']);
+        $Pay = new AlipayService();
+        $Pay->setAlipayPublicKey($alipay['alipay_key']);
+        $result = $Pay->rsaCheck($_POST, $_POST['sign_type']);
+        if ($result === true && $_POST['trade_status'] == 'TRADE_SUCCESS') {
+            $out_trade_no = input('out_trade_no', '');
+            if (($count = strpos(input('out_trade_no'), '_')) !== false) {
+                $out_trade_no = substr(input('out_trade_no'), $count + 1);
+            }
+            parse_str(input('passback_params'), $attach);
+            (new Hook(PaymentRepositories::class, 'wechat'))->listen($attach['attach'], $out_trade_no);
+            echo 'success';
+            exit();
+        } else {
+            echo 'error';
+            exit();
+        }
+    }
+}

+ 46 - 0
app/api/controller/order/StoreOrderController.php

@@ -241,6 +241,29 @@ class StoreOrderController
                 case 'offline':
                     return app('json')->status('success', '订单创建成功', $info);
                     break;
+                case "ali":
+                    $orderInfo = StoreOrder::where('order_id', $orderId)->find();
+                    if (!$orderInfo || !isset($orderInfo['paid'])) return app('json')->fail('支付订单不存在!');
+                    $orderInfo = $orderInfo->toArray();
+                    if ($orderInfo['paid']) return app('json')->fail('支付已支付!');
+                    //支付金额为0
+                    if (bcsub((float)$orderInfo['pay_price'], 0, 2) <= 0) {
+                        //创建订单jspay支付
+                        $payPriceStatus = StoreOrder::jsPayPrice($orderId, $request->uid());
+                        if ($payPriceStatus)//0元支付成功
+                            return app('json')->status('success', '支付成功');
+                        else
+                            return app('json')->status('pay_error', StoreOrder::getErrorInfo());
+                    } else {
+                        try {
+                            $jsConfig = OrderRepository::aliPay($orderId); //创建订单jspay
+                        } catch (\Exception $e) {
+                            return app('json')->status('pay_error', $e->getMessage());
+                        }
+                        $info['jsConfig'] = $jsConfig;
+                        return app('json')->status('ali_pay', '订单创建成功', $info);
+                    }
+                    break;
             }
         } else return app('json')->fail(StoreOrder::getErrorInfo('订单生成失败!'));
     }
@@ -345,6 +368,29 @@ class StoreOrderController
                 else
                     return app('json')->status('success', '支付失败');
                 break;
+            case "ali":
+                $orderInfo = StoreOrder::where('order_id', $order['order_id'])->find();
+                if (!$orderInfo || !isset($orderInfo['paid'])) return app('json')->fail('支付订单不存在!');
+                $orderInfo = $orderInfo->toArray();
+                if ($orderInfo['paid']) return app('json')->fail('支付已支付!');
+                //支付金额为0
+                if (bcsub((float)$orderInfo['pay_price'], 0, 2) <= 0) {
+                    //创建订单jspay支付
+                    $payPriceStatus = StoreOrder::jsPayPrice($order['order_id'], $request->uid());
+                    if ($payPriceStatus)//0元支付成功
+                        return app('json')->status('success', '支付成功');
+                    else
+                        return app('json')->status('pay_error', StoreOrder::getErrorInfo());
+                } else {
+                    try {
+                        $jsConfig = OrderRepository::aliPay($order['order_id']); //创建订单jspay
+                    } catch (\Exception $e) {
+                        return app('json')->status('pay_error', $e->getMessage());
+                    }
+                    $info['jsConfig'] = $jsConfig;
+                    return app('json')->status('ali_pay', '订单创建成功', $info);
+                }
+                break;
         }
         return app('json')->fail('支付方式错误');
     }

+ 32 - 0
app/api/controller/user/UserRechargeController.php

@@ -2,9 +2,11 @@
 
 namespace app\api\controller\user;
 
+use app\models\store\StoreOrder;
 use app\models\system\SystemGroupData;
 use app\models\user\UserRecharge;
 use app\Request;
+use crmeb\repositories\OrderRepository;
 use crmeb\services\GroupDataService;
 use crmeb\services\SystemConfigService;
 use crmeb\services\UtilService;
@@ -102,6 +104,36 @@ class UserRechargeController
                 else
                     return app('json')->fail(UserRecharge::getErrorInfo());
                 break;
+            case 2: //支付宝
+                $paid_price = 0;
+                if ($recharId) {
+                    $data = SystemGroupData::getDateValue($recharId);
+                    if ($data === false) {
+                        return app('json')->fail('您选择的充值方式已下架!');
+                    } else {
+                        $paid_price = $data['give_money'] ?? 0;
+                    }
+                }
+                $rechargeOrder = UserRecharge::addRecharge($request->uid(), $price, 'alipay', $paid_price);
+                if (!$rechargeOrder) return app('json')->fail('充值订单生成失败!');
+                //支付金额为0
+                if (bcsub((float)$rechargeOrder['price'], 0, 2) <= 0) {
+                    //创建订单jspay支付
+                    $payPriceStatus = StoreOrder::jsPayPrice($rechargeOrder['order_id'], $request->uid());
+                    if ($payPriceStatus)//0元支付成功
+                        return app('json')->status('success', '支付成功');
+                    else
+                        return app('json')->status('pay_error', StoreOrder::getErrorInfo());
+                } else {
+                    try {
+                        $jsConfig = OrderRepository::aliPay($rechargeOrder['order_id']); //创建订单jspay
+                    } catch (\Exception $e) {
+                        return app('json')->status('pay_error', $e->getMessage());
+                    }
+                    $info['jsConfig'] = $jsConfig;
+                    return app('json')->status('ali_pay', '订单创建成功', $info);
+                }
+                break;
             default:
                 return app('json')->fail('缺少参数');
                 break;

+ 29 - 0
crmeb/repositories/OrderRepository.php

@@ -6,7 +6,9 @@ use app\models\store\StoreOrder;
 use app\models\user\User;
 use app\models\user\WechatUser;
 use app\admin\model\order\StoreOrder as AdminStoreOrder;
+use crmeb\services\AlipayService;
 use crmeb\services\MiniProgramService;
+use crmeb\services\SystemConfigService;
 use crmeb\services\WechatService;
 
 /**
@@ -185,4 +187,31 @@ class OrderRepository
 
     }
 
+
+    public static function aliPay($orderId, $field = 'order_id')
+    {
+        if (is_string($orderId))
+            $orderInfo = StoreOrder::where($field, $orderId)->where('is_del', 0)->find();
+        else
+            $orderInfo = $orderId;
+        if (!$orderInfo || !isset($orderInfo['paid'])) exception('支付订单不存在!');
+        if ($orderInfo['paid']) exception('支付已支付!');
+        if ($orderInfo['pay_price'] <= 0) exception('该支付无需支付!');
+        $bodyContent = StoreOrder::getProductTitle($orderInfo['cart_id']);
+        $site_name = sys_config('site_name');
+        if (!$site_name || !$bodyContent) exception('支付参数缺少:请前往后台设置->系统设置-> 填写 网站名称');
+        $alipay = SystemConfigService::more(['alipay_app_id', 'alipay_pub_key', 'alipay_private_key', 'alipay_key']);
+        $notifyUrl = sys_config('site_url') . '/api/alipay/notify';
+        $aliPay = new AlipayService();
+        $aliPay->setAppid($alipay['alipay_app_id']);
+        $aliPay->setNotifyUrl($notifyUrl);
+        $aliPay->setRsaPrivateKey($alipay['alipay_private_key']);
+        $aliPay->setTotalFee($orderInfo['pay_price']);
+        $aliPay->setOutTradeNo($orderInfo['order_id']);
+        $aliPay->setOrderName(StoreOrder::getSubstrUTf8($site_name . ' - ' . $bodyContent, 30));
+        $aliPay->setPassbackParams(['attach' => 'product']);
+        $orderStr = $aliPay->getOrderStr();
+        return $orderStr;
+    }
+
 }

+ 59 - 31
crmeb/services/AlipayService.php

@@ -1,4 +1,5 @@
 <?php
+
 namespace crmeb\services;
 class AlipayService
 {
@@ -11,101 +12,117 @@ class AlipayService
     protected $totalFee;
     protected $outTradeNo;
     protected $orderName;
-    protected $passback_params=[];
+    protected $passback_params = [];
+
     public function __construct()
     {
         $this->charset = 'utf-8';
     }
+
     public function setAppid($appid)
     {
         $this->appId = $appid;
     }
+
     public function setNotifyUrl($notifyUrl)
     {
         $this->notifyUrl = $notifyUrl;
     }
+
     public function setRsaPrivateKey($saPrivateKey)
     {
         $this->rsaPrivateKey = $saPrivateKey;
     }
-    public function  setAlipayPublicKey($alipayPublicKey)
+
+    public function setAlipayPublicKey($alipayPublicKey)
     {
         $this->alipayPublicKey = $alipayPublicKey;
     }
+
     public function setTotalFee($payAmount)
     {
         $this->totalFee = $payAmount;
     }
+
     public function setOutTradeNo($outTradeNo)
     {
         $this->outTradeNo = $outTradeNo;
     }
+
     public function setOrderName($orderName)
     {
         $this->orderName = $orderName;
     }
+
     public function setPassbackParams($passback_params)
     {
         $this->passback_params = $passback_params;
     }
+
     /**
      * 获取orderStr
-     * @return array
+     * @return string
      */
     public function getOrderStr()
     {
         //请求参数
         $requestConfigs = array(
-            'out_trade_no'=>$this->outTradeNo,
-            'total_amount'=>$this->totalFee, //单位 元
-            'subject'=>$this->orderName,  //订单标题
-            'product_code'=>'QUICK_MSECURITY_PAY', //销售产品码,商家和支付宝签约的产品码,为固定值QUICK_MSECURITY_PAY
-            'timeout_express'=>'2h',       //该笔订单允许的最晚付款时间,逾期将关闭交易。取值范围:1m~15d。m-分钟,h-小时,d-天,1c-当天(1c-当天的情况下,无论交易何时创建,都在0点关闭)。 该参数数值不接受小数点, 如 1.5h,可转换为 90m。
+            'out_trade_no' => $this->outTradeNo,
+            'total_amount' => $this->totalFee, //单位 元
+            'subject' => $this->orderName,  //订单标题
+            'product_code' => 'QUICK_MSECURITY_PAY', //销售产品码,商家和支付宝签约的产品码,为固定值QUICK_MSECURITY_PAY
+            'timeout_express' => '15m',       //该笔订单允许的最晚付款时间,逾期将关闭交易。取值范围:1m~15d。m-分钟,h-小时,d-天,1c-当天(1c-当天的情况下,无论交易何时创建,都在0点关闭)。 该参数数值不接受小数点, 如 1.5h,可转换为 90m。
 //            'store_id'=>'',                 //商户门店编号。该参数用于请求参数中以区分各门店,非必传项。
 //            'extend_params'=>array(
 //                'sys_service_provider_id'=>''       //系统商编号,该参数作为系统商返佣数据提取的依据,请填写系统商签约协议的PID
 //            )
-            'passback_params'=>http_build_query($this->passback_params),
+            'passback_params' => http_build_query($this->passback_params),
         );
         $commonConfigs = array(
             //公共参数
             'app_id' => $this->appId,
             'method' => 'alipay.trade.app.pay',             //接口名称
             'format' => 'JSON',
-            'charset'=>$this->charset,
-            'sign_type'=>'RSA2',
-            'timestamp'=>date('Y-m-d H:i:s'),
-            'version'=>'1.0',
+            'charset' => $this->charset,
+            'sign_type' => 'RSA2',
+            'timestamp' => date('Y-m-d H:i:s'),
+            'version' => '1.0',
             'notify_url' => $this->notifyUrl,
-            'biz_content'=>json_encode($requestConfigs),
+            'biz_content' => json_encode($requestConfigs),
         );
         $commonConfigs["sign"] = $this->generateSign($commonConfigs, $commonConfigs['sign_type']);
         $result = $this->buildOrderStr($commonConfigs);
         return $result;
     }
-    public function generateSign($params, $signType = "RSA") {
+
+    public function generateSign($params, $signType = "RSA")
+    {
         return $this->sign($this->getSignContent($params), $signType);
     }
-    protected function sign($data, $signType = "RSA") {
-        $priKey=$this->rsaPrivateKey;
+
+    protected function sign($data, $signType = "RSA")
+    {
+        $priKey = $this->rsaPrivateKey;
         $res = "-----BEGIN RSA PRIVATE KEY-----\n" .
             wordwrap($priKey, 64, "\n", true) .
             "\n-----END RSA PRIVATE KEY-----";
         ($res) or die('您使用的私钥格式错误,请检查RSA私钥配置');
         if ("RSA2" == $signType) {
-            openssl_sign($data, $sign, $res, version_compare(PHP_VERSION,'5.4.0', '<') ? SHA256 : OPENSSL_ALGO_SHA256); //OPENSSL_ALGO_SHA256是php5.4.8以上版本才支持
+            openssl_sign($data, $sign, $res, version_compare(PHP_VERSION, '5.4.0', '<') ? SHA256 : OPENSSL_ALGO_SHA256); //OPENSSL_ALGO_SHA256是php5.4.8以上版本才支持
         } else {
             openssl_sign($data, $sign, $res);
         }
         $sign = base64_encode($sign);
         return $sign;
     }
+
     /**
      * 校验$value是否非空
      *  if not set ,return true;
      *    if is null , return true;
      **/
-    protected function checkEmpty($value) {
+    protected function checkEmpty($value)
+    {
         if (!isset($value))
             return true;
         if ($value === null)
@@ -114,7 +131,9 @@ class AlipayService
             return true;
         return false;
     }
-    public function getSignContent($params) {
+
+    public function getSignContent($params)
+    {
         ksort($params);
         $stringToBeSigned = "";
         $i = 0;
@@ -133,13 +152,15 @@ class AlipayService
         unset ($k, $v);
         return $stringToBeSigned;
     }
+
     /**
      * 转换字符集编码
      * @param $data
      * @param $targetCharset
      * @return string
      */
-    function characet($data, $targetCharset) {
+    function characet($data, $targetCharset)
+    {
         if (!empty($data)) {
             $fileType = $this->charset;
             if (strcasecmp($fileType, $targetCharset) != 0) {
@@ -154,18 +175,22 @@ class AlipayService
     {
         return http_build_query($data);
     }
+
     /**
      *  验证签名
      **/
-    public function rsaCheck($params) {
+    public function rsaCheck($params)
+    {
         $sign = $params['sign'];
         $signType = $params['sign_type'];
         unset($params['sign_type']);
         unset($params['sign']);
         return $this->verify($this->getSignContent($params), $sign, $signType);
     }
-    function verify($data, $sign, $signType = 'RSA') {
-        $pubKey= $this->alipayPublicKey;
+
+    function verify($data, $sign, $signType = 'RSA')
+    {
+        $pubKey = $this->alipayPublicKey;
         $res = "-----BEGIN PUBLIC KEY-----\n" .
             wordwrap($pubKey, 64, "\n", true) .
             "\n-----END PUBLIC KEY-----";
@@ -173,7 +198,7 @@ class AlipayService
 
         //调用openssl内置方法验签,返回bool值
         if ("RSA2" == $signType) {
-            $result = (bool)openssl_verify($data, base64_decode($sign), $res, version_compare(PHP_VERSION,'5.4.0', '<') ? SHA256 : OPENSSL_ALGO_SHA256);
+            $result = (bool)openssl_verify($data, base64_decode($sign), $res, version_compare(PHP_VERSION, '5.4.0', '<') ? SHA256 : OPENSSL_ALGO_SHA256);
         } else {
             $result = (bool)openssl_verify($data, base64_decode($sign), $res);
         }
@@ -185,18 +210,21 @@ class AlipayService
     }
 
 }
+
 // 是否支付宝客户端
-function isInAlipayClient() {
-    if( strpos($_SERVER['HTTP_USER_AGENT'], 'AlipayClient') !== false ) {
+function isInAlipayClient()
+{
+    if (strpos($_SERVER['HTTP_USER_AGENT'], 'AlipayClient') !== false) {
         return true;
     }
     return false;
 }
+
 function getCurrentUrl()
 {
-    $scheme = $_SERVER['HTTPS']=='on' ? 'https://' : 'http://';
-    $uri = $_SERVER['PHP_SELF'].$_SERVER['QUERY_STRING'];
-    if($_SERVER['REQUEST_URI']) $uri = $_SERVER['REQUEST_URI'];
-    $baseUrl = urlencode($scheme.$_SERVER['HTTP_HOST'].$uri);
+    $scheme = $_SERVER['HTTPS'] == 'on' ? 'https://' : 'http://';
+    $uri = $_SERVER['PHP_SELF'] . $_SERVER['QUERY_STRING'];
+    if ($_SERVER['REQUEST_URI']) $uri = $_SERVER['REQUEST_URI'];
+    $baseUrl = urlencode($scheme . $_SERVER['HTTP_HOST'] . $uri);
     return $baseUrl;
 }

+ 1 - 1
route/api/route.php

@@ -250,7 +250,7 @@ Route::group(function () {
     Route::get('store_list', 'PublicController/store_list')->name('storeList');
     //获取城市列表
     Route::get('city_list', 'PublicController/city_list')->name('cityList');
-
+    Route::any('alipay/notify', 'AlipayController/notify');//支付支付回调
 
 })->middleware(\app\http\middleware\AllowOriginMiddleware::class)->middleware(\app\http\middleware\AuthTokenMiddleware::class, false);