Нема описа
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875
  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\controller;
  14. use think\Page;
  15. use think\Db;
  16. class Media extends Base
  17. {
  18. public $nid = 'media';
  19. public $channeltype = '';
  20. public function _initialize()
  21. {
  22. parent::_initialize();
  23. $channeltype_list = config('global.channeltype_list');
  24. $this->channeltype = $channeltype_list[$this->nid];
  25. empty($this->channeltype) && $this->channeltype = 5;
  26. $this->assign('nid', $this->nid);
  27. $this->assign('channeltype', $this->channeltype);
  28. // 返回页面
  29. $paramTypeid = input('param.typeid/d', 0);
  30. $this->callback_url = url('Media/index', ['lang' => $this->admin_lang, 'typeid' => $paramTypeid]);
  31. $this->assign('callback_url', $this->callback_url);
  32. }
  33. //列表
  34. public function index()
  35. {
  36. $this->check_use(); // 验证是否功能版授权
  37. $assign_data = $condition = [];
  38. // 获取到所有GET参数
  39. $param = input('param.');
  40. $typeid = input('typeid/d', 0);
  41. // 搜索、筛选查询条件处理
  42. foreach (['keywords', 'typeid', 'flag', 'is_release','province_id','city_id','area_id'] as $key) {
  43. if ($key == 'typeid' && empty($param['typeid'])) {
  44. $typeids = Db::name('arctype')->where('current_channel', $this->channeltype)->column('id');
  45. $condition['a.typeid'] = array('IN', $typeids);
  46. }
  47. if (isset($param[$key]) && $param[$key] !== '') {
  48. if ($key == 'keywords') {
  49. $keywords = $param[$key];
  50. $condition['a.title'] = array('LIKE', "%{$param[$key]}%");
  51. } else if ($key == 'typeid') {
  52. $typeid = $param[$key];
  53. $hasRow = model('Arctype')->getHasChildren($typeid);
  54. $typeids = get_arr_column($hasRow, 'id');
  55. // 权限控制 by 小虎哥
  56. $admin_info = session('admin_info');
  57. if (0 < intval($admin_info['role_id'])) {
  58. $auth_role_info = $admin_info['auth_role_info'];
  59. if (!empty($typeid) && !empty($auth_role_info) && !empty($auth_role_info['permission']['arctype'])) {
  60. $typeids = array_intersect($typeids, $auth_role_info['permission']['arctype']);
  61. }
  62. }
  63. $condition['a.typeid'] = array('IN', $typeids);
  64. } else if ($key == 'flag') {
  65. if ('is_release' == $param[$key]) {
  66. $condition['a.users_id'] = array('gt', 0);
  67. } else {
  68. $FlagNew = $param[$key];
  69. $condition['a.'.$param[$key]] = array('eq', 1);
  70. }
  71. } else if (in_array($key, ['province_id','city_id','area_id'])) {
  72. if (!empty($param['area_id'])) {
  73. $condition['a.area_id'] = $param['area_id'];
  74. } else if (!empty($param['city_id'])) {
  75. $condition['a.city_id'] = $param['city_id'];
  76. } else if (!empty($param['province_id'])) {
  77. $condition['a.province_id'] = $param['province_id'];
  78. }
  79. } else {
  80. $condition['a.'.$key] = array('eq', $param[$key]);
  81. }
  82. }
  83. }
  84. // 权限控制 by 小虎哥
  85. $admin_info = session('admin_info');
  86. if (0 < intval($admin_info['role_id'])) {
  87. $auth_role_info = $admin_info['auth_role_info'];
  88. if (!empty($auth_role_info) && isset($auth_role_info['only_oneself']) && 1 == $auth_role_info['only_oneself']) {
  89. $condition['a.admin_id'] = $admin_info['admin_id'];
  90. }
  91. }
  92. // 时间检索条件
  93. $begin = strtotime(input('param.add_time_begin/s'));
  94. $end = input('param.add_time_end/s');
  95. !empty($end) && $end .= ' 23:59:59';
  96. $end = strtotime($end);
  97. if ($begin > 0 && $end > 0) {
  98. $condition['a.add_time'] = array('between', "$begin, $end");
  99. } else if ($begin > 0) {
  100. $condition['a.add_time'] = array('egt', $begin);
  101. } else if ($end > 0) {
  102. $condition['a.add_time'] = array('elt', $end);
  103. }
  104. // 必要条件
  105. $condition['a.channel'] = array('eq', $this->channeltype);
  106. $condition['a.lang'] = array('eq', $this->admin_lang);
  107. $condition['a.is_del'] = array('eq', 0);
  108. $conditionNew = "(a.users_id = 0 OR (a.users_id > 0 AND a.arcrank >= 0))";
  109. // 自定义排序
  110. $orderby = input('param.orderby/s');
  111. $orderway = input('param.orderway/s');
  112. if (!empty($orderby) && !empty($orderway)) {
  113. $orderby = "a.{$orderby} {$orderway}, a.aid desc";
  114. } else {
  115. $orderby = "a.aid desc";
  116. }
  117. // 数据查询,搜索出主键ID的值
  118. $SqlQuery = Db::name('archives')->alias('a')->where($condition)->where($conditionNew)->fetchSql()->count('aid');
  119. $count = Db::name('sql_cache_table')->where(['sql_md5'=>md5($SqlQuery)])->getField('sql_result');
  120. $count = ($count < 0) ? 0 : $count;
  121. if (empty($count)) {
  122. $count = Db::name('archives')->alias('a')->where($condition)->where($conditionNew)->count('aid');
  123. /*添加查询执行语句到mysql缓存表*/
  124. $SqlCacheTable = [
  125. 'sql_name' => '|media|' . $this->channeltype . '|',
  126. 'sql_result' => $count,
  127. 'sql_md5' => md5($SqlQuery),
  128. 'sql_query' => $SqlQuery,
  129. 'add_time' => getTime(),
  130. 'update_time' => getTime(),
  131. ];
  132. if (!empty($FlagNew)) $SqlCacheTable['sql_name'] = $SqlCacheTable['sql_name'] . $FlagNew . '|';
  133. if (!empty($typeid)) $SqlCacheTable['sql_name'] = $SqlCacheTable['sql_name'] . $typeid . '|';
  134. if (!empty($keywords)) $SqlCacheTable['sql_name'] = '|media|keywords|';
  135. Db::name('sql_cache_table')->insertGetId($SqlCacheTable);
  136. /*END*/
  137. }
  138. $Page = new Page($count, config('paginate.list_rows'));
  139. $list = [];
  140. if (!empty($count)) {
  141. $limit = $count > config('paginate.list_rows') ? $Page->firstRow.','.$Page->listRows : $count;
  142. $list = Db::name('archives')
  143. ->field("a.aid")
  144. ->alias('a')
  145. ->where($condition)
  146. ->where($conditionNew)
  147. ->order($orderby)
  148. ->limit($limit)
  149. ->getAllWithIndex('aid');
  150. if (!empty($list)) {
  151. $aids = array_keys($list);
  152. $fields = "b.*, a.*, a.aid as aid";
  153. $row = Db::name('archives')
  154. ->field($fields)
  155. ->alias('a')
  156. ->join('__ARCTYPE__ b', 'a.typeid = b.id', 'LEFT')
  157. ->where('a.aid', 'in', $aids)
  158. ->getAllWithIndex('aid');
  159. foreach ($list as $key => $val) {
  160. $row[$val['aid']]['arcurl'] = get_arcurl($row[$val['aid']]);
  161. $row[$val['aid']]['litpic'] = handle_subdir_pic($row[$val['aid']]['litpic']);
  162. $list[$key] = $row[$val['aid']];
  163. }
  164. }
  165. }
  166. $show = $Page->show();
  167. $assign_data['page'] = $show;
  168. $assign_data['list'] = $list;
  169. $assign_data['pager'] = $Page;
  170. $assign_data['typeid'] = $typeid;
  171. $assign_data['tab'] = input('param.tab/d', 3);// 选项卡
  172. $assign_data['seo_pseudo'] = tpCache('global.seo_pseudo');// 前台URL模式
  173. $assign_data['archives_flags'] = model('ArchivesFlag')->getList();// 文档属性
  174. $assign_data['arctype_info'] = $typeid > 0 ? M('arctype')->field('typename')->find($typeid) : [];// 当前栏目信息
  175. $this->assign($assign_data);
  176. return $this->fetch();
  177. }
  178. /**
  179. * 添加
  180. */
  181. public function add()
  182. {
  183. $this->check_use(); // 验证是否功能版授权
  184. $admin_info = session('admin_info');
  185. $auth_role_info = $admin_info['auth_role_info'];
  186. $this->assign('auth_role_info', $auth_role_info);
  187. $this->assign('admin_info', $admin_info);
  188. if (IS_POST) {
  189. $post = input('post.');
  190. model('Archives')->editor_auto_210607($post);
  191. $post['video'] = htmlspecialchars_decode($post['video']);
  192. $post['video'] = json_decode($post['video'],true);
  193. /* 处理TAG标签 */
  194. if (!empty($post['tags_new'])) {
  195. $post['tags'] = !empty($post['tags']) ? $post['tags'] . ',' . $post['tags_new'] : $post['tags_new'];
  196. unset($post['tags_new']);
  197. }
  198. $post['tags'] = explode(',', $post['tags']);
  199. $post['tags'] = array_unique($post['tags']);
  200. $post['tags'] = implode(',', $post['tags']);
  201. /* END */
  202. $content = empty($post['addonFieldExt']['content']) ? '' : htmlspecialchars_decode($post['addonFieldExt']['content']);
  203. // 根据标题自动提取相关的关键字
  204. $seo_keywords = $post['seo_keywords'];
  205. if (!empty($seo_keywords)) {
  206. $seo_keywords = str_replace(',', ',', $seo_keywords);
  207. } else {
  208. // $seo_keywords = get_split_word($post['title'], $content);
  209. }
  210. // 自动获取内容第一张图片作为封面图
  211. $is_remote = !empty($post['is_remote']) ? $post['is_remote'] : 0;
  212. $litpic = '';
  213. if ($is_remote == 1) {
  214. $litpic = $post['litpic_remote'];
  215. } else {
  216. $litpic = $post['litpic_local'];
  217. }
  218. if (empty($litpic)) {
  219. $litpic = get_html_first_imgurl($content);
  220. }
  221. $post['litpic'] = $litpic;
  222. /*是否有封面图*/
  223. if (empty($post['litpic'])) {
  224. $is_litpic = 0; // 无封面图
  225. } else {
  226. $is_litpic = 1; // 有封面图
  227. }
  228. // SEO描述
  229. $seo_description = '';
  230. if (empty($post['seo_description']) && !empty($content)) {
  231. $seo_description = @msubstr(checkStrHtml($content), 0, config('global.arc_seo_description_length'), false);
  232. } else {
  233. $seo_description = $post['seo_description'];
  234. }
  235. // 外部链接跳转
  236. $jumplinks = '';
  237. $is_jump = isset($post['is_jump']) ? $post['is_jump'] : 0;
  238. if (intval($is_jump) > 0) {
  239. $jumplinks = $post['jumplinks'];
  240. }
  241. // 模板文件,如果文档模板名与栏目指定的一致,默认就为空。让它跟随栏目的指定而变
  242. if ($post['type_tempview'] == $post['tempview']) {
  243. unset($post['type_tempview']);
  244. unset($post['tempview']);
  245. }
  246. //处理自定义文件名,仅由字母数字下划线和短横杆组成,大写强制转换为小写
  247. $htmlfilename = trim($post['htmlfilename']);
  248. if (!empty($htmlfilename)) {
  249. $htmlfilename = preg_replace("/[^\x{4e00}-\x{9fa5}\w\-]+/u", "-", $htmlfilename);
  250. // $htmlfilename = strtolower($htmlfilename);
  251. //判断是否存在相同的自定义文件名
  252. $map = [
  253. 'htmlfilename' => $htmlfilename,
  254. 'lang' => $this->admin_lang,
  255. ];
  256. if (!empty($post['typeid'])) {
  257. $map['typeid'] = array('eq', $post['typeid']);
  258. }
  259. $filenameCount = Db::name('archives')->where($map)->count();
  260. if (!empty($filenameCount)) {
  261. $this->error("同栏目下,自定义文件名已存在!");
  262. } else if (preg_match('/^(\d+)$/i', $htmlfilename)) {
  263. $this->error("自定义文件名不能纯数字,会与文档ID冲突!");
  264. }
  265. } else {
  266. // 处理外贸链接
  267. if (is_dir('./weapp/Waimao/')) {
  268. $waimaoLogic = new \weapp\Waimao\logic\WaimaoLogic;
  269. $waimaoLogic->get_new_htmlfilename($htmlfilename, $post, 'add', $this->globalConfig);
  270. }
  271. }
  272. $post['htmlfilename'] = $htmlfilename;
  273. //做自动通过审核判断
  274. if ($admin_info['role_id'] > 0 && $auth_role_info['check_oneself'] < 1) {
  275. $post['arcrank'] = -1;
  276. }
  277. // 付费限制模式与之前三个字段 arc_level_id、 users_price、 users_free 组合逻辑兼容
  278. $restricData = restric_type_logic($post, $this->channeltype);
  279. if (isset($restricData['code']) && empty($restricData['code'])) {
  280. $this->error($restricData['msg']);
  281. }
  282. // 副栏目
  283. if (isset($post['stypeid'])) {
  284. $post['stypeid'] = preg_replace('/([^\d\,\,]+)/i', ',', $post['stypeid']);
  285. $post['stypeid'] = str_replace(',', ',', $post['stypeid']);
  286. $post['stypeid'] = trim($post['stypeid'], ',');
  287. $post['stypeid'] = str_replace(",{$post['typeid']},", ',', ",{$post['stypeid']},");
  288. $post['stypeid'] = trim($post['stypeid'], ',');
  289. }
  290. // --存储数据
  291. $newData = array(
  292. 'typeid' => empty($post['typeid']) ? 0 : $post['typeid'],
  293. 'channel' => $this->channeltype,
  294. 'is_b' => empty($post['is_b']) ? 0 : $post['is_b'],
  295. 'is_head' => empty($post['is_head']) ? 0 : $post['is_head'],
  296. 'is_special' => empty($post['is_special']) ? 0 : $post['is_special'],
  297. 'is_recom' => empty($post['is_recom']) ? 0 : $post['is_recom'],
  298. 'is_roll' => empty($post['is_roll']) ? 0 : $post['is_roll'],
  299. 'is_slide' => empty($post['is_slide']) ? 0 : $post['is_slide'],
  300. 'is_diyattr' => empty($post['is_diyattr']) ? 0 : $post['is_diyattr'],
  301. 'editor_remote_img_local'=> empty($post['editor_remote_img_local']) ? 0 : $post['editor_remote_img_local'],
  302. 'editor_img_clear_link' => empty($post['editor_img_clear_link']) ? 0 : $post['editor_img_clear_link'],
  303. 'is_jump' => $is_jump,
  304. 'is_litpic' => $is_litpic,
  305. 'jumplinks' => $jumplinks,
  306. 'origin' => empty($post['origin']) ? '网络' : $post['origin'],
  307. 'seo_keywords' => $seo_keywords,
  308. 'seo_description' => $seo_description,
  309. 'admin_id' => session('admin_info.admin_id'),
  310. 'lang' => $this->admin_lang,
  311. 'sort_order' => 100,
  312. 'users_free' => empty($post['users_free']) ? 0 : $post['users_free'],
  313. 'crossed_price' => empty($post['crossed_price']) ? 0 : floatval($post['crossed_price']),
  314. 'add_time' => strtotime($post['add_time']),
  315. 'update_time' => getTime(),
  316. );
  317. $data = array_merge($post, $newData);
  318. $aid = Db::name('archives')->insertGetId($data);
  319. $_POST['aid'] = $aid;
  320. if ($aid) {
  321. // ---------后置操作
  322. model('Media')->afterSave($aid, $data, 'add');
  323. // 添加查询执行语句到mysql缓存表
  324. model('SqlCacheTable')->InsertSqlCacheTable();
  325. // ---------end
  326. adminLog('新增视频:' . $data['title']);
  327. // 生成静态页面代码
  328. $successData = [
  329. 'aid' => $aid,
  330. 'tid' => $post['typeid'],
  331. ];
  332. $this->success("操作成功!", null, $successData);
  333. exit;
  334. }
  335. $this->error("操作失败!");
  336. exit;
  337. }
  338. $typeid = input('param.typeid/d', 0);
  339. $assign_data['typeid'] = $typeid; // 栏目ID
  340. // 栏目信息
  341. $arctypeInfo = Db::name('arctype')->find($typeid);
  342. /*允许发布文档列表的栏目*/
  343. $arctype_html = allow_release_arctype($typeid, array($this->channeltype));
  344. $assign_data['arctype_html'] = $arctype_html;
  345. /*--end*/
  346. // 阅读权限
  347. $arcrank_list = get_arcrank_list();
  348. $assign_data['arcrank_list'] = $arcrank_list;
  349. /*模板列表*/
  350. $archivesLogic = new \app\admin\logic\ArchivesLogic;
  351. $templateList = $archivesLogic->getTemplateList($this->nid);
  352. $assign_data['templateList'] = $templateList;
  353. /*--end*/
  354. /*默认模板文件*/
  355. $tempview = 'view_' . $this->nid . '.' . config('template.view_suffix');
  356. !empty($arctypeInfo['tempview']) && $tempview = $arctypeInfo['tempview'];
  357. $assign_data['tempview'] = $tempview;
  358. /*--end*/
  359. // URL模式
  360. $tpcache = config('tpcache');
  361. $assign_data['seo_pseudo'] = !empty($tpcache['seo_pseudo']) ? $tpcache['seo_pseudo'] : 1;
  362. // 系统最大上传视频的大小
  363. $assign_data['upload_max_filesize'] = upload_max_filesize();
  364. //视频类型
  365. $media_type = tpCache('global.media_type');
  366. $media_type = !empty($media_type) ? $media_type : config('global.media_ext');
  367. $assign_data['media_type'] = $media_type;
  368. //文件类型
  369. $file_type = tpCache('global.file_type');
  370. $file_type = !empty($file_type) ? $file_type : "zip|gz|rar|iso|doc|xls|ppt|wps";
  371. $assign_data['file_type'] = $file_type;
  372. // 模型配置信息
  373. $channelRow = Db::name('channeltype')->where('id', $this->channeltype)->find();
  374. $channelRow['data'] = json_decode($channelRow['data'], true);
  375. $assign_data['channelRow'] = $channelRow;
  376. // 会员等级信息
  377. $assign_data['users_level'] = model('UsersLevel')->getList('level_id, level_name, level_value');
  378. // 文档默认浏览量
  379. $globalConfig = tpCache('global');
  380. if (isset($globalConfig['other_arcclick']) && 0 <= $globalConfig['other_arcclick']) {
  381. $arcclick_arr = explode("|", $globalConfig['other_arcclick']);
  382. if (count($arcclick_arr) > 1) {
  383. $assign_data['rand_arcclick'] = mt_rand($arcclick_arr[0], $arcclick_arr[1]);
  384. } else {
  385. $assign_data['rand_arcclick'] = intval($arcclick_arr[0]);
  386. }
  387. }else{
  388. $arcclick_config['other_arcclick'] = '500|1000';
  389. tpCache('other', $arcclick_config);
  390. $assign_data['rand_arcclick'] = mt_rand(500, 1000);
  391. }
  392. /*文档属性*/
  393. $assign_data['archives_flags'] = model('ArchivesFlag')->getList();
  394. // 来源列表
  395. $system_originlist = tpSetting('system.system_originlist');
  396. $system_originlist = json_decode($system_originlist, true);
  397. $system_originlist = !empty($system_originlist) ? $system_originlist : [];
  398. $assign_data['system_originlist_str'] = implode(PHP_EOL, $system_originlist);
  399. $assign_data['system_originlist_0'] = !empty($system_originlist) ? $system_originlist[0] : "";
  400. // 多站点,当用站点域名访问后台,发布文档自动选择当前所属区域
  401. model('Citysite')->auto_location_select($assign_data);
  402. // 视频章节分组插件
  403. $is_open_videogroup = 0;
  404. if (is_dir('./weapp/Videogroup/')) {
  405. $videogroupLogic = new \weapp\Videogroup\logic\VideogroupLogic;
  406. $weappData = $videogroupLogic->getWeappData();
  407. if (!empty($weappData['is_open'])) { // 开启
  408. $is_open_videogroup = 1;
  409. }
  410. }
  411. $assign_data['is_open_videogroup'] = $is_open_videogroup;
  412. $this->assign($assign_data);
  413. return $this->fetch();
  414. }
  415. /**
  416. * 编辑
  417. */
  418. public function edit()
  419. {
  420. $this->check_use(); // 验证是否功能版授权
  421. $admin_info = session('admin_info');
  422. $auth_role_info = $admin_info['auth_role_info'];
  423. $this->assign('auth_role_info', $auth_role_info);
  424. $this->assign('admin_info', $admin_info);
  425. if (IS_POST) {
  426. $post = input('post.');
  427. model('Archives')->editor_auto_210607($post);
  428. $post['aid'] = intval($post['aid']);
  429. $post['video'] = htmlspecialchars_decode($post['video']);
  430. $post['video'] = json_decode($post['video'],true);
  431. /* 处理TAG标签 */
  432. if (!empty($post['tags_new'])) {
  433. $post['tags'] = !empty($post['tags']) ? $post['tags'] . ',' . $post['tags_new'] : $post['tags_new'];
  434. unset($post['tags_new']);
  435. }
  436. $post['tags'] = explode(',', $post['tags']);
  437. $post['tags'] = array_unique($post['tags']);
  438. $post['tags'] = implode(',', $post['tags']);
  439. /* END */
  440. $typeid = input('post.typeid/d', 0);
  441. $content = empty($post['addonFieldExt']['content']) ? '' : htmlspecialchars_decode($post['addonFieldExt']['content']);
  442. // 根据标题自动提取相关的关键字
  443. $seo_keywords = $post['seo_keywords'];
  444. if (!empty($seo_keywords)) {
  445. $seo_keywords = str_replace(',', ',', $seo_keywords);
  446. } else {
  447. // $seo_keywords = get_split_word($post['title'], $content);
  448. }
  449. // 自动获取内容第一张图片作为封面图
  450. $is_remote = !empty($post['is_remote']) ? $post['is_remote'] : 0;
  451. $litpic = '';
  452. if ($is_remote == 1) {
  453. $litpic = $post['litpic_remote'];
  454. } else {
  455. $litpic = $post['litpic_local'];
  456. }
  457. if (empty($litpic)) {
  458. $litpic = get_html_first_imgurl($content);
  459. }
  460. $post['litpic'] = $litpic;
  461. /*是否有封面图*/
  462. if (empty($post['litpic'])) {
  463. $is_litpic = 0; // 无封面图
  464. } else {
  465. $is_litpic = !empty($post['is_litpic']) ? $post['is_litpic'] : 0; // 有封面图
  466. }
  467. // 勾选后SEO描述将随正文内容更新
  468. $basic_update_seo_description = empty($post['basic_update_seo_description']) ? 0 : 1;
  469. if (is_language()) {
  470. $langRow = \think\Db::name('language')->order('id asc')
  471. ->cache(true, EYOUCMS_CACHE_TIME, 'language')
  472. ->select();
  473. foreach ($langRow as $key => $val) {
  474. tpCache('basic', ['basic_update_seo_description'=>$basic_update_seo_description], $val['mark']);
  475. }
  476. } else {
  477. tpCache('basic', ['basic_update_seo_description'=>$basic_update_seo_description]);
  478. }
  479. /*--end*/
  480. // SEO描述
  481. $seo_description = '';
  482. if (!empty($basic_update_seo_description) || empty($post['seo_description'])) {
  483. $seo_description = @msubstr(checkStrHtml($content), 0, config('global.arc_seo_description_length'), false);
  484. } else {
  485. $seo_description = $post['seo_description'];
  486. }
  487. // --外部链接
  488. $jumplinks = '';
  489. $is_jump = isset($post['is_jump']) ? $post['is_jump'] : 0;
  490. if (intval($is_jump) > 0) {
  491. $jumplinks = $post['jumplinks'];
  492. }
  493. // 模板文件,如果文档模板名与栏目指定的一致,默认就为空。让它跟随栏目的指定而变
  494. if ($post['type_tempview'] == $post['tempview']) {
  495. unset($post['type_tempview']);
  496. unset($post['tempview']);
  497. }
  498. // 同步栏目切换模型之后的文档模型
  499. $channel = Db::name('arctype')->where(['id'=>$typeid])->getField('current_channel');
  500. //处理自定义文件名,仅由字母数字下划线和短横杆组成,大写强制转换为小写
  501. $htmlfilename = trim($post['htmlfilename']);
  502. if (!empty($htmlfilename)) {
  503. $htmlfilename = preg_replace("/[^\x{4e00}-\x{9fa5}\w\-]+/u", "-", $htmlfilename);
  504. // $htmlfilename = strtolower($htmlfilename);
  505. //判断是否存在相同的自定义文件名
  506. $map = [
  507. 'aid' => ['NEQ', $post['aid']],
  508. 'htmlfilename' => $htmlfilename,
  509. 'lang' => $this->admin_lang,
  510. ];
  511. if (!empty($post['typeid'])) {
  512. $map['typeid'] = array('eq', $post['typeid']);
  513. }
  514. $filenameCount = Db::name('archives')->where($map)->count();
  515. if (!empty($filenameCount)) {
  516. $this->error("同栏目下,自定义文件名已存在!");
  517. } else if (preg_match('/^(\d+)$/i', $htmlfilename)) {
  518. $this->error("自定义文件名不能纯数字,会与文档ID冲突!");
  519. }
  520. } else {
  521. // 处理外贸链接
  522. if (is_dir('./weapp/Waimao/')) {
  523. $waimaoLogic = new \weapp\Waimao\logic\WaimaoLogic;
  524. $waimaoLogic->get_new_htmlfilename($htmlfilename, $post, 'edit', $this->globalConfig);
  525. }
  526. }
  527. $post['htmlfilename'] = $htmlfilename;
  528. //做未通过审核文档不允许修改文档状态操作
  529. if ($admin_info['role_id'] > 0 && $auth_role_info['check_oneself'] < 1) {
  530. $old_archives_arcrank = Db::name('archives')->where(['aid' => $post['aid']])->getField("arcrank");
  531. if ($old_archives_arcrank < 0) {
  532. unset($post['arcrank']);
  533. }
  534. }
  535. // 付费限制模式与之前三个字段 arc_level_id、 users_price、 users_free 组合逻辑兼容
  536. $restricData = restric_type_logic($post, $this->channeltype);
  537. if (isset($restricData['code']) && empty($restricData['code'])) {
  538. $this->error($restricData['msg']);
  539. }
  540. // 副栏目
  541. if (isset($post['stypeid'])) {
  542. $post['stypeid'] = preg_replace('/([^\d\,\,]+)/i', ',', $post['stypeid']);
  543. $post['stypeid'] = str_replace(',', ',', $post['stypeid']);
  544. $post['stypeid'] = trim($post['stypeid'], ',');
  545. $post['stypeid'] = str_replace(",{$typeid},", ',', ",{$post['stypeid']},");
  546. $post['stypeid'] = trim($post['stypeid'], ',');
  547. }
  548. // --存储数据
  549. $newData = array(
  550. 'typeid' => $typeid,
  551. 'channel' => $channel,
  552. 'is_b' => empty($post['is_b']) ? 0 : $post['is_b'],
  553. 'is_head' => empty($post['is_head']) ? 0 : $post['is_head'],
  554. 'is_special' => empty($post['is_special']) ? 0 : $post['is_special'],
  555. 'is_recom' => empty($post['is_recom']) ? 0 : $post['is_recom'],
  556. 'is_roll' => empty($post['is_roll']) ? 0 : $post['is_roll'],
  557. 'is_slide' => empty($post['is_slide']) ? 0 : $post['is_slide'],
  558. 'is_diyattr' => empty($post['is_diyattr']) ? 0 : $post['is_diyattr'],
  559. 'editor_remote_img_local'=> empty($post['editor_remote_img_local']) ? 0 : $post['editor_remote_img_local'],
  560. 'editor_img_clear_link' => empty($post['editor_img_clear_link']) ? 0 : $post['editor_img_clear_link'],
  561. 'is_jump' => $is_jump,
  562. 'is_litpic' => $is_litpic,
  563. 'jumplinks' => $jumplinks,
  564. 'seo_keywords' => $seo_keywords,
  565. 'seo_description' => $seo_description,
  566. 'users_free' => empty($post['users_free']) ? 0 : $post['users_free'],
  567. 'crossed_price' => empty($post['crossed_price']) ? 0 : floatval($post['crossed_price']),
  568. 'add_time' => strtotime($post['add_time']),
  569. 'update_time' => getTime(),
  570. );
  571. $data = array_merge($post, $newData);
  572. $r = Db::name('archives')->where([
  573. 'aid' => $data['aid'],
  574. 'lang' => $this->admin_lang,
  575. ])->update($data);
  576. if ($r !== false) {
  577. // ---------后置操作
  578. model('Media')->afterSave($data['aid'], $data, 'edit');
  579. // ---------end
  580. adminLog('编辑视频:' . $data['title']);
  581. // 生成静态页面代码
  582. $successData = [
  583. 'aid' => $data['aid'],
  584. 'tid' => $typeid,
  585. ];
  586. $this->success("操作成功!", null, $successData);
  587. exit;
  588. }
  589. $this->error("操作失败!");
  590. exit;
  591. }
  592. $assign_data = array();
  593. $id = input('id/d');
  594. $info = model('Media')->getInfo($id, null, true);
  595. if (empty($info)) {
  596. $this->error('数据不存在,请联系管理员!');
  597. exit;
  598. }
  599. /*兼容采集没有归属栏目的文档*/
  600. if (empty($info['channel'])) {
  601. $channelRow = Db::name('channeltype')->field('id as channel')
  602. ->where('id', $this->channeltype)
  603. ->find();
  604. $info = array_merge($info, $channelRow);
  605. }
  606. /*--end*/
  607. $typeid = $info['typeid'];
  608. $assign_data['typeid'] = $typeid;
  609. // 副栏目
  610. $stypeid_arr = [];
  611. if (!empty($info['stypeid'])) {
  612. $info['stypeid'] = trim($info['stypeid'], ',');
  613. $stypeid_arr = Db::name('arctype')->field('id,typename')->where(['id'=>['IN', $info['stypeid']],'is_del'=>0])->select();
  614. }
  615. $assign_data['stypeid_arr'] = $stypeid_arr;
  616. //视频文件
  617. $video_file = model('MediaFile')->getMediaFile($id);
  618. $assign_data['video_file'] = json_encode($video_file);
  619. // 栏目信息
  620. $arctypeInfo = Db::name('arctype')->find($typeid);
  621. $info['channel'] = $arctypeInfo['current_channel'];
  622. if (is_http_url($info['litpic'])) {
  623. $info['is_remote'] = 1;
  624. $info['litpic_remote'] = handle_subdir_pic($info['litpic']);
  625. } else {
  626. $info['is_remote'] = 0;
  627. $info['litpic_local'] = handle_subdir_pic($info['litpic']);
  628. }
  629. // SEO描述
  630. // if (!empty($info['seo_description'])) {
  631. // $info['seo_description'] = @msubstr(checkStrHtml($info['seo_description']), 0, config('global.arc_seo_description_length'), false);
  632. // }
  633. $assign_data['field'] = $info;
  634. /*允许发布文档列表的栏目,文档所在模型以栏目所在模型为主,兼容切换模型之后的数据编辑*/
  635. $arctype_html = allow_release_arctype($typeid, array($info['channel']));
  636. $assign_data['arctype_html'] = $arctype_html;
  637. /*--end*/
  638. // 阅读权限
  639. $arcrank_list = get_arcrank_list();
  640. $assign_data['arcrank_list'] = $arcrank_list;
  641. /*模板列表*/
  642. $archivesLogic = new \app\admin\logic\ArchivesLogic;
  643. $templateList = $archivesLogic->getTemplateList($this->nid);
  644. $assign_data['templateList'] = $templateList;
  645. /*--end*/
  646. /*默认模板文件*/
  647. $tempview = $info['tempview'];
  648. empty($tempview) && $tempview = $arctypeInfo['tempview'];
  649. $assign_data['tempview'] = $tempview;
  650. /*--end*/
  651. // URL模式
  652. $tpcache = config('tpcache');
  653. $assign_data['seo_pseudo'] = !empty($tpcache['seo_pseudo']) ? $tpcache['seo_pseudo'] : 1;
  654. // 系统最大上传视频的大小
  655. $assign_data['upload_max_filesize'] = upload_max_filesize();
  656. //视频类型
  657. $media_type = tpCache('global.media_type');
  658. $media_type = !empty($media_type) ? $media_type : config('global.media_ext');
  659. $assign_data['media_type'] = $media_type;
  660. //文件类型
  661. $file_type = tpCache('global.file_type');
  662. $file_type = !empty($file_type) ? $file_type : "zip|gz|rar|iso|doc|xls|ppt|wps";
  663. $assign_data['file_type'] = $file_type;
  664. // 模型配置信息
  665. $channelRow = Db::name('channeltype')->where('id', $this->channeltype)->find();
  666. $channelRow['data'] = json_decode($channelRow['data'], true);
  667. $assign_data['channelRow'] = $channelRow;
  668. // 会员等级信息
  669. $assign_data['users_level'] = model('UsersLevel')->getList('level_id, level_name, level_value');
  670. /*文档属性*/
  671. $assign_data['archives_flags'] = model('ArchivesFlag')->getList();
  672. // 来源列表
  673. $system_originlist = tpSetting('system.system_originlist');
  674. $system_originlist = json_decode($system_originlist, true);
  675. $system_originlist = !empty($system_originlist) ? $system_originlist : [];
  676. $assign_data['system_originlist_str'] = implode(PHP_EOL, $system_originlist);
  677. // 视频章节分组插件
  678. $is_open_videogroup = 0;
  679. $video_group_list = [];
  680. if (is_dir('./weapp/Videogroup/')) {
  681. $videogroupLogic = new \weapp\Videogroup\logic\VideogroupLogic;
  682. $weappData = $videogroupLogic->getWeappData();
  683. if (!empty($weappData['is_open'])) { // 开启
  684. $is_open_videogroup = 1;
  685. $video_group_list = Db::name('weapp_videogroup')->field('group_id, group_name')->where(['aid'=>$id,'status'=>1])->order('sort_order asc, group_id asc')->select();
  686. }
  687. }
  688. $assign_data['video_group_list'] = json_encode($video_group_list);
  689. $assign_data['is_open_videogroup'] = $is_open_videogroup;
  690. $this->assign($assign_data);
  691. return $this->fetch();
  692. }
  693. /**
  694. * 删除
  695. */
  696. public function del()
  697. {
  698. if (IS_POST) {
  699. $archivesLogic = new \app\admin\logic\ArchivesLogic;
  700. $archivesLogic->del([], 0, 'media');
  701. }
  702. }
  703. /**
  704. * 获取七牛云token
  705. */
  706. /* public function qiniu_upload()
  707. {
  708. if (IS_AJAX_POST) {
  709. $weappInfo = Db::name('weapp')->where('code','Qiniuyun')->field('id,status,data')->find();
  710. if (empty($weappInfo)) {
  711. $this->error('请先安装配置【七牛云图片加速】插件!', null, ['code'=>-1]);
  712. } else if (1 != $weappInfo['status']) {
  713. $this->error('请先启用【七牛云图片加速】插件!', null, ['code'=>-2,'id'=>$weappInfo['id']]);
  714. } else {
  715. $Qiniuyun = json_decode($weappInfo['data'], true);
  716. if (empty($Qiniuyun)) {
  717. $this->error('请先配置【七牛云图片加速】插件!', null, ['code'=>-3]);
  718. } else if (empty($Qiniuyun['domain'])) {
  719. $this->error('请先配置【七牛云图片加速】插件中的域名!', null, ['code'=>-3]);
  720. }
  721. }
  722. //引入七牛云的相关文件
  723. weapp_vendor('Qiniu.src.Qiniu.Auth', 'Qiniuyun');
  724. weapp_vendor('Qiniu.src.Qiniu.Storage.UploadManager', 'Qiniuyun');
  725. require_once ROOT_PATH.'weapp/Qiniuyun/vendor/Qiniu/autoload.php';
  726. // 配置信息
  727. $accessKey = $Qiniuyun['access_key'];
  728. $secretKey = $Qiniuyun['secret_key'];
  729. $bucket = $Qiniuyun['bucket'];
  730. $domain = '//'.$Qiniuyun['domain'];
  731. // 区域对应的上传URl
  732. $config = new \Qiniu\Config(null);
  733. $uphost = $config->getUpHost($accessKey, $bucket);
  734. $uphost = str_replace('http://', '//', $uphost);
  735. // 生成上传Token
  736. $auth = new \Qiniu\Auth($accessKey, $secretKey);
  737. $token = $auth->uploadToken($bucket);
  738. if ($token) {
  739. $filePath = UPLOAD_PATH.'media/' . date('Ymd/') . session('admin_id') . '-' . dd2char(date("ymdHis") . mt_rand(100, 999));
  740. $data = [
  741. 'token' => $token,
  742. 'domain' => $domain,
  743. 'uphost' => $uphost,
  744. 'filePath' => $filePath,
  745. ];
  746. $this->success('获取token成功!', null, $data);
  747. } else {
  748. $this->error('获取token失败!');
  749. }
  750. }
  751. }*/
  752. /**
  753. * 验证是否功能版授权可用
  754. * @return [type] [description]
  755. */
  756. public function check_use()
  757. {
  758. $php_servicemeal = tpCache('global.php_servicemeal');
  759. if ($php_servicemeal < 1.5) {
  760. $authori_tips = config('global.authori_tips');
  761. $authori_tips = base64_decode($authori_tips);
  762. $this->error($authori_tips);
  763. }
  764. }
  765. //帮助
  766. public function help()
  767. {
  768. $system_originlist = tpSetting('system.system_originlist');
  769. $system_originlist = json_decode($system_originlist, true);
  770. $system_originlist = !empty($system_originlist) ? $system_originlist : [];
  771. $assign_data['system_originlist_str'] = implode(PHP_EOL, $system_originlist);
  772. $this->assign($assign_data);
  773. return $this->fetch();
  774. }
  775. }