Live.php 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686
  1. <?php
  2. namespace app\api\controller;
  3. use app\api\controller\Common;
  4. use app\common\model\LiveJoin;
  5. use fast\Random;
  6. use app\common\controller\RedisLeaderboard;
  7. use Redis;
  8. use think\Db;
  9. /**
  10. * 直播间接口
  11. */
  12. class Live extends Common
  13. {
  14. protected $noNeedLogin = ['updateLiveInfo','getLiveType','abkd','abab','getGiftInfo'];
  15. protected $noNeedRight = ['*'];
  16. /**
  17. * @throws \think\db\exception\DataNotFoundException
  18. * @throws \think\db\exception\ModelNotFoundException
  19. * @throws \think\exception\DbException
  20. * 余额提现检查
  21. */
  22. public function abkd() {
  23. $weekend = strtotime('monday this week');
  24. exit;
  25. // $user_id = $this->request->request("user_id");
  26. // if(!$user_id) return false;
  27. // $users = \app\common\model\User::field("id,money")->select();
  28. // if($users) foreach($users as $k => $v) {
  29. // $user_id = $v["id"];
  30. // // 统计用户所有兑换记录和提现记录 是否与余额匹配
  31. // $moneylog = \app\common\model\UserMoneyLog::where(["user_id"=>$user_id,"mode"=>"+"])->sum("money");
  32. // $withdraw = \app\common\model\UserWithdrawalLog::where(["user_id"=>$user_id,"status"=>1])->sum("money");
  33. // $withdraw = bcdiv($withdraw,100,2);
  34. // $sum = bcsub($moneylog, $withdraw,2);
  35. // $usermoney = \app\common\model\User::where(["id"=>$user_id])->value("money");
  36. // if($usermoney == $sum) {
  37. // echo "1<br/>";
  38. // } else {
  39. // echo $v['id']."用户余额:".$usermoney;
  40. // echo "记录和:".$sum."<br/>";
  41. //
  42. //// $money = bcsub($usermoney,$sum,2);
  43. //// $time = time();
  44. //// $money>0 && Db::execute("INSERT INTO `hx_user_money_log` (`user_id` , `money` , `mode`, `before` , `after` , `detail`, `createtime`) VALUES ($user_id , $money , '+', $usermoney, $usermoney, '系统补足', $time)");
  45. //
  46. // }
  47. // }
  48. $user_id = 319;
  49. // 统计用户所有兑换记录和提现记录 是否与余额匹配
  50. $moneylog = \app\common\model\UserMoneyLog::where(["user_id" => $user_id, "mode" => "+"])->sum("money");
  51. $withdraw = \app\common\model\UserWithdrawalLog::where(["user_id" => $user_id, "status" => ["in", [0, 1]]])->sum("money");
  52. $withdraw = bcdiv($withdraw, 100,2);
  53. $sum = bcsub($moneylog, $withdraw,2);
  54. $usermoney = \app\common\model\User::where(["id" => $user_id])->value("money");
  55. if ($usermoney == $sum) {
  56. echo 1;
  57. } else {
  58. echo 'f'.$moneylog;
  59. }
  60. exit;
  61. }
  62. /**
  63. * 声币兑换余额检查
  64. */
  65. public function abab() {
  66. // $user_id = $this->request->request("user_id");
  67. // if(!$user_id) return false;
  68. $users = \app\common\model\User::field("id")->select();
  69. if($users) foreach($users as $k => $v) {
  70. $user_id = $v["id"];
  71. // 获取某个用户所有声币兑换记录
  72. $limit = 5;
  73. $coin = \app\common\model\UserSoundcoinLog::field("id,value,mode,balance,before")->where(["user_id" => $user_id])->limit($limit)->order("createtime", "desc")->select();
  74. if ($coin) {
  75. $coinjian = 0;
  76. $coinjia = 0;
  77. $countkey = count($coin) - 1;
  78. foreach ($coin as $k => $v) {
  79. if ($v["mode"] == "-") {
  80. $coinjian = $coinjian + $v["value"];
  81. } elseif ($v["mode"] == "+") {
  82. $coinjia = $coinjia + $v["value"];
  83. }
  84. $k == 0 && $first = $v["balance"];
  85. $k == $countkey && $last = $v["before"];
  86. }
  87. $usercoin = \app\common\model\User::where(["id" => $user_id])->value("sound_coin");
  88. $change = $coinjian - $coinjia;
  89. if ($first + $change == $last) {
  90. echo "1<br/>";
  91. } else {
  92. echo "用户余额:" . $usercoin;
  93. echo "最初值:" . $first;
  94. echo "改变值:" . $change;
  95. echo "最后余额:" . $last . "<br/>";
  96. }
  97. }
  98. // return true;
  99. }
  100. }
  101. public function getGiftInfo() {
  102. $type_id = $this->request->get('type_id'); // type
  103. $list = \app\common\model\EggGift::field("id,gift_id,price")->where(["jackpot_id"=>$type_id,"is_use"=>0])->select();
  104. $count = 0;
  105. $sum = 0;
  106. if($list) foreach($list as $k => $v) {
  107. $count++;
  108. // $list[$k]["price"] = $v["price"]/100;
  109. }
  110. $res = [];
  111. $res["count"] = $count;
  112. $res["sum"] = \app\common\model\EggGift::where(["jackpot_id"=>$type_id,"is_use"=>0])->sum("price");
  113. // $res["list"] = $list;
  114. $this->success("获取成功!",$res);
  115. }
  116. /**
  117. * 创建直播间
  118. */
  119. public function createLive() {
  120. // 先判断用户主播申请是否已经通过
  121. $anchorModel = new \app\common\model\UserAnchor();
  122. $where = [];
  123. $where["user_id"] = $this->auth->id;
  124. $where["status"] = 1;
  125. $anchorInfo = $anchorModel->where($where)->find();
  126. if(!$anchorInfo) $this->error("请先提交主播申请,并等待审核通过!");
  127. $liveModel = new \app\common\model\Live();
  128. $where = [];
  129. $where["user_id"] = $this->auth->id;
  130. $sqlLiveInfo = $liveModel->where($where)->find();
  131. // // 获取用户信息
  132. // $userModel = new \app\common\model\User();
  133. // $userInfo = $userModel->where(["id"=>$this->auth->id])->find();
  134. // if(!$userInfo) $this->error("用户信息获取失败!");
  135. // 判断直播间是否存在
  136. $redis = new Redis();
  137. $redisconfig = config("redis");
  138. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  139. if(!$sqlLiveInfo) { // sql中不存在直播间信息
  140. $live_type = $anchorInfo["type_id"]; // 直播间类型(情感类娱乐类 等)
  141. $live_notice = "Hi!欢迎加入我的直播间"; // 直播间公告
  142. $live_notice_detail = "Hi!欢迎加入我的直播间Hi!欢迎加入我的直播间"; // 直播间公告详情
  143. if (!$live_type || !$live_notice) {
  144. $this->error(__('Invalid parameters'));
  145. }
  146. $live_ids = $liveModel->column("live_id");
  147. // 创建直播间ID (临时ID四位,直播间数不超过8999)
  148. $live_id = $this->auth->getUinqueId(4,$live_ids);
  149. if($live_id > 9999) {
  150. $this->error("直播间超限,请联系客服");
  151. }
  152. $data = [];
  153. $data["user_id"] = $this->auth->id;
  154. $data["live_id"] = $live_id;
  155. $data["live_hot"] = 0;
  156. $data["live_type"] = $live_type;
  157. $data["live_notice"] = $live_notice;
  158. $data["live_notice_detail"] = $live_notice_detail;
  159. $data["is_online"] = 0;
  160. $data["status"] = 1;
  161. $data["is_recommend"] = 0;
  162. $data["createtime"] = time();
  163. $id = $liveModel->insertGetId($data);
  164. if(!$id) {
  165. $this->error("直播间创建失败,请稍后重试!");
  166. }
  167. $data["id"] = $id;
  168. $where = [];
  169. $where["a.id"] = $id;
  170. // 获取数据
  171. $getredisLiveInfo = $this->alias("a")
  172. ->field("a.*,b.id as live_id,b.name as live_type_name,u.nickname,u.avatar,at.name as anchor_type_name")
  173. ->join("hx_live_type b","a.live_type = b.id","left")
  174. ->join("hx_user u","a.user_id = u.id","left")
  175. ->join("hx_user_anchor an","a.user_id = an.user_id","left")
  176. ->join("hx_user_anchor_type at","an.type_id = an.type_id")
  177. ->where($where)->find();
  178. $redis->set("live_".$live_id,json_encode($getredisLiveInfo));
  179. $liveInfo = $liveModel->get(["user_id"=>$this->auth->id]);
  180. } else {
  181. $redisLiveInfo = $redis->get('live_'.$sqlLiveInfo["live_id"]);
  182. if(!$redisLiveInfo) {
  183. // 加入缓存排序
  184. $redis->zAdd("liveRank", $sqlLiveInfo['live_hot'], $sqlLiveInfo["live_id"]);
  185. // 加入缓存
  186. $redis->set("live_".$sqlLiveInfo["live_id"],json_encode($sqlLiveInfo));
  187. }
  188. $liveInfo = $sqlLiveInfo;
  189. }
  190. $this->success("获取成功!",$liveInfo);
  191. }
  192. /**
  193. * 获取直播间列表排序
  194. */
  195. public function getLiveRankList() {
  196. $thispage = $this->request->request('thispage',1,"intval"); // 当前页数
  197. $pagenum = $this->request->request('pagenum',10,"intval"); // 每页显示条数0=不做分页
  198. $type_id = $this->request->request('type_id'); // type
  199. $is_recommend = $this->request->request('is_recommend'); // 推荐0=否1=是
  200. $all = $this->request->request('all'); // 全部分类0=否1=是
  201. $start = ($thispage-1)*$pagenum;
  202. $end = $start+($pagenum-1);
  203. // 获取排序
  204. $redis = new Redis();
  205. $redisconfig = config("redis");
  206. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  207. $redisLiveRankList = $redis->zRange("liveRank",$start,$end);
  208. $liveModel = new \app\common\model\Live();
  209. if(!$redisLiveRankList) {
  210. // 直接从数据库获取所有数据
  211. $where = [];
  212. $where["a.status"] = 1;
  213. $sqlLiveList = $liveModel->alias("a")
  214. ->field("a.*,b.id as live_type,b.name as live_type_name,u.nickname,u.avatar,at.name as anchor_type_name")
  215. ->join("hx_live_type b","a.live_type = b.id","left")
  216. ->join("hx_user u","a.user_id = u.id","left")
  217. ->join("hx_user_anchor an","a.user_id = an.user_id","left")
  218. ->join("hx_user_anchor_type at","an.type_id = an.type_id")
  219. ->where($where)->select();
  220. if($sqlLiveList) {
  221. foreach($sqlLiveList as $k => $v) {
  222. // 加入缓存排序
  223. $redis->zAdd("liveRank", $v['live_hot'], $v["live_id"]);
  224. // 加入缓存
  225. $redis->set("live_".$v["live_id"],json_encode($v));
  226. }
  227. $redisLiveRankList = $redis->zRange("liveRank",$start,$end);
  228. }
  229. }
  230. if(!$redisLiveRankList) {
  231. $this->error("数据为空!");
  232. }
  233. $resultInfo = $liveModel->getLiveInfoByLiveId($redisLiveRankList,$type_id,$is_recommend,$all);
  234. $this->success("获取成功!",$resultInfo);
  235. }
  236. /**
  237. * 获取派对类型
  238. */
  239. public function getLiveType() {
  240. $livetypeModel = new \app\common\model\LiveType();
  241. $livetypeList = $livetypeModel->select();
  242. $this->success("获取成功!",$livetypeList);
  243. }
  244. /**
  245. * 获取直播间用户排序
  246. */
  247. public function getLiveUserRank() {
  248. $live_id = $this->request->request("live_id");// 直播间ID
  249. if (!$live_id) $this->error(__('Invalid parameters'));
  250. $redis = new Redis();
  251. $redisconfig = config("redis");
  252. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  253. $res = [];
  254. // 获取本周第一天
  255. $weekday = $this->firstOfWeek(date("Y-m-d H:i:s"));
  256. // 获取本月第一天
  257. $monthday = date("Ym01");
  258. $userModel = new \app\common\model\User();
  259. // 获取条数
  260. $num = 50;
  261. // 获取50条财富排行周记录
  262. $getweek = $redis->zRevRange("live_jewel_get_".$live_id.":".$weekday,0,$num-1,true);
  263. $res['getRankListWeek'] = $userModel->rankList($getweek);
  264. // 获取50条贡献排行周记录
  265. $toweek = $redis->zRevRange("live_jewel_to_".$live_id.":".$weekday,0,$num-1,true);
  266. $res['toRankListWeek'] = $userModel->rankList($toweek);
  267. // 获取50条财富排行月记录
  268. $toweek = $redis->zRevRange("live_jewel_get_".$live_id.":".$monthday,0,$num-1,true);
  269. $res['getRankListMonth'] = $userModel->rankList($toweek);
  270. // 获取50条贡献排行周记录
  271. $toweek = $redis->zRevRange("live_jewel_to_".$live_id.":".$monthday,0,$num-1,true);
  272. $res['toRankListMonth'] = $userModel->rankList($toweek);
  273. return $this->success("获取成功!",$res);
  274. }
  275. /**
  276. * 直播间热度更新
  277. */
  278. public function changeUserLivehot() {
  279. $live_id = $this->request->request('live_id',0,"intval"); // 直播间ID
  280. $live_hot = $this->request->request('live_hot'); // 房间热度(正数表示提高的热度值,负数表示降低的热度值)
  281. if (!$live_id || !$live_hot) {
  282. $this->error(__('Invalid parameters'));
  283. }
  284. $redis = new Redis();
  285. $redisconfig = config("redis");
  286. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  287. // 更新热度
  288. $redis->zIncrBy("liveRank", $live_hot, $live_id);
  289. return $this->success("更新成功!");
  290. }
  291. /**
  292. * 加入直播间(这里只做记录)
  293. */
  294. public function joinLive() {
  295. $live_id = $this->request->request('live_id',0,"intval"); // 直播间ID
  296. if (!$live_id) {
  297. $this->error(__('Invalid parameters'));
  298. }
  299. $livejoinModel = new \app\common\model\LiveJoin();
  300. // 添加记录
  301. $data = [];
  302. $data["user_id"] = $this->auth->id;
  303. $data["live_id"] = $live_id;
  304. $data["createtime"] = time();
  305. $res = $livejoinModel->insert($data);
  306. return $this->success("添加成功!",$res);
  307. }
  308. /**
  309. * 退出直播间(这里只做记录)
  310. */
  311. public function outLive() {
  312. $live_id = $this->request->request('live_id',0,"intval"); // 直播间ID
  313. if (!$live_id) {
  314. $this->error(__('Invalid parameters'));
  315. }
  316. $livejoinModel = new \app\common\model\LiveJoin();
  317. // 删除记录
  318. $where = [];
  319. $where["live_id"] = $live_id;
  320. $where["user_id"] = $this->auth->id;
  321. $res = $livejoinModel->where($where)->delete();
  322. return $this->success("退出成功!",$res);
  323. }
  324. /**
  325. * 直播间收藏
  326. */
  327. public function cellectionLive() {
  328. $live_id = $this->request->request('live_id',0,"intval"); // 直播间ID
  329. if (!$live_id) {
  330. $this->error(__('Invalid parameters'));
  331. }
  332. $livecellectionModel = new \app\common\model\LiveCellection();
  333. // 添加记录
  334. $data = [];
  335. $data["user_id"] = $this->auth->id;
  336. $data["live_id"] = $live_id;
  337. $data["createtime"] = time();
  338. $res = $livecellectionModel->insert($data);
  339. return $this->success("收藏成功!",$res);
  340. }
  341. /**
  342. * 直播间收藏列表
  343. */
  344. public function cellectionLiveList() {
  345. $page = $this->request->request('page',1); // 分页
  346. $pageNum = $this->request->request('pageNum',10); // 分页
  347. // 分页搜索构建
  348. $pageStart = ($page-1)*$pageNum;
  349. $livecellectionModel = new \app\common\model\LiveCellection();
  350. $userModel = new \app\common\model\User();
  351. $where = [];
  352. $where["a.user_id"] = $this->auth->id;
  353. $list = $livecellectionModel->alias("a")
  354. ->field("a.live_id,u.avatar,r.live_id as r_id,r.live_name,t.name as live_type")
  355. ->where($where)
  356. ->join("hx_live r","a.live_id = r.id")
  357. ->join("hx_live_type t","t.id = r.live_type")
  358. ->join("hx_user u","u.id = r.user_id")
  359. ->limit($pageStart,$pageNum)
  360. ->select();
  361. if($list) {
  362. $redis = new Redis();
  363. $redisconfig = config("redis");
  364. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  365. // 获取本周第一天
  366. $weekday = $this->firstOfWeek(date("Y-m-d H:i:s"));
  367. // 获取redis 中 用户排行榜前五名
  368. foreach($list as $k => $v) {
  369. $getweek = $redis->zRevRange("jewel_get_".$v["live_id"].":".$weekday,0,4,true);
  370. $userlist = $userModel->rankList($getweek);
  371. if($userlist) {
  372. $users = [];
  373. foreach($userlist as $m => $n) {
  374. $users[] = $n["avatar"];
  375. }
  376. $list[$k]["users"] = $users;
  377. } else {
  378. $list[$k]["users"] = [];
  379. }
  380. }
  381. } else {
  382. return $this->success("数据为空!",[]);
  383. }
  384. return $this->success("获取成功!",$list);
  385. }
  386. /**
  387. * 获取直播间信息
  388. */
  389. public function getLiveInfo() {
  390. $live_id = $this->request->request('live_id',0,"intval"); // 直播间ID
  391. if (!$live_id) {
  392. $this->error(__('Invalid parameters'));
  393. }
  394. $liveModel = new \app\common\model\Live();
  395. $userModel = new \app\common\model\User();
  396. // 获取主体信息
  397. $where = [];
  398. $where["a.id"] = $live_id;
  399. $liveInfo = $liveModel->alias("a")
  400. ->field("a.id,a.user_id,a.live_id,a.live_name,a.live_logo,rt.name as live_type,a.live_notice")
  401. ->join("hx_live_type rt","rt.id = a.live_type")
  402. ->where($where)
  403. ->find();
  404. if(!$liveInfo) {
  405. return $this->error("数据为空!",[]);
  406. }
  407. // 获取房主信息
  408. $where = [];
  409. $where["id"] = $liveInfo["user_id"];
  410. $userInfo = $userModel->field("avatar,nickname")->where($where)->find();
  411. // 获取技能信息
  412. $skillList = Model("ViewUserSkill")->getSkillInfo($liveInfo["user_id"]);
  413. $userInfo["skill"] = implode("/",$skillList);
  414. $liveInfo["userInfo"] = $userInfo;
  415. $this->success("获取成功!",$liveInfo);
  416. }
  417. /**
  418. * 直播间设置
  419. */
  420. public function setLive() {
  421. $live_id = $this->request->request('live_id',0,"intval"); // 直播间ID
  422. $live_pass = $this->request->request('live_pass'); // 直播间密码
  423. $live_type = $this->request->request('live_type'); // 使用场景
  424. $is_screen = $this->request->request('is_screen'); // 是否关闭公屏:1=是,0=否
  425. $background = $this->request->request('background'); // 直播间背景
  426. if (!$live_id || (!$live_pass && !$live_type && !$is_screen && !$background)) {
  427. $this->error(__('Invalid parameters'));
  428. }
  429. $liveModel = new \app\common\model\Live();
  430. $data = [];
  431. $live_pass && $data["live_pass"] = $live_pass;
  432. $live_type && $data["live_type"] = $live_type;
  433. $is_screen && $data["is_screen"] = $is_screen;
  434. $background && $data["background"] = $background;
  435. $where = [];
  436. $where["id"] = $live_id;
  437. $res = $liveModel->update($data,$where);
  438. if($res) {
  439. $this->success("更新成功!",$data);
  440. } else {
  441. $this->error("网络错误,请稍后重试!");
  442. }
  443. }
  444. /**
  445. * 直播间管理设置
  446. */
  447. public function liveManageSet() {
  448. $live_id = $this->request->request('live_id',0,"intval"); // 直播间ID
  449. $user_id = $this->request->request('user_id',0,"intval"); // 用户ID
  450. $item = $this->request->request('item'); // 项目:1=房管,2=禁言,3=拉黑,4=踢出
  451. $time = $this->request->request('time'); // 限制时间(单位:秒):0=永久
  452. if (!$live_id || !$user_id || !$item || ($item>1 && $time<=0)) {
  453. $this->error(__('Invalid parameters'));
  454. }
  455. $livemanageModel = new \app\common\model\LiveManage();
  456. $data = [];
  457. $data["user_id"] = $user_id;
  458. $data["live_id"] = $live_id;
  459. $data["item"] = $item;
  460. $time && $data["time"] = $time+time();
  461. $data["createtime"] = time();
  462. $res = $livemanageModel->insertGetId($data);
  463. if($res) {
  464. $this->success("设置成功!",$data);
  465. } else {
  466. $this->error("网络错误,请稍后重试!");
  467. }
  468. }
  469. /**
  470. * 直播间管理设置列表
  471. */
  472. public function liveManageSetList() {
  473. $live_id = $this->request->request('live_id',0,"intval"); // 直播间ID
  474. $item = $this->request->request('item',1,"intval"); // 项目:1=房管,2=禁言,3=拉黑,4=踢出
  475. if (!$live_id) {
  476. $this->error(__('Invalid parameters'));
  477. }
  478. $livemanageModel = new \app\common\model\LiveManage();
  479. $where = [];
  480. $where["a.live_id"] = $live_id;
  481. $where["a.item"] = $item;
  482. $list = $livemanageModel->alias("a")
  483. ->field("a.id,a.item,u.avatar,u.nickname,u.level,u.gender,a.time")
  484. ->join("hx_user u", "u.id = a.user_id")
  485. ->where($where)
  486. ->select();
  487. if(!$list) $this->success("数据为空!",[]);
  488. foreach($list as $k => &$v) $v["time"] = date("Y-m-d H:i:s",$v["time"]);
  489. $this->success("获取成功!",$list);
  490. }
  491. /**
  492. * 直播间管理设置移除
  493. */
  494. public function liveManageSetDel() {
  495. $id = $this->request->request('id',0,"intval"); // 设置ID
  496. if (!$id) {
  497. $this->error(__('Invalid parameters'));
  498. }
  499. $livemanageModel = new \app\common\model\LiveManage();
  500. $where = [];
  501. $where["id"] = $id;
  502. $res = $livemanageModel->where($where)->delete();
  503. if($res !== false) {
  504. $this->success("移除成功!",$res);
  505. } else {
  506. $this->error("网络错误,请稍后重试!");
  507. }
  508. }
  509. /**
  510. * 更新直播间公告
  511. */
  512. public function saveLiveNotice() {
  513. $live_id = $this->request->request('live_id',0,"intval"); // 直播间ID
  514. $live_notice = $this->request->request('live_notice'); // 公告标题
  515. if (!$live_id || !$live_notice) {
  516. $this->error(__('Invalid parameters'));
  517. }
  518. $liveModel = new \app\common\model\Live();
  519. $where = [];
  520. $where["id"] = $live_id;
  521. $data = [];
  522. $data["live_notice"] = $live_notice;
  523. $res = $liveModel->update($data,$where);
  524. if($res) {
  525. $this->success("更新成功!",$res);
  526. } else {
  527. $this->error("网络错误,请稍后重试!");
  528. }
  529. }
  530. /**
  531. * 赠送礼物
  532. */
  533. public function giveGiftToYou() {
  534. $user_id = $this->request->request("user_id");// 赠送对象
  535. $gift_id = $this->request->request("gift_id");// 礼物ID
  536. $live_id = $this->request->request("live_id");// 直播间ID
  537. $number = $this->request->request("number");// 赠送数量
  538. if (!$user_id || !$gift_id || !$live_id || !$number) $this->error(__('Invalid parameters'));
  539. // 不可以赠送给自己
  540. if($user_id == $this->auth->id) $this->error("不可以赠送给自己!");
  541. // 获取礼物信息
  542. $giftModel = new \app\common\model\Gift();
  543. $where = [];
  544. $where["id"] = $gift_id;
  545. $giftInfo = $giftModel->where($where)->find();
  546. if (!$giftInfo) $this->error("礼物信息查询失败!");
  547. $giftValue = $giftInfo["value"] * $number;
  548. $userModel = new \app\common\model\User();
  549. // 判断当前用户余额
  550. $where = [];
  551. $where["id"] = $this->auth->id;
  552. $userInfo = $userModel->where($where)->find();
  553. if (!$userInfo) $this->error("用户信息查询失败!");
  554. if($userInfo["jewel"] < $giftValue) $this->error("您的钻石余额不足!");
  555. // 获取赠送用户信息
  556. $where = [];
  557. $where["id"] = $user_id;
  558. $touserInfo = $userModel->where($where)->find();
  559. // 事务处理余额与记录信息
  560. $userjewellogModel = new \app\common\model\UserJewelLog();
  561. $giftuserliveModel = new \app\common\model\GiftUserLive();
  562. Db::startTrans();
  563. try{
  564. // 扣除当前用户钻石余额
  565. $where = [];
  566. $where["id"] = $this->auth->id;
  567. $res1 = $userModel->where($where)->setDec("jewel",$giftValue);
  568. // 添加当前用户钻石流水记录
  569. $res2 = $userjewellogModel->addUserJewelLog($this->auth->id, $giftValue, "-", $userInfo["jewel"], "赠送礼物:'" . $giftInfo["name"] . "',扣除" . $giftValue . "钻石!", 3);
  570. // 添加赠送用户钻石余额
  571. $where = [];
  572. $where["id"] = $user_id;
  573. $res3 = $userModel->where($where)->setInc("jewel",$giftValue);
  574. // 添加赠送用户钻石流水记录
  575. $res4 = $userjewellogModel->addUserJewelLog($user_id,$giftValue,"+",$touserInfo["jewel"],"获赠礼物:'".$giftInfo["name"]."',增加".$giftValue."钻石!");
  576. // 添加礼物赠送记录表
  577. $data = [];
  578. $data["user_id"] = $this->auth->id;
  579. $data["user_to_id"] = $user_id;
  580. $data["live_id"] = $live_id;
  581. $data["gift_id"] = $gift_id;
  582. $data["number"] = $number;
  583. $data["price"] = $giftInfo["value"];
  584. $data["value"] = $giftValue;
  585. $data["createtime"] = time();
  586. $res5 = $giftuserliveModel->insertGetId($data);
  587. if($res1 && $res2 && $res3 && $res4 && $res5) {
  588. Db::commit();
  589. $redis = new Redis();
  590. $redisconfig = config("redis");
  591. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  592. // 获取本周第一天
  593. $weekday = $this->firstOfWeek(date("Y-m-d H:i:s"));
  594. // 获取本月第一天
  595. $monthday = date("Ym01");
  596. // 添加redis记录做财富排行榜周榜用
  597. $redis->zIncrBy("live_jewel_get_".$live_id.":".$weekday,$giftValue,$user_id);
  598. // 添加redis记录做财富排行榜月榜用
  599. $redis->zIncrBy("live_jewel_get_".$live_id.":".$monthday,$giftValue,$user_id);
  600. // 添加redis记录做贡献排行榜周榜用
  601. $redis->zIncrBy("live_jewel_to_".$live_id.":".$weekday,$giftValue,$this->auth->id);
  602. // 添加redis记录做贡献排行榜月榜用
  603. $redis->zIncrBy("live_jewel_to_".$live_id.":".$monthday,$giftValue,$this->auth->id);
  604. $this->success("操作成功!");
  605. }
  606. }catch (ValidateException $e) {
  607. Db::rollback();
  608. $this->error($e->getMessage());
  609. } catch (PDOException $e) {
  610. Db::rollback();
  611. $this->error($e->getMessage());
  612. } catch (Exception $e) {
  613. Db::rollback();
  614. $this->error($e->getMessage());
  615. }
  616. }
  617. //============================定时任务==========================//
  618. /**
  619. * 更新直播间信息(热度等)
  620. */
  621. public function updateLiveInfo() {
  622. $redis = new Redis();
  623. $redis->connect(config("redis")["host"], config("redis")["port"]);
  624. // 获取直播间热度信息
  625. $redisLiveRankList = $redis->zRevRange("liveRank",0,-1,true);
  626. $liveModel = new \app\common\model\Live();
  627. if($redisLiveRankList) {
  628. foreach($redisLiveRankList as $k => $v) {
  629. $liveModel->update(["live_hot"=>$v],["live_id"=>$k]);
  630. }
  631. }
  632. }
  633. }