123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263 |
- <?php
- // +—————————————————————————————————————————————————————————————————————
- // | Created by Yunbao
- // +—————————————————————————————————————————————————————————————————————
- // | Copyright (c) 2013~2022 http://www.yunbaokj.com All rights reserved.
- // +—————————————————————————————————————————————————————————————————————
- // | Author: https://gitee.com/yunbaokeji
- // +—————————————————————————————————————————————————————————————————————
- // | Date: 2022-02-17
- // +—————————————————————————————————————————————————————————————————————
- /**
- * 直播列表
- */
- namespace app\admin\controller;
- use cmf\controller\AdminBaseController;
- use think\Db;
- class LiveingController extends AdminbaseController {
- protected function getLiveClass(){
- $liveclass=Db::name("live_class")->order('list_order asc, id desc')->column('id,name');
- return $liveclass;
- }
-
- protected function getTypes($k=''){
- $type=[
- '0'=>'普通房间',
- '1'=>'密码房间',
- '2'=>'门票房间',
- '3'=>'计时房间',
- ];
-
- if($k==''){
- return $type;
- }
- return $type[$k];
- }
-
- public function index(){
- $data = $this->request->param();
- $map=[];
- $map[]=['islive','=',1];
- $start_time=isset($data['start_time']) ? $data['start_time']: '';
- $end_time=isset($data['end_time']) ? $data['end_time']: '';
-
- if($start_time!=""){
- $map[]=['starttime','>=',strtotime($start_time)];
- }
- if($end_time!=""){
- $map[]=['starttime','<=',strtotime($end_time) + 60*60*24];
- }
-
- $uid=isset($data['uid']) ? $data['uid']: '';
- if($uid!=''){
- $lianguid=getLianguser($uid);
- if($lianguid){
- $map[]=['uid',['=',$uid],['in',$lianguid],'or'];
- }else{
- $map[]=['uid','=',$uid];
- }
- }
-
- $this->configpri=getConfigPri();
-
- $lists = Db::name("live")
- ->where($map)
- ->order("starttime DESC")
- ->paginate(20);
-
- $lists->each(function($v,$k){
- $v['userinfo']=getUserInfo($v['uid']);
- $where=[];
- $where['action']=1;
- $where['touid']=$v['uid'];
- $where['showid']=$v['showid'];
- /* 本场总收益 */
- $totalcoin=Db::name("user_coinrecord")->where($where)->sum('totalcoin');
- if(!$totalcoin){
- $totalcoin=0;
- }
- /* 送礼物总人数 */
- $total_nums=Db::name("user_coinrecord")->where($where)->group("uid")->count();
- if(!$total_nums){
- $total_nums=0;
- }
- /* 人均 */
- $total_average=0;
- if($totalcoin && $total_nums){
- $total_average=round($totalcoin/$total_nums,2);
- }
-
- /* 人数 */
- $nums=zSize('user_'.$v['stream']);
-
- $v['totalcoin']=$totalcoin;
- $v['total_nums']=$total_nums;
- $v['total_average']=$total_average;
- $v['nums']=$nums;
-
- if($v['isvideo']==0 && $this->configpri['cdn_switch']!=5){
- $v['pull']=PrivateKeyA('rtmp',$v['stream'],0);
- }
-
- return $v;
- });
-
- $lists->appends($data);
- $page = $lists->render();
- $liveclass=$this->getLiveClass();
- $liveclass[0]='默认分类';
- $this->assign('lists', $lists);
- $this->assign("page", $page);
-
- $this->assign("liveclass", $liveclass);
-
- $this->assign("type", $this->getTypes());
-
- return $this->fetch();
- }
- public function del(){
-
- $uid = $this->request->param('uid', 0, 'intval');
-
- $rs = DB::name('live')->where("uid={$uid}")->delete();
- if(!$rs){
- $this->error("删除失败!");
- }
-
-
-
- $this->success("删除成功!",url("liveing/index"));
-
- }
-
- public function add(){
-
- $this->assign("liveclass", $this->getLiveClass());
-
- $this->assign("type", $this->getTypes());
-
- return $this->fetch();
- }
-
- public function addPost(){
- if ($this->request->isPost()) {
-
- $data = $this->request->param();
-
- $nowtime=time();
- $uid=$data['uid'];
-
- $userinfo=DB::name('user')->field("ishot")->where(["id"=>$uid,"user_type"=>2])->find();
- if(!$userinfo){
- $this->error('用户不存在');
- }
-
- $liveinfo=DB::name('live')->field('uid,islive')->where(["uid"=>$uid])->find();
- if($liveinfo['islive']==1){
- $this->error('该用户正在直播');
- }
-
- $pull=urldecode($data['pull']);
- $push=urldecode($data['push']);
- $type=$data['type'];
- $type_val=$data['type_val'];
- $anyway=$data['anyway'];
- $liveclassid=$data['liveclassid'];
- $stream=$uid.'_'.$nowtime;
- $title='';
-
- $data2=array(
- "uid"=>$uid,
- "showid"=>$nowtime,
- "starttime"=>$nowtime,
- "title"=>$title,
- "province"=>'',
- "city"=>'好像在火星',
- "stream"=>$stream,
- "thumb"=>'',
- "pull"=>$pull,
- "push"=>$push,
- "lng"=>'',
- "lat"=>'',
- "type"=>$type,
- "type_val"=>$type_val,
- "isvideo"=>1,
- "islive"=>1,
- "anyway"=>$anyway,
- "liveclassid"=>$liveclassid,
- );
-
- if($liveinfo){
- $rs = DB::name('live')->update($data2);
- }else{
- $rs = DB::name('live')->insertGetId($data2);
- }
- if($rs===false){
- $this->error("添加失败!");
- }
-
-
-
- $this->success("添加成功!");
-
- }
- }
-
- public function edit(){
- $uid = $this->request->param('uid', 0, 'intval');
-
- $data=Db::name('live')
- ->where("uid={$uid}")
- ->find();
- if(!$data){
- $this->error("信息错误");
- }
-
- $this->assign('data', $data);
-
- $this->assign("liveclass", $this->getLiveClass());
-
- $this->assign("type", $this->getTypes());
-
- return $this->fetch();
- }
-
- public function editPost(){
- if ($this->request->isPost()) {
-
- $data = $this->request->param();
-
- $data['pull']=urldecode($data['pull']);
- $data['push']=urldecode($data['push']);
-
- $rs = DB::name('live')->update($data);
- if($rs===false){
- $this->error("修改失败!");
- }
-
-
- $this->success("修改成功!");
- }
- }
-
- }
|