| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 | <?phpnamespace app\index\controller;use app\common\controller\Frontend;use think\Db;use addons\epay\library\Service;use think\Response;class Recharge extends Frontend{    protected $noNeedLogin = '*';    protected $noNeedRight = '*';    protected $layout = '';    public function index()    {        $isWechat = strpos($this->request->server('HTTP_USER_AGENT'), 'MicroMessenger') !== false;        if($isWechat)        {            return $this->view->fetch('tips');        }        $conf_list = Db::name('paygold_webcon')->order('id asc')->select();        $this->assign('conf_list',$conf_list);        return $this->view->fetch();    }    public function recharge_success(){        $this->success('支付成功','/index/recharge/index');    }    //创建订单    public function recharge_pc(){        //微信不能打开        $isWechat = strpos($this->request->server('HTTP_USER_AGENT'), 'MicroMessenger') !== false;        if($isWechat)        {$this->error('不能在微信浏览器打开');}        //        $rc_id = input('rc_id',0);        $pay_type  = input('pay_type','alipay');        $mobile = input('mobile',0);        $inputmoney = floatval(input('money',0));        if(!$rc_id && !$inputmoney){            $this->error('请选择或手动填写充值金额');        }        if(!$mobile){            $this->error('请输入用户手机号');        }        //查找用户        $user_info = Db::name('user')->field('id')->where('mobile',$mobile)->find();        if (empty($user_info)) {            $this->error('用户信息不存在');        }        //赋值money        if($rc_id){            $recharge_config = Db::name('paygold_webcon')->where('id',$rc_id)->find();            if(!$recharge_config){                $this->error('请选择充值金额');            }            $money = $recharge_config['money'];            $gold = $recharge_config['gold'];        }else{            $money = $inputmoney;            if($money < 1)            {                $this->error('输入金额只能最低为1的正整数');            }            if($money > 1000){                $this->error('输入金额最高1000');            }            $money_to_gold = config('site.money_to_gold');            $gold = bcmul($money,$money_to_gold,0);        }        //method        $payment_method = $pay_type == 'alipay' ? 'web' : 'scan';        if($this->request->isMobile()){            $payment_method = 'wap';        }        //创建订单        $data = [];        $data['status'] = 0;        $pay_no = createUniqueNo('P',$user_info['id']);        $data['pay_no'] = $pay_no;        $data['money'] = $money;        $data['payment_class'] = $pay_type;        $data['user_id'] = $user_info['id'];        $data['ext_info'] =  json_encode(['subject'=>'充值金币支付']);        $data['memo'] =  '充值金币支付';        $data['createtime'] = time();        $data['payment'] = $payment_method;        $orderid = Db::name('pay_order')->insertGetId($data);        //创建回调        $even_data = [];        $even_data['event'] = 'success';        $even_data['class'] = 'app\common\model\Recharge';        $even_data['method'] = 'rechargepaysucc';        $even_data['args'] = json_encode(['user_id'=>$user_info['id'],'gold'=>$gold,'money'=>$money,'pg_id'=>$rc_id]);        $even_data['pay_no'] = $pay_no;        Db::name('pay_event')->insertGetId($even_data);        //下单        $params = [            'type'         => $pay_type,            'orderid'      => $pay_no,            'title'        => $data['memo'],            'amount'       => $data['money'],            // 'amount'       => 0.01,            'method'       => $payment_method,            'notifyurl' => $this->request->root(true) . '/notify.php/paytype/'.$pay_type,            'returnurl' => $this->request->root(true) . '/index/recharge/recharge_success',        ];        $res = Service::submitOrder($params);        if($pay_type == 'wechat' && $payment_method == 'scan'){            $code_url = $res['code_url'];            $qrCode = \addons\qrcode\library\Service::qrcode(['text'=>$code_url]);            $response = Response::create()->header("Content-Type", 'image/png');            // 直接显示二维码            header('Content-Type: ' . $qrCode->getContentType());            $response->content($qrCode->writeString());            return $response;        }else{            return $res;        }    }}
 |