Egg.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385
  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 Egg extends Api
  11. {
  12. protected $noNeedLogin = ['getThisJackpot'];
  13. protected $noNeedRight = ['*'];
  14. /**
  15. * 获取本期奖池列表
  16. */
  17. public function getThisJackpot() {
  18. $jackId = \app\common\model\EggJackpot::where(["status"=>1])->value("id");
  19. $egggiftModel = new \app\common\model\EggGift();
  20. $where = [];
  21. $where["Jackpot_id"] = $jackId;
  22. $egggiftList = $egggiftModel->where($where)->group("gift_id")->order("price","desc")->select();
  23. return $this->success("获取成功!",$egggiftList);
  24. }
  25. /**
  26. * 购买锤子
  27. */
  28. public function buyHammer() {
  29. // 接口防并发
  30. if (!$this->apiLimit(1, 2000)) {
  31. $this->error(__('Operation frequently'));
  32. }
  33. $num = $this->request->request("num");
  34. if($num <=0) {
  35. $this->error("购买数量不能小于0!");
  36. }
  37. $user_id = $this->auth->id;
  38. $hammerPrice = config("site.hammerPrice");
  39. if($hammerPrice <=0) {
  40. $this->error("系统配置出错!");
  41. }
  42. $userModel = new \app\common\model\User;
  43. $userInfo = $userModel->where('id',$user_id)->lock(true)->find();
  44. $money = $hammerPrice*$num;
  45. // 判断用户钻石余额是否充足
  46. if($userInfo->jewel < $money) {
  47. $this->error("您的钻石余额不足!",null,100);
  48. }
  49. $userjewellogModel = new \app\common\model\UserJewelLog();
  50. Db::startTrans();
  51. try{
  52. $userjewel = $userInfo->jewel;
  53. // 添加购买订单
  54. $data = [];
  55. $data["user_id"] = $user_id;
  56. $data["price"] = $hammerPrice;
  57. $data["number"] = $num;
  58. $data["money"] = $money;
  59. $data["createtime"] = time();
  60. $res1 = \app\common\model\EggOrder::insert($data);
  61. // 为用户增加锤子
  62. $res2 = $userInfo->setInc("hammer",$num);
  63. // 扣除用户钻石并生成钻石变动记录
  64. $where = [];
  65. $where["id"] = $user_id;
  66. $res3 = $userInfo->setDec("jewel",$money);
  67. $res4 = $userjewellogModel->addUserJewelLog($user_id, $money, "-", $userjewel, "购买{$num}锤", 2);
  68. $redis = new Redis();
  69. $redisconfig = config("redis");
  70. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  71. for($i=1;$i<=$num;$i++) {
  72. $val = date("YmdHis").$i;
  73. $redis->lpush("hammer_num_".$user_id,$val);
  74. }
  75. if($res1 && $res2 && $res3 && $res4) {
  76. Db::commit();
  77. $this->success("购买成功!");
  78. } else {
  79. $this->error("购买失败!");
  80. }
  81. }catch (ValidateException $e) {
  82. Db::rollback();
  83. $this->error($e->getMessage());
  84. } catch (PDOException $e) {
  85. Db::rollback();
  86. $this->error($e->getMessage());
  87. } catch (Exception $e) {
  88. Db::rollback();
  89. $this->error($e->getMessage());
  90. }
  91. }
  92. /**
  93. * 查找下一个奖池
  94. */
  95. public function getNextJackpot($jackpot_id) {
  96. $jackpotIds = \app\common\model\EggJackpot::order("id","asc")->column("id");
  97. $next = 0;
  98. foreach($jackpotIds as $k => $v) {
  99. if($v == $jackpot_id) {
  100. $next = isset($jackpotIds[$k+1])?$jackpotIds[$k+1]:$jackpotIds[0];
  101. }
  102. }
  103. return $next;
  104. }
  105. /**
  106. * 砸金蛋
  107. */
  108. public function strike() {
  109. // $this->error("系统正在维护中。。。");
  110. $num = $this->request->request("num");
  111. $party_id = $this->request->request("party_id", 0);// 派对ID
  112. if($num <=0) {
  113. $this->error("参数错误");
  114. }
  115. $giftdata = [];
  116. $user_id = $this->auth->id;
  117. // 防止超卖
  118. $redis = new Redis();
  119. $redisconfig = config("redis");
  120. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  121. // if($redis->lLen("hammer_num_".$user_id) < $num) $this->error("小金锤数量不足!");
  122. $do_no = date("YmdHis").rand(10000,99999);
  123. $userinfo = \app\common\model\User::lock(true)->find($this->auth->id);
  124. if($userinfo->hammer < $num) {
  125. $this->error("小金锤数量不足!");
  126. }
  127. for($i=1;$i<=$num;$i++) { // 扣除
  128. $redis->lpop("hammer_num_".$user_id);
  129. }
  130. Db::startTrans();
  131. try{
  132. // 查找正在开放的奖池
  133. $jackpot = \app\common\model\EggJackpot::where(["status"=>1])->find();
  134. if($jackpot) { // 有开放的奖池
  135. \app\common\model\EggJackpot::order("id","asc")->find();
  136. $jackpot_id = $jackpot["id"];
  137. } else { // 没有开放的奖池
  138. $jackpotInfo = \app\common\model\EggJackpot::order("id","asc")->find();
  139. $jackpot_id = $jackpotInfo["id"];
  140. \app\common\model\EggJackpot::update(["status"=>1],["id"=>$jackpot_id]);
  141. }
  142. // 查找奖池对应的奖池礼物
  143. $jackpotGift = \app\common\model\EggGift::where(["Jackpot_id"=>$jackpot_id,"is_use"=>0])->select();
  144. $giftCount = count($jackpotGift);
  145. $next_jackpot_id = $this->getNextJackpot($jackpot_id);
  146. if($giftCount <= $num) {
  147. // 先获取$giftCount个礼物
  148. $giftArr1 = $jackpotGift;
  149. // 更新礼物抽取状态
  150. $giftids = array_column($giftArr1,"id");
  151. $res1 = \app\common\model\EggGift::update(["is_use"=>1],["id"=>["in",$giftids]]);
  152. $res1Info = \app\common\model\EggGift::where(["id"=>["in",$giftids]])->select();
  153. // 更新奖池
  154. $res2 = \app\common\model\EggJackpot::update(["status"=>0],["tes"=>1]);
  155. $res3 = \app\common\model\EggJackpot::update(["status"=>1],["id"=>$next_jackpot_id]);
  156. // 下个奖池所有礼物改为未使用
  157. $res4 = \app\common\model\EggGift::update(["is_use"=>0],["Jackpot_id"=>$next_jackpot_id]);
  158. // 获取下个奖池礼物
  159. $nextjackpotGift = \app\common\model\EggGift::where(["Jackpot_id"=>$next_jackpot_id])->select();
  160. $newnum = $num-$giftCount;
  161. if($newnum <= 0) {
  162. $giftArr = [];
  163. foreach($nextjackpotGift as $k => $v) $giftArr[$v["id"]] = $v;
  164. if(!$giftArr) $this->error("奖池礼物待更新,请耐心等待!");
  165. $giftids = array_rand($giftArr,50);
  166. // 更新礼物抽取状态
  167. \app\common\model\EggGift::where(["id"=>["in",$giftids]])->select();
  168. $res5 = \app\common\model\EggGift::update(["updatetime"=>time()],["id"=>["in",$giftids]]);
  169. $giftdata = $giftArr1;
  170. } else {
  171. $giftArr = [];
  172. foreach($nextjackpotGift as $k => $v) $giftArr[$v["id"]] = $v;
  173. if(!$giftArr) $this->error("奖池礼物待更新,请耐心等待!");
  174. $giftids = array_rand($giftArr,$newnum);
  175. // 更新礼物抽取状态
  176. $res5Info = \app\common\model\EggGift::where(["id"=>["in",$giftids]])->select();
  177. $res5 = \app\common\model\EggGift::update(["is_use"=>1],["id"=>["in",$giftids]]);
  178. $giftdata = array_merge($giftArr1,$res5Info);
  179. }
  180. } else {
  181. // 随机抽取$num个礼物
  182. $giftArr = [];
  183. foreach($jackpotGift as $k => $v) $giftArr[$v["id"]] = $v;
  184. $giftids = array_rand($giftArr,$num);
  185. // 更新礼物抽取状态
  186. $res1 = \app\common\model\EggGift::update(["is_use"=>1],["id"=>["in",$giftids]]);
  187. $res1Info = \app\common\model\EggGift::where(["id"=>["in",$giftids]])->select();
  188. // ------------------ 附加逻辑开始 ---------------------//
  189. // 更新奖池
  190. $res2 = \app\common\model\EggJackpot::update(["updatetime"=>time()],["tes"=>1]);
  191. $res3 = \app\common\model\EggJackpot::update(["updatetime"=>time()],["id"=>$next_jackpot_id]);
  192. // 下个奖池所有礼物改为未使用
  193. $res4 = \app\common\model\EggGift::update(["updatetime"=>time()],["Jackpot_id"=>$next_jackpot_id]);
  194. // 获取下个奖池礼物
  195. $nextjackpotGift = \app\common\model\EggGift::where(["Jackpot_id"=>$next_jackpot_id])->select();
  196. $giftArr = [];
  197. foreach($nextjackpotGift as $k => $v) $giftArr[$v["id"]] = $v;
  198. if(!$giftArr) $this->error("奖池礼物待更新,请耐心等待!");
  199. $giftids = array_rand($giftArr,50);
  200. // 更新礼物抽取状态
  201. \app\common\model\EggGift::where(["id"=>["in",$giftids]])->select();
  202. $res5 = \app\common\model\EggGift::update(["updatetime"=>time()],["id"=>["in",$giftids]]);
  203. // ------------------ 附加逻辑结束 ---------------------//
  204. $giftdata = $res1Info;
  205. }
  206. if(!$giftdata) $this->error("系统错误!");
  207. $data = [];
  208. foreach($giftdata as $k => $v) {
  209. // 保存砸蛋记录
  210. $data[] = [
  211. "do_no" => $do_no,
  212. "user_id" => $user_id,
  213. "egg_gift_id" => $v["gift_id"],
  214. "image" => $v["image"],
  215. "special" => $v["special"],
  216. "gift_name" => $v["gift_name"],
  217. "Jackpot_id" => $v["Jackpot_id"],
  218. "prize_no" => $v["prize_no"],
  219. "price" => $v["price"],
  220. "createtime" => time(),
  221. ];
  222. // 添加用户背包
  223. $backdata[] = [
  224. "user_id" => $user_id,
  225. 'gift_id' => $v["gift_id"],
  226. "name" => $v["gift_name"],
  227. "image" => $v["image"],
  228. "gif_image" => $v["special"],
  229. "value" => $v["price"],
  230. "number" => 1,
  231. "is_use" => 0,
  232. "get_way" => 1,
  233. "createtime" => time(),
  234. ];
  235. }
  236. $data && $res5 = \app\common\model\EggDo::insertAll($data);
  237. // 扣除用户小锤子
  238. $res6 = \app\common\model\User::where(["id"=>$user_id])->setDec("hammer",$num);
  239. // 添加到用户背包
  240. $backdata && $res7 = \app\common\model\GiftBack::insertAll($backdata);
  241. if($res1 !== false && $res2 && $res3 && $res4 && $res5 && $res6 && $res7) {
  242. Db::commit();
  243. $eggStrikeNotice = config("site.eggStrikeNotice");
  244. if($party_id){
  245. $partyInfo = \app\common\model\Party::field("id,room_type,party_name")->where(["id"=>$party_id])->find();
  246. foreach ($backdata as $backdatum) {
  247. $realMoney = $backdatum['value'] / 100;
  248. if ($realMoney >= $eggStrikeNotice){
  249. $giftUserParty = ['number'=>$backdatum['number'],'gift_name'=>$backdatum['name'],'gift_gif_image'=>$backdatum['image']];
  250. QueueApi::sendGroupMessage(73, '', $this->auth->nickname, $partyInfo, $giftUserParty);
  251. }
  252. }
  253. }
  254. } else {
  255. // 返还锤子
  256. for($i=1;$i<=$num;$i++) {
  257. $val = date("YmdHis").$i;
  258. $redis->lpush("hammer_num_".$user_id,$val);
  259. }
  260. }
  261. }catch (ValidateException $e) {
  262. Db::rollback();
  263. $this->error($e->getMessage());
  264. } catch (PDOException $e) {
  265. Db::rollback();
  266. $this->error($e->getMessage());
  267. } catch (Exception $e) {
  268. Db::rollback();
  269. $this->error($e->getMessage());
  270. }
  271. // 返回抽到的礼物列表
  272. $list = \app\common\model\EggDo::where(["do_no"=>$do_no])->select();
  273. $this->success("获取成功!",$list);
  274. }
  275. /**
  276. * 获取排行榜
  277. */
  278. public function getRankList() {
  279. $time = $this->request->request("time"); // 1=今天,2=昨天
  280. if(!in_array($time,[1,2])) {
  281. $this->error("参数缺失!");
  282. }
  283. // 先根据用户抽奖总值排序 筛选
  284. $today = strtotime(date("Y-m-d 00:00:00"));
  285. $yestoday = $today - 86400;
  286. $where = [];
  287. $time == 1 && $where["a.createtime"] = ["gt",$today];
  288. $time == 2 && $where["a.createtime"] = ["between","$yestoday,$today"];
  289. $ranklist = \app\common\model\EggDo::alias("a")->field("a.user_id,sum(a.price) as money,u.avatar,u.nickname")
  290. ->join("hx_user u","u.id = a.user_id","inner")
  291. ->where($where)
  292. ->group("a.user_id")
  293. ->order("money","desc")
  294. ->limit(20)
  295. ->select();
  296. if(!$ranklist) $this->success("获取成功!",[]);
  297. foreach($ranklist as $k => $v) {
  298. // 查询
  299. $where["user_id"] = $v["user_id"];
  300. $ranklist[$k]["gifts"] = \app\common\model\EggDo::alias("a")
  301. ->field("image,count(id) as number,sum(a.price) as money")
  302. ->limit(3)
  303. ->where($where)
  304. ->group("egg_gift_id")
  305. ->order("money","desc")
  306. ->select();
  307. }
  308. $this->success("获取成功!",$ranklist);
  309. }
  310. /**
  311. * 获取砸蛋基本信息
  312. */
  313. public function getBaseInfo() {
  314. $user_id = $this->auth->id;
  315. // 本人拥有锤子个数
  316. $hammerNum = \app\common\model\User::where(["id"=>$user_id])->value("hammer");
  317. // 构建数据
  318. $data = [];
  319. $data["hammerNum"] = $hammerNum;
  320. $data["hammerPrice"] = config("site.hammerPrice");
  321. $data["playdetail"] = config("site.playdetail");
  322. $this->success("获取成功!",$data);
  323. }
  324. }