Index.php 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  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. if (redisSetNx($id)){
  99. //先减掉库存
  100. loseCollectionInventory($id,$num);
  101. //先减掉抢购卡数量
  102. loseMembercard($this->uid);
  103. //先增加购买数量
  104. IncrByCount($this->uid,$id,$num);
  105. $com = true;
  106. Db::startTrans();
  107. try {
  108. $order_no = get_order_sn();
  109. $total_fee = bcmul($coll_info['price'],$num,2);
  110. $order_int =[
  111. 'mid' => $this->uid,
  112. 'c_id' => $id,
  113. 'inventory' => $coll_info['inventory'],
  114. 'order_no' => $order_no,
  115. 'num' => $num,
  116. 'pro_info' => json_encode($coll_info),
  117. 'pay_type' => $pay_type,
  118. 'pay_price' => $total_fee
  119. ];
  120. Db::name('store_order2')->insert($order_int);
  121. $body = '象寻购买藏品';
  122. switch ($pay_type){
  123. case 'wx':
  124. $config = retrunWxConfig();
  125. $total_fee = $total_fee * 100;
  126. $config['notify_url'] = $this->request->root(true).'/api/Pay/WxOrderNotify';
  127. $app = Factory::payment($config);
  128. $result = $app->order->unify([
  129. 'body' => $body,
  130. 'out_trade_no' => $order_no,
  131. 'total_fee' => $total_fee,
  132. 'trade_type' => 'APP', // 请对应换成你的支付方式对应的值类型
  133. ]);
  134. if ($result['return_code']=='SUCCESS'){
  135. $jssdk = $app->jssdk;
  136. $order1 = $jssdk->appConfig($result['prepay_id']);
  137. Db::name('store_order2')->where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
  138. $retrun_data['order_no'] = $order_no;
  139. $retrun_data['pay'] = $order1;
  140. //减少数据库库存
  141. Db::name('store_collection')->where('id',$id)->setDec('now_inventory',$num);
  142. //减少用户抢购卡数量
  143. Db::name('store_member')->where('id',$this->uid)->setDec('snap_card');
  144. Db::commit();
  145. }else{
  146. $com=false;
  147. Db::rollback();
  148. }
  149. break;
  150. case 'zfb':
  151. $zfb = new AliPay();
  152. $notify_url = $this->request->root(true).'/api/Pay/alipayOrderNotify';//回调地址
  153. $order = $zfb->aliPay($body, $total_fee, $order_no, $notify_url);//调用支付宝支付的方法
  154. $retrun_data['order_no'] = $order_no;
  155. $retrun_data['pay'] = $order;
  156. //减少数据库库存
  157. Db::name('store_collection')->where('id',$id)->setDec('now_inventory',$num);
  158. //减少用户抢购卡数量
  159. Db::name('store_member')->where('id',$this->uid)->setDec('snap_card');
  160. Db::commit();
  161. break;
  162. }
  163. }catch (\Exception $e){
  164. $com=false;
  165. Db::rollback();
  166. }
  167. if ($com){
  168. DelRedisSetNx($id);
  169. //$redis2->Decr('max_30');
  170. // $this->savetest($order_no);
  171. $this->success('成功',$retrun_data);
  172. }else{
  173. // $redis2->Decr('max_30');
  174. //加上库存
  175. addCollectionInventory($id,$num);
  176. //加上抢购卡数量
  177. addMembercard($this->uid);
  178. //减少用户购买数量
  179. DecrByCount($this->uid,$id,$num);
  180. $this->error('抢购失败,请稍后重试');
  181. }
  182. }else{
  183. $this->error('排队中...');
  184. }
  185. }
  186. }