PayController.php 15.4 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
<?php

namespace app\portal\controller;

use cmf\controller\HomeBaseController;
use cmf\controller\WeChatBaseController;
use EasyWeChat\Foundation\Application;
use EasyWeChat\Payment\Order;
use think\Db;
/**
 * 微信支付,退款,提现DEMO
 * Class PayController
 * @package app\portal\controller
 */
class PayController extends WeChatBaseController
{
    protected $options;
    function _initialize()
    {
        parent::_initialize();
        $this->options = [
            'app_id'  => config('wechat_config.app_id'),
            'secret'  => config('wechat_config.secret'),
            'payment' => config('wechat_config.payment'),
        ];
    }

    /**
     * 微信支付
     */
    public function index(){
        $re=$this->checkLogin();
        $param=$this->request->param();
        $data=Db::name('light_order')->where('id',$param['id'])->find();
        $attributes = [
            'trade_type'       => 'JSAPI',
            'body'             => '十方台',
            'detail'           => '点亮财神灯',
            'out_trade_no'     => $data['order_sn'],
            'total_fee'        => $data['money']*100, // 单位:分
            'notify_url'       => url('portal/pay/notify','','',true), // 支付结果通知网址,如果不设置则会使用配置里的默认地址
            'openid'           => $re['open_id'], // trade_type=JSAPI,此参数必传,用户在商户appid下的唯一标识,
        ];
        $order = new Order($attributes);
        $app = new Application($this->options);
        $payment = $app->payment;
        $result = $payment->prepare($order);
        if ($result->return_code == 'SUCCESS' && $result->result_code == 'SUCCESS'){
            //判断支付并发情况
//            if (Db::name('light_order')->where(['light_id'=>$data['light_id'],'status'=>1,'end_time'=>['>',time()]])->find()){
//                $this->error('该财神灯已被点亮','');
//        }

            $prepayId = $result->prepay_id;
            $jsApiParameters=$payment->configForJSSDKPayment($prepayId);
            $this->assign('jsApiParameters',json_encode($jsApiParameters));
            $this->assign('list',$data);
            return $this->fetch();
        }else{
            $this->error('支付参数错误','',$result);
        }

    }
    public function demo(){
        var_dump(cache('result'));
//        var_dump(cache('changecode'));
//        var_dump(cache('order'));
    }

    public function index2(){
        $re=$this->checkLogin();
        $param=$this->request->param();

        $data=Db::name('light_order')->where('id',$param['id'])->find();
        $data['price']=Db::name('light')->where('id',$data['light_id'])->find()['price'];
        $data['pay_sn']=cmf_get_order_sn();
        Db::name('pay')->insert(['order_id'=>$param['id'],'pay_sn'=>$data['pay_sn'],'money'=>$data['price']]);
        $attributes = [
            'trade_type'       => 'JSAPI',
            'body'             => '十方台',
            'detail'           => '续费',
            'out_trade_no'     => $data['pay_sn'],
            'total_fee'        => $data['price']*100, // 单位:分
            'notify_url'       => url('portal/pay/notify2','','',true), // 支付结果通知网址,如果不设置则会使用配置里的默认地址
            'openid'           => $re['open_id'], // trade_type=JSAPI,此参数必传,用户在商户appid下的唯一标识,
        ];
        $order = new Order($attributes);
        $app = new Application($this->options);
        $payment = $app->payment;
        $result = $payment->prepare($order);
        cache('result',$result);
        if ($result->return_code == 'SUCCESS' && $result->result_code == 'SUCCESS'){
            //判断支付并发情况
//            if (Db::name('light_order')->where(['light_id'=>$data['light_id'],'status'=>1,'end_time'=>['>',time()]])->find()){
//                $this->error('该财神灯已被点亮','');
//        }

            $prepayId = $result->prepay_id;
            $jsApiParameters=$payment->configForJSSDKPayment($prepayId);
            $this->assign('jsApiParameters',json_encode($jsApiParameters));
            $this->assign('list',$data);
            return $this->fetch();
        }else{
            $this->error('支付参数错误','',$result);
        }

    }



