暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Media.php 8.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  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 Media extends Model
  20. {
  21. //初始化
  22. protected function initialize()
  23. {
  24. // 需要调用`Model`的`initialize`方法
  25. parent::initialize();
  26. }
  27. /**
  28. * 后置操作方法
  29. * 自定义的一个函数 用于数据保存后做的相应处理操作, 使用时手动调用
  30. * @param int $aid 产品id
  31. * @param array $post post数据
  32. * @param string $opt 操作
  33. */
  34. public function afterSave($aid, $post, $opt)
  35. {
  36. // 处理外贸链接
  37. if (is_dir('./weapp/Waimao/')) {
  38. $waimaoLogic = new \weapp\Waimao\logic\WaimaoLogic;
  39. $waimaoLogic->update_htmlfilename($aid, $post, $opt);
  40. }
  41. if ('add' == $opt) {
  42. // 视频章节分组插件
  43. if (is_dir('./weapp/Videogroup/')) {
  44. $Prefix = config('database.prefix');
  45. $isTable = Db::query("SHOW TABLES LIKE '{$Prefix}weapp_videogroup'");
  46. if (!empty($isTable)) {
  47. Db::name('weapp_videogroup')->where(['hash'=>$post['hash_1670831712']])->update(['aid'=>$aid,'update_time'=>getTime()]);
  48. }
  49. }
  50. }
  51. $video_files = [];
  52. $post['addonFieldExt']['total_video'] = 0;
  53. if (!empty($post['video'])) {
  54. $post['addonFieldExt']['total_video'] = count($post['video']);
  55. $post['addonFieldExt']['total_duration'] = 0;
  56. foreach ($post['video'] as $k => $v) {
  57. $v['file_url'] = trim($v['file_url']);
  58. if (empty($v['file_url'])){
  59. $post['addonFieldExt']['total_video'] -= 1;
  60. continue;
  61. }
  62. $post['addonFieldExt']['total_duration'] += $v['file_time'];
  63. $file_size = !empty($v['file_size']) ? $v['file_size'] : 0;
  64. $is_remote = 0;
  65. $file_ext = explode('.', $v['file_url']);
  66. $file_ext = preg_replace('/^(.*)\?(.*)$/i', '${1}', end($file_ext));
  67. $uhash = md5($v['file_url'].$file_size);
  68. if (is_http_url($v['file_url'])) {
  69. $is_remote = 1;
  70. $md5file = '';
  71. } else {
  72. if (preg_match('#^(/[\w]+)?(/uploads/media/)#i', $v['file_url'])) {
  73. $file_path_tmp = preg_replace('#^(/[\w]+)?(/uploads/media/)#i', '$2', $v['file_url']);
  74. } else {
  75. $file_path_tmp = preg_replace('#^('.$this->root_dir.')?(/)#i', '$2', $v['file_url']);
  76. }
  77. $md5file = md5_file('.'.$file_path_tmp);
  78. }
  79. $video_files[] = [
  80. 'aid' => $aid,
  81. 'file_id' => $v['file_id'],
  82. 'title' => $post['title'],
  83. 'file_url' => !empty($v['file_url']) ? $v['file_url'] : '',
  84. 'file_time' => !empty($v['file_time']) ? $v['file_time'] : 0,
  85. 'file_title' => !empty($v['file_title']) ? $v['file_title'] : '',
  86. 'file_ext' => $file_ext,
  87. 'file_size' => $file_size,
  88. 'file_mime' => !empty($v['file_mime']) ? $v['file_mime'] : '',
  89. 'sort_order' => !empty($v['sort_order']) ? $v['sort_order'] : '100',
  90. 'uhash' => $uhash,
  91. 'md5file' => $md5file,
  92. 'is_remote' => $is_remote,
  93. 'gratis' => !empty($v['gratis']) ? $v['gratis'] : 0,
  94. 'video_group_id' => !empty($v['video_group_id']) ? intval($v['video_group_id']) : 0,
  95. 'add_time' => getTime(),
  96. 'update_time' => getTime(),
  97. ];
  98. }
  99. }
  100. $post['aid'] = $aid;
  101. $addonFieldExt = !empty($post['addonFieldExt']) ? $post['addonFieldExt'] : array();
  102. model('Field')->dealChannelPostData($post['channel'], $post, $addonFieldExt);
  103. // ---------多视频
  104. model('MediaFile')->savefile($aid, $video_files, $opt);
  105. // --处理TAG标签
  106. model('Taglist')->savetags($aid, $post['typeid'], $post['tags'], $post['arcrank'], $opt);
  107. if ('edit' == $opt) {
  108. // 清空sql_cache_table数据缓存表 并 添加查询执行语句到mysql缓存表
  109. Db::name('sql_cache_table')->execute('TRUNCATE TABLE '.config('database.prefix').'sql_cache_table');
  110. model('SqlCacheTable')->InsertSqlCacheTable(true);
  111. } else {
  112. // 处理mysql缓存表数据
  113. if (isset($post['arcrank']) && -1 == $post['arcrank'] && -1 == $post['old_arcrank'] && !empty($post['users_id'])) {
  114. // 待审核
  115. model('SqlCacheTable')->UpdateDraftSqlCacheTable($post, $opt);
  116. } else if (isset($post['arcrank'])) {
  117. // 已审核
  118. $post['old_typeid'] = intval($post['attr']['typeid']);
  119. model('SqlCacheTable')->UpdateSqlCacheTable($post, $opt, 'media');
  120. }
  121. }
  122. }
  123. /**
  124. * 获取单条记录
  125. * @author wengxianhu by 2017-7-26
  126. */
  127. public function getInfo($aid, $field = null, $isshowbody = true)
  128. {
  129. $result = array();
  130. $field = !empty($field) ? $field : '*';
  131. $result = Db::name('archives')->field($field)
  132. ->where([
  133. 'aid' => $aid,
  134. 'lang' => get_admin_lang(),
  135. ])
  136. ->find();
  137. if ($isshowbody) {
  138. $tableName = Db::name('channeltype')->where('id','eq',$result['channel'])->getField('table');
  139. $result['addonFieldExt'] = Db::name($tableName.'_content')->where('aid',$aid)->find();
  140. }
  141. // 文章TAG标签
  142. if (!empty($result)) {
  143. $typeid = isset($result['typeid']) ? $result['typeid'] : 0;
  144. $tags = model('Taglist')->getListByAid($aid, $typeid);
  145. $result['tags'] = $tags['tag_arr'];
  146. $result['tag_id'] = $tags['tid_arr'];
  147. }
  148. return $result;
  149. }
  150. /**
  151. * 删除的后置操作方法
  152. * 自定义的一个函数 用于数据删除后做的相应处理操作, 使用时手动调用
  153. * @param int $aid
  154. */
  155. public function afterDel($aidArr = array())
  156. {
  157. if (is_string($aidArr)) {
  158. $aidArr = explode(',', $aidArr);
  159. }
  160. // 同时删除内容
  161. Db::name('media_content')->where(
  162. array(
  163. 'aid'=>array('IN', $aidArr)
  164. )
  165. )
  166. ->delete();
  167. // 同时删除软件
  168. $result = Db::name('media_file')->field('file_url')
  169. ->where(
  170. array(
  171. 'aid'=>array('IN', $aidArr)
  172. )
  173. )
  174. ->select();
  175. if (!empty($result)) {
  176. foreach ($result as $key => $val) {
  177. $file_url = preg_replace('#^(/[/\w\-]+)?(/public/upload/|/uploads/)#i', '$2', $val['file_url']);
  178. if (!is_http_url($file_url) && file_exists('.'.$file_url) && preg_match('#^(/uploads/|/public/upload/)(.*)/([^/]+)\.([a-z]+)$#i', $file_url)) {
  179. @unlink(realpath('.'.$file_url));
  180. }
  181. }
  182. $r = Db::name('media_file')->where(
  183. array(
  184. 'aid'=>array('IN', $aidArr)
  185. )
  186. )->delete();
  187. if ($r !== false) {
  188. Db::name('media_log')->where(array('aid'=>array('IN', $aidArr)))->delete();
  189. }
  190. }
  191. // 同时删除TAG标签
  192. model('Taglist')->delByAids($aidArr);
  193. }
  194. }