Eggnew.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  1. <?php
  2. namespace app\api\controller;
  3. use addons\faqueue\library\QueueApi;
  4. use app\common\controller\Api;
  5. use think\Db;
  6. use Redis;
  7. /**
  8. * 砸蛋接口
  9. */
  10. class Eggnew extends Api
  11. {
  12. protected $noNeedLogin = ['getThisJackpot'];
  13. protected $noNeedRight = ['*'];
  14. /**
  15. * 获取本期奖池列表
  16. */
  17. public function getThisJackpot() {
  18. $type = input('type',1);
  19. $jackId = \app\common\model\EggJackpot::where(["status"=>1,'type'=>$type])->value("id");
  20. $egggiftModel = new \app\common\model\EggGift();
  21. $where = [];
  22. $where["Jackpot_id"] = $jackId;
  23. $egggiftList = $egggiftModel->where($where)->group("gift_id")->order("price","desc")->select();
  24. return $this->success("获取成功!",$egggiftList);
  25. }
  26. /**
  27. * 查找下一个奖池ID
  28. */
  29. private function getNextJackpot($jackpot_id) {
  30. $type = \app\common\model\EggJackpot::where(['id'=>$jackpot_id])->value('type');
  31. $jackpotIds = \app\common\model\EggJackpot::order('weigh asc,id asc')->where('type',$type)->column("id");
  32. $next = 0;
  33. foreach($jackpotIds as $k => $v) {
  34. if($v == $jackpot_id) {
  35. $next = isset($jackpotIds[$k+1])?$jackpotIds[$k+1]:$jackpotIds[0];
  36. }
  37. }
  38. return $next;
  39. }
  40. /**
  41. * 砸金蛋
  42. */
  43. public function strike() {
  44. // $this->error("系统正在维护中。。。");
  45. $num = $this->request->request("num");
  46. $type = $this->request->request("type",1);
  47. $party_id = $this->request->request("party_id", 0);// 派对ID
  48. if($num <=0) {
  49. $this->error("参数错误");
  50. }
  51. $total_jewel = Db::name('egg_timesprice')->where('type',$type)->where('times',$num)->find();
  52. if(empty($total_jewel)){
  53. $this->error('错误的次数');
  54. }
  55. $total_jewel = $total_jewel['price'];
  56. $giftdata = [];
  57. $user_id = $this->auth->id;
  58. $do_no = createUniqueNo('E',$user_id);
  59. Db::startTrans();
  60. try{
  61. // 查找正在开放的奖池
  62. $jackpot = \app\common\model\EggJackpot::where(["status"=>1,'type'=>$type])->order('weigh asc,id asc')->find();
  63. if($jackpot) { // 有开放的奖池
  64. $jackpot_id = $jackpot["id"];
  65. } else { // 没有开放的奖池
  66. $jackpot = \app\common\model\EggJackpot::where('type',$type)->order('weigh asc,id asc')->find();
  67. if(empty($jackpot)){
  68. Db::rollback();
  69. $this->error('暂时还没有奖池');
  70. }
  71. $jackpot_id = $jackpot["id"];
  72. \app\common\model\EggJackpot::update(["status"=>1],["id"=>$jackpot_id]);//打开
  73. \app\common\model\EggGift::update(["is_use"=>0],["Jackpot_id"=>$jackpot_id]);//重置礼物
  74. }
  75. // 查找奖池对应的奖池礼物
  76. $jackpotGift = \app\common\model\EggGift::where(["Jackpot_id"=>$jackpot_id,"is_use"=>0])->select();
  77. $giftCount = count($jackpotGift);
  78. $next_jackpot_id = $this->getNextJackpot($jackpot_id);
  79. if($giftCount <= $num) { //当前奖池已不足,或需要启用下一池
  80. // 先获取$giftCount个礼物
  81. $giftArr1 = $jackpotGift;
  82. // 更新礼物抽取状态
  83. $giftids = array_column($giftArr1,"id");
  84. $res1 = \app\common\model\EggGift::update(["is_use"=>1],["id"=>["in",$giftids]]);
  85. // 更新奖池
  86. $res2 = \app\common\model\EggJackpot::update(["status"=>-1],["id"=>$jackpot_id]);
  87. $res3 = \app\common\model\EggJackpot::update(["status"=>1],["id"=>$next_jackpot_id]);
  88. // 下个奖池所有礼物改为未使用
  89. $res4 = \app\common\model\EggGift::update(["is_use"=>0],["Jackpot_id"=>$next_jackpot_id]);
  90. // 获取下个奖池礼物
  91. $nextjackpotGift = \app\common\model\EggGift::where(["Jackpot_id"=>$next_jackpot_id,"is_use"=>0])->select();
  92. $newnum = $num-$giftCount;
  93. if($newnum == 0) {
  94. $res5 = true;
  95. $giftdata = $giftArr1;
  96. } else {
  97. if($newnum > count($nextjackpotGift)){ //需要开启下下个奖池
  98. Db::rollback();
  99. $this->error("奖池礼物待更新,请耐心等待!");
  100. }
  101. $giftArr = [];
  102. foreach($nextjackpotGift as $k => $v) $giftArr[$v["id"]] = $v;
  103. if(!$giftArr){
  104. Db::rollback();
  105. $this->error("奖池礼物待更新,请耐心等待!");
  106. }
  107. $giftids = array_rand($giftArr,$newnum);
  108. // 更新礼物抽取状态
  109. $res5Info = \app\common\model\EggGift::where(["id"=>["in",$giftids]])->select();
  110. $res5 = \app\common\model\EggGift::update(["is_use"=>1],["id"=>["in",$giftids]]);
  111. $giftdata = array_merge($giftArr1,$res5Info);
  112. }
  113. //在这里记录奖池产出统计
  114. //在这里记录奖池产出统计
  115. } else {
  116. // 随机抽取$num个礼物
  117. $giftArr = [];
  118. foreach($jackpotGift as $k => $v) $giftArr[$v["id"]] = $v;
  119. $giftids = array_rand($giftArr,$num);
  120. // 更新礼物抽取状态
  121. $res1 = \app\common\model\EggGift::update(["is_use"=>1],["id"=>["in",$giftids]]);
  122. $res1Info = \app\common\model\EggGift::where(["id"=>["in",$giftids]])->select();
  123. $res2 = true;
  124. $res3 = true;
  125. $res4 = true;
  126. $res5 = true;
  127. $giftdata = $res1Info;
  128. }
  129. if(!$giftdata) {
  130. Db::rollback();
  131. $this->error('礼物为空');
  132. }
  133. $data = [];
  134. foreach($giftdata as $k => $v) {
  135. // 保存砸蛋记录
  136. $data[] = [
  137. "do_no" => $do_no,
  138. "party_id" => $party_id,
  139. "user_id" => $user_id,
  140. "gift_id" => $v["gift_id"],
  141. "egg_gift_id" => $v["id"],
  142. "image" => $v["image"],
  143. "special" => $v["special"],
  144. "gift_name" => $v["gift_name"],
  145. "Jackpot_id" => $v["Jackpot_id"],
  146. "prize_no" => $v["prize_no"],
  147. "price" => $v["price"],
  148. "createtime" => time(),
  149. ];
  150. // 添加用户背包
  151. $backdata[] = [
  152. "user_id" => $user_id,
  153. 'gift_id' => $v["gift_id"],
  154. "name" => $v["gift_name"],
  155. "image" => $v["image"],
  156. "gif_image" => $v["special"],
  157. "value" => $v["price"],
  158. "number" => 1,
  159. "is_use" => 0,
  160. "get_way" => 1,
  161. "createtime" => time(),
  162. ];
  163. }
  164. $data && $res5 = \app\common\model\EggDo::insertAll($data);
  165. // 添加到用户背包
  166. $backdata && $res7 = \app\common\model\GiftBack::insertAll($backdata);
  167. //扣钻石
  168. $rs_wallet = model('wallet')->lockChangeAccountRemain($user_id,$total_jewel,'-',0,'开箱子和大转盘',13,'jewel');
  169. if($rs_wallet['status'] === false){
  170. $this->error($rs_wallet['msg']);
  171. Db::rollback();
  172. }
  173. if($res1 !== false && $res2 !== false && $res3 !== false && $res4 !== false && $res5 !== false && $res7 !== false) {
  174. Db::commit();
  175. } else {
  176. Db::rollback();
  177. $this->error('开奖失败');
  178. }
  179. }catch (ValidateException $e) {
  180. Db::rollback();
  181. $this->error($e->getMessage());
  182. } catch (PDOException $e) {
  183. Db::rollback();
  184. $this->error($e->getMessage());
  185. } catch (Exception $e) {
  186. Db::rollback();
  187. $this->error($e->getMessage());
  188. }
  189. // 返回抽到的礼物列表
  190. $result = [
  191. 'list' => [],
  192. 'bigshow' => [],
  193. 'sumvalue' => Db::name('egg_do')->where('do_no',$do_no)->sum('price'),
  194. ];
  195. $list = Db::name('egg_do')->alias('do')->join('gift','do.gift_id = gift.id','LEFT')->field('do.gift_id,do.gift_name,do.image,do.special,do.price,count(do.id) as number,gift.is_big')->where('do.do_no',$do_no)->order('gift.is_big desc,gift.value desc')->group('do.gift_id')->select();
  196. $result['list'] = $list;
  197. //只弹一个大礼物,专门拿出结构
  198. if(!empty($list)){
  199. if($list[0]['is_big'] == 1){
  200. $result['bigshow'] = $list[0];
  201. }
  202. }
  203. $this->success("获取成功!",$result);
  204. }
  205. //手气榜单
  206. public function getRankList(){
  207. $type = $this->request->request("type",1);
  208. $today = strtotime(date("Y-m-d"));
  209. $where = [];
  210. $where["a.createtime"] = ["gt",$today];
  211. $where["jp.type"] = $type;
  212. $ranklist = \app\common\model\EggDo::alias("a")->field("a.user_id,a.image,a.price as money,a.createtime,u.nickname")
  213. ->join("hx_user u","u.id = a.user_id","left")
  214. ->join("egg_jackpot jp","a.Jackpot_id = jp.id","left")
  215. ->where($where)
  216. // ->group("a.user_id")
  217. ->order("money","desc")
  218. ->limit(20)
  219. ->select();
  220. $this->success("获取成功!",$ranklist);
  221. }
  222. /**
  223. * 获取排行榜
  224. */
  225. public function getRankList_old() {
  226. $time = $this->request->request("time"); // 1=今天,2=昨天
  227. if(!in_array($time,[1,2])) {
  228. $this->error("参数缺失!");
  229. }
  230. // 先根据用户抽奖总值排序 筛选
  231. $today = strtotime(date("Y-m-d 00:00:00"));
  232. $yestoday = $today - 86400;
  233. $where = [];
  234. $time == 1 && $where["a.createtime"] = ["gt",$today];
  235. $time == 2 && $where["a.createtime"] = ["between","$yestoday,$today"];
  236. $ranklist = \app\common\model\EggDo::alias("a")->field("a.user_id,sum(a.price) as money,u.avatar,u.nickname")
  237. ->join("hx_user u","u.id = a.user_id","inner")
  238. ->where($where)
  239. ->group("a.user_id")
  240. ->order("money","desc")
  241. ->limit(20)
  242. ->select();
  243. if(!$ranklist) $this->success("获取成功!",[]);
  244. foreach($ranklist as $k => $v) {
  245. // 查询
  246. $where["user_id"] = $v["user_id"];
  247. $ranklist[$k]["gifts"] = \app\common\model\EggDo::alias("a")
  248. ->field("image,count(id) as number,sum(a.price) as money")
  249. ->limit(3)
  250. ->where($where)
  251. ->group("gift_id")
  252. ->order("money","desc")
  253. ->select();
  254. }
  255. $this->success("获取成功!",$ranklist);
  256. }
  257. /**
  258. * 获取砸蛋基本信息
  259. */
  260. public function getBaseInfo() {
  261. $type = input('type',1);
  262. // 构建数据
  263. $data = [];
  264. $data["jewel"] = $this->auth->jewel;
  265. $data["playdetail"] = config("site.playdetail");
  266. $data['pay_config'] = Db::name('egg_timesprice')->field('times,price')->where('type',$type)->order('times asc')->select();
  267. $this->success("获取成功!",$data);
  268. }
  269. }