UserVideo.php 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. <?php
  2. namespace app\Nutrition\controller;
  3. use app\common\model\User;
  4. use app\common\model\UserMessage;
  5. use app\common\model\VideoIntro;
  6. use app\common\model\VideoUrl;
  7. use library\Controller;
  8. use library\tools\Data;
  9. use think\Db;
  10. use app\common\model\VideoCate as VCM;
  11. /**
  12. * 视频管理
  13. * Class VideoManage
  14. * @package app\Nutrition\controller
  15. */
  16. class UserVideo extends Controller
  17. {
  18. /**
  19. * 绑定数据表
  20. * @var string
  21. */
  22. protected $table = 'UserVideo';
  23. /**
  24. * 列表
  25. * @auth true
  26. * @menu true
  27. * @throws \think\Exception
  28. * @throws \think\db\exception\DataNotFoundException
  29. * @throws \think\db\exception\ModelNotFoundException
  30. * @throws \think\exception\DbException
  31. * @throws \think\exception\PDOException
  32. */
  33. public function index()
  34. {
  35. $this->title = '视频列表';
  36. $video_cate = VCM::field('id,title')->select()->toArray();
  37. $this->video_cate = array_column($video_cate,null,'id');
  38. $sel_where = [];
  39. $sel_where[] = ['v.is_deleted','in','0,1'];
  40. if($title = $this->request->get('title')) $sel_where[] = ['v.title','like','%'.$title.'%'];
  41. if($phone = $this->request->get('phone')) $sel_where[] = ['m.phone','like','%'.$phone.'%'];
  42. $this->status = $this->request->get('status',-1);
  43. if( $this->status >= 0 ) $sel_where[] = ['v.status','=', $this->status ];
  44. $query = $this->_query($this->table)->field('v.*,m.phone,m.name user_name, m.headimg')->alias('v')
  45. ->leftJoin('StoreMember m','m.id = v.user_id');
  46. $arr = ['is_new' => 0];
  47. \app\common\model\UserVideo::alias('f')->where('is_new',1)->update($arr);
  48. $query->where($sel_where)->order('v.id desc')->page();
  49. }
  50. /**
  51. * 数据列表处理
  52. * @auth true
  53. * @menu true
  54. * @param array $data
  55. * @throws \think\db\exception\DataNotFoundException
  56. * @throws \think\db\exception\ModelNotFoundException
  57. * @throws \think\exception\DbException
  58. */
  59. protected function _index_page_filter(&$data)
  60. {
  61. }
  62. /**
  63. * 编辑
  64. * @auth true
  65. * @menu true
  66. * @throws \think\Exception
  67. * @throws \think\db\exception\DataNotFoundException
  68. * @throws \think\db\exception\ModelNotFoundException
  69. * @throws \think\exception\DbException
  70. * @throws \think\exception\PDOException
  71. */
  72. public function edit()
  73. {
  74. $this->title = '编辑视频';
  75. $this->_form($this->table, 'form');
  76. }
  77. /**
  78. * 禁用
  79. * @auth true
  80. * @menu true
  81. * @throws \think\Exception
  82. * @throws \think\db\exception\DataNotFoundException
  83. * @throws \think\db\exception\ModelNotFoundException
  84. * @throws \think\exception\DbException
  85. * @throws \think\exception\PDOException
  86. */
  87. public function forbidden()
  88. {
  89. $this->_save($this->table, ['status' => '0']);
  90. }
  91. /**
  92. * 启用
  93. * @auth true
  94. * @menu true
  95. * @throws \think\Exception
  96. * @throws \think\db\exception\DataNotFoundException
  97. * @throws \think\db\exception\ModelNotFoundException
  98. * @throws \think\exception\DbException
  99. * @throws \think\exception\PDOException
  100. */
  101. public function enable()
  102. {
  103. $this->_save($this->table, ['status' => 1]);
  104. }
  105. /**
  106. * 删除视频
  107. * @auth true
  108. * @menu true
  109. * @throws \think\Exception
  110. * @throws \think\db\exception\DataNotFoundException
  111. * @throws \think\db\exception\ModelNotFoundException
  112. * @throws \think\exception\DbException
  113. * @throws \think\exception\PDOException
  114. */
  115. public function del()
  116. {
  117. $this->_save($this->table, ['is_deleted' =>2]);
  118. }
  119. /**
  120. * 表单数据处理
  121. * @auth true
  122. * @menu true
  123. * @param array $data
  124. */
  125. protected function _form_filter(&$data)
  126. {
  127. if($this->request->isGet() && in_array($this->request->action(),['add','edit'])){
  128. $all_cate = VCM::where(['is_deleted'=>0])->order('sort desc ,id desc')->select();
  129. $this->cate_tree = make_tree($all_cate);
  130. }
  131. if($this->request->isPost() && in_array($this->request->action(),['add','edit'])) {
  132. if($data['status'] > 0 ) UserMessage::sendUserMessage($data['user_id'],'video',2,$data['status']-1,0,$data['id']);
  133. }
  134. }
  135. protected function _form_result($result){
  136. }
  137. /**
  138. * 视频添加到系列
  139. * @auth true
  140. * @throws \think\Exception
  141. * @throws \think\db\exception\DataNotFoundException
  142. * @throws \think\db\exception\ModelNotFoundException
  143. * @throws \think\exception\DbException
  144. * @throws \think\exception\PDOException
  145. */
  146. public function series()
  147. {
  148. if ($this->request->isGet()) {
  149. $id = $this->request->get('id');
  150. $has_series = VideoUrl::where('rel_id',$id)->column('video_id');
  151. $user_video = \app\common\model\UserVideo::where(['id' => $id])->find()->toArray();
  152. $series_list = VideoIntro::where(['is_deleted'=>0,'type'=>2])->where('id','not in',$has_series)->column('title','id');
  153. $this->fetch('', ['vo' => $user_video,'series_list'=>$series_list]);
  154. } else {
  155. $id = input('post.id');
  156. $series_id = input('post.series_id');
  157. $sort = input('post.sort');
  158. $is_vip = input('post.is_vip');
  159. $user_video = \app\common\model\UserVideo::where(['id' => $id])->find()->toArray();
  160. $user_info = User::where('id',$user_video['user_id'])->find()->toArray();
  161. VideoUrl::create([
  162. 'video_id'=>$series_id,
  163. 'cover'=>$user_video['cover'],
  164. 'url'=>$user_video['video_url'],
  165. 'sort'=>$sort,
  166. 'is_vip'=>$is_vip,
  167. 'source'=>2,
  168. 'rel_id'=>$id,
  169. 'title'=>$user_video['title'],
  170. 'user_id'=>$user_video['user_id'],
  171. 'phone'=>$user_info['phone'] ? $user_info['phone']:$user_info['email'],
  172. ]);
  173. VideoIntro::where('id',$series_id)->setInc('url_num');
  174. $this->success('添加成功!');
  175. }
  176. }
  177. public function new_video(){
  178. if($this->request->isGet())
  179. {
  180. $user_video = \app\common\model\UserVideo::where('id',input('id'))->find()->toArray();
  181. $all_cate = \app\common\model\VideoCate::where(['is_deleted'=>0])->order('sort desc ,id desc')->select();
  182. $cate_tree = make_tree($all_cate);
  183. $this->cate_tree = $cate_tree;
  184. $this->fetch('',['vo'=>$user_video,'cate_tree '=>$cate_tree]);
  185. }else{
  186. $user_video_id= input('user_video_id');
  187. $user_video = \app\common\model\UserVideo::where('id',$user_video_id)->find()->toArray();
  188. $user_info = User::where('id',$user_video['user_id'])->find()->toArray();
  189. $new_video = [
  190. 'title' => $user_video['title'],
  191. 'content' => $user_video['desc'],
  192. 'cover' => $user_video['cover'],
  193. 'video_url' => $user_video['video_url'],
  194. 'first_classify' => input('first_classify'),
  195. 'second_classify' => input('second_classify'),
  196. 'type' => 1,
  197. 'is_over' => 1,
  198. 'label' => $user_video['label'],
  199. 'is_vip' => input('is_vip'),
  200. ];
  201. $result = VideoIntro::create($new_video);
  202. $video_item = [
  203. 'video_id' => $result->id,
  204. 'cover' => $new_video['cover'],
  205. 'url' => $new_video['video_url'],
  206. 'is_vip' => $new_video['is_vip'],
  207. 'source' => 2,
  208. 'title' => $new_video['title'],
  209. 'rel_id' => $user_video_id,
  210. 'user_id'=>$user_video['user_id'],
  211. 'phone'=>$user_info['phone'] ? $user_info['phone']:$user_info['email'],
  212. ];
  213. Data::save('VideoUrl',$video_item,'video_id',['video_id' => $result->id]);
  214. $this->success('创建成功');
  215. }
  216. }
  217. }