Eggnew.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314
  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. * 查找下一个奖池
  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. $giftdata = [];
  52. $user_id = $this->auth->id;
  53. // 防止超卖
  54. $redis = new Redis();
  55. $redisconfig = config("redis");
  56. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  57. if ($redisconfig['redis_pwd']) {
  58. $redis->auth($redisconfig['redis_pwd']);
  59. }
  60. if($redisconfig['redis_selectdb'] > 0){
  61. $redis->select($redisconfig['redis_selectdb']);
  62. }
  63. $do_no = date("YmdHis").rand(10000,99999);
  64. Db::startTrans();
  65. try{
  66. // 查找正在开放的奖池
  67. $jackpot = \app\common\model\EggJackpot::where(["status"=>1,'type'=>$type])->find();
  68. if($jackpot) { // 有开放的奖池
  69. // \app\common\model\EggJackpot::order("id","asc")->find();
  70. $jackpot_id = $jackpot["id"];
  71. } else { // 没有开放的奖池
  72. $jackpotInfo = \app\common\model\EggJackpot::where('type',$type)->order('weigh asc,id asc')->find();
  73. $jackpot_id = $jackpotInfo["id"];
  74. \app\common\model\EggJackpot::update(["status"=>1],["id"=>$jackpot_id]);//打开
  75. }
  76. // 查找奖池对应的奖池礼物
  77. $jackpotGift = \app\common\model\EggGift::where(["Jackpot_id"=>$jackpot_id,"is_use"=>0])->select();
  78. $giftCount = count($jackpotGift);
  79. $next_jackpot_id = $this->getNextJackpot($jackpot_id);
  80. if($giftCount <= $num) {
  81. // 先获取$giftCount个礼物
  82. $giftArr1 = $jackpotGift;
  83. // 更新礼物抽取状态
  84. $giftids = array_column($giftArr1,"id");
  85. $res1 = \app\common\model\EggGift::update(["is_use"=>1],["id"=>["in",$giftids]]);
  86. $res1Info = \app\common\model\EggGift::where(["id"=>["in",$giftids]])->select();
  87. // 更新奖池
  88. $res2 = \app\common\model\EggJackpot::update(["status"=>0],["tes"=>1]);
  89. $res3 = \app\common\model\EggJackpot::update(["status"=>1],["id"=>$next_jackpot_id]);
  90. // 下个奖池所有礼物改为未使用
  91. $res4 = \app\common\model\EggGift::update(["is_use"=>0],["Jackpot_id"=>$next_jackpot_id]);
  92. // 获取下个奖池礼物
  93. $nextjackpotGift = \app\common\model\EggGift::where(["Jackpot_id"=>$next_jackpot_id])->select();
  94. $newnum = $num-$giftCount;
  95. if($newnum <= 0) {
  96. $giftArr = [];
  97. foreach($nextjackpotGift as $k => $v) $giftArr[$v["id"]] = $v;
  98. if(!$giftArr) $this->error("奖池礼物待更新,请耐心等待!");
  99. $giftids = array_rand($giftArr,50);
  100. // 更新礼物抽取状态
  101. \app\common\model\EggGift::where(["id"=>["in",$giftids]])->select();
  102. $res5 = \app\common\model\EggGift::update(["updatetime"=>time()],["id"=>["in",$giftids]]);
  103. $giftdata = $giftArr1;
  104. } else {
  105. $giftArr = [];
  106. foreach($nextjackpotGift as $k => $v) $giftArr[$v["id"]] = $v;
  107. if(!$giftArr) $this->error("奖池礼物待更新,请耐心等待!");
  108. $giftids = array_rand($giftArr,$newnum);
  109. // 更新礼物抽取状态
  110. $res5Info = \app\common\model\EggGift::where(["id"=>["in",$giftids]])->select();
  111. $res5 = \app\common\model\EggGift::update(["is_use"=>1],["id"=>["in",$giftids]]);
  112. $giftdata = array_merge($giftArr1,$res5Info);
  113. }
  114. } else {
  115. // 随机抽取$num个礼物
  116. $giftArr = [];
  117. foreach($jackpotGift as $k => $v) $giftArr[$v["id"]] = $v;
  118. $giftids = array_rand($giftArr,$num);
  119. // 更新礼物抽取状态
  120. $res1 = \app\common\model\EggGift::update(["is_use"=>1],["id"=>["in",$giftids]]);
  121. $res1Info = \app\common\model\EggGift::where(["id"=>["in",$giftids]])->select();
  122. // ------------------ 附加逻辑开始 ---------------------//
  123. // 更新奖池
  124. $res2 = \app\common\model\EggJackpot::update(["updatetime"=>time()],["tes"=>1]);
  125. $res3 = \app\common\model\EggJackpot::update(["updatetime"=>time()],["id"=>$next_jackpot_id]);
  126. // 下个奖池所有礼物改为未使用
  127. $res4 = \app\common\model\EggGift::update(["updatetime"=>time()],["Jackpot_id"=>$next_jackpot_id]);
  128. // 获取下个奖池礼物
  129. $nextjackpotGift = \app\common\model\EggGift::where(["Jackpot_id"=>$next_jackpot_id])->select();
  130. $giftArr = [];
  131. foreach($nextjackpotGift as $k => $v) $giftArr[$v["id"]] = $v;
  132. if(!$giftArr) $this->error("奖池礼物待更新,请耐心等待!");
  133. $giftids = array_rand($giftArr,50);
  134. // 更新礼物抽取状态
  135. \app\common\model\EggGift::where(["id"=>["in",$giftids]])->select();
  136. $res5 = \app\common\model\EggGift::update(["updatetime"=>time()],["id"=>["in",$giftids]]);
  137. // ------------------ 附加逻辑结束 ---------------------//
  138. $giftdata = $res1Info;
  139. }
  140. if(!$giftdata) $this->error("系统错误!");
  141. $data = [];
  142. foreach($giftdata as $k => $v) {
  143. // 保存砸蛋记录
  144. $data[] = [
  145. "do_no" => $do_no,
  146. "user_id" => $user_id,
  147. "egg_gift_id" => $v["gift_id"],
  148. "image" => $v["image"],
  149. "special" => $v["special"],
  150. "gift_name" => $v["gift_name"],
  151. "Jackpot_id" => $v["Jackpot_id"],
  152. "prize_no" => $v["prize_no"],
  153. "price" => $v["price"],
  154. "createtime" => time(),
  155. ];
  156. // 添加用户背包
  157. $backdata[] = [
  158. "user_id" => $user_id,
  159. 'gift_id' => $v["gift_id"],
  160. "name" => $v["gift_name"],
  161. "image" => $v["image"],
  162. "gif_image" => $v["special"],
  163. "value" => $v["price"],
  164. "number" => 1,
  165. "is_use" => 0,
  166. "get_way" => 1,
  167. "createtime" => time(),
  168. ];
  169. }
  170. $data && $res5 = \app\common\model\EggDo::insertAll($data);
  171. // 扣除用户小锤子
  172. $res6 = true;
  173. // 添加到用户背包
  174. $backdata && $res7 = \app\common\model\GiftBack::insertAll($backdata);
  175. if($res1 !== false && $res2 && $res3 && $res4 && $res5 && $res6 && $res7) {
  176. Db::commit();
  177. $eggStrikeNotice = config("site.eggStrikeNotice");
  178. if($party_id){
  179. $partyInfo = \app\common\model\Party::field("id,room_type,party_name")->where(["id"=>$party_id])->find();
  180. foreach ($backdata as $backdatum) {
  181. $realMoney = $backdatum['value'] / 100;
  182. if ($realMoney >= $eggStrikeNotice){
  183. $giftUserParty = ['number'=>$backdatum['number'],'gift_name'=>$backdatum['name'],'gift_gif_image'=>$backdatum['image']];
  184. QueueApi::sendGroupMessage(73, '', $this->auth->nickname, $partyInfo, $giftUserParty);
  185. }
  186. }
  187. }
  188. } else {
  189. // 返还锤子
  190. for($i=1;$i<=$num;$i++) {
  191. $val = date("YmdHis").$i;
  192. $redis->lpush("hammer_num_".$user_id,$val);
  193. }
  194. }
  195. }catch (ValidateException $e) {
  196. Db::rollback();
  197. $this->error($e->getMessage());
  198. } catch (PDOException $e) {
  199. Db::rollback();
  200. $this->error($e->getMessage());
  201. } catch (Exception $e) {
  202. Db::rollback();
  203. $this->error($e->getMessage());
  204. }
  205. // 返回抽到的礼物列表
  206. $list = \app\common\model\EggDo::where(["do_no"=>$do_no])->select();
  207. $this->success("获取成功!",$list);
  208. }
  209. /**
  210. * 获取排行榜
  211. */
  212. public function getRankList() {
  213. $time = $this->request->request("time"); // 1=今天,2=昨天
  214. if(!in_array($time,[1,2])) {
  215. $this->error("参数缺失!");
  216. }
  217. // 先根据用户抽奖总值排序 筛选
  218. $today = strtotime(date("Y-m-d 00:00:00"));
  219. $yestoday = $today - 86400;
  220. $where = [];
  221. $time == 1 && $where["a.createtime"] = ["gt",$today];
  222. $time == 2 && $where["a.createtime"] = ["between","$yestoday,$today"];
  223. $ranklist = \app\common\model\EggDo::alias("a")->field("a.user_id,sum(a.price) as money,u.avatar,u.nickname")
  224. ->join("hx_user u","u.id = a.user_id","inner")
  225. ->where($where)
  226. ->group("a.user_id")
  227. ->order("money","desc")
  228. ->limit(20)
  229. ->select();
  230. if(!$ranklist) $this->success("获取成功!",[]);
  231. foreach($ranklist as $k => $v) {
  232. // 查询
  233. $where["user_id"] = $v["user_id"];
  234. $ranklist[$k]["gifts"] = \app\common\model\EggDo::alias("a")
  235. ->field("image,count(id) as number,sum(a.price) as money")
  236. ->limit(3)
  237. ->where($where)
  238. ->group("egg_gift_id")
  239. ->order("money","desc")
  240. ->select();
  241. }
  242. $this->success("获取成功!",$ranklist);
  243. }
  244. /**
  245. * 获取砸蛋基本信息
  246. */
  247. public function getBaseInfo() {
  248. $user_id = $this->auth->id;
  249. // 构建数据
  250. $data = [];
  251. $data["jewel"] = $this->auth->jewel;
  252. $data["playdetail"] = config("site.playdetail");
  253. $this->success("获取成功!",$data);
  254. }
  255. }