Secondary.php 33 KB

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