Index.php 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\index\controller;
  15. use app\common\library\AliPay;
  16. use EasyWeChat\Factory;
  17. use library\Controller;
  18. use think\Db;
  19. /**
  20. * 应用入口
  21. * Class Index
  22. * @package app\index\controller
  23. */
  24. class Index extends Controller
  25. {
  26. /**
  27. * 入口跳转链接
  28. */
  29. public function index()
  30. {
  31. $this->redirect('@admin/login');
  32. }
  33. public function tiaokuan(){
  34. $privacy= Db::name('system_config')->where('name','privacy')->value('value');
  35. $this->assign('info',$privacy);
  36. $this->fetch('index');
  37. }
  38. /**
  39. * @title 生成订单(立即购买 )
  40. * @desc 生成订单(立即购买 )
  41. * @author Gavin
  42. * @url /api/Order/createOrder
  43. * @method POST
  44. * @header name:Authorization require:1 desc:Token
  45. * @param name:id type:int require:1 default:-- desc:藏品id
  46. * @param name:num type:int require:1 default:1 desc:数量
  47. * @param name:pay_type type:string require:1 default:wx desc:wx:微信zfb:支付宝
  48. *
  49. * @return name:order_no type:int require:0 default:0 desc:订单号
  50. * @return name:pay type:string require:0 default:0 desc:支付信息
  51. */
  52. public function createOrder()
  53. {
  54. // $redis = new \think\cache\driver\Redis();
  55. // $info = Db::name('store_collection')->where('id',30)->find();
  56. // $info['is_deleted'] = 0;
  57. // $info['sell_time'] = '2022-04-21 15:53:04';
  58. // $info['buy_count'] = '10000';
  59. // $array = ['collection30'=>json_encode($info)];
  60. // $redis->hMSet('collectionInfo',$array);
  61. // $redis->set('collection_count_30',5000);
  62. // dump($info);die;
  63. // die;
  64. // $redis->set('is_buy_30',1);
  65. // die;
  66. $this->uid = '100000';
  67. $id = input('id');
  68. $num = input('num',1);
  69. $pay_type = input('pay_type','wx');
  70. if (!$id || !$num) $this->error('参数错误');
  71. $user = getMemberInfoHash($this->uid); //获取用户信息
  72. if ($user['is_auth']==0) $this->error('请实名认证后购买!');
  73. $coll_info = getCollectionInfoHash($id);
  74. if ($coll_info['is_deleted']==1 || $coll_info['status']==0) $this->error('藏品已下架');
  75. $inventory = getCollectionInventory($id);
  76. if ($inventory<1) $this->error('已售罄');
  77. if ($user['vip']==2){
  78. $advance_minutes = getAdvanceMinutes(); //获取vip提前抢购分钟
  79. $sell_time = strtotime($coll_info['sell_time'])-($advance_minutes*60);
  80. }else{
  81. $sell_time = strtotime($coll_info['sell_time']);
  82. }
  83. if ($sell_time>time()) $this->error('商品还未开始售卖!请耐心等待');
  84. $snap_card = getMembercard($this->uid); //获取用户抢购卡数量
  85. if ($snap_card<1) $this->error('抢购卡不足,无法抢购');
  86. //获取用户已经购买数量
  87. $userByCount = getByCount($this->uid,$id);
  88. if ($coll_info['buy_count']<($userByCount+$num)) $this->error('每人限购'.$coll_info['buy_count'].'个');
  89. //获取是否已经铸造hash
  90. $hashCount = getLenCollection($id);
  91. // if (!$hashCount || $hashCount<$num) $this->error('hash未铸造,无法购买');
  92. $redis2 = new \think\cache\driver\Redis();
  93. $max = $redis2->get('max_30');
  94. if ($max>100){
  95. $this->error('排队中...');
  96. }
  97. $redis2->Incr('max_30');
  98. //先减掉库存
  99. loseCollectionInventory($id,$num);
  100. //先减掉抢购卡数量
  101. loseMembercard($this->uid);
  102. //先增加购买数量
  103. IncrByCount($this->uid,$id,$num);
  104. $com = true;
  105. Db::startTrans();
  106. try {
  107. $order_no = get_order_sn();
  108. $total_fee = bcmul($coll_info['price'],$num,2);
  109. $order_int =[
  110. 'mid' => $this->uid,
  111. 'c_id' => $id,
  112. 'inventory' => $coll_info['inventory'],
  113. 'order_no' => $order_no,
  114. 'num' => $num,
  115. 'pro_info' => json_encode($coll_info),
  116. 'pay_type' => $pay_type,
  117. 'pay_price' => $total_fee
  118. ];
  119. Db::name('store_order2')->insert($order_int);
  120. $body = '象寻购买藏品';
  121. switch ($pay_type){
  122. case 'wx':
  123. $config = retrunWxConfig();
  124. $total_fee = $total_fee * 100;
  125. $config['notify_url'] = $this->request->root(true).'/api/Pay/WxOrderNotify';
  126. $app = Factory::payment($config);
  127. $result = $app->order->unify([
  128. 'body' => $body,
  129. 'out_trade_no' => $order_no,
  130. 'total_fee' => $total_fee,
  131. 'trade_type' => 'APP', // 请对应换成你的支付方式对应的值类型
  132. ]);
  133. if ($result['return_code']=='SUCCESS'){
  134. $jssdk = $app->jssdk;
  135. $order1 = $jssdk->appConfig($result['prepay_id']);
  136. Db::name('store_order2')->where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
  137. $retrun_data['order_no'] = $order_no;
  138. $retrun_data['pay'] = $order1;
  139. //减少数据库库存
  140. Db::name('store_collection')->where('id',$id)->setDec('now_inventory',$num);
  141. //减少用户抢购卡数量
  142. Db::name('store_member')->where('id',$this->uid)->setDec('snap_card');
  143. Db::commit();
  144. }else{
  145. $com=false;
  146. Db::rollback();
  147. }
  148. break;
  149. case 'zfb':
  150. $zfb = new AliPay();
  151. $notify_url = $this->request->root(true).'/api/Pay/alipayOrderNotify';//回调地址
  152. $order = $zfb->aliPay($body, $total_fee, $order_no, $notify_url);//调用支付宝支付的方法
  153. $retrun_data['order_no'] = $order_no;
  154. $retrun_data['pay'] = $order;
  155. //减少数据库库存
  156. Db::name('store_collection')->where('id',$id)->setDec('now_inventory',$num);
  157. //减少用户抢购卡数量
  158. Db::name('store_member')->where('id',$this->uid)->setDec('snap_card');
  159. Db::commit();
  160. break;
  161. }
  162. }catch (\Exception $e){
  163. $com=false;
  164. Db::rollback();
  165. }
  166. if ($com){
  167. $redis2->Decr('max_30');
  168. // $this->savetest($order_no);
  169. $this->success('成功',$retrun_data);
  170. }else{
  171. $redis2->Decr('max_30');
  172. //加上库存
  173. addCollectionInventory($id,$num);
  174. //加上抢购卡数量
  175. addMembercard($this->uid);
  176. //减少用户购买数量
  177. DecrByCount($this->uid,$id,$num);
  178. $this->error('抢购失败,请稍后重试');
  179. }
  180. }
  181. }