|
@@ -986,20 +986,14 @@ class Video extends Base
|
|
|
* @url /api/Video/delComment
|
|
|
* @header name:Authorization require:1 desc:Token
|
|
|
* @param name:id type:int default:1 desc:评论记录id【多个用逗号隔开=>'1,2'】
|
|
|
- * @param name:type type:string default:1 desc:消息类型【1我的评论,2评论我的】
|
|
|
+ * @param name:type type:string default:1 desc:消息类型【1我的评论,2评论我的,3我的回复】
|
|
|
*/
|
|
|
public function delComment(){
|
|
|
$type = input('post.type',1);
|
|
|
- switch ($type)
|
|
|
- {
|
|
|
- case 1:
|
|
|
- VideoComment::where(['user_id'=>$this->user_id])->where('id','in',input('post.id'))->update(['is_deleted'=>1]);
|
|
|
- break;
|
|
|
- default :
|
|
|
- VideoComment::where('id','in',input('post.id'))->update(['is_read'=>input('post.is_read')]);
|
|
|
- break;
|
|
|
- }
|
|
|
-
|
|
|
+ $del_where = [];
|
|
|
+ $del_where[] = ['id','in',input('post.id')];
|
|
|
+ if(in_array($type,[1,3])) $del_where[] = ['user_id','=',$this->user_id];
|
|
|
+ VideoComment::where($del_where)->update(['is_deleted'=>1]);
|
|
|
$this->success('删除成功');
|
|
|
}
|
|
|
|
|
@@ -1044,8 +1038,7 @@ class Video extends Base
|
|
|
$title = input('get.title');
|
|
|
if($title) $sel_where[] = ['i.title|i.label','like','%'.$title.'%'];
|
|
|
$sel_where[] = ['t.is_deleted','=',0];
|
|
|
- $sel_where[] = ['t.lev','>=',2];
|
|
|
- //$sel_where[] = ['t.user_id','<>',$this->user_id];
|
|
|
+ $sel_where[] = ['t.user_id','<>',$this->user_id];
|
|
|
$sel_where[] = ['t.pid','in',implode(',',$all_comment)];
|
|
|
$list = VideoComment::where($sel_where)
|
|
|
->alias('t')
|
|
@@ -1156,6 +1149,9 @@ class Video extends Base
|
|
|
* @return name:headimg type:string default:-- desc:用户头像【用户自己的】
|
|
|
* @return name:is_normal type:int default:-- desc:是否是正常记录(0已删除或是已禁用1可以正常跳转详情)
|
|
|
* @return name:ali_vid:string default:-- desc:云点播id
|
|
|
+ * @return name:app_name type:string default:-- desc:发布者
|
|
|
+ * @return name:app_logo type:string default:-- desc:发布者头像
|
|
|
+ * @return name:read_num type:string default:-- desc:播放量
|
|
|
*/
|
|
|
public function getCommentVideo()
|
|
|
{
|
|
@@ -1167,16 +1163,19 @@ class Video extends Base
|
|
|
$sel_where[] = ['t.is_deleted','=',0];
|
|
|
$list = VideoComment::where($sel_where)
|
|
|
->alias('t')
|
|
|
- ->field('t.id,t.create_at,t.is_top,t.video_id,t.url_id,t.lev,t.content,i.title,i.cover,i.ali_vid,i.cover,i.duration')
|
|
|
+ ->field('t.id,t.create_at,t.is_top,t.video_id,t.url_id,t.lev,t.content,i.title,i.user_id buid, i.cover,i.ali_vid,i.cover,i.duration,iread_num')
|
|
|
->leftJoin('VideoUrl i','t.url_id = i.id')
|
|
|
->order('t.is_top desc, id desc')
|
|
|
->limit($this->off_set,$this->page_num)
|
|
|
->select()->toArray();
|
|
|
- foreach ($list as &$v)
|
|
|
- {
|
|
|
+ foreach ($list as &$v) {
|
|
|
$v['user_name'] = $user_info['name'];
|
|
|
$v['headimg'] = $user_info['headimg'];
|
|
|
$v['is_normal'] = CheckPower::checkModulesPower($v['video_id'],$v['url_id'],$this->request->controller());
|
|
|
+ $video_auth = VideoUrl::getVideoAuth($v['buid'],APPNAME,APPLOGO);
|
|
|
+ $v['app_name'] = $video_auth['app_name'];
|
|
|
+ $v['app_logo'] = $video_auth['app_logo'];
|
|
|
+ $v['read_num'] = numTransform($v['read_num']);
|
|
|
}
|
|
|
$this->success('ok',['list'=>$list]);
|
|
|
|
|
@@ -1294,6 +1293,13 @@ class Video extends Base
|
|
|
* @return name:duration type:int default:-- desc:时长(单位:秒)
|
|
|
* @return name:is_vip type:int default:-- desc:是否是vip[0否1是]
|
|
|
* @return name:is_normal type:int default:-- desc:是否是正常记录(0已删除或是已禁用1可以正常跳转详情)
|
|
|
+ * @return name:transmit_num type:int default:-- desc:转发量
|
|
|
+ * @return name:comment_num type:int default:-- desc:评论量
|
|
|
+ * @return name:is_praise type:int default:-- desc:是否点赞
|
|
|
+ * @return name:praise_num type:int default:-- desc:点赞量
|
|
|
+ * @return name:praise_num type:int default:-- desc:点赞量
|
|
|
+ * @return name:is_collect type:int default:-- desc:是否收藏
|
|
|
+ * @return name:collect_num type:int default:-- desc:收藏量
|
|
|
*/
|
|
|
public function getVideoCollect()
|
|
|
{
|
|
@@ -1304,18 +1310,60 @@ class Video extends Base
|
|
|
$sel_where[] = ['t.coll_type','=',1];
|
|
|
$list = UserCollect::where($sel_where)
|
|
|
->alias('t')
|
|
|
- ->field('t.id,t.create_at,t.coll_id video_id,t.children_id url_id,i.title,i.cover,i.is_vip,i.ali_vid,i.duration')
|
|
|
+ ->field('t.id,t.create_at,t.coll_id video_id,t.children_id url_id,i.title,i.cover,i.comment_num,i.is_vip,i.ali_vid,i.duration,i.user_id buid')
|
|
|
->leftJoin('VideoUrl i','t.children_id = i.id')
|
|
|
->order('id desc')
|
|
|
->limit($this->off_set,$this->page_num)
|
|
|
->select()->toArray();
|
|
|
array_walk($list,function (&$v){
|
|
|
$v['is_normal'] = CheckPower::checkModulesPower($v['video_id'],$v['url_id'],$this->request->controller());
|
|
|
+ $v['transmit_num'] = numTransform($v['transmit_num']);
|
|
|
+ $v['comment_num'] = VideoComment::getVideoCommentNum($v['url_id']);
|
|
|
+ $v['is_praise'] = VideoCommentLike::where(['user_id'=>$this->user_id,'type'=>2,'like_id'=>$v['url_id']])->count();
|
|
|
+ $v['praise_num'] = VideoCommentLike::where(['type'=>2,'like_id'=>$v['url_id']])->count();
|
|
|
+ $v['is_collect'] = UserCollect::checkCollectByType($this->user_id,1,$v['video_id'],$v['url_id']);
|
|
|
+ $v['collect_num'] = UserCollect::getCollectNum(1,$v['video_id'],$v['url_id']);
|
|
|
+ $video_auth = VideoUrl::getVideoAuth($v['buid'],APPNAME,APPLOGO);
|
|
|
+ $v['app_name'] = $video_auth['app_name'];
|
|
|
+ $v['app_logo'] = $video_auth['app_logo'];
|
|
|
+
|
|
|
});
|
|
|
$this->success('ok',['list'=>$list]);
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
+ * @title 用户视频收藏||取消收藏
|
|
|
+ * @desc 用户视频收藏
|
|
|
+ * @author qc
|
|
|
+ * @method POST
|
|
|
+ * @url /api/Video/videoCollect
|
|
|
+ * @header name:Authorization require:1 desc:Token
|
|
|
+ * @param name:coll_id type:int require:1 default:-- desc:收藏id(平台视频点赞用video_arr的iD)
|
|
|
+ * @param name:status type:int default:0 desc:收藏状态(0取消收藏【未收藏】,1收藏)
|
|
|
+ */
|
|
|
+ public function videoCollect()
|
|
|
+ {
|
|
|
+ $coll_type = input('post.coll_type',1);
|
|
|
+ $url_id = input('post.coll_id',0);
|
|
|
+ $video_id = VideoUrl::where('id',$url_id)->value('video_id');
|
|
|
+ $collect_check = UserCollect::where(['user_id'=>$this->user_id,'coll_type'=>$coll_type,'coll_id'=>$video_id,'children_id'=>$url_id])->find();
|
|
|
+ if($collect_check) {
|
|
|
+ UserCollect::where(['user_id'=>$this->user_id,'coll_type'=>$coll_type,'coll_id'=>$video_id,'children_id'=>$url_id])->delete();
|
|
|
+ $this->success('取消收藏成功',['status'=>0]);
|
|
|
+ }else{
|
|
|
+ Data::save('UserCollect', [
|
|
|
+ 'user_id'=>$this->user_id,
|
|
|
+ 'coll_type'=>$coll_type,
|
|
|
+ 'coll_id'=>$video_id,
|
|
|
+ 'children_id'=>$url_id,
|
|
|
+ 'create_int'=>time()],'user_id',['user_id'=>$this->user_id,'coll_type'=>$coll_type, 'coll_id'=>$video_id,'children_id'=>$url_id]);
|
|
|
+ $this->success('收藏成功',['status'=>1]);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
* @title 视频点赞列表【我的点赞】
|
|
|
* @desc 视频点赞列表
|
|
|
* @author qc
|