    /**
     * 支付回调
     * @throws \EasyWeChat\Core\Exceptions\FaultException
     */
    public function notify(){
//        cache('nnn',111);
        $app = new Application($this->options);
        $response = $app->payment->handleNotify(function($notify, $successful){

            /*这里是支付回调逻辑处理,一下是DEMO*/

//            // 使用通知里的 "微信支付订单号" 或者 "商户订单号" 去自己的数据库找到订单
            $out_trade_no=$notify->out_trade_no;
            $order = Db::name('light_order')->where('order_sn',$out_trade_no)->find();
            if (!$order) { // 如果订单不存在
                return 'Order not exist.'; // 告诉微信,我已经处理完了,订单没找到,别再通知我了
            }
//            // 如果订单存在
//            // 检查订单是否已经更新过支付状态
            if ($order['status']==1) { // 假设订单字段“支付时间”不为空代表已经支付
                return true; // 已经支付成功了就不再更新了
            }
//            // 用户是否支付成功
            if ($successful) {
                // 回填微信的订单号
//                $update['transaction_id']=$notify->transaction_id;
                // 不是已经支付状态则修改为已经支付状态
                $light=Db::name('light')->where('id',$order['light_id'])->find();
                //寺庙金额增加
                Db::name('temple')->where('id',$light['temple_id'])->setInc('money',$light['price']);
                //硬件控制
                Db::name('light_order')->where('order_sn',$out_trade_no)->update(['status'=>1,'pay_time'=>time()]);
                $this->lightChange($order['light_id'],'01','01',$order['name'],$order['content']);
            } else {
                // 用户支付失败
                Db::name('light_order')->where('order_sn',$out_trade_no)->delete();
            }
            return true; // 返回处理完成
        });

        $response->send();
    }

    public function notify2(){
//        cache('nnn',111);
        $app = new Application($this->options);
        $response = $app->payment->handleNotify(function($notify, $successful){
            cache('notify',$notify);

            /*这里是支付回调逻辑处理,一下是DEMO*/

//            // 使用通知里的 "微信支付订单号" 或者 "商户订单号" 去自己的数据库找到订单
            $out_trade_no=$notify->out_trade_no;
            $order = Db::name('pay')->where('pay_sn',$out_trade_no)->find();
            if (!$order) { // 如果订单不存在
                return 'Order not exist.'; // 告诉微信,我已经处理完了,订单没找到,别再通知我了
            }
//            // 如果订单存在
//            // 检查订单是否已经更新过支付状态
            if ($order['pay_time']!=null) { // 假设订单字段“支付时间”不为空代表已经支付
                return true; // 已经支付成功了就不再更新了
            }
//            // 用户是否支付成功
            if ($successful) {
                // 回填微信的订单号
//                $update['transaction_id']=$notify->transaction_id;
                // 不是已经支付状态则修改为已经支付状态
                $light_order=Db::name('light_order')->where('id',$order['order_id'])->find();
                $light=Db::name('light')->where('id',$light_order['light_id'])->find();
                //寺庙金额增加
                Db::name('temple')->where('id',$light['temple_id'])->setInc('money',$order['money']);
                Db::name('pay')->where('pay_sn',$out_trade_no)->update(['pay_time'=>time()]);
                Db::name('light_order')->where('id',$order['order_id'])->update(['end_time'=>strtotime('+'."$light[term]". 'year',$light_order['end_time'])]);
//                $this->lightChange($order['light_id'],'01','01',$order['name'],$order['content']);
            } else {
                return false;
            }
            return true; // 返回处理完成
        });

        $response->send();
    }
    protected function lightChange($id="",$status1='01',$status2='01',$u="",$c=""){
        if ($id==""){
            return false;
        }else {
            $light=Db::name('light')->where('id',$id)->find();
            $client = fsockopen('114.215.223.17', 5002, $errno, $errmsg, 1);
            $code=$light['addr'].'10000000306001'.$light['addr'].$status1.$status2.$this->strtoascii1($u).$this->strtoascii2($c).'00';
            $crc=$this->crc16_modbus($code);
            $changeCode=$code.substr($crc,2,2).substr($crc,0,2);
            $data = array('uid' => $light['number'], 'percent' => "$changeCode");
            // 发送数据,注意5678端口是Text协议的端口,Text协议需要在数据末尾加上换行符
            fwrite($client, json_encode($data) . "\n");
            // 读取推送结果
            return fread($client, 8192);
        }
    }

    function crc16_modbus($msg)
    {
        $data = pack('H*',$msg);
        $crc = 0xFFFF;
        for ($i = 0; $i < strlen($data); $i++)
        {
            $crc ^=ord($data[$i]);

            for ($j = 8; $j !=0; $j--)
            {
                if (($crc & 0x0001) !=0)
                {
                    $crc >>= 1;
                    $crc ^= 0xA001;
                }
                else $crc >>= 1;
            }
        }
        return sprintf('%04X', $crc);
    }
    public function strtoascii1($str="")
    {
        $str = mb_convert_encoding($str, 'GB2312');
        $change_after = '';
        for ($i = 0; $i < strlen($str); $i=$i+2) {
            $change_after .= dechex(ord($str[$i])).dechex(ord($str[$i+1]));
        }
        for ($i=0;strlen($change_after)<50;$i++){
            $change_after=$change_after.'00';
        }
        return strtoupper($change_after);
    }

    public function strtoascii2($str="")
    {
        $str = mb_convert_encoding($str, 'GB2312');
        $change_after = '';
        for ($i = 0; $i < strlen($str); $i=$i+2) {
            $change_after .= dechex(ord($str[$i])).dechex(ord($str[$i+1]));
        }
        for ($i=0;strlen($change_after)<130;$i++){
            $change_after=$change_after.'00';
        }
        return strtoupper($change_after);
    }


