Secondary.php 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944
  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\AliPay3;
  6. use app\common\library\HuijuH5Pay;
  7. use app\common\library\HuijuKjPay;
  8. use app\common\library\Shande;
  9. use EasyWeChat\Factory;
  10. use think\cache\driver\Redis;
  11. use think\Db;
  12. use function EasyWeChat\Kernel\Support\get_client_ip;
  13. use function Symfony\Component\String\length;
  14. /**
  15. * @title 二级市场
  16. * @controller secondary
  17. * @package app\api\controller
  18. */
  19. class Secondary extends Base
  20. {
  21. public function initialize(){
  22. parent::initialize();
  23. parent::check_login();
  24. }
  25. /**
  26. * @title 藏品出售
  27. * @desc 藏品出售
  28. * @author Gavin
  29. * @url /api/Secondary/sell
  30. * @method POST
  31. * @header name:Authorization require:1 desc:Token
  32. *
  33. * @param name:id type:int require:1 default:1 desc:藏品ID
  34. * @param name:resale_price type:decimal require:1 default:1 desc:出售价格
  35. * @param name:second_password type:int require:1 default:-- desc:二级密码
  36. *
  37. */
  38. public function sell(){
  39. $this->checkSwitch(1);
  40. $id = input('id');
  41. $user = getMemberInfoHash($this->uid); //获取用户信息
  42. if ($user['is_auth']==0) $this->error('请先实名认证!');
  43. $resale_price = input('resale_price');
  44. $second_password = input('second_password');
  45. if (!$id || !$resale_price) $this->error('参数错误');
  46. //if ($resale_price<'1') $this->error('最低1元');
  47. if ($resale_price<'0.1') $this->error('最低0.1元');
  48. if ($resale_price>'99999') $this->error('最高99999元');
  49. $info = Db::name('store_order_info')
  50. ->where('mid',$this->uid)
  51. ->where('id',$id)
  52. ->find();
  53. if (!$info || $info['status']==2) $this->error('藏品不存在');
  54. if ($info['resale_status']!=1) $this->error('挂售状态错误');
  55. $is_sell = Db::name('store_collection')->where('id',$info['c_id'])->value('is_sell');
  56. if (!$is_sell) $this->error('该藏品不支持寄售');
  57. if ($user['second_password']!=md5($second_password)) $this->error('密码错误');
  58. $update_data = [
  59. 'resale_status'=>2,
  60. 'resale_time'=>date('Y-m-d H:i:s'),
  61. 'resale_price'=>$resale_price
  62. ];
  63. if (Db::name('store_order_info')->where('id',$id)->update($update_data)){
  64. $this->success('成功');
  65. }
  66. $this->error('失败');
  67. }
  68. /**
  69. * @title 藏品取消出售
  70. * @desc 藏品取消出售
  71. * @author Gavin
  72. * @url /api/Secondary/cancel_sell
  73. * @method POST
  74. * @header name:Authorization require:1 desc:Token
  75. *
  76. * @param name:id type:int require:1 default:1 desc:藏品ID
  77. */
  78. public function cancel_sell(){
  79. $this->checkSwitch(1);
  80. $id = input('id');
  81. if (!$id) $this->error('参数错误');
  82. $info = Db::name('store_order_info')
  83. ->where('mid',$this->uid)
  84. ->where('id',$id)
  85. ->find();
  86. if (!$info || $info['status']==2) $this->error('藏品不存在');
  87. if ($info['resale_status']!=2) $this->error('挂售状态错误');
  88. //判断是否有待支付订单
  89. $count = Db::name('store_order_info_order')->where('info_id',$id)->where('status',0)->count();
  90. if ($count) $this->error('支付中,无法取消');
  91. $update_data = [
  92. 'resale_status'=>1,
  93. ];
  94. if (Db::name('store_order_info')->where('id',$id)->update($update_data)){
  95. $this->success('成功');
  96. }
  97. $this->error('失败');
  98. }
  99. /**
  100. * @title 标签列表
  101. * @desc 标签列表
  102. * @author Gavin
  103. * @url /api/Secondary/label_list
  104. * @method POST
  105. * @header name:Authorization require:1 desc:Token
  106. */
  107. public function label_list(){
  108. $list = Db::name('store_collection')->whereNotIn('label','测试,测试勿拍')->group('label')->column('label');
  109. $list = array_merge(['全部'],$list);
  110. $this->success('成功',['label_list'=>$list]);
  111. }
  112. /**
  113. * @title 二级市场列表
  114. * @desc 二级市场列表
  115. * @author Gavin
  116. * @url /api/Secondary/sell_list
  117. * @method POST
  118. * @header name:Authorization require:1 desc:Token
  119. * @param name:page type:int : default:1 desc:页数
  120. * @param name:page_num type:int : default:20 desc:每页数
  121. *
  122. * @param name:keyword type:string require:0 default: desc:关键词
  123. * @param name:label type:string require:0 default: desc:标签
  124. * @param name:time_order type:string require:0 default: desc:时间排序(asc:正序desc:倒序)
  125. * @param name:price_order type:string require:0 default: desc:价格排序(asc:正序desc:倒序)
  126. *
  127. * @return name:name type:string require:0 default:0 desc:藏品名称
  128. * @return name:cover type:string require:0 default:0 desc:图片
  129. * @return name:member_name type:string require:0 default:0 desc:出售人名称
  130. * @return name:member_headimg type:string require:0 default:0 desc:出售人头像
  131. * @return name:resale_price type:string require:0 default:0 desc:出售价格
  132. */
  133. public function sell_list(){
  134. $keyword = input('keyword');
  135. $label = input('label');
  136. $time_order = input('time_order');
  137. $price_order = input('price_order');
  138. $count = Db::name('store_order_info')
  139. ->where('status','neq',2)
  140. ->where('resale_status',2)
  141. ->where('is_destruction',1)
  142. ->when($keyword,function ($query) use ($keyword){
  143. $query->whereLike('name','%'.$keyword.'%');
  144. })
  145. ->when($label,function ($query) use ($label){
  146. if ($label!='全部'){
  147. $ids = Db::name('store_collection')->where('label',$label)->column('id');
  148. $query->whereIn('c_id',$ids);
  149. }
  150. })
  151. ->count();
  152. $list = Db::name('store_order_info')
  153. ->where('status','neq',2)
  154. ->where('resale_status',2)
  155. ->where('is_destruction',1)
  156. ->when($keyword,function ($query) use ($keyword){
  157. $query->whereLike('name','%'.$keyword.'%');
  158. })
  159. ->when($label,function ($query) use ($label){
  160. if ($label!='全部'){
  161. $ids = Db::name('store_collection')->where('label',$label)->column('id');
  162. $query->whereIn('c_id',$ids);
  163. }
  164. })
  165. ->when($price_order,function ($query) use ($price_order){
  166. $query->order('resale_price '.$price_order);
  167. })
  168. ->when($time_order,function ($query) use ($time_order){
  169. $query->order('resale_time '.$time_order);
  170. })
  171. ->limit($this->off_set,$this->page_num)
  172. ->select();
  173. foreach ($list as &$v){
  174. $member = getMemberInfoHash($v['mid']); //获取用户信息
  175. $v['member_name'] = $member['name'];
  176. $v['member_headimg'] = $member['headimg'];
  177. $v['pro_info'] = json_decode($v['pro_info'],true);
  178. $count = Db::name('store_order_info_order')->where('info_id',$v['id'])->where('status',0)->count();
  179. $v['is_buy'] = $count>0 ? 1 : 0;
  180. }
  181. $this->success('成功',compact('count','list'));
  182. }
  183. /**
  184. * @title 二级市场详情
  185. * @desc 二级市场详情
  186. * @author Gavin
  187. * @url /api/Secondary/sell_list_detail
  188. * @method POST
  189. * @header name:Authorization require:1 desc:Token
  190. * @param name:id type:int : default: desc:id
  191. */
  192. public function sell_list_detail(){
  193. $id = input('id');
  194. if (!$id) $this->error('参数错误');
  195. $info = Db::name('store_order_info')
  196. ->where('status','neq',2)
  197. ->where('resale_status',2)
  198. ->where('is_destruction',1)
  199. ->where('id',$id)
  200. ->find();
  201. if (!$info) $this->error('藏品不存在');
  202. $member = getMemberInfoHash($info['mid']); //获取用户信息
  203. $info['member_name'] = $member['name'];
  204. $info['member_headimg'] = $member['headimg'];
  205. $info['pro_info'] = json_decode($info['pro_info'],true);
  206. //判断是否有待支付订单
  207. $count = Db::name('store_order_info_order')->where('info_id',$id)->where('status',0)->count();
  208. $info['is_buy'] = $count>0 ? 1 : 0;
  209. $this->success('成功',$info);
  210. }
  211. /**
  212. * @title 购买
  213. * @desc 购买
  214. * @author Gavin
  215. * @url /api/Secondary/createOrder
  216. * @method POST
  217. * @header name:Authorization require:1 desc:Token
  218. * @param name:id type:int require:1 default: desc:主键ID
  219. * @param name:pay_type type:string require:1 default:wx desc:wx:微信zfb:支付宝sd:杉德h5
  220. * @param name:from type:string require:1 default:wx desc:wx:微信公众号h5:网页
  221. *
  222. * @return name:order_no type:int require:0 default:0 desc:订单号
  223. * @return name:pay type:string require:0 default:0 desc:支付信息
  224. */
  225. public function createOrder(){
  226. $this->checkSwitch(3);
  227. $redis = new Redis([ 'select'=> 2]);
  228. $redis_value = $redis->get('secondary_buy'.$this->uid);
  229. if ($redis_value){
  230. $this->error('请求过快,请稍后重试');
  231. }else{
  232. $redis->set('secondary_buy'.$this->uid,1,1);
  233. }
  234. $id = input('id');
  235. $pay_type = input('pay_type','wx');
  236. $this->checkSwitch(2,$pay_type);
  237. $from = input('from','wx');
  238. $user = getMemberInfoHash($this->uid); //获取用户信息
  239. if (!$id) $this->error('参数错误');
  240. if ($user['is_auth']==0) $this->error('请先实名认证!');
  241. $info = Db::name('store_order_info')->where('id',$id)->find();
  242. if (!$info) $this->error('藏品不存在');
  243. if ($info['resale_status']==3) $this->error('藏品已出售');
  244. if ($info['resale_status']==1) $this->error('藏品已撤销出售');
  245. if ($info['mid']==$this->uid) $this->error('不能购买自己出售的藏品');
  246. if ($pay_type=='yhkj'){
  247. if (!$user['hj_pay_status']) $this->error('请签约银行卡后购买');
  248. }
  249. // if (isset($user['buy_time']) && $user['buy_time']>date('Y-m-d H:i:s')) $this->error('一小时取消3次以上,24小时内禁止下单');
  250. //判断是否有未支付订单
  251. $order_count = Db::name('store_order_info_order')->where('mid',$this->uid)->where('status',0)->count();
  252. if ($order_count) $this->error('有未支付订单,无法下单');
  253. //判断是否有待支付订单
  254. $count = Db::name('store_order_info_order')->where('info_id',$id)->where('status',0)->count();
  255. if ($count) $this->error('支付中,无法下单');
  256. $service_fee = getConfigValue('service_fee');
  257. $royalties = getConfigValue('royalties');
  258. $com = true;
  259. Db::startTrans();
  260. try {
  261. $order_no = get_order_sn();
  262. //获取价格
  263. $price = $info['resale_price'];
  264. $num = 1;
  265. $proportion = sprintf("%.2f",$price *($service_fee/100)); //四舍五入保留两位小数点
  266. $roya = sprintf("%.2f",$price *($royalties/100)); //四舍五入保留两位小数点
  267. $total_fee = bcmul($price,$num,2);
  268. $real_money = $price-$proportion-$roya;
  269. $data = [
  270. 'order_no'=>$order_no,
  271. 'mid'=>$this->uid,
  272. 'info_id'=>$id,
  273. 'num'=>$num,
  274. 'pro_info'=>json_encode($info,true),
  275. 'pay_price'=>$total_fee,
  276. 'service_fee'=>$service_fee,
  277. 'royalties'=>$royalties,
  278. 'to_account'=>$real_money,
  279. 'pay_type'=>$pay_type
  280. ];
  281. $id = Db::name('store_order_info_order')->insertGetId($data);
  282. $retrun_data['order_no'] = $order_no;
  283. $retrun_data['id'] = $id;
  284. $retrun_data['pay'] = '';
  285. Db::commit();
  286. // $body = 'top艺术购买二级市场藏品';
  287. // switch ($pay_type){
  288. // case 'wx':
  289. // $config = retrunWxConfig();
  290. // $total_fee = $total_fee * 100;
  291. // $config['notify_url'] = 'https://'.$_SERVER['SERVER_NAME'].'/api/Pay/SecondaryWxOrderNotify';
  292. // $app = Factory::payment($config);
  293. //
  294. // $post_data = [
  295. // 'body' => $body,
  296. // 'out_trade_no' => $order_no,
  297. // 'total_fee' => $total_fee,
  298. // 'attach'=>$this->uid, //自定义传值
  299. // ];
  300. // //trade_type SAPI--JSAPI支付(或小程序支付)、NATIVE--Native支付、APP--app支付,MWEB--H5支付
  301. // if ($from=='wx'){
  302. // $post_data['openid'] = $user['openid'];
  303. // $post_data['trade_type'] = 'JSAPI';
  304. // }elseif ($from=='h5'){
  305. // $post_data['trade_type'] = 'MWEB';
  306. // }
  307. // $result = $app->order->unify($post_data);
  308. //
  309. // if ($result['return_msg']=='OK'){
  310. // if ($result['result_code']=='FAIL'){
  311. // $com = false;
  312. // Db::rollback();
  313. // }else{
  314. // $order1 = $app->jssdk->bridgeConfig($result['prepay_id']);//执行二次签名返回参数
  315. // $retrun_data['order_no'] = $order_no;
  316. // $retrun_data['id'] = $id;
  317. // $retrun_data['pay'] = json_decode($order1,true);
  318. // Db::commit();
  319. // }
  320. // }else{
  321. // $com = false;
  322. // Db::rollback();
  323. // }
  324. // break;
  325. // case 'zfb':
  326. //
  327. // $zfb = new AliPay3();
  328. // $notify_url = $this->request->root(true).'/index.php/api/Pay/alipaySecondaryNotify';//回调地址
  329. // $callback_url = 'https://'.$_SERVER['SERVER_NAME'].'/web/h5/pages/shop/order';
  330. // $order = $zfb->aliPay($body,$total_fee,$order_no,$notify_url,$this->uid,$callback_url);
  331. // $retrun_data['order_no'] = $order_no;
  332. // $retrun_data['id'] = $id;
  333. // $retrun_data['pay'] = $order['pay_url'];
  334. // Db::commit();
  335. // break;
  336. // case 'sd':
  337. // $client = new Shande();
  338. // $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/index.php/api/Pay/shandeSecondaryNotify';//回调地址
  339. // $total_fee = $total_fee*100;
  340. // $lenth = strlen($total_fee);
  341. // $total_fee = get0number($lenth).$total_fee;
  342. // $result = $client->orderPay($order_no,$total_fee,$body,$notify_url,'https://'.$_SERVER['SERVER_NAME'].'/web/h5/pages/shop/order');
  343. // $retrun_data['order_no'] = $order_no;
  344. // $retrun_data['id'] = $id;
  345. // $retrun_data['pay'] = json_decode($result['data'],true);
  346. // Db::commit();
  347. // break;
  348. // default:
  349. // $retrun_data['order_no'] = $order_no;
  350. // $retrun_data['id'] = $id;
  351. // $retrun_data['pay'] = '';
  352. // Db::commit();
  353. // break;
  354. //
  355. // }
  356. }catch (\Exception $e){
  357. $com=false;
  358. Db::rollback();
  359. }
  360. if ($com){
  361. $this->success('成功',$retrun_data);
  362. }
  363. $this->error('失败,请稍后重试');
  364. }
  365. /**
  366. * @title 二级市场我的转售列表
  367. * @desc 二级市场我的转售列表
  368. * @author Gavin
  369. * @url /api/Secondary/my_sell_list
  370. * @method POST
  371. * @header name:Authorization require:1 desc:Token
  372. * @param name:page type:int : default:1 desc:页数
  373. * @param name:page_num type:int : default:20 desc:每页数
  374. *
  375. * @param name:keyword type:string require:0 default: desc:关键词
  376. * @param name:time_order type:string require:0 default: desc:时间排序(asc:正序desc:倒序)
  377. * @param name:price_order type:string require:0 default: desc:价格排序(asc:正序desc:倒序)
  378. *
  379. * @return name:name type:string require:0 default:0 desc:藏品名称
  380. * @return name:cover type:string require:0 default:0 desc:图片
  381. * @return name:member_name type:string require:0 default:0 desc:出售人名称
  382. * @return name:member_headimg type:string require:0 default:0 desc:出售人头像
  383. * @return name:resale_price type:string require:0 default:0 desc:出售价格
  384. */
  385. public function my_sell_list(){
  386. $keyword = input('keyword');
  387. $time_order = input('time_order');
  388. $price_order = input('price_order');
  389. $count = Db::name('store_order_info')
  390. ->where('mid',$this->uid)
  391. ->where('resale_status','neq',1)
  392. ->when($keyword,function ($query) use ($keyword){
  393. $query->whereLike('name','%'.$keyword.'%');
  394. })
  395. ->count();
  396. $list = Db::name('store_order_info')
  397. ->where('mid',$this->uid)
  398. ->where('resale_status','neq',1)
  399. ->when($keyword,function ($query) use ($keyword){
  400. $query->whereLike('name','%'.$keyword.'%');
  401. })
  402. ->when($price_order,function ($query) use ($price_order){
  403. $query->order('resale_price '.$price_order);
  404. })
  405. ->when($time_order,function ($query) use ($time_order){
  406. $query->order('resale_time '.$time_order);
  407. })
  408. ->order('resale_status asc')
  409. ->limit($this->off_set,$this->page_num)
  410. ->select();
  411. foreach ($list as &$v){
  412. $member = getMemberInfoHash($v['mid']); //获取用户信息
  413. $v['member_name'] = $member['name'];
  414. $v['member_headimg'] = $member['headimg'];
  415. $v['pro_info'] = json_decode($v['pro_info'],true);
  416. }
  417. $this->success('成功',compact('count','list'));
  418. }
  419. /**
  420. * @title 二级市场订单
  421. * @desc 二级市场订单
  422. * @author Gavin
  423. * @url /api/Secondary/secondaryOrderList
  424. * @method POST
  425. * @header name:Authorization require:1 desc:Token
  426. * @param name:page type:int : default:1 desc:页数
  427. * @param name:page_num type:int : default:20 desc:每页数
  428. *
  429. * @param name:status type:string require:0 default: desc:0:待支付1:已购买2:转售中3:已转售
  430. *
  431. * @return name:name type:string require:0 default:0 desc:藏品名称
  432. * @return name:cover type:string require:0 default:0 desc:图片
  433. * @return name:member_name type:string require:0 default:0 desc:出售人名称
  434. * @return name:member_headimg type:string require:0 default:0 desc:出售人头像
  435. * @return name:pay_price type:string require:0 default:0 desc:出售价格(已购买、待支付使用)
  436. * @return name:resale_price type:string require:0 default:0 desc:出售价格(转售中、已转售使用)
  437. */
  438. public function secondaryOrderList(){
  439. $status = input('status',0);
  440. switch ($status){
  441. case 0:case 1:
  442. $count = Db::name('store_order_info_order')
  443. ->where('mid',$this->uid)
  444. ->where('status',$status)
  445. ->count();
  446. $list = Db::name('store_order_info_order')
  447. ->where('mid',$this->uid)
  448. ->where('status',$status)
  449. ->limit($this->off_set,$this->page_num)
  450. ->select();
  451. //自动取消分钟数
  452. $cancel_time = getCancelTime();
  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. if ($v['status']==0){
  459. $v['cancel_time'] = date('Y-m-d H:i:s',strtotime($v['create_at'])+($cancel_time*60));
  460. }
  461. }
  462. break;
  463. case 2:case 3:
  464. $count = Db::name('store_order_info')
  465. ->where('mid',$this->uid)
  466. ->where('resale_status',$status)
  467. ->where('is_destruction',1)
  468. ->count();
  469. $list = Db::name('store_order_info')
  470. ->where('mid',$this->uid)
  471. ->where('resale_status',$status)
  472. ->where('is_destruction',1)
  473. ->limit($this->off_set,$this->page_num)
  474. ->select();
  475. foreach ($list as &$v){
  476. $v['pro_info'] = json_decode($v['pro_info'],true);
  477. $member = getMemberInfoHash($v['mid']); //获取用户信息
  478. $v['member_name'] = $member['name'];
  479. $v['member_headimg'] = $member['headimg'];
  480. }
  481. break;
  482. }
  483. $this->success('成功',compact('count','list'));
  484. }
  485. /**
  486. * @title 订单详情
  487. * @desc 订单详情
  488. * @author Gavin
  489. * @url /api/Secondary/orderDetail
  490. * @method POST
  491. * @header name:Authorization require:1 desc:Token
  492. * @param name:status type:string require:0 default: desc:0:待支付1:已购买2:转售中3:已转售
  493. * @param name:order_no type:string default:0 desc:订单号
  494. */
  495. public function orderDetail(){
  496. $order_no = input('order_no');
  497. $status = input('status',0);
  498. if (!$order_no) $this->error('参数错误');
  499. switch ($status){
  500. case 0:case 1:
  501. $order = Db::name('store_order_info_order')
  502. ->where('mid',$this->uid)
  503. ->where('status',$status)
  504. ->where('order_no',$order_no)
  505. ->find();
  506. //自动取消分钟数
  507. $cancel_time = getCancelTime();
  508. $order['pro_info'] = json_decode($order['pro_info'],true);
  509. $member = getMemberInfoHash($order['mid']); //获取用户信息
  510. $order['member_name'] = $member['name'];
  511. $order['member_headimg'] = $member['headimg'];
  512. if ($order['status']==0){
  513. $order['cancel_time'] = date('Y-m-d H:i:s',strtotime($order['create_at'])+($cancel_time*60));
  514. }
  515. break;
  516. case 2:case 3:
  517. $order = Db::name('store_order_info')
  518. ->where('mid',$this->uid)
  519. ->where('order_no',$order_no)
  520. ->where('resale_status',$status)
  521. ->where('is_destruction',1)
  522. ->find();
  523. $order['pro_info'] = json_decode($order['pro_info'],true);
  524. $member = getMemberInfoHash($order['mid']); //获取用户信息
  525. $v['member_name'] = $member['name'];
  526. $v['member_headimg'] = $member['headimg'];
  527. break;
  528. }
  529. $this->success('成功',$order);
  530. }
  531. /**
  532. * @title 取消订单
  533. * @desc 取消订单
  534. * @author Gavin
  535. * @url /api/Secondary/cancelOrder
  536. * @method POST
  537. * @header name:Authorization require:1 desc:Token
  538. * @param name:order_no type:string require:1 default:-- desc:订单号
  539. */
  540. public function cancelOrder(){
  541. $order_no = input('order_no');
  542. if (!$order_no) $this->error('参数错误');
  543. $order = Db::name('store_order_info_order')
  544. ->where('order_no',$order_no)
  545. ->where('mid',$this->uid)
  546. ->find();
  547. if (!$order) $this->error('订单不存在');
  548. if ($order['status']!=0) $this->error('订单已支付或已取消');
  549. $com = true;
  550. Db::startTrans();
  551. try {
  552. $up_data = [
  553. 'status'=>2,
  554. 'cancel_at'=>date('Y-m-d H:i:s'),
  555. 'cancel_state'=>2
  556. ];
  557. Db::name('store_order_info_order')->where('order_no',$order_no)->update($up_data);
  558. $cancle = [
  559. 'mid'=>$this->uid,
  560. 'order_id'=>$order['id']
  561. ];
  562. Db::name('store_order_info_cancel_log')->insert($cancle);
  563. $time = date('Y-m-d H:i:s',time()-(60*60));
  564. $count = Db::name('store_order_info_cancel_log')->where('mid',$this->uid)->where('create_at','gt',$time)->count();
  565. if ($count>2){
  566. $buy_time = date('Y-m-d H:i:s',time()+(24*60*60));
  567. Db::name('store_member')->where('id',$this->uid)->update(['buy_time'=>$buy_time]);
  568. }
  569. Db::commit();
  570. }catch (\Exception $e){
  571. $com=false;
  572. Db::rollback();
  573. }
  574. if ($com){
  575. setMemberInfoHash($this->uid);
  576. $this->success('取消成功');
  577. }else{
  578. $this->error('取消失败,请稍后重试');
  579. }
  580. }
  581. /**
  582. * 银行卡快捷支付发送短信
  583. * @url /api/Secondary/yhkjSms
  584. */
  585. public function yhkjSms(){
  586. //redis原子锁
  587. if (redisSetNx('SecondaryyhkjSms'.$this->uid,2)){
  588. $this->checkSwitch(1);
  589. $user = getMemberInfoHash($this->uid); //获取用户信息
  590. $order_no = input('order_no'); //订单号
  591. $id = input('id');
  592. $from = input('from','wx');
  593. if (!$order_no) $this->error('参数错误');
  594. if (!$id) $this->error('参数错误');
  595. $order = Db::name('store_order_info_order')
  596. ->where('id',$id)
  597. ->where('mid',$this->uid)
  598. ->find();
  599. $order_no = $order['order_no'];
  600. $pay_type = $order['pay_type'];
  601. $this->checkSwitch(2,$pay_type);
  602. if (!$order) $this->error('订单不存在');
  603. if ($order['status']!=0) $this->error('订单已支付或已取消');
  604. $info = Db::name('store_order_info')->where('id',$order['info_id'])->find();
  605. if ($info['resale_status']!=2) $this->error('藏品已出售或已撤销出售');
  606. $order_nos = get_order_sn();
  607. if (Db::name('store_order_info_order')
  608. ->where('order_no',$order_no)
  609. ->where('mid',$this->uid)
  610. ->update(['order_no'=>$order_nos]))
  611. {
  612. $huiju = new HuijuKjPay();
  613. $callback_url = 'http://'.$_SERVER['SERVER_NAME'].'/index.php/api/Pay/kuaijieSecondPayNotify';//回调地址
  614. $result = $huiju->paySms($order_nos,$order['pay_price'],'二级市场购买藏品',$this->uid,$callback_url,$user['hj_pay_bank_card']);
  615. if ($result['resp_codo']=='SUCCESS'){
  616. if ($result['biz_code']=='JS000000'){
  617. $data = json_decode($result['data'],true);
  618. if ($data['order_status']=='P3000'){
  619. DelRedisSetNx('SecondaryyhkjSms'.$this->uid);
  620. $this->success('发送成功',$result);
  621. }else{
  622. DelRedisSetNx('SecondaryyhkjSms'.$this->uid);
  623. $this->error($data['err_msg']);
  624. }
  625. }else{
  626. DelRedisSetNx('SecondaryyhkjSms'.$this->uid);
  627. $this->error($result['biz_msg']);
  628. }
  629. }else{
  630. DelRedisSetNx('SecondaryyhkjSms'.$this->uid);
  631. $this->error('发送失败');
  632. }
  633. }else{
  634. DelRedisSetNx('SecondaryyhkjSms'.$this->uid);
  635. $this->error('失败');
  636. }
  637. }else{
  638. $this->error('请求过快');
  639. }
  640. }
  641. /**
  642. * @title 待支付订单支付
  643. * @desc 待支付订单支付
  644. * @author Gavin
  645. * @url /api/Secondary/payOrder
  646. * @method POST
  647. * @header name:Authorization require:1 desc:Token
  648. * @param name:order_no type:string require:1 default:-- desc:订单号
  649. * @param name:from type:string require:1 default:wx desc:wx:微信公众号h5:网页
  650. *
  651. * @return name:order_no type:int require:0 default:0 desc:订单号
  652. * @return name:pay type:string require:0 default:0 desc:支付信息
  653. */
  654. public function payOrder(){
  655. $this->checkSwitch(1);
  656. $user = getMemberInfoHash($this->uid); //获取用户信息
  657. $order_no = input('order_no'); //订单号
  658. $id = input('id');
  659. $from = input('from','wx');
  660. if (!$order_no) $this->error('参数错误');
  661. if (!$id) $this->error('参数错误');
  662. $order = Db::name('store_order_info_order')
  663. // ->where('order_no',$order_no)
  664. ->where('id',$id)
  665. ->where('mid',$this->uid)
  666. ->find();
  667. $order_no = $order['order_no'];
  668. $pay_type = $order['pay_type'];
  669. if ($pay_type=='yhkj'){
  670. $sms_code = input('sms_code');
  671. if (!$sms_code) $this->error('验证码为空');
  672. }
  673. $this->checkSwitch(2,$pay_type);
  674. if (!$order) $this->error('订单不存在');
  675. if ($order['status']!=0) $this->error('订单已支付或已取消');
  676. $info = Db::name('store_order_info')->where('id',$order['info_id'])->find();
  677. if ($info['resale_status']!=2) $this->error('藏品已出售或已撤销出售');
  678. $com = true;
  679. Db::startTrans();
  680. try {
  681. //获取价格
  682. $total_fee = $order['pay_price'];
  683. $body = 'top艺术购买二级市场藏品';
  684. switch ($pay_type){
  685. case 'wx':
  686. $config = retrunWxConfig();
  687. $total_fee = $total_fee * 100;
  688. $config['notify_url'] = 'https://'.$_SERVER['SERVER_NAME'].'/api/Pay/SecondaryWxOrderNotify';
  689. $app = Factory::payment($config);
  690. $post_data = [
  691. 'body' => $body,
  692. 'out_trade_no' => $order_no,
  693. 'total_fee' => $total_fee,
  694. 'attach'=>$this->uid, //自定义传值
  695. ];
  696. //trade_type SAPI--JSAPI支付(或小程序支付)、NATIVE--Native支付、APP--app支付,MWEB--H5支付
  697. if ($from=='wx'){
  698. $post_data['openid'] = $user['openid'];
  699. $post_data['trade_type'] = 'JSAPI';
  700. }elseif ($from=='h5'){
  701. $post_data['trade_type'] = 'MWEB';
  702. }
  703. $result = $app->order->unify($post_data);
  704. if ($result['return_msg']=='OK'){
  705. if ($result['result_code']=='FAIL'){
  706. $com = false;
  707. Db::rollback();
  708. }else{
  709. $order1 = $app->jssdk->bridgeConfig($result['prepay_id']);//执行二次签名返回参数
  710. $retrun_data['order_no'] = $order_no;
  711. $retrun_data['id'] = $order['id'];
  712. $retrun_data['pay'] = json_decode($order1,true);
  713. Db::commit();
  714. }
  715. }else{
  716. $com = false;
  717. Db::rollback();
  718. }
  719. break;
  720. case 'zfb':
  721. $order_nos = get_order_sn();
  722. if (Db::name('store_order_info_order')
  723. ->where('order_no',$order_no)
  724. ->where('mid',$this->uid)
  725. ->update(['order_no'=>$order_nos])){
  726. $zfb = new AliPay3();
  727. $notify_url = $this->request->root(true).'/index.php/api/Pay/alipaySecondaryNotify';//回调地址
  728. $callback_url = 'https://'.$_SERVER['SERVER_NAME'].'/web/h5/pages/shop/order';
  729. $order_result = $zfb->aliPay($body,$total_fee,$order_nos,$notify_url,$this->uid,$callback_url);
  730. $retrun_data['order_no'] = $order_nos;
  731. $retrun_data['id'] = $order['id'];
  732. $retrun_data['pay'] = $order_result['pay_url'];
  733. Db::commit();
  734. }else{
  735. $com=false;
  736. Db::rollback();
  737. }
  738. break;
  739. case 'sd':
  740. $client = new Shande();
  741. $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/index.php/api/Pay/shandeSecondaryNotify';//回调地址
  742. $total_fee = $total_fee*100;
  743. $lenth = strlen($total_fee);
  744. $total_fee = get0number($lenth).$total_fee;
  745. $order_nos = get_order_sn();
  746. if (Db::name('store_order_info_order')
  747. ->where('order_no',$order_no)
  748. ->where('mid',$this->uid)
  749. ->update(['order_no'=>$order_nos])){
  750. $result = $client->orderPay($order_nos,$total_fee,$body,$notify_url,'https://'.$_SERVER['SERVER_NAME'].'/web/h5/pages/shop/order');
  751. $retrun_data['order_no'] = $order_nos;
  752. $retrun_data['id'] = $order['id'];
  753. $retrun_data['pay'] = json_decode($result['data'],true);
  754. Db::commit();
  755. }else{
  756. $com=false;
  757. Db::rollback();
  758. }
  759. break;
  760. case 'ylh5':
  761. $order_nos = get_order_sn();
  762. if (Db::name('store_order_info_order')->where('order_no',$order_no)->where('mid',$this->uid)->update(['order_no'=>$order_nos])){
  763. $callback_url = 'http://'.$_SERVER['SERVER_NAME'].'/pages/shop/order';
  764. $huiju = new HuijuH5Pay();
  765. $notify_url = 'http://'.$_SERVER['SERVER_NAME'].'/index.php/api/Pay/ylSecondaryNotify';//回调地址
  766. $result = $huiju->ylh5Pay($order_nos,$callback_url,$notify_url,$info['name'],$total_fee,$this->uid,2);
  767. if ($result['ra_Code']=='100'){
  768. $retrun_data['order_no'] = $order_nos;
  769. $retrun_data['id'] = $order['id'];
  770. $retrun_data['pay'] = $result['rc_Result'];
  771. Db::commit();
  772. }else{
  773. $com = false;
  774. Db::rollback();
  775. }
  776. }else{
  777. $com = false;
  778. Db::rollback();
  779. }
  780. break;
  781. case 'zfbh5':
  782. $order_nos = get_order_sn();
  783. if (Db::name('store_order_info_order')
  784. ->where('order_no',$order_no)
  785. ->where('mid',$this->uid)
  786. ->update(['order_no'=>$order_nos])){
  787. $callback_url = 'http://'.$_SERVER['SERVER_NAME'].'/pages/shop/order';
  788. $huiju = new HuijuH5Pay();
  789. $notify_url = 'http://'.$_SERVER['SERVER_NAME'].'/index.php/api/Pay/ylSecondaryNotify';//回调地址
  790. $result = $huiju->ylh5Pay($order_nos,$callback_url,$notify_url,$info['name'],$total_fee,$this->uid,1);
  791. if ($result['ra_Code']=='100'){
  792. $retrun_data['order_no'] = $order_nos;
  793. $retrun_data['id'] = $order['id'];
  794. $retrun_data['pay'] = $result['rc_Result'];
  795. Db::commit();
  796. }else{
  797. $com = false;
  798. Db::rollback();
  799. }
  800. }else{
  801. $com = false;
  802. Db::rollback();
  803. }
  804. break;
  805. case 'yhkj':
  806. $huiju = new HuijuKjPay();
  807. $result = $huiju->kuaijiePay($order_no,$sms_code);
  808. if ($result['resp_codo']=='SUCCESS'){
  809. if ($result['biz_code']=='JS000000'){
  810. $data = json_decode($result['data'],true);
  811. if ($data['order_status']=='P1000'){
  812. Db::commit();
  813. $this->success('支付成功');
  814. }else{
  815. Db::rollback();
  816. $this->error($data['err_msg']);
  817. }
  818. }else{
  819. Db::rollback();
  820. $this->error($result['biz_msg']);
  821. }
  822. }else{
  823. Db::rollback();
  824. $this->error('支付失败');
  825. }
  826. break;
  827. }
  828. }catch (\Exception $e){
  829. $com=false;
  830. Db::rollback();
  831. }
  832. if ($com){
  833. $this->success('成功',$retrun_data);
  834. }
  835. $this->error('失败,请稍后重试');
  836. }
  837. /**
  838. * @param 判断开关
  839. * @param string $pay_type
  840. * @return bool
  841. * @throws \think\db\exception\DataNotFoundException
  842. * @throws \think\db\exception\ModelNotFoundException
  843. * @throws \think\exception\DbException
  844. */
  845. public function checkSwitch($type,$pay_type=''){
  846. if ($type==1){
  847. $v = getConfigValue('secondary_sell_switch');
  848. if (!$v){
  849. $this->error('功能暂时关闭');
  850. }else{
  851. $start = getConfigValue('shelves_start_time');
  852. $end = getConfigValue('shelves_end_time');
  853. if (time()>strtotime($start) && time()<=strtotime($end)){
  854. }else{
  855. $this->error('出售时间为:'.$start.'-'.$end);
  856. }
  857. }
  858. }elseif ($type==2){
  859. $nameArray = ['secondary_wx_switch','secondary_zfb_switch','secondary_sd_switch'];
  860. $values = getConfig($nameArray);
  861. if ($pay_type=='wx'){
  862. if (!$values['secondary_wx_switch']) $this->error('微信支付暂时关闭');
  863. }elseif ($pay_type=='zfb'){
  864. if (!$values['secondary_zfb_switch']) $this->error('支付宝支付暂时关闭');
  865. }elseif ($pay_type=='sd'){
  866. if (!$values['secondary_sd_switch']) $this->error('杉德支付暂时关闭');
  867. }
  868. }elseif ($type==3){
  869. $v = getConfigValue('secondary_buy_switch');
  870. if (!$v){
  871. $this->error('功能暂时关闭');
  872. }else{
  873. $start = getConfigValue('buy_start_time');
  874. $end = getConfigValue('buy_end_time');
  875. if (time()>strtotime($start) && time()<=strtotime($end)){
  876. }else{
  877. $this->error('时间时间为:'.$start.'-'.$end);
  878. }
  879. }
  880. }
  881. return true;
  882. }
  883. }