Eggnew.php 12 KB

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