    public function cancel(){
        $param=$this->request->param();
        Db::name('light_order')->where(['light_id'=>$param['light_id'],'status'=>0])->delete();
        $this->redirect(url('portal/index/lightOrder',array('id'=>$param['light_id'])));
    }


    public function cancel2(){
        $param=$this->request->param();
        Db::name('pay')->where(['order_id'=>$param['order_id'],'pay_time'=>null])->delete();
        $this->redirect(url('portal/user/edit',array('id'=>$param['order_id'])));
    }













    /**
     * 查询订单
     */
    public function checkOrder(){
        $app = new Application($this->options);
        $payment = $app->payment;
        $orderNo = "2018080397545210";//商户系统内部的订单号(out_trade_no)
        $result=$payment->query($orderNo);
        var_dump($result);
    }

    /**
     * 退款
     */
    public function refund(){
        //todo 退款逻辑应该加入百荣签名验证规则,避免出现被盗用
        /*$param=$this->request->param();
        $signature = $param['s'];
        $arithmetic['timeStamp']= $param['t'];
        $arithmetic['randomStr']= $param['r'];
        $arithmetic['orderSn']= $param['o'];
        $str = arithmetic($arithmetic);
        if($str != $signature){
        $this->error('签名验证失败');
        }*/
        $app = new Application($this->options);
        $payment = $app->payment;
        //使用商户订单号退款  PS.其他形式参考文档
        $orderNo = "2018080397100101";//商户系统内部的订单号(out_trade_no)
        $refundNo = cmf_get_order_sn();//退款单号
        $result = $payment->refund($orderNo, $refundNo, 1, 1); // 总金额 100, 退款 80,refundFee可选(为空时全额退款)
        var_dump($result);
    }

    /**
     * 查询退款
     */
    public function checkRefund(){
        $app = new Application($this->options);
        $payment = $app->payment;
        $outTradeNo="2018080210097519";//商户系统内部的订单号(out_trade_no)
        $result = $payment->queryRefund($outTradeNo);
        var_dump($result);
    }

    /**
     * 退款结果回调
     */
    public function refundNotify() {
        cache('test',123123);
        $app = new Application($this->options);
        $response = $app->payment->handleRefundNotify(function ($message, $reqInfo) {
            cache('message',$message);
            cache('reqInfo',$reqInfo);
            // 其中 $message['req_info'] 获取到的是加密信息
            // $reqInfo 为 message['req_info'] 解密后的信息
            // 你的业务逻辑...
            return true; // 返回 true 告诉微信“我已处理完成”
            // 或返回错误原因 $fail('参数格式校验错误');
        });

        $response->send();
    }

    /**
     * 红包
     */
    public function luckyMoney(){
        //todo 退款逻辑应该加入百荣签名验证规则,避免出现被盗用
        /*$param=$this->request->param();
        $signature = $param['s'];
        $arithmetic['timeStamp']= $param['t'];
        $arithmetic['randomStr']= $param['r'];
        $arithmetic['orderSn']= $param['o'];
        $str = arithmetic($arithmetic);
        if($str != $signature){
            $this->error('签名验证失败');
        }*/

        $app = new Application($this->options);
        $luckyMoney = $app->lucky_money;
        $luckyMoneyData = [
            'mch_billno'       => 'xy123456',
            'send_name'        => '测试红包',
            're_openid'        => 'oxTWIuGaIt6gTKsQRLau2M0yL16E',
            'total_num'        => 1,  //普通红包固定为1,裂变红包不小于3
            'total_amount'     => 100,  //单位为分,普通红包不小于100,裂变红包不小于300
            'wishing'          => '祝福语',
            'client_ip'        => '192.168.0.1',  //可不传,不传则由 SDK 取当前客户端 IP
            'act_name'         => '测试活动',
            'remark'           => '测试备注',
            // ...
        ];
        //普通红包
        $result = $luckyMoney->send($luckyMoneyData, \EasyWeChat\Payment\LuckyMoney\API::TYPE_NORMAL);
        var_dump($result);
    }

    /**
     * 查询红包
     */
    public function checkLuckyMoney(){
        $mchBillNo = "商户系统内部的订单号(mch_billno)";
        $app = new Application($this->options);
        $luckyMoney = $app->lucky_money;
        $luckyMoney->query($mchBillNo);
    }

    /**
     * 生成签名DEMO
     * @return string
     */
    public function getSignatureDemo(){
        $timeStamp = time();
        $randomStr = cmf_random_string(8);
        $arithmetic['timeStamp']= $timeStamp;
        $arithmetic['randomStr']= $randomStr;
        $signature = arithmetic($arithmetic);
        $notifyParam=array('t'=>$timeStamp,'r'=>$randomStr,'s'=>$signature);
        $url=url('your url 表达式',$notifyParam,true,true);
        return $url;
    }


}