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.

Images.php 31KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742
  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 Images extends Base
  17. {
  18. // 模型标识
  19. public $nid = 'images';
  20. // 模型ID
  21. public $channeltype = '';
  22. public function _initialize() {
  23. parent::_initialize();
  24. $channeltype_list = config('global.channeltype_list');
  25. $this->channeltype = $channeltype_list[$this->nid];
  26. empty($this->channeltype) && $this->channeltype = 3;
  27. $this->assign('nid', $this->nid);
  28. $this->assign('channeltype', $this->channeltype);
  29. // 返回页面
  30. $paramTypeid = input('param.typeid/d', 0);
  31. $this->callback_url = url('Images/index', ['lang' => $this->admin_lang, 'typeid' => $paramTypeid]);
  32. $this->assign('callback_url', $this->callback_url);
  33. }
  34. //列表
  35. public function index()
  36. {
  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('add_time_begin'));
  94. $end = strtotime(input('add_time_end'));
  95. if ($begin > 0 && $end > 0) {
  96. $condition['a.add_time'] = array('between', "$begin, $end");
  97. } else if ($begin > 0) {
  98. $condition['a.add_time'] = array('egt', $begin);
  99. } else if ($end > 0) {
  100. $condition['a.add_time'] = array('elt', $end);
  101. }
  102. // 必要条件
  103. $condition['a.channel'] = array('eq', $this->channeltype);
  104. $condition['a.lang'] = array('eq', $this->admin_lang);
  105. $condition['a.is_del'] = array('eq', 0);
  106. $conditionNew = "(a.users_id = 0 OR (a.users_id > 0 AND a.arcrank >= 0))";
  107. // 自定义排序
  108. $orderby = input('param.orderby/s');
  109. $orderway = input('param.orderway/s');
  110. if (!empty($orderby) && !empty($orderway)) {
  111. $orderby = "a.{$orderby} {$orderway}, a.aid desc";
  112. } else {
  113. $orderby = "a.aid desc";
  114. }
  115. // 数据查询,搜索出主键ID的值
  116. $SqlQuery = Db::name('archives')->alias('a')->where($condition)->where($conditionNew)->fetchSql()->count('aid');
  117. $count = Db::name('sql_cache_table')->where(['sql_md5'=>md5($SqlQuery)])->getField('sql_result');
  118. $count = ($count < 0) ? 0 : $count;
  119. if (empty($count)) {
  120. $count = Db::name('archives')->alias('a')->where($condition)->where($conditionNew)->count('aid');
  121. /*添加查询执行语句到mysql缓存表*/
  122. $SqlCacheTable = [
  123. 'sql_name' => '|images|' . $this->channeltype . '|',
  124. 'sql_result' => $count,
  125. 'sql_md5' => md5($SqlQuery),
  126. 'sql_query' => $SqlQuery,
  127. 'add_time' => getTime(),
  128. 'update_time' => getTime(),
  129. ];
  130. if (!empty($FlagNew)) $SqlCacheTable['sql_name'] = $SqlCacheTable['sql_name'] . $FlagNew . '|';
  131. if (!empty($typeid)) $SqlCacheTable['sql_name'] = $SqlCacheTable['sql_name'] . $typeid . '|';
  132. if (!empty($keywords)) $SqlCacheTable['sql_name'] = '|images|keywords|';
  133. Db::name('sql_cache_table')->insertGetId($SqlCacheTable);
  134. /*END*/
  135. }
  136. $Page = new Page($count, config('paginate.list_rows'));
  137. $list = [];
  138. if (!empty($count)) {
  139. $limit = $count > config('paginate.list_rows') ? $Page->firstRow.','.$Page->listRows : $count;
  140. $list = Db::name('archives')
  141. ->field("a.aid")
  142. ->alias('a')
  143. ->where($condition)
  144. ->where($conditionNew)
  145. ->order($orderby)
  146. ->limit($limit)
  147. ->getAllWithIndex('aid');
  148. if (!empty($list)) {
  149. $aids = array_keys($list);
  150. $fields = "b.*, a.*, a.aid as aid";
  151. $row = Db::name('archives')
  152. ->field($fields)
  153. ->alias('a')
  154. ->join('__ARCTYPE__ b', 'a.typeid = b.id', 'LEFT')
  155. ->where('a.aid', 'in', $aids)
  156. ->getAllWithIndex('aid');
  157. foreach ($list as $key => $val) {
  158. $row[$val['aid']]['arcurl'] = get_arcurl($row[$val['aid']]);
  159. $row[$val['aid']]['litpic'] = handle_subdir_pic($row[$val['aid']]['litpic']);
  160. $list[$key] = $row[$val['aid']];
  161. }
  162. }
  163. }
  164. $show = $Page->show();
  165. $assign_data['page'] = $show;
  166. $assign_data['list'] = $list;
  167. $assign_data['pager'] = $Page;
  168. $assign_data['typeid'] = $typeid;
  169. $assign_data['tab'] = input('param.tab/d', 3);// 选项卡
  170. $assign_data['archives_flags'] = model('ArchivesFlag')->getList();// 文档属性
  171. $assign_data['arctype_info'] = $typeid > 0 ? Db::name('arctype')->field('typename')->find($typeid) : [];// 当前栏目信息
  172. $this->assign($assign_data);
  173. return $this->fetch();
  174. }
  175. /**
  176. * 添加
  177. */
  178. public function add()
  179. {
  180. $admin_info = session('admin_info');
  181. $auth_role_info = $admin_info['auth_role_info'];
  182. $this->assign('auth_role_info', $auth_role_info);
  183. $this->assign('admin_info', $admin_info);
  184. if (IS_POST) {
  185. $post = input('post.');
  186. model('Archives')->editor_auto_210607($post);
  187. /* 处理TAG标签 */
  188. if (!empty($post['tags_new'])) {
  189. $post['tags'] = !empty($post['tags']) ? $post['tags'] . ',' . $post['tags_new'] : $post['tags_new'];
  190. unset($post['tags_new']);
  191. }
  192. $post['tags'] = explode(',', $post['tags']);
  193. $post['tags'] = array_unique($post['tags']);
  194. $post['tags'] = implode(',', $post['tags']);
  195. /* END */
  196. $content = empty($post['addonFieldExt']['content']) ? '' : htmlspecialchars_decode($post['addonFieldExt']['content']);
  197. // 根据标题自动提取相关的关键字
  198. $seo_keywords = $post['seo_keywords'];
  199. if (!empty($seo_keywords)) {
  200. $seo_keywords = str_replace(',', ',', $seo_keywords);
  201. } else {
  202. // $seo_keywords = get_split_word($post['title'], $content);
  203. }
  204. // 自动获取内容第一张图片作为封面图
  205. $is_remote = !empty($post['is_remote']) ? $post['is_remote'] : 0;
  206. $litpic = '';
  207. if ($is_remote == 1) {
  208. $litpic = $post['litpic_remote'];
  209. } else {
  210. $litpic = $post['litpic_local'];
  211. }
  212. if (empty($litpic)) {
  213. $litpic = get_html_first_imgurl($content);
  214. }
  215. $post['litpic'] = $litpic;
  216. /*是否有封面图*/
  217. if (empty($post['litpic'])) {
  218. $is_litpic = 0; // 无封面图
  219. } else {
  220. $is_litpic = 1; // 有封面图
  221. }
  222. // SEO描述
  223. $seo_description = '';
  224. if (empty($post['seo_description']) && !empty($content)) {
  225. $seo_description = @msubstr(checkStrHtml($content), 0, config('global.arc_seo_description_length'), false);
  226. } else {
  227. $seo_description = $post['seo_description'];
  228. }
  229. // 外部链接跳转
  230. $jumplinks = '';
  231. $is_jump = isset($post['is_jump']) ? $post['is_jump'] : 0;
  232. if (intval($is_jump) > 0) {
  233. $jumplinks = $post['jumplinks'];
  234. }
  235. // 模板文件,如果文档模板名与栏目指定的一致,默认就为空。让它跟随栏目的指定而变
  236. if ($post['type_tempview'] == $post['tempview']) {
  237. unset($post['type_tempview']);
  238. unset($post['tempview']);
  239. }
  240. //处理自定义文件名,仅由字母数字下划线和短横杆组成,大写强制转换为小写
  241. $htmlfilename = trim($post['htmlfilename']);
  242. if (!empty($htmlfilename)) {
  243. $htmlfilename = preg_replace("/[^\x{4e00}-\x{9fa5}\w\-]+/u", "-", $htmlfilename);
  244. // $htmlfilename = strtolower($htmlfilename);
  245. //判断是否存在相同的自定义文件名
  246. $map = [
  247. 'htmlfilename' => $htmlfilename,
  248. 'lang' => $this->admin_lang,
  249. ];
  250. if (!empty($post['typeid'])) {
  251. $map['typeid'] = array('eq', $post['typeid']);
  252. }
  253. $filenameCount = Db::name('archives')->where($map)->count();
  254. if (!empty($filenameCount)) {
  255. $this->error("同栏目下,自定义文件名已存在!");
  256. } else if (preg_match('/^(\d+)$/i', $htmlfilename)) {
  257. $this->error("自定义文件名不能纯数字,会与文档ID冲突!");
  258. }
  259. } else {
  260. // 处理外贸链接
  261. if (is_dir('./weapp/Waimao/')) {
  262. $waimaoLogic = new \weapp\Waimao\logic\WaimaoLogic;
  263. $waimaoLogic->get_new_htmlfilename($htmlfilename, $post, 'add', $this->globalConfig);
  264. }
  265. }
  266. $post['htmlfilename'] = $htmlfilename;
  267. //做自动通过审核判断
  268. if ($admin_info['role_id'] > 0 && $auth_role_info['check_oneself'] < 1) {
  269. $post['arcrank'] = -1;
  270. }
  271. // 副栏目
  272. if (isset($post['stypeid'])) {
  273. $post['stypeid'] = preg_replace('/([^\d\,\,]+)/i', ',', $post['stypeid']);
  274. $post['stypeid'] = str_replace(',', ',', $post['stypeid']);
  275. $post['stypeid'] = trim($post['stypeid'], ',');
  276. $post['stypeid'] = str_replace(",{$post['typeid']},", ',', ",{$post['stypeid']},");
  277. $post['stypeid'] = trim($post['stypeid'], ',');
  278. }
  279. // --存储数据
  280. $newData = array(
  281. 'typeid'=> empty($post['typeid']) ? 0 : $post['typeid'],
  282. 'channel' => $this->channeltype,
  283. 'is_b' => empty($post['is_b']) ? 0 : $post['is_b'],
  284. 'is_head' => empty($post['is_head']) ? 0 : $post['is_head'],
  285. 'is_special' => empty($post['is_special']) ? 0 : $post['is_special'],
  286. 'is_recom' => empty($post['is_recom']) ? 0 : $post['is_recom'],
  287. 'is_roll' => empty($post['is_roll']) ? 0 : $post['is_roll'],
  288. 'is_slide' => empty($post['is_slide']) ? 0 : $post['is_slide'],
  289. 'is_diyattr' => empty($post['is_diyattr']) ? 0 : $post['is_diyattr'],
  290. 'editor_remote_img_local'=> empty($post['editor_remote_img_local']) ? 0 : $post['editor_remote_img_local'],
  291. 'editor_img_clear_link' => empty($post['editor_img_clear_link']) ? 0 : $post['editor_img_clear_link'],
  292. 'is_jump' => $is_jump,
  293. 'is_litpic' => $is_litpic,
  294. 'jumplinks' => $jumplinks,
  295. 'origin' => empty($post['origin']) ? '网络' : $post['origin'],
  296. 'seo_keywords' => $seo_keywords,
  297. 'seo_description' => $seo_description,
  298. 'admin_id' => session('admin_info.admin_id'),
  299. 'lang' => $this->admin_lang,
  300. 'sort_order' => 100,
  301. 'crossed_price' => empty($post['crossed_price']) ? 0 : floatval($post['crossed_price']),
  302. 'add_time' => strtotime($post['add_time']),
  303. 'update_time' => strtotime($post['add_time']),
  304. );
  305. $data = array_merge($post, $newData);
  306. $aid = Db::name('archives')->insertGetId($data);
  307. $_POST['aid'] = $aid;
  308. if ($aid) {
  309. // ---------后置操作
  310. model('Images')->afterSave($aid, $data, 'add');
  311. // 添加查询执行语句到mysql缓存表
  312. model('SqlCacheTable')->InsertSqlCacheTable();
  313. // ---------end
  314. adminLog('新增图集:'.$data['title']);
  315. // 生成静态页面代码
  316. $successData = [
  317. 'aid' => $aid,
  318. 'tid' => $post['typeid'],
  319. ];
  320. $this->success("操作成功!", null, $successData);
  321. exit;
  322. }
  323. $this->error("操作失败!");
  324. exit;
  325. }
  326. $typeid = input('param.typeid/d', 0);
  327. $assign_data['typeid'] = $typeid; // 栏目ID
  328. // 栏目信息
  329. $arctypeInfo = Db::name('arctype')->find($typeid);
  330. /*允许发布文档列表的栏目*/
  331. $arctype_html = allow_release_arctype($typeid, array($this->channeltype));
  332. $assign_data['arctype_html'] = $arctype_html;
  333. /*--end*/
  334. // 阅读权限
  335. $arcrank_list = get_arcrank_list();
  336. $assign_data['arcrank_list'] = $arcrank_list;
  337. /*模板列表*/
  338. $archivesLogic = new \app\admin\logic\ArchivesLogic;
  339. $templateList = $archivesLogic->getTemplateList($this->nid);
  340. $this->assign('templateList', $templateList);
  341. /*--end*/
  342. /*默认模板文件*/
  343. $tempview = 'view_'.$this->nid.'.'.config('template.view_suffix');
  344. !empty($arctypeInfo['tempview']) && $tempview = $arctypeInfo['tempview'];
  345. $this->assign('tempview', $tempview);
  346. /*--end*/
  347. // 文档默认浏览量
  348. $globalConfig = tpCache('global');
  349. if (isset($globalConfig['other_arcclick']) && 0 <= $globalConfig['other_arcclick']) {
  350. $arcclick_arr = explode("|", $globalConfig['other_arcclick']);
  351. if (count($arcclick_arr) > 1) {
  352. $assign_data['rand_arcclick'] = mt_rand($arcclick_arr[0], $arcclick_arr[1]);
  353. } else {
  354. $assign_data['rand_arcclick'] = intval($arcclick_arr[0]);
  355. }
  356. }else{
  357. $arcclick_config['other_arcclick'] = '500|1000';
  358. tpCache('other', $arcclick_config);
  359. $assign_data['rand_arcclick'] = mt_rand(500, 1000);
  360. }
  361. // URL模式
  362. $tpcache = config('tpcache');
  363. $assign_data['seo_pseudo'] = !empty($tpcache['seo_pseudo']) ? $tpcache['seo_pseudo'] : 1;
  364. /*文档属性*/
  365. $assign_data['archives_flags'] = model('ArchivesFlag')->getList();
  366. $channelRow = Db::name('channeltype')->where('id', $this->channeltype)->find();
  367. $assign_data['channelRow'] = $channelRow;
  368. // 来源列表
  369. $system_originlist = tpSetting('system.system_originlist');
  370. $system_originlist = json_decode($system_originlist, true);
  371. $system_originlist = !empty($system_originlist) ? $system_originlist : [];
  372. $assign_data['system_originlist_str'] = implode(PHP_EOL, $system_originlist);
  373. $assign_data['system_originlist_0'] = !empty($system_originlist) ? $system_originlist[0] : "";
  374. // 多站点,当用站点域名访问后台,发布文档自动选择当前所属区域
  375. model('Citysite')->auto_location_select($assign_data);
  376. $this->assign($assign_data);
  377. return $this->fetch();
  378. }
  379. /**
  380. * 编辑
  381. */
  382. public function edit()
  383. {
  384. $admin_info = session('admin_info');
  385. $auth_role_info = $admin_info['auth_role_info'];
  386. $this->assign('auth_role_info', $auth_role_info);
  387. $this->assign('admin_info', $admin_info);
  388. if (IS_POST) {
  389. $post = input('post.');
  390. model('Archives')->editor_auto_210607($post);
  391. $post['aid'] = intval($post['aid']);
  392. /* 处理TAG标签 */
  393. if (!empty($post['tags_new'])) {
  394. $post['tags'] = !empty($post['tags']) ? $post['tags'] . ',' . $post['tags_new'] : $post['tags_new'];
  395. unset($post['tags_new']);
  396. }
  397. $post['tags'] = explode(',', $post['tags']);
  398. $post['tags'] = array_unique($post['tags']);
  399. $post['tags'] = implode(',', $post['tags']);
  400. /* END */
  401. $typeid = input('post.typeid/d', 0);
  402. $content = empty($post['addonFieldExt']['content']) ? '' : htmlspecialchars_decode($post['addonFieldExt']['content']);
  403. // 根据标题自动提取相关的关键字
  404. $seo_keywords = $post['seo_keywords'];
  405. if (!empty($seo_keywords)) {
  406. $seo_keywords = str_replace(',', ',', $seo_keywords);
  407. } else {
  408. // $seo_keywords = get_split_word($post['title'], $content);
  409. }
  410. // 自动获取内容第一张图片作为封面图
  411. $is_remote = !empty($post['is_remote']) ? $post['is_remote'] : 0;
  412. $litpic = '';
  413. if ($is_remote == 1) {
  414. $litpic = $post['litpic_remote'];
  415. } else {
  416. $litpic = $post['litpic_local'];
  417. }
  418. if (empty($litpic)) {
  419. $litpic = get_html_first_imgurl($content);
  420. }
  421. $post['litpic'] = $litpic;
  422. /*是否有封面图*/
  423. if (empty($post['litpic'])) {
  424. $is_litpic = 0; // 无封面图
  425. } else {
  426. $is_litpic = !empty($post['is_litpic']) ? $post['is_litpic'] : 0; // 有封面图
  427. }
  428. // 勾选后SEO描述将随正文内容更新
  429. $basic_update_seo_description = empty($post['basic_update_seo_description']) ? 0 : 1;
  430. if (is_language()) {
  431. $langRow = \think\Db::name('language')->order('id asc')
  432. ->cache(true, EYOUCMS_CACHE_TIME, 'language')
  433. ->select();
  434. foreach ($langRow as $key => $val) {
  435. tpCache('basic', ['basic_update_seo_description'=>$basic_update_seo_description], $val['mark']);
  436. }
  437. } else {
  438. tpCache('basic', ['basic_update_seo_description'=>$basic_update_seo_description]);
  439. }
  440. /*--end*/
  441. // SEO描述
  442. $seo_description = '';
  443. if (!empty($basic_update_seo_description) || empty($post['seo_description'])) {
  444. $seo_description = @msubstr(checkStrHtml($content), 0, config('global.arc_seo_description_length'), false);
  445. } else {
  446. $seo_description = $post['seo_description'];
  447. }
  448. // --外部链接
  449. $jumplinks = '';
  450. $is_jump = isset($post['is_jump']) ? $post['is_jump'] : 0;
  451. if (intval($is_jump) > 0) {
  452. $jumplinks = $post['jumplinks'];
  453. }
  454. // 模板文件,如果文档模板名与栏目指定的一致,默认就为空。让它跟随栏目的指定而变
  455. if ($post['type_tempview'] == $post['tempview']) {
  456. unset($post['type_tempview']);
  457. unset($post['tempview']);
  458. }
  459. //处理自定义文件名,仅由字母数字下划线和短横杆组成,大写强制转换为小写
  460. $htmlfilename = trim($post['htmlfilename']);
  461. if (!empty($htmlfilename)) {
  462. $htmlfilename = preg_replace("/[^\x{4e00}-\x{9fa5}\w\-]+/u", "-", $htmlfilename);
  463. // $htmlfilename = strtolower($htmlfilename);
  464. //判断是否存在相同的自定义文件名
  465. $map = [
  466. 'aid' => ['NEQ', $post['aid']],
  467. 'htmlfilename' => $htmlfilename,
  468. 'lang' => $this->admin_lang,
  469. ];
  470. if (!empty($post['typeid'])) {
  471. $map['typeid'] = array('eq', $post['typeid']);
  472. }
  473. $filenameCount = Db::name('archives')->where($map)->count();
  474. if (!empty($filenameCount)) {
  475. $this->error("同栏目下,自定义文件名已存在!");
  476. } else if (preg_match('/^(\d+)$/i', $htmlfilename)) {
  477. $this->error("自定义文件名不能纯数字,会与文档ID冲突!");
  478. }
  479. } else {
  480. // 处理外贸链接
  481. if (is_dir('./weapp/Waimao/')) {
  482. $waimaoLogic = new \weapp\Waimao\logic\WaimaoLogic;
  483. $waimaoLogic->get_new_htmlfilename($htmlfilename, $post, 'edit', $this->globalConfig);
  484. }
  485. }
  486. $post['htmlfilename'] = $htmlfilename;
  487. // 同步栏目切换模型之后的文档模型
  488. $channel = Db::name('arctype')->where(['id'=>$typeid])->getField('current_channel');
  489. //做未通过审核文档不允许修改文档状态操作
  490. if ($admin_info['role_id'] > 0 && $auth_role_info['check_oneself'] < 1) {
  491. $old_archives_arcrank = Db::name('archives')->where(['aid' => $post['aid']])->getField("arcrank");
  492. if ($old_archives_arcrank < 0) {
  493. unset($post['arcrank']);
  494. }
  495. }
  496. // 副栏目
  497. if (isset($post['stypeid'])) {
  498. $post['stypeid'] = preg_replace('/([^\d\,\,]+)/i', ',', $post['stypeid']);
  499. $post['stypeid'] = str_replace(',', ',', $post['stypeid']);
  500. $post['stypeid'] = trim($post['stypeid'], ',');
  501. $post['stypeid'] = str_replace(",{$typeid},", ',', ",{$post['stypeid']},");
  502. $post['stypeid'] = trim($post['stypeid'], ',');
  503. }
  504. // --存储数据
  505. $newData = array(
  506. 'typeid'=> $typeid,
  507. 'channel' => $channel,
  508. 'is_b' => empty($post['is_b']) ? 0 : $post['is_b'],
  509. 'is_head' => empty($post['is_head']) ? 0 : $post['is_head'],
  510. 'is_special' => empty($post['is_special']) ? 0 : $post['is_special'],
  511. 'is_recom' => empty($post['is_recom']) ? 0 : $post['is_recom'],
  512. 'is_roll' => empty($post['is_roll']) ? 0 : $post['is_roll'],
  513. 'is_slide' => empty($post['is_slide']) ? 0 : $post['is_slide'],
  514. 'is_diyattr' => empty($post['is_diyattr']) ? 0 : $post['is_diyattr'],
  515. 'editor_remote_img_local'=> empty($post['editor_remote_img_local']) ? 0 : $post['editor_remote_img_local'],
  516. 'editor_img_clear_link' => empty($post['editor_img_clear_link']) ? 0 : $post['editor_img_clear_link'],
  517. 'is_jump' => $is_jump,
  518. 'is_litpic' => $is_litpic,
  519. 'jumplinks' => $jumplinks,
  520. 'seo_keywords' => $seo_keywords,
  521. 'seo_description' => $seo_description,
  522. 'crossed_price' => empty($post['crossed_price']) ? 0 : floatval($post['crossed_price']),
  523. 'add_time' => strtotime($post['add_time']),
  524. 'update_time' => getTime(),
  525. );
  526. $data = array_merge($post, $newData);
  527. $r = Db::name('archives')->where([
  528. 'aid' => $data['aid'],
  529. 'lang' => $this->admin_lang,
  530. ])->update($data);
  531. if ($r) {
  532. // ---------后置操作
  533. model('Images')->afterSave($data['aid'], $data, 'edit');
  534. // ---------end
  535. adminLog('编辑图集:'.$data['title']);
  536. // 生成静态页面代码
  537. $successData = [
  538. 'aid' => $data['aid'],
  539. 'tid' => $typeid,
  540. ];
  541. $this->success("操作成功!", null, $successData);
  542. exit;
  543. }
  544. $this->error("操作失败!");
  545. exit;
  546. }
  547. $assign_data = array();
  548. $id = input('id/d');
  549. $info = model('Images')->getInfo($id);
  550. if (empty($info)) {
  551. $this->error('数据不存在,请联系管理员!');
  552. exit;
  553. }
  554. /*兼容采集没有归属栏目的文档*/
  555. if (empty($info['channel'])) {
  556. $channelRow = Db::name('channeltype')->field('id as channel')
  557. ->where('id',$this->channeltype)
  558. ->find();
  559. $info = array_merge($info, $channelRow);
  560. }
  561. /*--end*/
  562. $typeid = $info['typeid'];
  563. $assign_data['typeid'] = $typeid;
  564. // 副栏目
  565. $stypeid_arr = [];
  566. if (!empty($info['stypeid'])) {
  567. $info['stypeid'] = trim($info['stypeid'], ',');
  568. $stypeid_arr = Db::name('arctype')->field('id,typename')->where(['id'=>['IN', $info['stypeid']],'is_del'=>0])->select();
  569. }
  570. $assign_data['stypeid_arr'] = $stypeid_arr;
  571. // 栏目信息
  572. $arctypeInfo = Db::name('arctype')->find($typeid);
  573. $info['channel'] = $arctypeInfo['current_channel'];
  574. if (is_http_url($info['litpic'])) {
  575. $info['is_remote'] = 1;
  576. $info['litpic_remote'] = handle_subdir_pic($info['litpic']);
  577. } else {
  578. $info['is_remote'] = 0;
  579. $info['litpic_local'] = handle_subdir_pic($info['litpic']);
  580. }
  581. // SEO描述
  582. // if (!empty($info['seo_description'])) {
  583. // $info['seo_description'] = @msubstr(checkStrHtml($info['seo_description']), 0, config('global.arc_seo_description_length'), false);
  584. // }
  585. $assign_data['field'] = $info;
  586. // 图集相册
  587. $imgupload_list = model('ImagesUpload')->getImgUpload($id);
  588. foreach ($imgupload_list as $key => $val) {
  589. $imgupload_list[$key]['image_url'] = handle_subdir_pic($val['image_url']); // 支持子目录
  590. }
  591. $assign_data['imgupload_list'] = $imgupload_list;
  592. /*允许发布文档列表的栏目,文档所在模型以栏目所在模型为主,兼容切换模型之后的数据编辑*/
  593. $arctype_html = allow_release_arctype($typeid, array($info['channel']));
  594. $assign_data['arctype_html'] = $arctype_html;
  595. /*--end*/
  596. // 阅读权限
  597. $arcrank_list = get_arcrank_list();
  598. $assign_data['arcrank_list'] = $arcrank_list;
  599. /*模板列表*/
  600. $archivesLogic = new \app\admin\logic\ArchivesLogic;
  601. $templateList = $archivesLogic->getTemplateList($this->nid);
  602. $this->assign('templateList', $templateList);
  603. /*--end*/
  604. /*默认模板文件*/
  605. $tempview = $info['tempview'];
  606. empty($tempview) && $tempview = $arctypeInfo['tempview'];
  607. $this->assign('tempview', $tempview);
  608. /*--end*/
  609. // URL模式
  610. $tpcache = config('tpcache');
  611. $assign_data['seo_pseudo'] = !empty($tpcache['seo_pseudo']) ? $tpcache['seo_pseudo'] : 1;
  612. /*文档属性*/
  613. $assign_data['archives_flags'] = model('ArchivesFlag')->getList();
  614. $channelRow = Db::name('channeltype')->where('id', $this->channeltype)->find();
  615. $assign_data['channelRow'] = $channelRow;
  616. // 来源列表
  617. $system_originlist = tpSetting('system.system_originlist');
  618. $system_originlist = json_decode($system_originlist, true);
  619. $system_originlist = !empty($system_originlist) ? $system_originlist : [];
  620. $assign_data['system_originlist_str'] = implode(PHP_EOL, $system_originlist);
  621. $this->assign($assign_data);
  622. return $this->fetch();
  623. }
  624. /**
  625. * 删除
  626. */
  627. public function del()
  628. {
  629. if (IS_POST) {
  630. $archivesLogic = new \app\admin\logic\ArchivesLogic;
  631. $archivesLogic->del([], 0, 'images');
  632. }
  633. }
  634. /**
  635. * 删除图集相册图
  636. */
  637. public function del_imgupload()
  638. {
  639. if (IS_POST) {
  640. $filename= input('filename/s');
  641. $aid = input('aid/d');
  642. if (!empty($filename) && !empty($aid)) {
  643. Db::name('images_upload')->where('image_url','like','%'.$filename)->where('aid',$aid)->delete();
  644. }
  645. }
  646. }
  647. //帮助
  648. public function help()
  649. {
  650. $system_originlist = tpSetting('system.system_originlist');
  651. $system_originlist = json_decode($system_originlist, true);
  652. $system_originlist = !empty($system_originlist) ? $system_originlist : [];
  653. $assign_data['system_originlist_str'] = implode(PHP_EOL, $system_originlist);
  654. $this->assign($assign_data);
  655. return $this->fetch();
  656. }
  657. }