Live.php 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579
  1. <?php
  2. // +—————————————————————————————————————————————————————————————————————
  3. // | Created by Yunbao
  4. // +—————————————————————————————————————————————————————————————————————
  5. // | Copyright (c) 2013~2022 http://www.yunbaokj.com All rights reserved.
  6. // +—————————————————————————————————————————————————————————————————————
  7. // | Author: https://gitee.com/yunbaokeji
  8. // +—————————————————————————————————————————————————————————————————————
  9. // | Date: 2022-02-17
  10. // +—————————————————————————————————————————————————————————————————————
  11. class Model_Live extends PhalApi_Model_NotORM {
  12. /* 创建房间 */
  13. public function createRoom($uid,$data) {
  14. /* 获取主播 推荐、热门 */
  15. $isexist=DI()->notorm->live
  16. ->select("uid,isvideo,islive")
  17. ->where('uid=?',$uid)
  18. ->fetchOne();
  19. if($isexist){
  20. /* 判断存在的记录是否为直播状态 */
  21. if($isexist['isvideo']==0 && $isexist['islive']==1){
  22. /* 若存在未关闭的直播 关闭直播 */
  23. $this->stopRoom($uid,$isexist['stream']);
  24. /* 加入 */
  25. $rs=DI()->notorm->live->insert($data);
  26. }else{
  27. /* 更新 */
  28. $rs=DI()->notorm->live->where('uid = ?', $uid)->update($data);
  29. }
  30. }else{
  31. /* 加入 */
  32. $rs=DI()->notorm->live->insert($data);
  33. }
  34. if(!$rs){
  35. return $rs;
  36. }
  37. return 1;
  38. }
  39. /* 修改直播状态 */
  40. public function changeLive($uid,$stream,$status){
  41. if($status==1){
  42. $info=DI()->notorm->live
  43. ->select("*")
  44. ->where('uid=? and stream=?',$uid,$stream)
  45. ->fetchOne();
  46. if($info){
  47. DI()->notorm->live
  48. ->where('uid=? and stream=?',$uid,$stream)
  49. ->update(array("islive"=>1));
  50. }
  51. return $info;
  52. }else{
  53. $this->stopRoom($uid,$stream);
  54. return 1;
  55. }
  56. }
  57. /* 关播 */
  58. public function stopRoom($uid,$stream) {
  59. $info=DI()->notorm->live
  60. ->select("uid,showid,starttime,title,province,city,stream,lng,lat,type,type_val,liveclassid,deviceinfo")
  61. ->where('uid=? and stream=? and islive="1"',$uid,$stream)
  62. ->fetchOne();
  63. if($info){
  64. $isdel=DI()->notorm->live
  65. ->where('uid=?',$uid)
  66. ->delete();
  67. if(!$isdel){
  68. return 0;
  69. }
  70. $nowtime=time();
  71. $info['endtime']=$nowtime;
  72. $info['time']=date("Y-m-d",$info['showid']);
  73. $votes=DI()->notorm->user_voterecord
  74. ->where('uid =? and showid=?',$uid,$info['showid'])
  75. ->sum('total');
  76. $info['votes']=0;
  77. if($votes){
  78. $info['votes']=$votes;
  79. }
  80. $nums=DI()->redis->zCard('user_'.$stream);
  81. DI()->redis->hDel("livelist",$uid);
  82. DI()->redis->del($uid.'_zombie');
  83. DI()->redis->del($uid.'_zombie_uid');
  84. DI()->redis->del('attention_'.$uid);
  85. DI()->redis->del('user_'.$stream);
  86. $info['nums']=$nums;
  87. $result=DI()->notorm->live_record->insert($info);
  88. }
  89. return 1;
  90. }
  91. /* 关播信息 */
  92. public function stopInfo($stream){
  93. $rs=array(
  94. 'nums'=>0,
  95. 'length'=>0,
  96. 'votes'=>0,
  97. );
  98. $stream2=explode('_',$stream);
  99. $liveuid=$stream2[0];
  100. $starttime=$stream2[1];
  101. $liveinfo=DI()->notorm->live_record
  102. ->select("starttime,endtime,nums,votes")
  103. ->where('uid=? and stream=?',$liveuid,$stream)
  104. ->fetchOne();
  105. if($liveinfo){
  106. $cha=$liveinfo['endtime'] - $liveinfo['starttime'];
  107. $rs['length']=getSeconds($cha,1);
  108. $rs['nums']=$liveinfo['nums'];
  109. }
  110. if($liveinfo['votes']){
  111. $rs['votes']=$liveinfo['votes'];
  112. }
  113. return $rs;
  114. }
  115. /* 直播状态 */
  116. public function checkLive($uid,$liveuid,$stream){
  117. $islive=DI()->notorm->live
  118. ->select("islive,type,type_val,starttime")
  119. ->where('uid=? and stream=?',$liveuid,$stream)
  120. ->fetchOne();
  121. if(!$islive || $islive['islive']==0){
  122. return 1005;
  123. }
  124. $rs['type']=$islive['type'];
  125. $rs['type_val']='0';
  126. $rs['type_msg']='';
  127. $configpub=getConfigPub();
  128. if($islive['type']==1){
  129. $rs['type_msg']=md5($islive['type_val']);
  130. }else if($islive['type']==2){
  131. $rs['type_msg']='本房间为收费房间,需支付'.$islive['type_val'].$configpub['name_coin'];
  132. $rs['type_val']=$islive['type_val'];
  133. $isexist=DI()->notorm->user_coinrecord
  134. ->select('id')
  135. ->where('uid=? and touid=? and showid=? and action=6 and type=0',$uid,$liveuid,$islive['starttime'])
  136. ->fetchOne();
  137. if($isexist){
  138. $rs['type']='0';
  139. $rs['type_val']='0';
  140. $rs['type_msg']='';
  141. }
  142. }else if($islive['type']==3){
  143. $rs['type_val']=$islive['type_val'];
  144. $rs['type_msg']='本房间为计时房间,每分钟需支付'.$islive['type_val'].$configpub['name_coin'];
  145. }
  146. return $rs;
  147. }
  148. /* 用户余额 */
  149. public function getUserCoin($uid){
  150. $userinfo=DI()->notorm->user
  151. ->select("coin")
  152. ->where('id=?',$uid)
  153. ->fetchOne();
  154. return $userinfo;
  155. }
  156. /* 房间扣费 */
  157. public function roomCharge($uid,$liveuid,$stream){
  158. $islive=DI()->notorm->live
  159. ->select("islive,type,type_val,starttime")
  160. ->where('uid=? and stream=?',$liveuid,$stream)
  161. ->fetchOne();
  162. if(!$islive || $islive['islive']==0){
  163. return 1005;
  164. }
  165. if($islive['type']==0 || $islive['type']==1 ){
  166. return 1006;
  167. }
  168. $total=$islive['type_val'];
  169. if($total<=0){
  170. return 1007;
  171. }
  172. /* 更新用户余额 消费 */
  173. $ifok=DI()->notorm->user
  174. ->where('id = ? and coin >= ?', $uid,$total)
  175. ->update(array('coin' => new NotORM_Literal("coin - {$total}"),'consumption' => new NotORM_Literal("consumption + {$total}")) );
  176. if(!$ifok){
  177. return 1008;
  178. }
  179. $action='6';
  180. if($islive['type']==3){
  181. $action='7';
  182. }
  183. $giftid=0;
  184. $giftcount=0;
  185. $showid=$islive['starttime'];
  186. $addtime=time();
  187. /* 更新直播 映票 累计映票 */
  188. DI()->notorm->user
  189. ->where('id = ?', $liveuid)
  190. ->update( array('votes' => new NotORM_Literal("votes + {$total}"),'votestotal' => new NotORM_Literal("votestotal + {$total}") ));
  191. $insert_votes=[
  192. 'type'=>'1',
  193. 'action'=>$action,
  194. 'uid'=>$liveuid,
  195. 'fromid'=>$uid,
  196. 'actionid'=>$giftid,
  197. 'nums'=>$giftcount,
  198. 'total'=>$total,
  199. 'showid'=>$showid,
  200. 'votes'=>$total,
  201. 'addtime'=>time(),
  202. ];
  203. DI()->notorm->user_voterecord->insert($insert_votes);
  204. /* 更新直播 映票 累计映票 */
  205. DI()->notorm->user_coinrecord
  206. ->insert(array("type"=>'0',"action"=>$action,"uid"=>$uid,"touid"=>$liveuid,"giftid"=>$giftid,"giftcount"=>$giftcount,"totalcoin"=>$total,"showid"=>$showid,"addtime"=>$addtime ));
  207. $userinfo2=DI()->notorm->user
  208. ->select('coin')
  209. ->where('id = ?', $uid)
  210. ->fetchOne();
  211. $rs['coin']=$userinfo2['coin'];
  212. return $rs;
  213. }
  214. /* 礼物列表 */
  215. public function getGiftList(){
  216. $rs=DI()->notorm->gift
  217. ->select("id,type,mark,giftname,needcoin,gifticon,swftime")
  218. ->order("list_order asc,addtime desc")
  219. ->fetchAll();
  220. return $rs;
  221. }
  222. /* 赠送礼物 */
  223. public function sendGift($uid,$liveuid,$stream,$giftid,$giftcount,$touids) {
  224. /* 礼物信息 */
  225. $giftinfo=DI()->notorm->gift
  226. ->select("type,mark,giftname,gifticon,needcoin,swftype,swf,swftime")
  227. ->where('id=?',$giftid)
  228. ->fetchOne();
  229. if(!$giftinfo){
  230. /* 礼物信息不存在 */
  231. return 1002;
  232. }
  233. $touids_arr=explode(',', $touids);
  234. if(empty($touids_arr)){
  235. return 1004;
  236. }
  237. $touid_nums=count($touids_arr);
  238. $personal_total=$giftinfo['needcoin']*$giftcount;
  239. $total= $personal_total*$touid_nums;
  240. $total_giftcount=$giftcount*$touid_nums;
  241. $addtime=time();
  242. $type='0';
  243. $action='1';
  244. $stream2=explode('_',$stream);
  245. $showid=$stream2[1];
  246. /* 更新用户余额 消费 */
  247. $ifok =DI()->notorm->user
  248. ->where('id = ? and coin >=?', $uid,$total)
  249. ->update(array('coin' => new NotORM_Literal("coin - {$total}"),'consumption' => new NotORM_Literal("consumption + {$total}") ) );
  250. if(!$ifok){
  251. /* 余额不足 */
  252. return 1001;
  253. }
  254. $multi_arr=[];
  255. foreach ($touids_arr as $k => $v) {
  256. $insert=array(
  257. "type"=>$type,
  258. "action"=>$action,
  259. "uid"=>$uid,
  260. "touid"=>$v,
  261. "giftid"=>$giftid,
  262. "giftcount"=>$giftcount,
  263. "totalcoin"=>$personal_total,
  264. "showid"=>$showid,
  265. "mark"=>$giftinfo['mark'],
  266. "addtime"=>$addtime,
  267. );
  268. $multi_arr[]=$insert;
  269. }
  270. DI()->notorm->user_coinrecord->insert_multi($multi_arr); //批量写入
  271. $gifttoken=md5(md5($action.$uid.$liveuid.$giftid.$giftcount.$total.$showid.$addtime.rand(100,999)));
  272. $swf=$giftinfo['swf'] ? get_upload_path($giftinfo['swf']):'';
  273. $result=[];
  274. $result['gifttoken']=$gifttoken;
  275. $result['list']=[];
  276. foreach ($touids_arr as $k => $v) {
  277. $anthor_total=$personal_total;
  278. //获取直播信息
  279. // 更新用户 魅力值 累计魅力值
  280. $istouid =DI()->notorm->user
  281. ->where('id = ?', $v)
  282. ->update( array('votes' => new NotORM_Literal("votes + {$anthor_total}"),'votestotal' => new NotORM_Literal("votestotal + {$personal_total}") ));
  283. $insert_votes=[
  284. 'type'=>'1',
  285. 'action'=>$action,
  286. 'uid'=>$v,
  287. 'fromid'=>$uid,
  288. 'actionid'=>$giftid,
  289. 'nums'=>$giftcount,
  290. 'total'=>$personal_total,
  291. 'showid'=>$showid,
  292. 'votes'=>$anthor_total,
  293. 'addtime'=>time(),
  294. ];
  295. DI()->notorm->user_voterecord->insert($insert_votes);
  296. // 更新主播热门
  297. if($giftinfo['mark']==1){
  298. DI()->notorm->live
  299. ->where('uid = ?', $v)
  300. ->update( array('hotvotes' => new NotORM_Literal("hotvotes + {$personal_total}") ));
  301. }
  302. $votestotal=$this->getVotes($liveuid);
  303. $userinfo2 =DI()->notorm->user
  304. ->select('consumption,coin')
  305. ->where('id = ?', $uid)
  306. ->fetchOne();
  307. $level=getLevel($userinfo2['consumption']);
  308. if($giftinfo['type']!=1){
  309. $giftinfo['isplatgift']='0';
  310. }
  311. $touserinfo=getUserInfo($v);
  312. $user_sendgift_info=array(
  313. "uid"=>$uid,
  314. "touid"=>$v,
  315. "to_username"=>$touserinfo['user_nicename'],
  316. "giftid"=>$giftid,
  317. "type"=>(string)$giftinfo['type'],
  318. "mark"=>$giftinfo['mark'],
  319. "giftcount"=>$giftcount,
  320. "totalcoin"=>$total,
  321. "giftname"=>$giftinfo['giftname'],
  322. "gifticon"=>get_upload_path($giftinfo['gifticon']),
  323. "swftime"=>$giftinfo['swftime'],
  324. "swftype"=>$giftinfo['swftype'],
  325. "swf"=>$swf,
  326. "level"=>$level,
  327. "coin"=>$userinfo2['coin'],
  328. "votestotal"=>$votestotal,
  329. );
  330. $result['list'][]=$user_sendgift_info;
  331. $result['level']=$level;
  332. $result['coin']=$userinfo2['coin'];
  333. }
  334. // 清除缓存
  335. delCache("userinfo_".$uid);
  336. delCache("userinfo_".$liveuid);
  337. return $result;
  338. }
  339. /* 发送弹幕 */
  340. public function sendBarrage($uid,$liveuid,$stream,$giftid,$giftcount,$content) {
  341. $configpri=getConfigPri();
  342. $giftinfo=array(
  343. "giftname"=>'弹幕',
  344. "gifticon"=>'',
  345. "needcoin"=>$configpri['barrage_fee'],
  346. );
  347. $total= $giftinfo['needcoin']*$giftcount;
  348. if($total<0){
  349. return 1002;
  350. }
  351. $addtime=time();
  352. $action='2';
  353. if($total>0){
  354. $type='0';
  355. // 更新用户余额 消费
  356. $ifok =DI()->notorm->user
  357. ->where('id = ? and coin >=?', $uid,$total)
  358. ->update(array('coin' => new NotORM_Literal("coin - {$total}"),'consumption' => new NotORM_Literal("consumption + {$total}") ) );
  359. if(!$ifok){
  360. // 余额不足
  361. return 1001;
  362. }
  363. // 更新直播 魅力值 累计魅力值
  364. $istouid =DI()->notorm->user
  365. ->where('id = ?', $liveuid)
  366. ->update( array('votes' => new NotORM_Literal("votes + {$total}"),'votestotal' => new NotORM_Literal("votestotal + {$total}") ));
  367. $stream2=explode('_',$stream);
  368. $showid=$stream2[1];
  369. if(!$showid){
  370. $showid=0;
  371. }
  372. $insert_votes=[
  373. 'type'=>'1',
  374. 'action'=>$action,
  375. 'uid'=>$liveuid,
  376. 'fromid'=>$uid,
  377. 'actionid'=>$giftid,
  378. 'nums'=>$giftcount,
  379. 'total'=>$total,
  380. 'showid'=>$showid,
  381. 'votes'=>$total,
  382. 'addtime'=>time(),
  383. ];
  384. DI()->notorm->user_voterecord->insert($insert_votes);
  385. // 写入记录 或更新
  386. $insert=array("type"=>$type,"action"=>$action,"uid"=>$uid,"touid"=>$liveuid,"giftid"=>$giftid,"giftcount"=>$giftcount,"totalcoin"=>$total,"showid"=>$showid,"addtime"=>$addtime );
  387. $isup=DI()->notorm->user_coinrecord->insert($insert);
  388. }
  389. $userinfo2 =DI()->notorm->user
  390. ->select('consumption,coin')
  391. ->where('id = ?', $uid)
  392. ->fetchOne();
  393. $level=getLevel($userinfo2['consumption']);
  394. /* 清除缓存 */
  395. delCache("userinfo_".$uid);
  396. delCache("userinfo_".$liveuid);
  397. $votestotal=$this->getVotes($liveuid);
  398. $barragetoken=md5(md5($action.$uid.$liveuid.$giftid.$giftcount.$total.$showid.$addtime.rand(100,999)));
  399. $result=array("uid"=>$uid,"content"=>$content,"giftid"=>$giftid,"giftcount"=>$giftcount,"totalcoin"=>$total,"giftname"=>$giftinfo['giftname'],"gifticon"=>$giftinfo['gifticon'],"level"=>$level,"coin"=>$userinfo2['coin'],"votestotal"=>$votestotal,"barragetoken"=>$barragetoken);
  400. return $result;
  401. }
  402. /* 主播总映票 */
  403. public function getVotes($liveuid){
  404. $userinfo=DI()->notorm->user
  405. ->select("votestotal")
  406. ->where('id=?',$liveuid)
  407. ->fetchOne();
  408. return $userinfo['votestotal'];
  409. }
  410. /* 获取用户本场贡献 */
  411. public function getContribut($uid,$liveuid,$showid){
  412. $sum=DI()->notorm->user_coinrecord
  413. ->where('action=1 and uid=? and touid=? and showid=? ',$uid,$liveuid,$showid)
  414. ->sum('totalcoin');
  415. if(!$sum){
  416. $sum=0;
  417. }
  418. return (string)$sum;
  419. }
  420. /* 检测房间状态 */
  421. public function checkLiveing($uid,$stream){
  422. $info=DI()->notorm->live
  423. ->select('uid')
  424. ->where('uid=? and stream=? ',$uid,$stream)
  425. ->fetchOne();
  426. if($info){
  427. return '1';
  428. }
  429. return '0';
  430. }
  431. /* 获取直播信息 */
  432. public function getLiveInfo($liveuid){
  433. $info=DI()->notorm->live
  434. ->select("uid,title,city,stream,pull,thumb,isvideo,type,type_val,anyway,starttime")
  435. ->where('uid=? and islive=1',$liveuid)
  436. ->fetchOne();
  437. if($info){
  438. $info=handleLive($info);
  439. }
  440. return $info;
  441. }
  442. }