Nav apraksta
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

MediaFile.php 8.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\admin\model;
  14. use think\Db;
  15. use think\Model;
  16. /**
  17. * 视频文件
  18. */
  19. class MediaFile extends Model
  20. {
  21. //初始化
  22. protected function initialize()
  23. {
  24. // 需要调用`Model`的`initialize`方法
  25. parent::initialize();
  26. }
  27. /**
  28. * 删除单条视频文章的所有视频
  29. * @author 小虎哥 by 2018-4-3
  30. */
  31. public function delVideoFile($aid = array())
  32. {
  33. if (!is_array($aid)) {
  34. $aid = array($aid);
  35. }
  36. $file_url_list = Db::name('media_file')->where(['aid'=>['IN', $aid]])->column('file_url');
  37. $result = Db::name('media_file')->where(['aid'=>['IN', $aid]])->delete();
  38. if ($result !== false) {
  39. Db::name('media_log')->where(['aid'=>['IN', $aid]])->delete();
  40. foreach ($file_url_list as $key => $val) {
  41. $file_url_tmp = preg_replace('#^(/[/\w\-]+)?(/uploads/media/)#i', '.$2', $val);
  42. if (!is_http_url($val) && file_exists($file_url_tmp)) {
  43. @unlink($file_url_tmp);
  44. }
  45. }
  46. }
  47. \think\Cache::clear('media_file');
  48. return $result;
  49. }
  50. /**
  51. * 获取指定下载文章的所有文件
  52. * @author 小虎哥 by 2018-4-3
  53. */
  54. public function getMediaFile($aid, $field = '*')
  55. {
  56. if (!is_dir('./weapp/Videogroup/')) {
  57. $result = Db::name('media_file')->field($field)
  58. ->where('aid', $aid)
  59. ->order('sort_order asc,file_id asc')
  60. ->select();
  61. } else { // 安装了视频章节分组插件
  62. $videogroupLogic = new \weapp\Videogroup\logic\VideogroupLogic;
  63. $weappData = $videogroupLogic->getWeappData();
  64. if (!empty($weappData['is_open'])) { // 开启
  65. $result = Db::name('media_file')->alias('a')
  66. ->field('a.*, b.group_id as video_group_id,c.sort_order as c_sort,c.group_name')
  67. ->join('weapp_videogroup_file b', 'a.file_id = b.file_id', 'LEFT')
  68. ->join('weapp_videogroup c', 'c.aid = a.aid and c.group_id = b.group_id', 'LEFT')
  69. ->where('a.aid', $aid)
  70. ->order('c_sort asc,a.sort_order asc,a.file_id asc')
  71. ->select();
  72. if (!empty($result)){
  73. foreach ($result as $k => $v){
  74. if (empty($v['video_group_id'])){
  75. $result[] = $v;
  76. unset($result[$k]);
  77. }else{
  78. break;
  79. }
  80. }
  81. $result = array_merge($result);
  82. }
  83. } else { // 关闭
  84. $result = Db::name('media_file')->field($field)
  85. ->where('aid', $aid)
  86. ->order('sort_order asc,file_id asc')
  87. ->select();
  88. }
  89. }
  90. return $result;
  91. }
  92. /**
  93. * 保存视频文章的视频
  94. * @author 小虎哥 by 2018-4-3
  95. */
  96. public function savefile($aid, $video_files = [], $opt = 'add')
  97. {
  98. if (!empty($video_files)) {
  99. if ('add' == $opt) {
  100. $redata = self::saveAll($video_files);
  101. // 视频章节分组插件
  102. if (is_dir('./weapp/Videogroup/')) {
  103. $videogroupfiles = [];
  104. foreach ($redata as $k1 => $v1) {
  105. $video_group_id = $v1->getData('video_group_id');
  106. $videogroupfiles[] = [
  107. 'file_id' => $v1->getData('file_id'),
  108. 'aid' => $v1->getData('aid'),
  109. 'group_id' => intval($video_group_id),
  110. 'add_time' => getTime(),
  111. 'update_time' => getTime(),
  112. ];
  113. }
  114. if (!empty($videogroupfiles)) {
  115. Db::name('weapp_videogroup_file')->insertAll($videogroupfiles);
  116. }
  117. }
  118. } else if ('edit' == $opt) {
  119. $videogroupfiles = [];
  120. $file_ids = [];
  121. $insert = [];
  122. foreach ($video_files as $k =>$v){
  123. if (!empty($v['file_id'])){
  124. $file_ids[] = $v['file_id'];
  125. }else{
  126. unset($v['file_id']);
  127. $insert[] = $v;
  128. unset($video_files[$k]);
  129. }
  130. }
  131. $file_url_list = Db::name('media_file')->where('aid',$aid)->column('file_url');
  132. Db::name('media_file')->where('aid',$aid)->where('file_id','not in',$file_ids)->delete();
  133. // 更新
  134. $update = self::saveAll($video_files);
  135. foreach ($update as $k1 => $v1) {
  136. $video_group_id = $v1->getData('video_group_id');
  137. $videogroupfiles[] = [
  138. 'file_id' => $v1->getData('file_id'),
  139. 'aid' => $v1->getData('aid'),
  140. 'group_id' => intval($video_group_id),
  141. 'add_time' => getTime(),
  142. 'update_time' => getTime(),
  143. ];
  144. }
  145. //插入
  146. $insert = self::saveAll($insert);
  147. if (!empty($update) || !empty($insert)) {
  148. foreach ($insert as $k1 => $v1) {
  149. $video_group_id = $v1->getData('video_group_id');
  150. $videogroupfiles[] = [
  151. 'file_id' => $v1->getData('file_id'),
  152. 'aid' => $v1->getData('aid'),
  153. 'group_id' => intval($video_group_id),
  154. 'add_time' => getTime(),
  155. 'update_time' => getTime(),
  156. ];
  157. }
  158. \think\Cache::clear('media_file');
  159. foreach ($video_files as $k => $v) {
  160. $index_key = array_search($v['file_url'], $file_url_list);
  161. if (false !== $index_key && 0 <= $index_key) {
  162. unset($file_url_list[$index_key]);
  163. }
  164. }
  165. try {
  166. foreach ($file_url_list as $key => $val) {
  167. $file_url_tmp = preg_replace('#^(/[/\w\-]+)?(/uploads/media/)#i', '.$2', $val);
  168. if (!is_http_url($val) && file_exists($file_url_tmp)) {
  169. @unlink($file_url_tmp);
  170. }
  171. }
  172. } catch (\Exception $e) {}
  173. }
  174. // 视频章节分组插件
  175. if (is_dir('./weapp/Videogroup/')) {
  176. Db::name('weapp_videogroup_file')->where('aid',$aid)->delete();
  177. if (!empty($videogroupfiles)) {
  178. Db::name('weapp_videogroup_file')->insertAll($videogroupfiles);
  179. }
  180. }
  181. }
  182. }else{
  183. if ('edit' == $opt) {
  184. Db::name('media_file')->where('aid',$aid)->delete();
  185. // 视频章节分组插件
  186. if (is_dir('./weapp/Videogroup/')) {
  187. Db::name('weapp_videogroup_file')->where('aid',$aid)->delete();
  188. }
  189. }
  190. }
  191. }
  192. }