123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708 |
- <?php
- namespace app\api\controller;
- use Alipay\EasySDK\Kernel\Util\ResponseChecker;
- use app\common\library\AliPay;
- use app\common\library\Shande;
- use EasyWeChat\Factory;
- use think\cache\driver\Redis;
- use think\Db;
- use function EasyWeChat\Kernel\Support\get_client_ip;
- use function Symfony\Component\String\length;
- /**
- * @title 二级市场
- * @controller secondary
- * @package app\api\controller
- */
- class Secondary extends Base
- {
- public function initialize(){
- parent::initialize();
- parent::check_login();
- }
- /**
- * @title 藏品出售
- * @desc 藏品出售
- * @author Gavin
- * @url /api/Secondary/sell
- * @method POST
- * @header name:Authorization require:1 desc:Token
- *
- * @param name:id type:int require:1 default:1 desc:藏品ID
- * @param name:resale_price type:decimal require:1 default:1 desc:出售价格
- * @param name:second_password type:int require:1 default:-- desc:二级密码
- *
- */
- public function sell(){
- $this->checkSwitch(1);
- $id = input('id');
- $this->error('暂时关闭');
- $user = getMemberInfoHash($this->uid); //获取用户信息
- if ($user['is_auth']==0) $this->error('请先实名认证!');
- $resale_price = input('resale_price');
- $second_password = input('second_password');
- if (!$id || !$resale_price) $this->error('参数错误');
- //if ($resale_price<'1') $this->error('最低1元');
- if ($resale_price<'0.1') $this->error('最低0.1元');
- if ($resale_price>'99999') $this->error('最高99999元');
- $info = Db::name('store_order_info')
- ->where('mid',$this->uid)
- ->where('id',$id)
- ->find();
- if (!$info || $info['status']==2) $this->error('藏品不存在');
- if ($info['resale_status']!=1) $this->error('挂售状态错误');
- if ($user['second_password']!=md5($second_password)) $this->error('密码错误');
- $update_data = [
- 'resale_status'=>2,
- 'resale_time'=>date('Y-m-d H:i:s'),
- 'resale_price'=>$resale_price
- ];
- if (Db::name('store_order_info')->where('id',$id)->update($update_data)){
- $this->success('成功');
- }
- $this->error('失败');
- }
- /**
- * @title 藏品取消出售
- * @desc 藏品取消出售
- * @author Gavin
- * @url /api/Secondary/cancel_sell
- * @method POST
- * @header name:Authorization require:1 desc:Token
- *
- * @param name:id type:int require:1 default:1 desc:藏品ID
- */
- public function cancel_sell(){
- $this->checkSwitch(1);
- $id = input('id');
- if (!$id) $this->error('参数错误');
- $info = Db::name('store_order_info')
- ->where('mid',$this->uid)
- ->where('id',$id)
- ->find();
- if (!$info || $info['status']==2) $this->error('藏品不存在');
- if ($info['resale_status']!=2) $this->error('挂售状态错误');
- //判断是否有待支付订单
- $count = Db::name('store_order_info_order')->where('info_id',$id)->where('status',0)->count();
- if ($count) $this->error('支付中,无法取消');
- $update_data = [
- 'resale_status'=>1,
- ];
- if (Db::name('store_order_info')->where('id',$id)->update($update_data)){
- $this->success('成功');
- }
- $this->error('失败');
- }
- /**
- * @title 标签列表
- * @desc 标签列表
- * @author Gavin
- * @url /api/Secondary/label_list
- * @method POST
- * @header name:Authorization require:1 desc:Token
- */
- public function label_list(){
- $list = Db::name('store_collection')->whereNotIn('label','测试,测试勿拍')->group('label')->column('label');
- $list = array_merge(['全部'],$list);
- $this->success('成功',['label_list'=>$list]);
- }
- /**
- * @title 二级市场列表
- * @desc 二级市场列表
- * @author Gavin
- * @url /api/Secondary/sell_list
- * @method POST
- * @header name:Authorization require:1 desc:Token
- * @param name:page type:int : default:1 desc:页数
- * @param name:page_num type:int : default:20 desc:每页数
- *
- * @param name:keyword type:string require:0 default: desc:关键词
- * @param name:label type:string require:0 default: desc:标签
- * @param name:time_order type:string require:0 default: desc:时间排序(asc:正序desc:倒序)
- * @param name:price_order type:string require:0 default: desc:价格排序(asc:正序desc:倒序)
- *
- * @return name:name type:string require:0 default:0 desc:藏品名称
- * @return name:cover type:string require:0 default:0 desc:图片
- * @return name:member_name type:string require:0 default:0 desc:出售人名称
- * @return name:member_headimg type:string require:0 default:0 desc:出售人头像
- * @return name:resale_price type:string require:0 default:0 desc:出售价格
- */
- public function sell_list(){
- $keyword = input('keyword');
- $label = input('label');
- $time_order = input('time_order');
- $price_order = input('price_order');
- $count = Db::name('store_order_info')
- ->where('status','neq',2)
- ->where('resale_status',2)
- ->where('is_destruction',1)
- ->when($keyword,function ($query) use ($keyword){
- $query->whereLike('name','%'.$keyword.'%');
- })
- ->when($label,function ($query) use ($label){
- if ($label!='全部'){
- $ids = Db::name('store_collection')->where('label',$label)->column('id');
- $query->whereIn('c_id',$ids);
- }
- })
- ->count();
- $list = Db::name('store_order_info')
- ->where('status','neq',2)
- ->where('resale_status',2)
- ->where('is_destruction',1)
- ->when($keyword,function ($query) use ($keyword){
- $query->whereLike('name','%'.$keyword.'%');
- })
- ->when($label,function ($query) use ($label){
- if ($label!='全部'){
- $ids = Db::name('store_collection')->where('label',$label)->column('id');
- $query->whereIn('c_id',$ids);
- }
- })
- ->when($price_order,function ($query) use ($price_order){
- $query->order('resale_price '.$price_order);
- })
- ->when($time_order,function ($query) use ($time_order){
- $query->order('resale_time '.$time_order);
- })
- ->limit($this->off_set,$this->page_num)
- ->select();
- foreach ($list as &$v){
- $member = getMemberInfoHash($v['mid']); //获取用户信息
- $v['member_name'] = $member['name'];
- $v['member_headimg'] = $member['headimg'];
- $v['pro_info'] = json_decode($v['pro_info'],true);
- $count = Db::name('store_order_info_order')->where('info_id',$v['id'])->where('status',0)->count();
- $v['is_buy'] = $count>0 ? 1 : 0;
- }
- $this->success('成功',compact('count','list'));
- }
- /**
- * @title 二级市场详情
- * @desc 二级市场详情
- * @author Gavin
- * @url /api/Secondary/sell_list_detail
- * @method POST
- * @header name:Authorization require:1 desc:Token
- * @param name:id type:int : default: desc:id
- */
- public function sell_list_detail(){
- $id = input('id');
- if (!$id) $this->error('参数错误');
- $info = Db::name('store_order_info')
- ->where('status','neq',2)
- ->where('resale_status',2)
- ->where('is_destruction',1)
- ->where('id',$id)
- ->find();
- if (!$info) $this->error('藏品不存在');
- $member = getMemberInfoHash($info['mid']); //获取用户信息
- $info['member_name'] = $member['name'];
- $info['member_headimg'] = $member['headimg'];
- $info['pro_info'] = json_decode($info['pro_info'],true);
- //判断是否有待支付订单
- $count = Db::name('store_order_info_order')->where('info_id',$id)->where('status',0)->count();
- $info['is_buy'] = $count>0 ? 1 : 0;
- $this->success('成功',$info);
- }
- /**
- * @title 购买
- * @desc 购买
- * @author Gavin
- * @url /api/Secondary/createOrder
- * @method POST
- * @header name:Authorization require:1 desc:Token
- * @param name:id type:int require:1 default: desc:主键ID
- * @param name:pay_type type:string require:1 default:wx desc:wx:微信zfb:支付宝sd:杉德h5
- * @param name:from type:string require:1 default:wx desc:wx:微信公众号h5:网页
- *
- * @return name:order_no type:int require:0 default:0 desc:订单号
- * @return name:pay type:string require:0 default:0 desc:支付信息
- */
- public function createOrder(){
- $this->checkSwitch(1);
- $redis = new Redis([ 'select'=> 2]);
- $redis_value = $redis->get('secondary_buy'.$this->uid);
- if ($redis_value){
- $this->error('请求过快,请稍后重试');
- }else{
- $redis->set('secondary_buy'.$this->uid,1,1);
- }
- $id = input('id');
- $pay_type = input('pay_type','wx');
- $this->checkSwitch(2,$pay_type);
- $from = input('from','wx');
- $user = getMemberInfoHash($this->uid); //获取用户信息
- if (!$id) $this->error('参数错误');
- if ($user['is_auth']==0) $this->error('请先实名认证!');
- $info = Db::name('store_order_info')->where('id',$id)->find();
- if (!$info) $this->error('藏品不存在');
- if ($info['resale_status']==3) $this->error('藏品已出售');
- if ($info['resale_status']==1) $this->error('藏品已撤销出售');
- // if ($info['mid']==$this->uid) $this->error('不能购买自己出售的藏品');
- //if (isset($user['buy_time']) && $user['buy_time']>date('Y-m-d H:i:s')) $this->error('一小时取消3次以上,24小时内禁止下单');
- //判断是否有未支付订单
- $order_count = Db::name('store_order_info_order')->where('mid',$this->uid)->where('status',0)->count();
- // if ($order_count) $this->error('有未支付订单,无法下单');
- //判断是否有待支付订单
- $count = Db::name('store_order_info_order')->where('info_id',$id)->where('status',0)->count();
- //if ($count) $this->error('支付中,无法下单');
- $service_fee = getConfigValue('service_fee');
- $royalties = getConfigValue('royalties');
- $com = true;
- Db::startTrans();
- try {
- $order_no = get_order_sn();
- //获取价格
- $price = $info['resale_price'];
- $num = 1;
- $proportion = sprintf("%.2f",$price *($service_fee/100)); //四舍五入保留两位小数点
- $roya = sprintf("%.2f",$price *($royalties/100)); //四舍五入保留两位小数点
- $total_fee = bcmul($price,$num,2);
- $real_money = $price-$proportion-$roya;
- $data = [
- 'order_no'=>$order_no,
- 'mid'=>$this->uid,
- 'info_id'=>$id,
- 'num'=>$num,
- 'pro_info'=>json_encode($info,true),
- 'pay_price'=>$total_fee,
- 'service_fee'=>$service_fee,
- 'royalties'=>$royalties,
- 'to_account'=>$real_money,
- 'pay_type'=>$pay_type
- ];
- $id = Db::name('store_order_info_order')->insertGetId($data);
- $body = '梵易数藏购买二级市场藏品';
- switch ($pay_type){
- case 'wx':
- $config = retrunWxConfig();
- $total_fee = $total_fee * 100;
- $config['notify_url'] = 'https://'.$_SERVER['SERVER_NAME'].'/api/Pay/SecondaryWxOrderNotify';
- $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);
- if ($result['return_msg']=='OK'){
- if ($result['result_code']=='FAIL'){
- $com = false;
- Db::rollback();
- }else{
- $order1 = $app->jssdk->bridgeConfig($result['prepay_id']);//执行二次签名返回参数
- $retrun_data['order_no'] = $order_no;
- $retrun_data['id'] = $id;
- $retrun_data['pay'] = json_decode($order1,true);
- Db::commit();
- }
- }else{
- $com = false;
- Db::rollback();
- }
- break;
- case 'zfb':
- $zfb = new AliPay();
- $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/api/Pay/alipaySecondaryNotify';//回调地址
- $order = $zfb->ali_pay_pc($body, $total_fee, $order_no, $notify_url,'https://'.$_SERVER['SERVER_NAME'].'/web/h5/pages/shop/order');//调用支付宝支付的方法
- $retrun_data['order_no'] = $order_no;
- $retrun_data['id'] = $id;
- $retrun_data['pay'] = $order;
- Db::commit();
- break;
- case 'sd':
- $client = new Shande();
- $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/api/Pay/shandeSecondaryNotify';//回调地址
- $total_fee = $total_fee*100;
- $lenth = strlen($total_fee);
- $total_fee = get0number($lenth).$total_fee;
- $result = $client->orderPay($order_no,$total_fee,$body,$notify_url,'https://'.$_SERVER['SERVER_NAME'].'/web/h5/pages/shop/order');
- $retrun_data['order_no'] = $order_no;
- $retrun_data['id'] = $id;
- $retrun_data['pay'] = json_decode($result['data'],true);
- Db::commit();
- break;
- }
- }catch (\Exception $e){
- $com=false;
- Db::rollback();
- }
- if ($com){
- $this->success('成功',$retrun_data);
- }
- $this->error('失败,请稍后重试');
- }
- /**
- * @title 二级市场我的转售列表
- * @desc 二级市场我的转售列表
- * @author Gavin
- * @url /api/Secondary/my_sell_list
- * @method POST
- * @header name:Authorization require:1 desc:Token
- * @param name:page type:int : default:1 desc:页数
- * @param name:page_num type:int : default:20 desc:每页数
- *
- * @param name:keyword type:string require:0 default: desc:关键词
- * @param name:time_order type:string require:0 default: desc:时间排序(asc:正序desc:倒序)
- * @param name:price_order type:string require:0 default: desc:价格排序(asc:正序desc:倒序)
- *
- * @return name:name type:string require:0 default:0 desc:藏品名称
- * @return name:cover type:string require:0 default:0 desc:图片
- * @return name:member_name type:string require:0 default:0 desc:出售人名称
- * @return name:member_headimg type:string require:0 default:0 desc:出售人头像
- * @return name:resale_price type:string require:0 default:0 desc:出售价格
- */
- public function my_sell_list(){
- $keyword = input('keyword');
- $time_order = input('time_order');
- $price_order = input('price_order');
- $count = Db::name('store_order_info')
- ->where('mid',$this->uid)
- ->where('resale_status','neq',1)
- ->when($keyword,function ($query) use ($keyword){
- $query->whereLike('name','%'.$keyword.'%');
- })
- ->count();
- $list = Db::name('store_order_info')
- ->where('mid',$this->uid)
- ->where('resale_status','neq',1)
- ->when($keyword,function ($query) use ($keyword){
- $query->whereLike('name','%'.$keyword.'%');
- })
- ->when($price_order,function ($query) use ($price_order){
- $query->order('resale_price '.$price_order);
- })
- ->when($time_order,function ($query) use ($time_order){
- $query->order('resale_time '.$time_order);
- })
- ->order('resale_status asc')
- ->limit($this->off_set,$this->page_num)
- ->select();
- foreach ($list as &$v){
- $member = getMemberInfoHash($v['mid']); //获取用户信息
- $v['member_name'] = $member['name'];
- $v['member_headimg'] = $member['headimg'];
- $v['pro_info'] = json_decode($v['pro_info'],true);
- }
- $this->success('成功',compact('count','list'));
- }
- /**
- * @title 二级市场订单
- * @desc 二级市场订单
- * @author Gavin
- * @url /api/Secondary/secondaryOrderList
- * @method POST
- * @header name:Authorization require:1 desc:Token
- * @param name:page type:int : default:1 desc:页数
- * @param name:page_num type:int : default:20 desc:每页数
- *
- * @param name:status type:string require:0 default: desc:0:待支付1:已购买2:转售中3:已转售
- *
- * @return name:name type:string require:0 default:0 desc:藏品名称
- * @return name:cover type:string require:0 default:0 desc:图片
- * @return name:member_name type:string require:0 default:0 desc:出售人名称
- * @return name:member_headimg type:string require:0 default:0 desc:出售人头像
- * @return name:pay_price type:string require:0 default:0 desc:出售价格(已购买、待支付使用)
- * @return name:resale_price type:string require:0 default:0 desc:出售价格(转售中、已转售使用)
- */
- public function secondaryOrderList(){
- $status = input('status',0);
- switch ($status){
- case 0:case 1:
- $count = Db::name('store_order_info_order')
- ->where('mid',$this->uid)
- ->where('status',$status)
- ->count();
- $list = Db::name('store_order_info_order')
- ->where('mid',$this->uid)
- ->where('status',$status)
- ->limit($this->off_set,$this->page_num)
- ->select();
- //自动取消分钟数
- $cancel_time = getCancelTime();
- foreach ($list as &$v){
- $v['pro_info'] = json_decode($v['pro_info'],true);
- $member = getMemberInfoHash($v['mid']); //获取用户信息
- $v['member_name'] = $member['name'];
- $v['member_headimg'] = $member['headimg'];
- if ($v['status']==0){
- $v['cancel_time'] = date('Y-m-d H:i:s',strtotime($v['create_at'])+($cancel_time*60));
- }
- }
- break;
- case 2:case 3:
- $count = Db::name('store_order_info')
- ->where('mid',$this->uid)
- ->where('resale_status',$status)
- ->where('is_destruction',1)
- ->count();
- $list = Db::name('store_order_info')
- ->where('mid',$this->uid)
- ->where('resale_status',$status)
- ->where('is_destruction',1)
- ->limit($this->off_set,$this->page_num)
- ->select();
- foreach ($list as &$v){
- $v['pro_info'] = json_decode($v['pro_info'],true);
- $member = getMemberInfoHash($v['mid']); //获取用户信息
- $v['member_name'] = $member['name'];
- $v['member_headimg'] = $member['headimg'];
- }
- break;
- }
- $this->success('成功',compact('count','list'));
- }
- /**
- * @title 取消订单
- * @desc 取消订单
- * @author Gavin
- * @url /api/Secondary/cancelOrder
- * @method POST
- * @header name:Authorization require:1 desc:Token
- * @param name:order_no type:string require:1 default:-- desc:订单号
- */
- public function cancelOrder(){
- $order_no = input('order_no');
- if (!$order_no) $this->error('参数错误');
- $order = Db::name('store_order_info_order')
- ->where('order_no',$order_no)
- ->where('mid',$this->uid)
- ->find();
- if (!$order) $this->error('订单不存在');
- if ($order['status']!=0) $this->error('订单已支付或已取消');
- $com = true;
- Db::startTrans();
- try {
- $up_data = [
- 'status'=>2,
- 'cancel_at'=>date('Y-m-d H:i:s'),
- 'cancel_state'=>2
- ];
- Db::name('store_order_info_order')->where('order_no',$order_no)->update($up_data);
- $cancle = [
- 'mid'=>$this->uid,
- 'order_id'=>$order['id']
- ];
- Db::name('store_order_info_cancel_log')->insert($cancle);
- $time = date('Y-m-d H:i:s',time()-(60*60));
- $count = Db::name('store_order_info_cancel_log')->where('mid',$this->uid)->where('create_at','gt',$time)->count();
- if ($count>2){
- $buy_time = date('Y-m-d H:i:s',time()+(24*60*60));
- Db::name('store_member')->where('id',$this->uid)->update(['buy_time'=>$buy_time]);
- }
- Db::commit();
- }catch (\Exception $e){
- $com=false;
- Db::rollback();
- }
- if ($com){
- setMemberInfoHash($this->uid);
- $this->success('取消成功');
- }else{
- $this->error('取消失败,请稍后重试');
- }
- }
- /**
- * @title 待支付订单支付
- * @desc 待支付订单支付
- * @author Gavin
- * @url /api/Secondary/payOrder
- * @method POST
- * @header name:Authorization require:1 desc:Token
- * @param name:order_no type:string require:1 default:-- desc:订单号
- * @param name:from type:string require:1 default:wx desc:wx:微信公众号h5:网页
- *
- * @return name:order_no type:int require:0 default:0 desc:订单号
- * @return name:pay type:string require:0 default:0 desc:支付信息
- */
- public function payOrder(){
- $this->checkSwitch(1);
- $user = getMemberInfoHash($this->uid); //获取用户信息
- $order_no = input('order_no'); //订单号
- $id = input('id');
- $from = input('from','wx');
- if (!$order_no) $this->error('参数错误');
- if (!$id) $this->error('参数错误');
- $order = Db::name('store_order_info_order')
- // ->where('order_no',$order_no)
- ->where('id',$id)
- ->where('mid',$this->uid)
- ->find();
- $order_no = $order['order_no'];
- $pay_type = $order['pay_type'];
- $this->checkSwitch(2,$pay_type);
- if (!$order) $this->error('订单不存在');
- if ($order['status']!=0) $this->error('订单已支付或已取消');
- $info = Db::name('store_order_info')->where('id',$order['info_id'])->find();
- if ($info['resale_status']!=2) $this->error('藏品已出售或已撤销出售');
- $com = true;
- Db::startTrans();
- try {
- //获取价格
- $total_fee = $order['pay_price'];
- $body = '梵易数藏购买二级市场藏品';
- switch ($pay_type){
- case 'wx':
- $config = retrunWxConfig();
- $total_fee = $total_fee * 100;
- $config['notify_url'] = 'https://'.$_SERVER['SERVER_NAME'].'/api/Pay/SecondaryWxOrderNotify';
- $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);
- if ($result['return_msg']=='OK'){
- if ($result['result_code']=='FAIL'){
- $com = false;
- Db::rollback();
- }else{
- $order1 = $app->jssdk->bridgeConfig($result['prepay_id']);//执行二次签名返回参数
- $retrun_data['order_no'] = $order_no;
- $retrun_data['id'] = $order['id'];
- $retrun_data['pay'] = json_decode($order1,true);
- Db::commit();
- }
- }else{
- $com = false;
- Db::rollback();
- }
- break;
- case 'zfb':
- $zfb = new AliPay();
- $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/api/Pay/alipaySecondaryNotify';//回调地址
- $order = $zfb->ali_pay_pc($body, $total_fee, $order_no, $notify_url,'https://'.$_SERVER['SERVER_NAME'].'/web/h5/pages/shop/order');//调用支付宝支付的方法
- $retrun_data['order_no'] = $order_no;
- $retrun_data['id'] = $order['id'];
- $retrun_data['pay'] = $order;
- Db::commit();
- break;
- case 'sd':
- $client = new Shande();
- $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/api/Pay/shandeSecondaryNotify';//回调地址
- $total_fee = $total_fee*100;
- $lenth = strlen($total_fee);
- $total_fee = get0number($lenth).$total_fee;
- $order_nos = get_order_sn();
- if (Db::name('store_order_info_order')
- ->where('order_no',$order_no)
- ->where('mid',$this->uid)
- ->update(['order_no'=>$order_nos])){
- $result = $client->orderPay($order_nos,$total_fee,$body,$notify_url,'https://'.$_SERVER['SERVER_NAME'].'/web/h5/pages/shop/order');
- $retrun_data['order_no'] = $order_nos;
- $retrun_data['id'] = $order['id'];
- $retrun_data['pay'] = json_decode($result['data'],true);
- Db::commit();
- }else{
- $com=false;
- Db::rollback();
- }
- break;
- }
- }catch (\Exception $e){
- $com=false;
- Db::rollback();
- }
- if ($com){
- $this->success('成功',$retrun_data);
- }
- $this->error('失败,请稍后重试');
- }
- /**
- * @param 判断开关
- * @param string $pay_type
- * @return bool
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function checkSwitch($type,$pay_type=''){
- if ($type==1){
- $v = getConfigValue('secondary_sell_switch');
- if (!$v) $this->error('维护中,暂时关闭');
- }elseif ($type==2){
- $nameArray = ['secondary_wx_switch','secondary_zfb_switch','secondary_sd_switch'];
- $values = getConfig($nameArray);
- if ($pay_type=='wx'){
- if (!$values['secondary_wx_switch']) $this->error('微信支付暂时关闭');
- }elseif ($pay_type=='zfb'){
- if (!$values['secondary_zfb_switch']) $this->error('支付宝支付暂时关闭');
- }elseif ($pay_type=='sd'){
- if (!$values['secondary_sd_switch']) $this->error('杉德支付暂时关闭');
- }
- }
- return true;
- }
- }
|