Secondary.php 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708
  1. <?php
  2. namespace app\api\controller;
  3. use Alipay\EasySDK\Kernel\Util\ResponseChecker;
  4. use app\common\library\AliPay;
  5. use app\common\library\Shande;
  6. use EasyWeChat\Factory;
  7. use think\cache\driver\Redis;
  8. use think\Db;
  9. use function EasyWeChat\Kernel\Support\get_client_ip;
  10. use function Symfony\Component\String\length;
  11. /**
  12. * @title 二级市场
  13. * @controller secondary
  14. * @package app\api\controller
  15. */
  16. class Secondary extends Base
  17. {
  18. public function initialize(){
  19. parent::initialize();
  20. parent::check_login();
  21. }
  22. /**
  23. * @title 藏品出售
  24. * @desc 藏品出售
  25. * @author Gavin
  26. * @url /api/Secondary/sell
  27. * @method POST
  28. * @header name:Authorization require:1 desc:Token
  29. *
  30. * @param name:id type:int require:1 default:1 desc:藏品ID
  31. * @param name:resale_price type:decimal require:1 default:1 desc:出售价格
  32. * @param name:second_password type:int require:1 default:-- desc:二级密码
  33. *
  34. */
  35. public function sell(){
  36. $this->checkSwitch(1);
  37. $id = input('id');
  38. $this->error('暂时关闭');
  39. $user = getMemberInfoHash($this->uid); //获取用户信息
  40. if ($user['is_auth']==0) $this->error('请先实名认证!');
  41. $resale_price = input('resale_price');
  42. $second_password = input('second_password');
  43. if (!$id || !$resale_price) $this->error('参数错误');
  44. //if ($resale_price<'1') $this->error('最低1元');
  45. if ($resale_price<'0.1') $this->error('最低0.1元');
  46. if ($resale_price>'99999') $this->error('最高99999元');
  47. $info = Db::name('store_order_info')
  48. ->where('mid',$this->uid)
  49. ->where('id',$id)
  50. ->find();
  51. if (!$info || $info['status']==2) $this->error('藏品不存在');
  52. if ($info['resale_status']!=1) $this->error('挂售状态错误');
  53. if ($user['second_password']!=md5($second_password)) $this->error('密码错误');
  54. $update_data = [
  55. 'resale_status'=>2,
  56. 'resale_time'=>date('Y-m-d H:i:s'),
  57. 'resale_price'=>$resale_price
  58. ];
  59. if (Db::name('store_order_info')->where('id',$id)->update($update_data)){
  60. $this->success('成功');
  61. }
  62. $this->error('失败');
  63. }
  64. /**
  65. * @title 藏品取消出售
  66. * @desc 藏品取消出售
  67. * @author Gavin
  68. * @url /api/Secondary/cancel_sell
  69. * @method POST
  70. * @header name:Authorization require:1 desc:Token
  71. *
  72. * @param name:id type:int require:1 default:1 desc:藏品ID
  73. */
  74. public function cancel_sell(){
  75. $this->checkSwitch(1);
  76. $id = input('id');
  77. if (!$id) $this->error('参数错误');
  78. $info = Db::name('store_order_info')
  79. ->where('mid',$this->uid)
  80. ->where('id',$id)
  81. ->find();
  82. if (!$info || $info['status']==2) $this->error('藏品不存在');
  83. if ($info['resale_status']!=2) $this->error('挂售状态错误');
  84. //判断是否有待支付订单
  85. $count = Db::name('store_order_info_order')->where('info_id',$id)->where('status',0)->count();
  86. if ($count) $this->error('支付中,无法取消');
  87. $update_data = [
  88. 'resale_status'=>1,
  89. ];
  90. if (Db::name('store_order_info')->where('id',$id)->update($update_data)){
  91. $this->success('成功');
  92. }
  93. $this->error('失败');
  94. }
  95. /**
  96. * @title 标签列表
  97. * @desc 标签列表
  98. * @author Gavin
  99. * @url /api/Secondary/label_list
  100. * @method POST
  101. * @header name:Authorization require:1 desc:Token
  102. */
  103. public function label_list(){
  104. $list = Db::name('store_collection')->whereNotIn('label','测试,测试勿拍')->group('label')->column('label');
  105. $list = array_merge(['全部'],$list);
  106. $this->success('成功',['label_list'=>$list]);
  107. }
  108. /**
  109. * @title 二级市场列表
  110. * @desc 二级市场列表
  111. * @author Gavin
  112. * @url /api/Secondary/sell_list
  113. * @method POST
  114. * @header name:Authorization require:1 desc:Token
  115. * @param name:page type:int : default:1 desc:页数
  116. * @param name:page_num type:int : default:20 desc:每页数
  117. *
  118. * @param name:keyword type:string require:0 default: desc:关键词
  119. * @param name:label type:string require:0 default: desc:标签
  120. * @param name:time_order type:string require:0 default: desc:时间排序(asc:正序desc:倒序)
  121. * @param name:price_order type:string require:0 default: desc:价格排序(asc:正序desc:倒序)
  122. *
  123. * @return name:name type:string require:0 default:0 desc:藏品名称
  124. * @return name:cover type:string require:0 default:0 desc:图片
  125. * @return name:member_name type:string require:0 default:0 desc:出售人名称
  126. * @return name:member_headimg type:string require:0 default:0 desc:出售人头像
  127. * @return name:resale_price type:string require:0 default:0 desc:出售价格
  128. */
  129. public function sell_list(){
  130. $keyword = input('keyword');
  131. $label = input('label');
  132. $time_order = input('time_order');
  133. $price_order = input('price_order');
  134. $count = Db::name('store_order_info')
  135. ->where('status','neq',2)
  136. ->where('resale_status',2)
  137. ->where('is_destruction',1)
  138. ->when($keyword,function ($query) use ($keyword){
  139. $query->whereLike('name','%'.$keyword.'%');
  140. })
  141. ->when($label,function ($query) use ($label){
  142. if ($label!='全部'){
  143. $ids = Db::name('store_collection')->where('label',$label)->column('id');
  144. $query->whereIn('c_id',$ids);
  145. }
  146. })
  147. ->count();
  148. $list = Db::name('store_order_info')
  149. ->where('status','neq',2)
  150. ->where('resale_status',2)
  151. ->where('is_destruction',1)
  152. ->when($keyword,function ($query) use ($keyword){
  153. $query->whereLike('name','%'.$keyword.'%');
  154. })
  155. ->when($label,function ($query) use ($label){
  156. if ($label!='全部'){
  157. $ids = Db::name('store_collection')->where('label',$label)->column('id');
  158. $query->whereIn('c_id',$ids);
  159. }
  160. })
  161. ->when($price_order,function ($query) use ($price_order){
  162. $query->order('resale_price '.$price_order);
  163. })
  164. ->when($time_order,function ($query) use ($time_order){
  165. $query->order('resale_time '.$time_order);
  166. })
  167. ->limit($this->off_set,$this->page_num)
  168. ->select();
  169. foreach ($list as &$v){
  170. $member = getMemberInfoHash($v['mid']); //获取用户信息
  171. $v['member_name'] = $member['name'];
  172. $v['member_headimg'] = $member['headimg'];
  173. $v['pro_info'] = json_decode($v['pro_info'],true);
  174. $count = Db::name('store_order_info_order')->where('info_id',$v['id'])->where('status',0)->count();
  175. $v['is_buy'] = $count>0 ? 1 : 0;
  176. }
  177. $this->success('成功',compact('count','list'));
  178. }
  179. /**
  180. * @title 二级市场详情
  181. * @desc 二级市场详情
  182. * @author Gavin
  183. * @url /api/Secondary/sell_list_detail
  184. * @method POST
  185. * @header name:Authorization require:1 desc:Token
  186. * @param name:id type:int : default: desc:id
  187. */
  188. public function sell_list_detail(){
  189. $id = input('id');
  190. if (!$id) $this->error('参数错误');
  191. $info = Db::name('store_order_info')
  192. ->where('status','neq',2)
  193. ->where('resale_status',2)
  194. ->where('is_destruction',1)
  195. ->where('id',$id)
  196. ->find();
  197. if (!$info) $this->error('藏品不存在');
  198. $member = getMemberInfoHash($info['mid']); //获取用户信息
  199. $info['member_name'] = $member['name'];
  200. $info['member_headimg'] = $member['headimg'];
  201. $info['pro_info'] = json_decode($info['pro_info'],true);
  202. //判断是否有待支付订单
  203. $count = Db::name('store_order_info_order')->where('info_id',$id)->where('status',0)->count();
  204. $info['is_buy'] = $count>0 ? 1 : 0;
  205. $this->success('成功',$info);
  206. }
  207. /**
  208. * @title 购买
  209. * @desc 购买
  210. * @author Gavin
  211. * @url /api/Secondary/createOrder
  212. * @method POST
  213. * @header name:Authorization require:1 desc:Token
  214. * @param name:id type:int require:1 default: desc:主键ID
  215. * @param name:pay_type type:string require:1 default:wx desc:wx:微信zfb:支付宝sd:杉德h5
  216. * @param name:from type:string require:1 default:wx desc:wx:微信公众号h5:网页
  217. *
  218. * @return name:order_no type:int require:0 default:0 desc:订单号
  219. * @return name:pay type:string require:0 default:0 desc:支付信息
  220. */
  221. public function createOrder(){
  222. $this->checkSwitch(1);
  223. $redis = new Redis([ 'select'=> 2]);
  224. $redis_value = $redis->get('secondary_buy'.$this->uid);
  225. if ($redis_value){
  226. $this->error('请求过快,请稍后重试');
  227. }else{
  228. $redis->set('secondary_buy'.$this->uid,1,1);
  229. }
  230. $id = input('id');
  231. $pay_type = input('pay_type','wx');
  232. $this->checkSwitch(2,$pay_type);
  233. $from = input('from','wx');
  234. $user = getMemberInfoHash($this->uid); //获取用户信息
  235. if (!$id) $this->error('参数错误');
  236. if ($user['is_auth']==0) $this->error('请先实名认证!');
  237. $info = Db::name('store_order_info')->where('id',$id)->find();
  238. if (!$info) $this->error('藏品不存在');
  239. if ($info['resale_status']==3) $this->error('藏品已出售');
  240. if ($info['resale_status']==1) $this->error('藏品已撤销出售');
  241. // if ($info['mid']==$this->uid) $this->error('不能购买自己出售的藏品');
  242. //if (isset($user['buy_time']) && $user['buy_time']>date('Y-m-d H:i:s')) $this->error('一小时取消3次以上,24小时内禁止下单');
  243. //判断是否有未支付订单
  244. $order_count = Db::name('store_order_info_order')->where('mid',$this->uid)->where('status',0)->count();
  245. // if ($order_count) $this->error('有未支付订单,无法下单');
  246. //判断是否有待支付订单
  247. $count = Db::name('store_order_info_order')->where('info_id',$id)->where('status',0)->count();
  248. //if ($count) $this->error('支付中,无法下单');
  249. $service_fee = getConfigValue('service_fee');
  250. $royalties = getConfigValue('royalties');
  251. $com = true;
  252. Db::startTrans();
  253. try {
  254. $order_no = get_order_sn();
  255. //获取价格
  256. $price = $info['resale_price'];
  257. $num = 1;
  258. $proportion = sprintf("%.2f",$price *($service_fee/100)); //四舍五入保留两位小数点
  259. $roya = sprintf("%.2f",$price *($royalties/100)); //四舍五入保留两位小数点
  260. $total_fee = bcmul($price,$num,2);
  261. $real_money = $price-$proportion-$roya;
  262. $data = [
  263. 'order_no'=>$order_no,
  264. 'mid'=>$this->uid,
  265. 'info_id'=>$id,
  266. 'num'=>$num,
  267. 'pro_info'=>json_encode($info,true),
  268. 'pay_price'=>$total_fee,
  269. 'service_fee'=>$service_fee,
  270. 'royalties'=>$royalties,
  271. 'to_account'=>$real_money,
  272. 'pay_type'=>$pay_type
  273. ];
  274. $id = Db::name('store_order_info_order')->insertGetId($data);
  275. $body = '梵易数藏购买二级市场藏品';
  276. switch ($pay_type){
  277. case 'wx':
  278. $config = retrunWxConfig();
  279. $total_fee = $total_fee * 100;
  280. $config['notify_url'] = 'https://'.$_SERVER['SERVER_NAME'].'/api/Pay/SecondaryWxOrderNotify';
  281. $app = Factory::payment($config);
  282. $post_data = [
  283. 'body' => $body,
  284. 'out_trade_no' => $order_no,
  285. 'total_fee' => $total_fee,
  286. 'attach'=>$this->uid, //自定义传值
  287. ];
  288. //trade_type SAPI--JSAPI支付(或小程序支付)、NATIVE--Native支付、APP--app支付,MWEB--H5支付
  289. if ($from=='wx'){
  290. $post_data['openid'] = $user['openid'];
  291. $post_data['trade_type'] = 'JSAPI';
  292. }elseif ($from=='h5'){
  293. $post_data['trade_type'] = 'MWEB';
  294. }
  295. $result = $app->order->unify($post_data);
  296. if ($result['return_msg']=='OK'){
  297. if ($result['result_code']=='FAIL'){
  298. $com = false;
  299. Db::rollback();
  300. }else{
  301. $order1 = $app->jssdk->bridgeConfig($result['prepay_id']);//执行二次签名返回参数
  302. $retrun_data['order_no'] = $order_no;
  303. $retrun_data['id'] = $id;
  304. $retrun_data['pay'] = json_decode($order1,true);
  305. Db::commit();
  306. }
  307. }else{
  308. $com = false;
  309. Db::rollback();
  310. }
  311. break;
  312. case 'zfb':
  313. $zfb = new AliPay();
  314. $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/api/Pay/alipaySecondaryNotify';//回调地址
  315. $order = $zfb->ali_pay_pc($body, $total_fee, $order_no, $notify_url,'https://'.$_SERVER['SERVER_NAME'].'/web/h5/pages/shop/order');//调用支付宝支付的方法
  316. $retrun_data['order_no'] = $order_no;
  317. $retrun_data['id'] = $id;
  318. $retrun_data['pay'] = $order;
  319. Db::commit();
  320. break;
  321. case 'sd':
  322. $client = new Shande();
  323. $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/api/Pay/shandeSecondaryNotify';//回调地址
  324. $total_fee = $total_fee*100;
  325. $lenth = strlen($total_fee);
  326. $total_fee = get0number($lenth).$total_fee;
  327. $result = $client->orderPay($order_no,$total_fee,$body,$notify_url,'https://'.$_SERVER['SERVER_NAME'].'/web/h5/pages/shop/order');
  328. $retrun_data['order_no'] = $order_no;
  329. $retrun_data['id'] = $id;
  330. $retrun_data['pay'] = json_decode($result['data'],true);
  331. Db::commit();
  332. break;
  333. }
  334. }catch (\Exception $e){
  335. $com=false;
  336. Db::rollback();
  337. }
  338. if ($com){
  339. $this->success('成功',$retrun_data);
  340. }
  341. $this->error('失败,请稍后重试');
  342. }
  343. /**
  344. * @title 二级市场我的转售列表
  345. * @desc 二级市场我的转售列表
  346. * @author Gavin
  347. * @url /api/Secondary/my_sell_list
  348. * @method POST
  349. * @header name:Authorization require:1 desc:Token
  350. * @param name:page type:int : default:1 desc:页数
  351. * @param name:page_num type:int : default:20 desc:每页数
  352. *
  353. * @param name:keyword type:string require:0 default: desc:关键词
  354. * @param name:time_order type:string require:0 default: desc:时间排序(asc:正序desc:倒序)
  355. * @param name:price_order type:string require:0 default: desc:价格排序(asc:正序desc:倒序)
  356. *
  357. * @return name:name type:string require:0 default:0 desc:藏品名称
  358. * @return name:cover type:string require:0 default:0 desc:图片
  359. * @return name:member_name type:string require:0 default:0 desc:出售人名称
  360. * @return name:member_headimg type:string require:0 default:0 desc:出售人头像
  361. * @return name:resale_price type:string require:0 default:0 desc:出售价格
  362. */
  363. public function my_sell_list(){
  364. $keyword = input('keyword');
  365. $time_order = input('time_order');
  366. $price_order = input('price_order');
  367. $count = Db::name('store_order_info')
  368. ->where('mid',$this->uid)
  369. ->where('resale_status','neq',1)
  370. ->when($keyword,function ($query) use ($keyword){
  371. $query->whereLike('name','%'.$keyword.'%');
  372. })
  373. ->count();
  374. $list = Db::name('store_order_info')
  375. ->where('mid',$this->uid)
  376. ->where('resale_status','neq',1)
  377. ->when($keyword,function ($query) use ($keyword){
  378. $query->whereLike('name','%'.$keyword.'%');
  379. })
  380. ->when($price_order,function ($query) use ($price_order){
  381. $query->order('resale_price '.$price_order);
  382. })
  383. ->when($time_order,function ($query) use ($time_order){
  384. $query->order('resale_time '.$time_order);
  385. })
  386. ->order('resale_status asc')
  387. ->limit($this->off_set,$this->page_num)
  388. ->select();
  389. foreach ($list as &$v){
  390. $member = getMemberInfoHash($v['mid']); //获取用户信息
  391. $v['member_name'] = $member['name'];
  392. $v['member_headimg'] = $member['headimg'];
  393. $v['pro_info'] = json_decode($v['pro_info'],true);
  394. }
  395. $this->success('成功',compact('count','list'));
  396. }
  397. /**
  398. * @title 二级市场订单
  399. * @desc 二级市场订单
  400. * @author Gavin
  401. * @url /api/Secondary/secondaryOrderList
  402. * @method POST
  403. * @header name:Authorization require:1 desc:Token
  404. * @param name:page type:int : default:1 desc:页数
  405. * @param name:page_num type:int : default:20 desc:每页数
  406. *
  407. * @param name:status type:string require:0 default: desc:0:待支付1:已购买2:转售中3:已转售
  408. *
  409. * @return name:name type:string require:0 default:0 desc:藏品名称
  410. * @return name:cover type:string require:0 default:0 desc:图片
  411. * @return name:member_name type:string require:0 default:0 desc:出售人名称
  412. * @return name:member_headimg type:string require:0 default:0 desc:出售人头像
  413. * @return name:pay_price type:string require:0 default:0 desc:出售价格(已购买、待支付使用)
  414. * @return name:resale_price type:string require:0 default:0 desc:出售价格(转售中、已转售使用)
  415. */
  416. public function secondaryOrderList(){
  417. $status = input('status',0);
  418. switch ($status){
  419. case 0:case 1:
  420. $count = Db::name('store_order_info_order')
  421. ->where('mid',$this->uid)
  422. ->where('status',$status)
  423. ->count();
  424. $list = Db::name('store_order_info_order')
  425. ->where('mid',$this->uid)
  426. ->where('status',$status)
  427. ->limit($this->off_set,$this->page_num)
  428. ->select();
  429. //自动取消分钟数
  430. $cancel_time = getCancelTime();
  431. foreach ($list as &$v){
  432. $v['pro_info'] = json_decode($v['pro_info'],true);
  433. $member = getMemberInfoHash($v['mid']); //获取用户信息
  434. $v['member_name'] = $member['name'];
  435. $v['member_headimg'] = $member['headimg'];
  436. if ($v['status']==0){
  437. $v['cancel_time'] = date('Y-m-d H:i:s',strtotime($v['create_at'])+($cancel_time*60));
  438. }
  439. }
  440. break;
  441. case 2:case 3:
  442. $count = Db::name('store_order_info')
  443. ->where('mid',$this->uid)
  444. ->where('resale_status',$status)
  445. ->where('is_destruction',1)
  446. ->count();
  447. $list = Db::name('store_order_info')
  448. ->where('mid',$this->uid)
  449. ->where('resale_status',$status)
  450. ->where('is_destruction',1)
  451. ->limit($this->off_set,$this->page_num)
  452. ->select();
  453. foreach ($list as &$v){
  454. $v['pro_info'] = json_decode($v['pro_info'],true);
  455. $member = getMemberInfoHash($v['mid']); //获取用户信息
  456. $v['member_name'] = $member['name'];
  457. $v['member_headimg'] = $member['headimg'];
  458. }
  459. break;
  460. }
  461. $this->success('成功',compact('count','list'));
  462. }
  463. /**
  464. * @title 取消订单
  465. * @desc 取消订单
  466. * @author Gavin
  467. * @url /api/Secondary/cancelOrder
  468. * @method POST
  469. * @header name:Authorization require:1 desc:Token
  470. * @param name:order_no type:string require:1 default:-- desc:订单号
  471. */
  472. public function cancelOrder(){
  473. $order_no = input('order_no');
  474. if (!$order_no) $this->error('参数错误');
  475. $order = Db::name('store_order_info_order')
  476. ->where('order_no',$order_no)
  477. ->where('mid',$this->uid)
  478. ->find();
  479. if (!$order) $this->error('订单不存在');
  480. if ($order['status']!=0) $this->error('订单已支付或已取消');
  481. $com = true;
  482. Db::startTrans();
  483. try {
  484. $up_data = [
  485. 'status'=>2,
  486. 'cancel_at'=>date('Y-m-d H:i:s'),
  487. 'cancel_state'=>2
  488. ];
  489. Db::name('store_order_info_order')->where('order_no',$order_no)->update($up_data);
  490. $cancle = [
  491. 'mid'=>$this->uid,
  492. 'order_id'=>$order['id']
  493. ];
  494. Db::name('store_order_info_cancel_log')->insert($cancle);
  495. $time = date('Y-m-d H:i:s',time()-(60*60));
  496. $count = Db::name('store_order_info_cancel_log')->where('mid',$this->uid)->where('create_at','gt',$time)->count();
  497. if ($count>2){
  498. $buy_time = date('Y-m-d H:i:s',time()+(24*60*60));
  499. Db::name('store_member')->where('id',$this->uid)->update(['buy_time'=>$buy_time]);
  500. }
  501. Db::commit();
  502. }catch (\Exception $e){
  503. $com=false;
  504. Db::rollback();
  505. }
  506. if ($com){
  507. setMemberInfoHash($this->uid);
  508. $this->success('取消成功');
  509. }else{
  510. $this->error('取消失败,请稍后重试');
  511. }
  512. }
  513. /**
  514. * @title 待支付订单支付
  515. * @desc 待支付订单支付
  516. * @author Gavin
  517. * @url /api/Secondary/payOrder
  518. * @method POST
  519. * @header name:Authorization require:1 desc:Token
  520. * @param name:order_no type:string require:1 default:-- desc:订单号
  521. * @param name:from type:string require:1 default:wx desc:wx:微信公众号h5:网页
  522. *
  523. * @return name:order_no type:int require:0 default:0 desc:订单号
  524. * @return name:pay type:string require:0 default:0 desc:支付信息
  525. */
  526. public function payOrder(){
  527. $this->checkSwitch(1);
  528. $user = getMemberInfoHash($this->uid); //获取用户信息
  529. $order_no = input('order_no'); //订单号
  530. $id = input('id');
  531. $from = input('from','wx');
  532. if (!$order_no) $this->error('参数错误');
  533. if (!$id) $this->error('参数错误');
  534. $order = Db::name('store_order_info_order')
  535. // ->where('order_no',$order_no)
  536. ->where('id',$id)
  537. ->where('mid',$this->uid)
  538. ->find();
  539. $order_no = $order['order_no'];
  540. $pay_type = $order['pay_type'];
  541. $this->checkSwitch(2,$pay_type);
  542. if (!$order) $this->error('订单不存在');
  543. if ($order['status']!=0) $this->error('订单已支付或已取消');
  544. $info = Db::name('store_order_info')->where('id',$order['info_id'])->find();
  545. if ($info['resale_status']!=2) $this->error('藏品已出售或已撤销出售');
  546. $com = true;
  547. Db::startTrans();
  548. try {
  549. //获取价格
  550. $total_fee = $order['pay_price'];
  551. $body = '梵易数藏购买二级市场藏品';
  552. switch ($pay_type){
  553. case 'wx':
  554. $config = retrunWxConfig();
  555. $total_fee = $total_fee * 100;
  556. $config['notify_url'] = 'https://'.$_SERVER['SERVER_NAME'].'/api/Pay/SecondaryWxOrderNotify';
  557. $app = Factory::payment($config);
  558. $post_data = [
  559. 'body' => $body,
  560. 'out_trade_no' => $order_no,
  561. 'total_fee' => $total_fee,
  562. 'attach'=>$this->uid, //自定义传值
  563. ];
  564. //trade_type SAPI--JSAPI支付(或小程序支付)、NATIVE--Native支付、APP--app支付,MWEB--H5支付
  565. if ($from=='wx'){
  566. $post_data['openid'] = $user['openid'];
  567. $post_data['trade_type'] = 'JSAPI';
  568. }elseif ($from=='h5'){
  569. $post_data['trade_type'] = 'MWEB';
  570. }
  571. $result = $app->order->unify($post_data);
  572. if ($result['return_msg']=='OK'){
  573. if ($result['result_code']=='FAIL'){
  574. $com = false;
  575. Db::rollback();
  576. }else{
  577. $order1 = $app->jssdk->bridgeConfig($result['prepay_id']);//执行二次签名返回参数
  578. $retrun_data['order_no'] = $order_no;
  579. $retrun_data['id'] = $order['id'];
  580. $retrun_data['pay'] = json_decode($order1,true);
  581. Db::commit();
  582. }
  583. }else{
  584. $com = false;
  585. Db::rollback();
  586. }
  587. break;
  588. case 'zfb':
  589. $zfb = new AliPay();
  590. $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/api/Pay/alipaySecondaryNotify';//回调地址
  591. $order = $zfb->ali_pay_pc($body, $total_fee, $order_no, $notify_url,'https://'.$_SERVER['SERVER_NAME'].'/web/h5/pages/shop/order');//调用支付宝支付的方法
  592. $retrun_data['order_no'] = $order_no;
  593. $retrun_data['id'] = $order['id'];
  594. $retrun_data['pay'] = $order;
  595. Db::commit();
  596. break;
  597. case 'sd':
  598. $client = new Shande();
  599. $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/api/Pay/shandeSecondaryNotify';//回调地址
  600. $total_fee = $total_fee*100;
  601. $lenth = strlen($total_fee);
  602. $total_fee = get0number($lenth).$total_fee;
  603. $order_nos = get_order_sn();
  604. if (Db::name('store_order_info_order')
  605. ->where('order_no',$order_no)
  606. ->where('mid',$this->uid)
  607. ->update(['order_no'=>$order_nos])){
  608. $result = $client->orderPay($order_nos,$total_fee,$body,$notify_url,'https://'.$_SERVER['SERVER_NAME'].'/web/h5/pages/shop/order');
  609. $retrun_data['order_no'] = $order_nos;
  610. $retrun_data['id'] = $order['id'];
  611. $retrun_data['pay'] = json_decode($result['data'],true);
  612. Db::commit();
  613. }else{
  614. $com=false;
  615. Db::rollback();
  616. }
  617. break;
  618. }
  619. }catch (\Exception $e){
  620. $com=false;
  621. Db::rollback();
  622. }
  623. if ($com){
  624. $this->success('成功',$retrun_data);
  625. }
  626. $this->error('失败,请稍后重试');
  627. }
  628. /**
  629. * @param 判断开关
  630. * @param string $pay_type
  631. * @return bool
  632. * @throws \think\db\exception\DataNotFoundException
  633. * @throws \think\db\exception\ModelNotFoundException
  634. * @throws \think\exception\DbException
  635. */
  636. public function checkSwitch($type,$pay_type=''){
  637. if ($type==1){
  638. $v = getConfigValue('secondary_sell_switch');
  639. if (!$v) $this->error('维护中,暂时关闭');
  640. }elseif ($type==2){
  641. $nameArray = ['secondary_wx_switch','secondary_zfb_switch','secondary_sd_switch'];
  642. $values = getConfig($nameArray);
  643. if ($pay_type=='wx'){
  644. if (!$values['secondary_wx_switch']) $this->error('微信支付暂时关闭');
  645. }elseif ($pay_type=='zfb'){
  646. if (!$values['secondary_zfb_switch']) $this->error('支付宝支付暂时关闭');
  647. }elseif ($pay_type=='sd'){
  648. if (!$values['secondary_sd_switch']) $this->error('杉德支付暂时关闭');
  649. }
  650. }
  651. return true;
  652. }
  653. }