Partytest.php 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414
  1. <?php
  2. namespace app\api\controller;
  3. use app\api\controller\Common;
  4. use app\common\model\PartyJoin;
  5. use fast\Random;
  6. use app\common\controller\RedisLeaderboard;
  7. use Redis;
  8. use think\Db;
  9. use think\Exception;
  10. use think\exception\PDOException;
  11. use think\exception\ValidateException;
  12. use think\Request;
  13. use app\common\service\RoomService;
  14. use app\common\library\GatewayworkerTools;
  15. /**
  16. * 派对信息接口
  17. */
  18. class Party extends Common
  19. {
  20. protected $noNeedLogin = ['updatePartyInfo','getPatyType','addUserPositionToParty', 'clearMoney','clearCharm','getPartyRankList','getDefaultBackground','getPartGifList','getPartHeadgifList','isNotalk','getMusicList','updateTops','handleParty'];
  21. protected $noNeedRight = ['*'];
  22. public function __construct(Request $request = null)
  23. {
  24. $this->roomTypeArr = [1=>"party",2=>"live"];
  25. parent::__construct($request);
  26. }
  27. /**
  28. * 全麦/单独赠送礼物
  29. */
  30. public function giveGiftToYou() {
  31. // 是否背包赠送: 1=是,0=否
  32. $is_back = $this->request->request("is_back",0);
  33. // 接口防并发
  34. if($is_back){
  35. if (!$this->apiLimit(50, 1000)) {
  36. //1000毫秒50次
  37. $this->error(__('Operation frequently'));
  38. }
  39. }else{
  40. if (!$this->apiLimit(10, 1000)) {
  41. //1000毫秒10次
  42. $this->error(__('Operation frequently'));
  43. }
  44. }
  45. //送礼物权限
  46. if($this->auth->power['give_gift'] == 1){
  47. $this->error('您已被限制:赠送礼物,请联系管理员');
  48. }
  49. //接收参数
  50. $user_ids = $this->request->request("user_id");// 赠送对象
  51. $gift_id = $this->request->request("gift_id");// 礼物ID。如果是背包赠送,则是gift_back表的id,这样不合理,但是已经不好改了
  52. $party_id = $this->request->request("party_id",0);// 派对ID
  53. $room_type = $this->request->request('room_type',1); // 房间类型
  54. $number = $this->request->request("number");// 赠送数量
  55. if (!$user_ids || !in_array($is_back,[0,1]) || !$gift_id || !$number || !in_array($room_type,[1,2]))
  56. {
  57. $this->error(__('Invalid parameters'));
  58. }
  59. //处理参数
  60. $user_id_arr = explode(",",$user_ids);
  61. $userCount = count($user_id_arr);
  62. $userauthid = $this->auth->id;
  63. $money_to_jewel = config('site.money_to_jewel') ?: 10; //余额兑换钻石
  64. $userModel = new \app\common\model\User();
  65. // 不可以赠送给自己
  66. //if(in_array($userauthid,$user_id_arr)) $this->error("不可以赠送给自己!");
  67. $backGiftId = 0; //背包礼物表的 gift_id
  68. $boxgiftInfo = [];
  69. //每个人都能得到的礼物价值
  70. $giftValue = 0;
  71. //每个人都能得到的礼物价值
  72. $getValue = 0;
  73. if($is_back == 1) {
  74. // 获取背包礼物信息
  75. $giftInfo = \app\common\model\GiftBack::get($gift_id);
  76. if(!$giftInfo){
  77. $this->error("背包礼物获取失败");
  78. }
  79. $backGiftId = $giftInfo->gift_id;
  80. // 随机获取一个礼物
  81. $allCount = $number*$userCount;
  82. $giftbackList = \app\common\model\GiftBack::where(["gift_id"=>$backGiftId,"user_id"=>$userauthid,'is_use'=>0])->limit($allCount)->select();
  83. $giftInfo = isset($giftbackList[0]) ? $giftbackList[0] : [];
  84. $giftcount = 0;
  85. $giftList = [];
  86. if(!empty($giftbackList)) {
  87. foreach($giftbackList as $k => $v) {
  88. $giftcount = $giftcount + $v["number"];
  89. $giftList[$k] = $v;
  90. if($giftcount >= $allCount) {
  91. break;
  92. }
  93. }
  94. }
  95. if($giftcount < $allCount) $this->error("背包数量不足");
  96. $giftValue = $giftInfo["value"] * $number;
  97. $getValue = $giftValue;
  98. } else {
  99. // 获取礼物信息
  100. $giftInfo = Db::name('gift')->where('id',$gift_id)->find();
  101. if (!$giftInfo) {
  102. $this->error("请选择礼物!");
  103. }
  104. $giftValue = $giftInfo["value"] * $number;
  105. $getValue = $giftValue;
  106. // 判断当前用户余额,这里不需要锁表,钱包操作会锁
  107. $giftCountValue = $giftInfo["value"] * $number * $userCount;
  108. if($this->auth->jewel < $giftCountValue){
  109. $this->error("您的钻石余额不足!");
  110. }
  111. }
  112. $hotValue = $getValue;
  113. // 转换声币后 再进行抽点设置
  114. $partyInfo = null;
  115. if(!$party_id) {
  116. $platRate = 10;
  117. $guilderRate = 30;
  118. } else {
  119. $partyInfo = \app\common\model\Party::field("user_id,platRate,guilderRate")->where(["id"=>$party_id])->find();
  120. // 获取系统配置信息
  121. $platRate = $partyInfo->platRate; // 平台抽成百分比
  122. $guilderRate = $partyInfo->guilderRate; // 工会长抽成百分比
  123. }
  124. $platValue = bcmul($platRate/100,$getValue,2); //平台抽成
  125. $guilderValue = bcmul($guilderRate/100,$getValue,2);// 工会长抽成
  126. $getValue = bcsub(bcsub($getValue,$platValue,2),$guilderValue,2);//减去抽成剩余价值
  127. // $gif_image = $is_back==1?$giftInfo["gif_image"]:$giftInfo["special"];
  128. $returnData = [];
  129. Db::startTrans();
  130. try {
  131. $redis = new Redis();
  132. $redisconfig = config("redis");
  133. $redis->connect($redisconfig["host"], $redisconfig["port"], 86400 * 31);
  134. if ($redisconfig['redis_pwd']) {
  135. $redis->auth($redisconfig['redis_pwd']);
  136. }
  137. if($redisconfig['redis_selectdb'] > 0){
  138. $redis->select($redisconfig['redis_selectdb']);
  139. }
  140. // 获取当天零点
  141. $day = date("Ymd");
  142. // 获取本周第一天
  143. $weekday = $this->firstOfWeek(date("Y-m-d H:i:s"));
  144. // 获取本月第一天
  145. $monthday = date("Ym01");
  146. $allVal = 0;
  147. $i = 0;
  148. foreach($user_id_arr as $user_id) {
  149. // 获取赠送用户信息
  150. $where = [];
  151. $where["id"] = $user_id;
  152. $touserInfo = $userModel->where($where)->find();
  153. if($is_back == 1) {
  154. $b=0;
  155. foreach($giftList as $k => $v) {
  156. for($a=1;$a<=$v["number"];$a++) {
  157. $b++;
  158. $num = $v["number"] - $a;
  159. if($num > 0) {
  160. $res1 = \app\common\model\GiftBack::where(["id"=>$v["id"]])->setDec("number");
  161. } else {
  162. $res1 = \app\common\model\GiftBack::update(["is_use"=>1,"use_time"=>time()],["id"=>$v["id"]]);
  163. }
  164. if($b == $number) break;
  165. }
  166. }
  167. $res2 = true;
  168. } else {
  169. $res1 = true;
  170. $res2 = true;
  171. // 扣除当前用户钻石余额
  172. $rs_wallet = model('wallet')->lockChangeAccountRemain($userauthid, $giftValue, '-', $userInfo["jewel"], "赠送礼物:'" . $giftInfo["name"] . "',扣除" . $giftValue . "钻石!", 3,'jewel');
  173. if($rs_wallet['status'] == false){
  174. $this->error($rs_wallet['msg']);
  175. Db::rollback();
  176. }
  177. }
  178. $giftuserpartyModel = new \app\common\model\GiftUserParty();
  179. // 添加礼物赠送记录表
  180. $data = [];
  181. $data["user_id"] = $userauthid;
  182. $data["user_to_id"] = $user_id;
  183. $data["party_id"] = $party_id;
  184. if($boxgiftInfo){
  185. $data["gift_id"] = $boxgiftInfo['gift_id'];
  186. $data["gift_give_type"] = 2;
  187. $data["gift_name"] = $boxgiftInfo["gift_name"];
  188. $data["gift_gif_image"] = $boxgiftInfo["image"];
  189. $data["number"] = $number;
  190. $data["price"] = $boxgiftInfo["price"];
  191. $data["value"] = $boxgiftInfo["price"] * $number;
  192. }else{
  193. $data["gift_id"] = $backGiftId > 0 ? $backGiftId : $gift_id;
  194. $data["gift_give_type"] = $is_back ? 1 : 2;
  195. $data["gift_name"] = $giftInfo["name"];
  196. $data["gift_gif_image"] = $giftInfo["image"];
  197. $data["number"] = $number;
  198. $data["price"] = $giftInfo["value"];
  199. $data["value"] = $giftValue;
  200. }
  201. //每个礼物都要计算平台抽成和房主抽成
  202. $data['platvalue'] = bcmul($platRate/100,$data["value"],2);
  203. $data['guildervalue'] = bcmul($guilderRate/100,$data["value"],2);
  204. $data['guildermoney'] = bcdiv($data['guildervalue'],$money_to_jewel,2);
  205. $data["createtime"] = time();
  206. $res5 = $giftuserpartyModel->allowField(true)->save($data);
  207. $this->bigGiftNotice($giftuserpartyModel);
  208. // 添加获赠用户余额
  209. if($getValue > 0){
  210. $getMoney = bcdiv($getValue,$money_to_jewel,2);
  211. if($getMoney > 0){
  212. $rs_wallet = model('wallet')->lockChangeAccountRemain($user_id,$getMoney,'+',0,"{$this->auth->nickname}送你{$giftInfo['name']}x{$number}",101,'money');
  213. if($rs_wallet['status'] == false){
  214. $this->error($rs_wallet['msg']);
  215. Db::rollback();
  216. }
  217. }
  218. }
  219. // 增加房主抽成
  220. if ($partyInfo && $guilderValue > 0) {
  221. $guilderMoney = bcdiv($guilderValue,$money_to_jewel,2);
  222. if($guilderMoney > 0){
  223. $rs_wallet = model('wallet')->lockChangeAccountRemain($partyInfo->user_id,$guilderMoney,'+',0,"{$this->auth->nickname}送礼物{$giftInfo['name']}x{$number}给{$touserInfo['nickname']},房间礼物抽成",102,'money');
  224. if($rs_wallet['status'] == false){
  225. $this->error($rs_wallet['msg']);
  226. Db::rollback();
  227. }
  228. }
  229. }
  230. if ($res1 && $res2 && $res5) {
  231. $i++;
  232. if($party_id > 0) {
  233. // 添加redis记录做财富排行榜日榜用
  234. $redis->zIncrBy($this->roomTypeArr[$room_type] . "_jewel_get_" . $party_id . ":" . $day . "d", $hotValue, $user_id);
  235. // 添加redis记录做财富排行榜周榜用
  236. $redis->zIncrBy($this->roomTypeArr[$room_type] . "_jewel_get_" . $party_id . ":" . $weekday . "w", $hotValue, $user_id);
  237. // 添加redis记录做财富排行榜月榜用
  238. $redis->zIncrBy($this->roomTypeArr[$room_type] . "_jewel_get_" . $party_id . ":" . $monthday . "m", $hotValue, $user_id);
  239. // 添加redis记录做贡献排行榜日榜用
  240. $redis->zIncrBy($this->roomTypeArr[$room_type] . "_jewel_to_" . $party_id . ":" . $day . "d", $giftValue, $userauthid);
  241. // 添加redis记录做贡献排行榜周榜用
  242. $redis->zIncrBy($this->roomTypeArr[$room_type] . "_jewel_to_" . $party_id . ":" . $weekday . "w", $giftValue, $userauthid);
  243. // 添加redis记录做贡献排行榜月榜用
  244. $redis->zIncrBy($this->roomTypeArr[$room_type] . "_jewel_to_" . $party_id . ":" . $monthday . "m", $giftValue, $userauthid);
  245. // tcp 更新用户魅力值
  246. $this->updateUserCharm($party_id, $user_id, $hotValue);
  247. // 如果是主播,则添加魅力值记录做榜单统计
  248. if($room_type == 2) {
  249. $data = [];
  250. $data["user_id"] = $user_id;
  251. $data["party_id"] = $party_id;
  252. $data["charm"] = $hotValue;
  253. $data["createtime"] = time();
  254. \app\common\model\UserCharmRank::insert($data);
  255. }
  256. }
  257. $getempirical = config("site.getempirical");
  258. $getempirical = $getempirical * $hotValue;
  259. // 获取用户贵族信息
  260. $noble = \app\common\model\User::getUserNoble($this->auth->id);
  261. if(isset($noble["noble_on"]) && $noble["noble_on"] == 1) {
  262. $getempirical = $getempirical + $getempirical * ($noble["explain"]/100);
  263. }
  264. // 增加用户经验值
  265. $res = \app\common\model\User::addEmpirical($this->auth->id,$getempirical);
  266. if ($res){
  267. $this->auth->level = $res->level;
  268. }
  269. //增加被送礼物用户的魅力等级
  270. $res_charm = \app\common\model\User::add_charm_level($user_id,$giftValue);
  271. // +exp
  272. \app\common\model\TaskLog::tofinish($this->auth->id,"OBHqCX4g",$number);
  273. //贵族升级处理
  274. //$this->checkBeNoble($redis,$this->auth->id,$giftCountValue);
  275. // +message
  276. \app\common\model\Message::addMessage($user_id,"礼物通知","收到 ".$this->auth->nickname." 赠送的".$giftInfo["name"]." x".$number." 价值 ".$giftValue ." 钻石");
  277. $allVal = $allVal + $hotValue;
  278. // // 剪掉背包礼物
  279. // if($is_back == 1) {
  280. // \app\common\model\GiftBack::update(["is_use"=>1],["id"=>$gift_id]);
  281. // }
  282. }
  283. }
  284. // 获取用户魅力值
  285. $users = $redis->zRange("hourCharm_".$party_id,0,-1,true);
  286. $u = [];
  287. if($users) {
  288. foreach($users as $k => $v) $u[] = [
  289. "user_id"=>$k,
  290. "charm"=>$this->changeW($v)
  291. ];
  292. }
  293. $userCharm = $u;
  294. // tcp 更新房间热度
  295. $partyHot = $this->updatePartyHot($party_id, $allVal, $room_type);
  296. // 如果是派对,则添加派对热度值记录做榜单统计
  297. if($room_type == 1) {
  298. $data = [];
  299. $data["party_id"] = $party_id;
  300. $data["hot"] = $allVal;
  301. $data["createtime"] = time();
  302. \app\common\model\PartyHot::insert($data);
  303. }
  304. //增加送礼用户的财富等级
  305. $res_wealth = \app\common\model\User::add_wealth_level($this->auth->id,$allVal);
  306. // tcp 获取房间用户周前三名
  307. $partyUserTop = $this->getPartyUserTop($party_id, $room_type);
  308. if($i == $userCount) {
  309. $returnData["userCharm"] = $userCharm;
  310. $returnData["partyHot"] = $this->changeW($partyHot);
  311. $returnData["partyUserTop"] = $partyUserTop;
  312. if($is_back != 1) {
  313. if($giftInfo->box_type > 0) { // 不是背包,宝箱中赠送
  314. $returnData["box_type"] = $giftInfo->box_type;
  315. $returnData["box_image"] = $giftInfo->image;
  316. $returnData["image"] = $boxgiftInfo["image"];
  317. $returnData["name"] = $boxgiftInfo["gift_name"];
  318. $returnData["gif_image"] = $boxgiftInfo["special"];
  319. } else {
  320. $returnData["image"] = $giftInfo["image"];
  321. $returnData["gif_image"] = $giftInfo["special"];
  322. }
  323. } else {
  324. $returnData["image"] = $giftInfo["image"];
  325. $returnData["gif_image"] = $giftInfo["gif_image"];
  326. }
  327. // 增加抽点记录
  328. $data = [];
  329. $data["user_id"] = $user_ids;
  330. $data["party_id"] = $party_id?$party_id:0;
  331. $data["gift_value"] = $giftValue;
  332. $data["plat_value"] = $platValue;
  333. $data["guilder_value"] = $guilderValue;
  334. $data["createtime"] = time();
  335. \app\common\model\UserProfitLog::insert($data);
  336. Db::commit();
  337. $this->success("赠送成功!",$returnData);
  338. } else {
  339. $this->success("赠送失败!");
  340. }
  341. } catch (ValidateException $e) {
  342. Db::rollback();
  343. $this->error($e->getMessage());
  344. } catch (PDOException $e) {
  345. Db::rollback();
  346. $this->error($e->getMessage());
  347. } catch (Exception $e) {
  348. Db::rollback();
  349. $this->error($e->getMessage());
  350. }
  351. }