LiveingController.php 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  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. /**
  12. * 直播列表
  13. */
  14. namespace app\admin\controller;
  15. use cmf\controller\AdminBaseController;
  16. use think\Db;
  17. class LiveingController extends AdminbaseController {
  18. protected function getLiveClass(){
  19. $liveclass=Db::name("live_class")->order('list_order asc, id desc')->column('id,name');
  20. return $liveclass;
  21. }
  22. protected function getTypes($k=''){
  23. $type=[
  24. '0'=>'普通房间',
  25. '1'=>'密码房间',
  26. '2'=>'门票房间',
  27. '3'=>'计时房间',
  28. ];
  29. if($k==''){
  30. return $type;
  31. }
  32. return $type[$k];
  33. }
  34. public function index(){
  35. $data = $this->request->param();
  36. $map=[];
  37. $map[]=['islive','=',1];
  38. $start_time=isset($data['start_time']) ? $data['start_time']: '';
  39. $end_time=isset($data['end_time']) ? $data['end_time']: '';
  40. if($start_time!=""){
  41. $map[]=['starttime','>=',strtotime($start_time)];
  42. }
  43. if($end_time!=""){
  44. $map[]=['starttime','<=',strtotime($end_time) + 60*60*24];
  45. }
  46. $uid=isset($data['uid']) ? $data['uid']: '';
  47. if($uid!=''){
  48. $lianguid=getLianguser($uid);
  49. if($lianguid){
  50. $map[]=['uid',['=',$uid],['in',$lianguid],'or'];
  51. }else{
  52. $map[]=['uid','=',$uid];
  53. }
  54. }
  55. $this->configpri=getConfigPri();
  56. $lists = Db::name("live")
  57. ->where($map)
  58. ->order("starttime DESC")
  59. ->paginate(20);
  60. $lists->each(function($v,$k){
  61. $v['userinfo']=getUserInfo($v['uid']);
  62. $where=[];
  63. $where['action']=1;
  64. $where['touid']=$v['uid'];
  65. $where['showid']=$v['showid'];
  66. /* 本场总收益 */
  67. $totalcoin=Db::name("user_coinrecord")->where($where)->sum('totalcoin');
  68. if(!$totalcoin){
  69. $totalcoin=0;
  70. }
  71. /* 送礼物总人数 */
  72. $total_nums=Db::name("user_coinrecord")->where($where)->group("uid")->count();
  73. if(!$total_nums){
  74. $total_nums=0;
  75. }
  76. /* 人均 */
  77. $total_average=0;
  78. if($totalcoin && $total_nums){
  79. $total_average=round($totalcoin/$total_nums,2);
  80. }
  81. /* 人数 */
  82. $nums=zSize('user_'.$v['stream']);
  83. $v['totalcoin']=$totalcoin;
  84. $v['total_nums']=$total_nums;
  85. $v['total_average']=$total_average;
  86. $v['nums']=$nums;
  87. if($v['isvideo']==0 && $this->configpri['cdn_switch']!=5){
  88. $v['pull']=PrivateKeyA('rtmp',$v['stream'],0);
  89. }
  90. return $v;
  91. });
  92. $lists->appends($data);
  93. $page = $lists->render();
  94. $liveclass=$this->getLiveClass();
  95. $liveclass[0]='默认分类';
  96. $this->assign('lists', $lists);
  97. $this->assign("page", $page);
  98. $this->assign("liveclass", $liveclass);
  99. $this->assign("type", $this->getTypes());
  100. return $this->fetch();
  101. }
  102. public function del(){
  103. $uid = $this->request->param('uid', 0, 'intval');
  104. $rs = DB::name('live')->where("uid={$uid}")->delete();
  105. if(!$rs){
  106. $this->error("删除失败!");
  107. }
  108. $this->success("删除成功!",url("liveing/index"));
  109. }
  110. public function add(){
  111. $this->assign("liveclass", $this->getLiveClass());
  112. $this->assign("type", $this->getTypes());
  113. return $this->fetch();
  114. }
  115. public function addPost(){
  116. if ($this->request->isPost()) {
  117. $data = $this->request->param();
  118. $nowtime=time();
  119. $uid=$data['uid'];
  120. $userinfo=DB::name('user')->field("ishot")->where(["id"=>$uid,"user_type"=>2])->find();
  121. if(!$userinfo){
  122. $this->error('用户不存在');
  123. }
  124. $liveinfo=DB::name('live')->field('uid,islive')->where(["uid"=>$uid])->find();
  125. if($liveinfo['islive']==1){
  126. $this->error('该用户正在直播');
  127. }
  128. $pull=urldecode($data['pull']);
  129. $push=urldecode($data['push']);
  130. $type=$data['type'];
  131. $type_val=$data['type_val'];
  132. $anyway=$data['anyway'];
  133. $liveclassid=$data['liveclassid'];
  134. $stream=$uid.'_'.$nowtime;
  135. $title='';
  136. $data2=array(
  137. "uid"=>$uid,
  138. "showid"=>$nowtime,
  139. "starttime"=>$nowtime,
  140. "title"=>$title,
  141. "province"=>'',
  142. "city"=>'好像在火星',
  143. "stream"=>$stream,
  144. "thumb"=>'',
  145. "pull"=>$pull,
  146. "push"=>$push,
  147. "lng"=>'',
  148. "lat"=>'',
  149. "type"=>$type,
  150. "type_val"=>$type_val,
  151. "isvideo"=>1,
  152. "islive"=>1,
  153. "anyway"=>$anyway,
  154. "liveclassid"=>$liveclassid,
  155. );
  156. if($liveinfo){
  157. $rs = DB::name('live')->update($data2);
  158. }else{
  159. $rs = DB::name('live')->insertGetId($data2);
  160. }
  161. if($rs===false){
  162. $this->error("添加失败!");
  163. }
  164. $this->success("添加成功!");
  165. }
  166. }
  167. public function edit(){
  168. $uid = $this->request->param('uid', 0, 'intval');
  169. $data=Db::name('live')
  170. ->where("uid={$uid}")
  171. ->find();
  172. if(!$data){
  173. $this->error("信息错误");
  174. }
  175. $this->assign('data', $data);
  176. $this->assign("liveclass", $this->getLiveClass());
  177. $this->assign("type", $this->getTypes());
  178. return $this->fetch();
  179. }
  180. public function editPost(){
  181. if ($this->request->isPost()) {
  182. $data = $this->request->param();
  183. $data['pull']=urldecode($data['pull']);
  184. $data['push']=urldecode($data['push']);
  185. $rs = DB::name('live')->update($data);
  186. if($rs===false){
  187. $this->error("修改失败!");
  188. }
  189. $this->success("修改成功!");
  190. }
  191. }
  192. }