zhangguidong 2 năm trước cách đây
mục cha
commit
61a5d527a3

+ 66 - 50
application/api/controller/UserCenter.php

@@ -5,6 +5,7 @@ use AlibabaCloud\Client\Exception\ClientException;
 use AlibabaCloud\Client\Exception\ServerException;
 use app\common\library\AliPay;
 use app\common\library\AliPay2;
+use app\common\library\Changlian;
 use app\common\library\Shande;
 use EasyWeChat\Factory;
 use think\cache\driver\Redis;
@@ -826,26 +827,32 @@ class UserCenter extends Base
     }
     //测试排行
     public function textlist(){
-        $count = Db::name('store_member')->where('id',$this->get_uid())->value('phone');
-        $arr = array('18589584883','13581775590','18768955603','18612921056','17634818774','15588500892');
-        if(in_array($count,$arr)) {
-            $count = 100;
-            $list = Db::name('store_member')
-                ->field('pid,count(*) count')
-                ->where('pid','>',0)
-                ->group('pid')
-                ->order('count desc')
-                ->limit($this->off_set,$this->page_num)
-                ->select();
-            foreach ($list as &$value){
-                $users_info = Db::name('store_member')->field('headimg,name')->where('id',$value['pid'])->find();
-                $value['name'] = $users_info['name'];
-                $value['headimg'] = $users_info['headimg'];
-                unset($value['pid']);
-            }
-            $this->success('成功', compact('count', 'list'));
-        }
-        $this->success('数据测试');
+        $obj = new Changlian();
+        $notifyUrl = 'https://'.$_SERVER['SERVER_NAME'].'/index.php/api/Pay/ChanglianRechargeOrderNotify';//回调地址
+        $returnUrl = 'https://'.$_SERVER['SERVER_NAME'].'/web/h5';
+        $result = $obj->changlian_pay();
+        $retrun_data['pay'] = $result;
+        $this->success('成功',$retrun_data);
+//        $count = Db::name('store_member')->where('id',$this->get_uid())->value('phone');
+//        $arr = array('18589584883','13581775590','18768955603','18612921056','17634818774','15588500892');
+//        if(in_array($count,$arr)) {
+//            $count = 100;
+//            $list = Db::name('store_member')
+//                ->field('pid,count(*) count')
+//                ->where('pid','>',0)
+//                ->group('pid')
+//                ->order('count desc')
+//                ->limit($this->off_set,$this->page_num)
+//                ->select();
+//            foreach ($list as &$value){
+//                $users_info = Db::name('store_member')->field('headimg,name')->where('id',$value['pid'])->find();
+//                $value['name'] = $users_info['name'];
+//                $value['headimg'] = $users_info['headimg'];
+//                unset($value['pid']);
+//            }
+//            $this->success('成功', compact('count', 'list'));
+//        }
+//        $this->success('数据测试');
     }
     //测试排行
     public function numbernew(){
@@ -1179,39 +1186,48 @@ class UserCenter extends Base
         $total_fee = $money;
         switch ($pay_type){
             case 'wx':
-                $config = retrunWxConfig();
-                $total_fee = $total_fee * 100;
-                $config['notify_url'] = $this->request->root(true).'/api/Pay/WxRechargeOrderNotify';
-                $app = Factory::payment($config);
-
-                $post_data = [
-                    'body' => $body,
-                    'out_trade_no' => $order_no,
-                    'total_fee' => $total_fee,
-                    'attach'=>$this->uid,     //自定义传值
-                ];
-                //trade_type   SAPI--JSAPI支付(或小程序支付)、NATIVE--Native支付、APP--app支付,MWEB--H5支付
-                if ($from=='wx'){
-                    $post_data['openid'] = $user['openid'];
-                    $post_data['trade_type'] = 'JSAPI';
-                }elseif ($from=='h5'){
-                    $post_data['trade_type'] = 'MWEB';
-                }
-
-                $result = $app->order->unify($post_data);
-                debug($result);
-                if ($result['return_msg']=='OK'){
-                    if ($result['result_code']=='FAIL'){
-                        $com = false;
-                    }else{
-                        $order1 = $app->jssdk->bridgeConfig($result['prepay_id']);//执行二次签名返回参数
-                        $retrun_data['order_no'] = $order_no;
-                        $retrun_data['pay'] = json_decode($order1,true);
-                    }
-                }else{
+                $obj = new Changlian();
+                $notifyUrl = 'https://'.$_SERVER['SERVER_NAME'].'/index.php/api/Pay/ChanglianRechargeOrderNotify';//回调地址
+                $returnUrl = 'https://'.$_SERVER['SERVER_NAME'].'/web/h5';
+                $result = $obj->changlian_pay($body,$order_no,$total_fee,'',$notifyUrl,$returnUrl);
+                if(empty($result)){
                     $com = false;
                 }
+                Db::commit();
                 break;
+//                $config = retrunWxConfig();
+//                $total_fee = $total_fee * 100;
+//                $config['notify_url'] = $this->request->root(true).'/api/Pay/WxRechargeOrderNotify';
+//                $app = Factory::payment($config);
+//
+//                $post_data = [
+//                    'body' => $body,
+//                    'out_trade_no' => $order_no,
+//                    'total_fee' => $total_fee,
+//                    'attach'=>$this->uid,     //自定义传值
+//                ];
+//                //trade_type   SAPI--JSAPI支付(或小程序支付)、NATIVE--Native支付、APP--app支付,MWEB--H5支付
+//                if ($from=='wx'){
+//                    $post_data['openid'] = $user['openid'];
+//                    $post_data['trade_type'] = 'JSAPI';
+//                }elseif ($from=='h5'){
+//                    $post_data['trade_type'] = 'MWEB';
+//                }
+//
+//                $result = $app->order->unify($post_data);
+//                debug($result);
+//                if ($result['return_msg']=='OK'){
+//                    if ($result['result_code']=='FAIL'){
+//                        $com = false;
+//                    }else{
+//                        $order1 = $app->jssdk->bridgeConfig($result['prepay_id']);//执行二次签名返回参数
+//                        $retrun_data['order_no'] = $order_no;
+//                        $retrun_data['pay'] = json_decode($order1,true);
+//                    }
+//                }else{
+//                    $com = false;
+//                }
+//                break;
             case 'zfb':
                 $obj = new Moyun();
                 $notifyUrl = 'https://'.$_SERVER['SERVER_NAME'].'/index.php/api/Pay/moyunRechargeOrderNotify';//回调地址

+ 95 - 0
application/common/library/Changlian.php

@@ -0,0 +1,95 @@
+<?php
+
+namespace app\common\library;
+
+class Changlian
+{
+    public function changlian_pay(){
+        //请求支付地址
+        $api = 'https://api2.payunk.com/index/unifiedorder?format=json';
+//商户appid->到平台首页自行复制粘贴
+        $appid = '1058182';
+
+//商户密钥,到平台首页自行复制粘贴,该参数无需上传,用来做签名验证和回调验证,请勿泄露
+        $app_key = 'MHBRLkI4vFaAhLgdPkjp3QNMqsNrz8al';
+
+//订单号码,发起订单时带的订单信息,一般为用户名,交易号,等字段信息
+        $out_trade_no = date("YmdHis") . mt_rand(10000, 99999);
+//支付类型
+        $pay_type = 'wechat';
+//支付金额
+        $amount = sprintf("%.2f",0.01);
+//异步通知接口url->用作于接收成功支付后回调请求
+        $callback_url = 'https://api2.payunk.com/callback_demo.php';
+//支付成功后自动跳转url
+        $success_url = 'https://api2.payunk.com';
+//支付失败或者超时后跳转url
+        $error_url = 'https://api2.payunk.com';
+//版本号
+        $version = 'v1.0';
+//用户网站的请求支付的额外信息,请严格对接文档填写参数
+        $extend = '';
+
+        $data = [
+            'appid'        => $appid,
+            'pay_type'     => $pay_type,
+            'out_trade_no' => $out_trade_no,
+            'amount'       => $amount,
+            'callback_url' => $callback_url,
+            'success_url'  => $success_url,
+            'error_url'    => $error_url,
+            'version'      => $version,
+            'extend'      => $extend,
+        ];
+
+//拿APPKEY与请求参数进行签名
+        $sign = $this->getSign($app_key, $data);
+
+        $post_data = json_encode($data,320);
+// print_r($post_data);die;
+        $ch = curl_init ();
+        $header = [
+            'Content-Type: application/json',
+            'X-REAL-IP: ' . $_SERVER['REMOTE_ADDR'],
+            'Content-Length: ' . strlen ( $post_data )
+        ];
+        curl_setopt ( $ch, CURLOPT_HTTPHEADER, $header );
+        curl_setopt ( $ch, CURLOPT_URL, $api );
+        curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, 1 );
+// 我们在POST数据哦!
+        curl_setopt ( $ch, CURLOPT_POST, 1 );
+// 把post的变量加上
+        curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, false );
+        curl_setopt ( $ch, CURLOPT_SSL_VERIFYHOST, false );
+        curl_setopt ( $ch, CURLOPT_POSTFIELDS, $post_data );
+
+        $output = curl_exec ( $ch );
+//        print_r($output);die;
+        return $output;
+    }
+    public function getSign($secret, $data){
+            if(isset($data['sign'])){
+                unset($data['sign']);
+            }
+            // 去空
+            $data = array_filter($data);
+            //签名步骤一:按字典序排序参数
+            ksort($data);
+            // var_dump($data);
+            $string_a = http_build_query($data);
+            $string_a = urldecode($string_a);
+
+            //签名步骤二:在string后加入mch_key
+            $string_sign_temp = $string_a . "&key=" . $secret;
+            // var_dump($string_sign_temp);
+            //签名步骤三:MD5加密
+            $sign = md5($string_sign_temp);
+
+            // 签名步骤四:所有字符转为大写
+            $result = strtoupper($sign);
+            // var_dump($result);
+            return $result;
+
+    }
+
+}