Box.php 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\library\AliPay;
  4. use EasyWeChat\Factory;
  5. use think\Db;
  6. /**
  7. * @title 盲盒
  8. * @controller Box
  9. * @package app\api\controller
  10. */
  11. class Box extends Base
  12. {
  13. public function initialize(){
  14. parent::check_login();
  15. }
  16. /**
  17. * @title 抽奖
  18. * @desc 抽奖
  19. * @author Gavin
  20. * @url /api/Box/lucky_draw
  21. * @method POST
  22. * @header name:Authorization require:1 desc:Token
  23. *
  24. */
  25. public function lucky_draw(){
  26. $user = getMemberInfoHash($this->uid); //获取用户信息
  27. //获取每日免费次数
  28. $free_number = getConfigValue('free_lucky_number');
  29. //获取当日免费抽奖记录
  30. $date = date('Y-m-d');
  31. $now_date_count = Db::name('store_blind_box_log')
  32. ->where('m_id',$this->uid)
  33. ->where('date',$date)
  34. ->where('is_free',0)
  35. ->count();
  36. $free = $free_number-$now_date_count; //剩余免费次数
  37. $number = $user['lottery_number'] + $free;
  38. if ($number<=0) $this->error('抽奖次数不足');
  39. checkBox();
  40. $prize_arr = Db::name('store_blind_box')
  41. ->where('status',1)
  42. ->where('is_del',1)
  43. ->field('id,rate')
  44. ->select();
  45. foreach ($prize_arr as $key => $val) {
  46. $arr[$val['id']] = $val['rate'];//概率数组
  47. }
  48. $rid = get_rand($arr); //根据概率获取奖项id
  49. $info = Db::name('store_blind_box')->where('id',$rid)->field('id,title,prize,is_prize')->find();
  50. $return = [
  51. 'is_prize'=>$info['is_prize']
  52. ];
  53. $coll_info = getCollectionInfoHash($info['prize']);
  54. if ($info['is_prize']==1){
  55. $json_info = json_encode($coll_info,true);
  56. $return['name'] = $info['title'];
  57. $return['cover'] = $coll_info['cover'];
  58. }else{
  59. $json_info = '';
  60. $return['name'] = '未中奖';
  61. $return['cover'] = '';
  62. }
  63. $com = true;
  64. Db::startTrans();
  65. try {
  66. $data = [
  67. 'm_id'=>$this->uid,
  68. 'b_id'=>$rid,
  69. 'is_prize'=>$info['is_prize'],
  70. 'name'=>$return['name'],
  71. 'cover'=>$return['cover'],
  72. 'info'=>$json_info,
  73. 'date'=>$date,
  74. 'is_free'=>$free>0 ? 0 : 1
  75. ];
  76. Db::name('store_blind_box_log')->insert($data);
  77. if (!$free){
  78. Db::name('store_member')->where('id',$this->uid)->setDec('lottery_number');
  79. }
  80. //减少数据库库存
  81. if ($info['is_prize']==1){
  82. Db::name('store_collection')->where('id',$info['prize'])->setDec('now_inventory');
  83. //获取排名
  84. $rank = getRanking($info['prize'])+1;
  85. $tag = getTag($info['prize'],$rank,$coll_info['inventory']);
  86. saveRanking($info['prize']);
  87. $nfttype = Db::name('hash2')->where('goods_id',$info['prize'])->where('success',1)->value('NFTType');
  88. $collectors_hash = '';
  89. $date = [
  90. 'order_id'=>0,
  91. 'order_no'=>get_order_sn(),
  92. 'tag'=>$tag,
  93. 'mid'=>$this->uid,
  94. 'c_id'=>$info['prize'],
  95. 'name'=>$coll_info['name'],
  96. 'cover'=>$coll_info['cover'],
  97. 'pro_info'=>$json_info,
  98. 'nfttype'=>$nfttype,
  99. 'collectors_hash'=>$collectors_hash,
  100. 'collectors_hash_time'=>'',
  101. 'status'=>4
  102. ];
  103. Db::name('store_order_info')->insert($date);
  104. }
  105. Db::commit();
  106. }catch (\Exception $e){
  107. $com=false;
  108. Db::rollback();
  109. }
  110. if ($com){
  111. setMemberInfoHash($this->uid);
  112. if ($info['is_prize']==1){
  113. //减掉库存
  114. loseCollectionInventory($info['prize'],1);
  115. }
  116. $this->success('成功',$return);
  117. }
  118. $this->error('系统错误,请稍后重试');
  119. }
  120. /**
  121. * @title 充值次数
  122. * @desc 充值次数
  123. * @author Gavin
  124. * @url /api/Box/recharge
  125. * @method POST
  126. * @header name:Authorization require:1 desc:Token
  127. * @param name:num type:int require:1 default:1 desc:充值次数
  128. * @param name:pay_type type:string require:1 default:wx desc:wx:微信zfb:支付宝
  129. * @param name:from type:string require:1 default:wx desc:wx:微信公众号h5:网页
  130. *
  131. * @return name:order_no type:int require:0 default:0 desc:订单号
  132. * @return name:pay type:string require:0 default:0 desc:支付信息
  133. */
  134. public function recharge(){
  135. $num = input('num',1);
  136. $pay_type = input('pay_type','wx');
  137. $from = input('from','wx');
  138. $user = getMemberInfoHash($this->uid); //获取用户信息
  139. if ($num<1) $this->error('数量错误');
  140. $com = true;
  141. Db::startTrans();
  142. try {
  143. $order_no = get_order_sn();
  144. //获取价格
  145. $price = getConfigValue('lucky_recharge_price');
  146. $total_fee = bcmul($price,$num,2);
  147. $data = [
  148. 'order_no'=>$order_no,
  149. 'm_id'=>$this->uid,
  150. 'num'=>$num,
  151. 'price'=>$price,
  152. 'pay_price'=>$total_fee,
  153. 'pay_type'=>$pay_type
  154. ];
  155. Db::name('store_blind_recharge')->insert($data);
  156. $body = 'top艺术充值盲盒次数';
  157. switch ($pay_type){
  158. case 'wx':
  159. $config = retrunWxConfig();
  160. $total_fee = $total_fee * 100;
  161. $config['notify_url'] = 'https://'.$_SERVER['SERVER_NAME'].'/api/Pay/BlindRechargeNotify';
  162. $app = Factory::payment($config);
  163. $post_data = [
  164. 'body' => $body,
  165. 'out_trade_no' => $order_no,
  166. 'total_fee' => $total_fee,
  167. 'attach'=>$this->uid, //自定义传值
  168. ];
  169. //trade_type SAPI--JSAPI支付(或小程序支付)、NATIVE--Native支付、APP--app支付,MWEB--H5支付
  170. if ($from=='wx'){
  171. $post_data['openid'] = $user['openid'];
  172. $post_data['trade_type'] = 'JSAPI';
  173. }elseif ($from=='h5'){
  174. $post_data['trade_type'] = 'MWEB';
  175. }
  176. $result = $app->order->unify($post_data);
  177. if ($result['return_msg']=='OK'){
  178. if ($result['result_code']=='FAIL'){
  179. $com = false;
  180. Db::rollback();
  181. }else{
  182. $order1 = $app->jssdk->bridgeConfig($result['prepay_id']);//执行二次签名返回参数
  183. $retrun_data['order_no'] = $order_no;
  184. $retrun_data['pay'] = json_decode($order1,true);
  185. Db::commit();
  186. }
  187. }else{
  188. $com = false;
  189. Db::rollback();
  190. }
  191. break;
  192. case 'zfb':
  193. $zfb = new AliPay();
  194. $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/index.php/api/Pay/alipayBlindRechargeNotify';//回调地址
  195. $order = $zfb->ali_pay_pc($body, $total_fee, $order_no, $notify_url,'https://'.$_SERVER['SERVER_NAME'].'/web/h5/pages/manghe/manghe');//调用支付宝支付的方法
  196. $retrun_data['order_no'] = $order_no;
  197. $retrun_data['pay'] = $order;
  198. Db::commit();
  199. break;
  200. }
  201. }catch (\Exception $e){
  202. $com=false;
  203. Db::rollback();
  204. }
  205. if ($com){
  206. $this->success('成功',$retrun_data);
  207. }
  208. $this->error('失败,请稍后重试');
  209. }
  210. /**
  211. * @title 用户中奖纪录
  212. * @desc 用户中奖纪录
  213. * @author Gavin
  214. * @method POST
  215. * @tag 编辑信息
  216. * @url /api/Box/boxLog
  217. * @header name:Authorization require:1 desc:Token
  218. *
  219. * @return name:id type:int require:0 default:0 desc:ID
  220. * @return name:name type:string require:0 default:0 desc:奖品名称
  221. * @return name:cover type:string require:0 default:0 desc:藏品图片
  222. * @return name:member_name type:string require:0 default:0 desc:用户昵称
  223. * @return name:create_at type:string require:0 default:0 desc:时间
  224. */
  225. public function boxLog(){
  226. $list = Db::name('store_blind_box_log')
  227. ->whereIn('is_prize',1)
  228. ->field('id,m_id,name,cover,create_at')
  229. ->order('id desc')
  230. ->limit(10)
  231. ->select();
  232. foreach ($list as &$v){
  233. $v['member_name'] = Db::name('store_member')->where('id',$v['m_id'])->value('name');
  234. }
  235. $this->success('成功',$list);
  236. }
  237. }