VideoUrl.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  1. <?php
  2. namespace app\Nutrition\controller;
  3. use app\api\controller\Video;
  4. use app\common\model\DatumIntro;
  5. use app\common\model\PlatformSwitch;
  6. use app\common\model\Supplier;
  7. use app\common\model\SupplierGoods;
  8. use app\common\model\User;
  9. use app\common\model\VideoIntro;
  10. use library\Controller;
  11. use app\common\model\VideoCate;
  12. use function AlibabaCloud\Client\value;
  13. /**
  14. * 视频管理
  15. * Class VideoUrl
  16. * @package app\Nutrition\controller
  17. */
  18. class VideoUrl extends Controller
  19. {
  20. /**
  21. * 绑定数据表
  22. * @var string
  23. */
  24. protected $table = 'VideoUrl';
  25. protected $url_suffix = '?x-oss-process=video/snapshot,t_2000,m_fast';
  26. /**
  27. * 列表
  28. * @auth true
  29. * @menu true
  30. * @throws \think\Exception
  31. * @throws \think\db\exception\DataNotFoundException
  32. * @throws \think\db\exception\ModelNotFoundException
  33. * @throws \think\exception\DbException
  34. * @throws \think\exception\PDOException
  35. */
  36. public function index()
  37. {
  38. $this->title = '视频列表';
  39. $this->video_id = input('video_id');
  40. $sel_where = [];
  41. $sel_where[] = ['is_deleted','=',0];
  42. $sel_where[] = ['video_id','=',$this->video_id];
  43. $query = $this->_query($this->table);
  44. $query->where($sel_where)->order('sort desc,id desc')->page(false);
  45. }
  46. /**
  47. * 数据列表处理
  48. * @auth true
  49. * @menu true
  50. * @param array $data
  51. * @throws \think\db\exception\DataNotFoundException
  52. * @throws \think\db\exception\ModelNotFoundException
  53. * @throws \think\exception\DbException
  54. */
  55. protected function _index_page_filter(&$data)
  56. {
  57. }
  58. /**
  59. * 添加
  60. * @auth true
  61. * @menu true
  62. * @throws \think\Exception
  63. * @throws \think\db\exception\DataNotFoundException
  64. * @throws \think\db\exception\ModelNotFoundException
  65. * @throws \think\exception\DbException
  66. * @throws \think\exception\PDOException
  67. */
  68. public function add()
  69. {
  70. $this->title = '添加视频';
  71. $this->_form($this->table, 'form');
  72. }
  73. /**
  74. * 编辑
  75. * @auth true
  76. * @menu true
  77. * @throws \think\Exception
  78. * @throws \think\db\exception\DataNotFoundException
  79. * @throws \think\db\exception\ModelNotFoundException
  80. * @throws \think\exception\DbException
  81. * @throws \think\exception\PDOException
  82. */
  83. public function edit()
  84. {
  85. $this->title = '编辑视频';
  86. $this->_form($this->table, 'form') ;
  87. }
  88. /**
  89. * 删除视频
  90. * @auth true
  91. * @menu true
  92. * @throws \think\Exception
  93. * @throws \think\db\exception\DataNotFoundException
  94. * @throws \think\db\exception\ModelNotFoundException
  95. * @throws \think\exception\DbException
  96. * @throws \think\exception\PDOException
  97. */
  98. public function del()
  99. {
  100. $video_id = \app\common\model\VideoUrl::where('id',input('id'))->value('video_id');
  101. VideoIntro::where('id',$video_id)->setDec('url_num');
  102. \app\common\model\VideoUrl::where('id',input('id'))->update(['is_deleted'=>1]);
  103. \app\common\model\VideoUrl::esAdd(input('id'));
  104. \app\common\model\TopSearch::saveData(input('id'),'video');
  105. $this->success('删除成功!');
  106. }
  107. /**
  108. * 批量删除视频
  109. * @auth true
  110. * @menu true
  111. * @throws \think\Exception
  112. * @throws \think\db\exception\DataNotFoundException
  113. * @throws \think\db\exception\ModelNotFoundException
  114. * @throws \think\exception\DbException
  115. * @throws \think\exception\PDOException
  116. */
  117. public function remove()
  118. {
  119. $ids = input('id');
  120. foreach (explode(',',$ids) as $id) {
  121. $video_id = \app\common\model\VideoUrl::where('id',$id)->value('video_id');
  122. VideoIntro::where('id',$video_id)->setDec('url_num');
  123. \app\common\model\VideoUrl::where('id',input('id'))->update(['is_deleted'=>1]);
  124. \app\common\model\VideoUrl::esAdd($id);
  125. \app\common\model\TopSearch::saveData($id,'video');
  126. }
  127. $this->success('删除成功!');
  128. }
  129. /**
  130. * 表单数据处理
  131. * @auth true
  132. * @menu true
  133. * @param array $data
  134. */
  135. protected function _form_filter(&$data)
  136. {
  137. if($this->request->isGet()){
  138. $this->video_id = input('video_id');
  139. $this->video_info = VideoIntro::where('id',$this->video_id)->find()->toArray();
  140. if($this->request->action() == 'add')$data['is_vip'] = $this->video_info['is_vip'];
  141. // 文章列表
  142. $this->article_list =\app\common\model\ArticleIntro::with('itemChildren')
  143. ->field('id,title')
  144. ->where('status',1)
  145. ->where(['is_deleted'=>0])->order('id asc')
  146. ->select()->toArray();
  147. // 资料
  148. $this->datum_list = DatumIntro::with('urlArr')
  149. ->where(['is_deleted'=>0])->order('id desc')
  150. ->where('status',1)
  151. ->select()->toArray();
  152. $this->supplier = Supplier::with('goodsList')
  153. ->where(['is_deleted'=>0])
  154. ->where('status',1)
  155. ->select()->toArray();
  156. $this->supplier_goods = SupplierGoods::getSupplierGoodsList($this->request->action() == 'add' ? ['s.is_deleted'=>0]: []);
  157. }
  158. if($this->request->isPost()){
  159. list($post) = [$this->request->post()];
  160. if(empty($data['cover'])) $this->error('请上传视频封面');
  161. if(empty($data['ali_vid'])) $this->error('云点播ID不能为空');
  162. $vid_info = getVideoTime($data['ali_vid']);
  163. $data['duration'] = $vid_info['duration'];
  164. $data['duration_str'] = $vid_info['duration_str'];
  165. if(!$data['ppt']) $data['pdf_clear'] = '';
  166. if(!$data['release_time']) $data['release_time'] = date("Y-m-d H:i:s");
  167. if($data['hot_num'] != $data['hot_num_old']) $data['hot_time'] = date("Y-m-d H:i:s");
  168. if(!empty($post['phone'])) {
  169. $user_id = User::where('phone|email',$post['phone'])->value('id');
  170. if(!$user_id) $this->error('账号未注册');
  171. $data['user_id'] = $user_id;
  172. }else{
  173. $data['user_id'] = '';
  174. }
  175. //定时热搜
  176. if(!$post['hot_num']){
  177. $post['hot_num'] = 0;
  178. }
  179. if(isset($post['id'])){
  180. $info = \app\common\model\VideoUrl::where('id',$data['id'])->find();
  181. if(($post['regular_hot_end_time'] && $post['hot_target_num'] && $info['regular_hot_end_time'] != $post['regular_hot_end_time']) || ($info['hot_num'] != $post['hot_num'] && $post['regular_hot_end_time'] && $post['hot_target_num'])){
  182. $data['regular_hot_start_time'] = date("Y-m-d H:i:s");
  183. $startdate = strtotime($data['regular_hot_start_time']);
  184. $enddate = strtotime($post['regular_hot_end_time']);
  185. $diff_seconds = ($enddate-$startdate)/60;
  186. $min_num = ceil($diff_seconds/10);
  187. $hot_num = $post['hot_target_num'] - $post['hot_num'];
  188. $num = ceil($hot_num/$min_num);
  189. if($num < 0){
  190. $num = 0;
  191. }
  192. $data['regular_num'] = $num;
  193. }
  194. }else{
  195. if($post['regular_hot_end_time'] && $post['hot_target_num']){
  196. $data['regular_hot_start_time'] = date("Y-m-d H:i:s");
  197. $startdate = strtotime($data['regular_hot_start_time']);
  198. $enddate = strtotime($post['regular_hot_end_time']);
  199. $diff_seconds = ($enddate-$startdate)/60;
  200. $min_num = ceil($diff_seconds/10);
  201. $hot_num = $post['hot_target_num'] - $post['hot_num'];
  202. $num = ceil($hot_num/$min_num);
  203. if($num < 0){
  204. $num = 0;
  205. }
  206. $data['regular_num'] = $num;
  207. }
  208. }
  209. //定时热搜end
  210. }
  211. }
  212. protected function _form_result($result)
  213. {
  214. $url_num = \app\common\model\VideoUrl::field('id,read_num')->where(['video_id'=>$this->request->post('video_id'),'is_deleted'=>0,'status'=>1])->select()->toArray();
  215. $video_info = VideoIntro::where('id',$this->request->post('video_id'))->find()->toArray();
  216. $url = $this->request->post('up_type',1) == 1 ? $this->request->post('up_url'):$this->request->post('path');
  217. $up['url_num'] = count($url_num);
  218. $up['read_num'] = array_sum(array_column($url_num,'read_num'));
  219. if(!$video_info['cover']) $up['cover'] = $this->request->post('cover');
  220. if(!$video_info['video_url']) $up['video_url'] = $url;
  221. if(!$video_info['article_id']) $up['article_id'] = $this->request->post('article_id');
  222. if(!$video_info['article_item']) $up['article_item'] = $this->request->post('article_item');
  223. if(!$video_info['datum_id']) $up['datum_id'] = $this->request->post('datum_id');
  224. if(!$video_info['datum_item']) $up['datum_item'] = $this->request->post('datum_item');
  225. VideoIntro::where('id',$this->request->post('video_id'))->update($up);
  226. \app\common\model\VideoUrl::esAdd($result);
  227. \app\common\model\TopSearch::saveData($result,'video');
  228. if($this->request->action() == 'add') PlatformSwitch::followMsg(2,$this->request->post('video_id'),$video_info['title'],$this->request->post('title'),$result);
  229. $this->success('操作成功', 'javascript:history.back()');
  230. }
  231. /**
  232. * 禁用
  233. * @auth true
  234. * @menu true
  235. * @throws \think\Exception
  236. * @throws \think\db\exception\DataNotFoundException
  237. * @throws \think\db\exception\ModelNotFoundException
  238. * @throws \think\exception\DbException
  239. * @throws \think\exception\PDOException
  240. */
  241. public function forbidden()
  242. {
  243. \app\common\model\VideoUrl::where('id',input('id'))->update(['status'=>0]);
  244. \app\common\model\VideoUrl::esAdd(input('id'));
  245. \app\common\model\TopSearch::saveData(input('id'),'video');
  246. $this->success('已禁用!');
  247. }
  248. /**
  249. * 启用
  250. * @auth true
  251. * @menu true
  252. * @throws \think\Exception
  253. * @throws \think\db\exception\DataNotFoundException
  254. * @throws \think\db\exception\ModelNotFoundException
  255. * @throws \think\exception\DbException
  256. * @throws \think\exception\PDOException
  257. */
  258. public function enable()
  259. {
  260. \app\common\model\VideoUrl::where('id',input('id'))->update(['status'=>1]);
  261. \app\common\model\VideoUrl::esAdd(input('id'));
  262. \app\common\model\TopSearch::saveData(input('id'),'video');
  263. $this->success('已启用!');
  264. }
  265. }