Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Custom.php 50KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193
  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 Custom extends Base
  17. {
  18. // 模型标识
  19. public $nid = '';
  20. // 模型ID
  21. public $channeltype = 0;
  22. // 模型附加表
  23. public $table = '';
  24. /*
  25. * 初始化操作
  26. */
  27. public function _initialize()
  28. {
  29. parent::_initialize();
  30. $this->archives_db = Db::name('archives');
  31. $this->channeltype = input('param.channel/d', 0);
  32. $channeltypeRow = Db::name('channeltype')->field('nid,table')->where(['id'=>['eq',$this->channeltype]])->find();
  33. if (empty($this->channeltype) || empty($channeltypeRow)) {
  34. $this->error('自定义模型ID丢失,打开失败!');
  35. }
  36. $this->nid = $channeltypeRow['nid'];
  37. $this->table = $channeltypeRow['table'];
  38. $this->assign('nid', $this->nid);
  39. $this->assign('table', $this->table);
  40. $this->assign('channeltype', $this->channeltype);
  41. // 返回页面
  42. $paramTypeid = input('param.typeid/d', 0);
  43. $this->callback_url = url('Custom/index', ['lang' => $this->admin_lang, 'channel'=>$this->channeltype, 'typeid' => $paramTypeid]);
  44. $this->assign('callback_url', $this->callback_url);
  45. }
  46. //列表
  47. public function index()
  48. {
  49. $assign_data = $condition = [];
  50. // 获取到所有GET参数
  51. $param = input('param.');
  52. $typeid = input('typeid/d', 0);
  53. // 搜索、筛选查询条件处理
  54. foreach (['keywords', 'typeid', 'flag', 'is_release','province_id','city_id','area_id'] as $key) {
  55. if ($key == 'typeid' && empty($param['typeid'])) {
  56. $typeids = Db::name('arctype')->where('current_channel', $this->channeltype)->column('id');
  57. $condition['a.typeid'] = array('IN', $typeids);
  58. }
  59. if (isset($param[$key]) && $param[$key] !== '') {
  60. if ($key == 'keywords') {
  61. $keywords = $param[$key];
  62. $condition['a.title'] = array('LIKE', "%{$param[$key]}%");
  63. } else if ($key == 'typeid') {
  64. $typeid = $param[$key];
  65. $hasRow = model('Arctype')->getHasChildren($typeid);
  66. $typeids = get_arr_column($hasRow, 'id');
  67. // 权限控制 by 小虎哥
  68. $admin_info = session('admin_info');
  69. if (0 < intval($admin_info['role_id'])) {
  70. $auth_role_info = $admin_info['auth_role_info'];
  71. if (!empty($typeid) && !empty($auth_role_info) && !empty($auth_role_info['permission']['arctype'])) {
  72. $typeids = array_intersect($typeids, $auth_role_info['permission']['arctype']);
  73. }
  74. }
  75. $condition['a.typeid'] = array('IN', $typeids);
  76. } else if ($key == 'flag') {
  77. if ('is_release' == $param[$key]) {
  78. $condition['a.users_id'] = array('gt', 0);
  79. } else {
  80. $FlagNew = $param[$key];
  81. $condition['a.'.$param[$key]] = array('eq', 1);
  82. }
  83. } else if (in_array($key, ['province_id','city_id','area_id'])) {
  84. if (!empty($param['area_id'])) {
  85. $condition['a.area_id'] = $param['area_id'];
  86. } else if (!empty($param['city_id'])) {
  87. $condition['a.city_id'] = $param['city_id'];
  88. } else if (!empty($param['province_id'])) {
  89. $condition['a.province_id'] = $param['province_id'];
  90. }
  91. } else {
  92. $condition['a.'.$key] = array('eq', $param[$key]);
  93. }
  94. }
  95. }
  96. // 权限控制 by 小虎哥
  97. $admin_info = session('admin_info');
  98. if (0 < intval($admin_info['role_id'])) {
  99. $auth_role_info = $admin_info['auth_role_info'];
  100. if (!empty($auth_role_info) && isset($auth_role_info['only_oneself']) && 1 == $auth_role_info['only_oneself']) {
  101. $condition['a.admin_id'] = $admin_info['admin_id'];
  102. }
  103. }
  104. // 时间检索条件
  105. $begin = strtotime(input('add_time_begin'));
  106. $end = strtotime(input('add_time_end'));
  107. if ($begin > 0 && $end > 0) {
  108. $condition['a.add_time'] = array('between', "$begin, $end");
  109. } else if ($begin > 0) {
  110. $condition['a.add_time'] = array('egt', $begin);
  111. } else if ($end > 0) {
  112. $condition['a.add_time'] = array('elt', $end);
  113. }
  114. // 必要条件
  115. $condition['a.channel'] = array('eq', $this->channeltype);
  116. $condition['a.lang'] = array('eq', $this->admin_lang);
  117. $condition['a.is_del'] = array('eq', 0);
  118. $conditionNew = "(a.users_id = 0 OR (a.users_id > 0 AND a.arcrank >= 0))";
  119. // 自定义排序
  120. $orderby = input('param.orderby/s');
  121. $orderway = input('param.orderway/s');
  122. if (!empty($orderby) && !empty($orderway)) {
  123. $orderby = "a.{$orderby} {$orderway}, a.aid desc";
  124. } else {
  125. $orderby = "a.aid desc";
  126. }
  127. // 数据查询,搜索出主键ID的值
  128. $SqlQuery = $this->archives_db->alias('a')->where($condition)->where($conditionNew)->fetchSql()->count('aid');
  129. $count = Db::name('sql_cache_table')->where(['sql_md5'=>md5($SqlQuery)])->getField('sql_result');
  130. $count = ($count < 0) ? 0 : $count;
  131. if (empty($count)) {
  132. $count = $this->archives_db->alias('a')->where($condition)->where($conditionNew)->count('aid');
  133. /*添加查询执行语句到mysql缓存表*/
  134. $SqlCacheTable = [
  135. 'sql_name' => '|' . $this->table . '|' . $this->channeltype . '|',
  136. 'sql_result' => $count,
  137. 'sql_md5' => md5($SqlQuery),
  138. 'sql_query' => $SqlQuery,
  139. 'add_time' => getTime(),
  140. 'update_time' => getTime(),
  141. ];
  142. if (!empty($FlagNew)) $SqlCacheTable['sql_name'] = $SqlCacheTable['sql_name'] . $FlagNew . '|';
  143. if (!empty($typeid)) $SqlCacheTable['sql_name'] = $SqlCacheTable['sql_name'] . $typeid . '|';
  144. if (!empty($keywords)) $SqlCacheTable['sql_name'] = '|custom|keywords|';
  145. Db::name('sql_cache_table')->insertGetId($SqlCacheTable);
  146. /*END*/
  147. }
  148. $Page = new Page($count, config('paginate.list_rows'));
  149. $list = [];
  150. if (!empty($count)) {
  151. $limit = $count > config('paginate.list_rows') ? $Page->firstRow.','.$Page->listRows : $count;
  152. $list = $this->archives_db
  153. ->field("a.aid")
  154. ->alias('a')
  155. ->where($condition)
  156. ->where($conditionNew)
  157. ->order($orderby)
  158. ->limit($limit)
  159. ->getAllWithIndex('aid');
  160. if (!empty($list)) {
  161. $aids = array_keys($list);
  162. $fields = "b.*, a.*, a.aid as aid";
  163. $row = $this->archives_db
  164. ->field($fields)
  165. ->alias('a')
  166. ->join('__ARCTYPE__ b', 'a.typeid = b.id', 'LEFT')
  167. ->where('a.aid', 'in', $aids)
  168. ->getAllWithIndex('aid');
  169. foreach ($list as $key => $val) {
  170. $row[$val['aid']]['arcurl'] = get_arcurl($row[$val['aid']]);
  171. $row[$val['aid']]['litpic'] = handle_subdir_pic($row[$val['aid']]['litpic']);
  172. $list[$key] = $row[$val['aid']];
  173. }
  174. }
  175. }
  176. $show = $Page->show();
  177. $assign_data['page'] = $show;
  178. $assign_data['list'] = $list;
  179. $assign_data['pager'] = $Page;
  180. $assign_data['typeid'] = $typeid;
  181. $assign_data['tab'] = input('param.tab/d', 3);// 选项卡
  182. $assign_data['archives_flags'] = model('ArchivesFlag')->getList();// 文档属性
  183. $assign_data['arctype_info'] = $typeid > 0 ? Db::name('arctype')->field('typename')->find($typeid) : [];// 当前栏目信息
  184. $this->assign($assign_data);
  185. return $this->fetch();
  186. }
  187. /**
  188. * 添加
  189. */
  190. public function add()
  191. {
  192. $admin_info = session('admin_info');
  193. $auth_role_info = $admin_info['auth_role_info'];
  194. $this->assign('auth_role_info', $auth_role_info);
  195. $this->assign('admin_info', $admin_info);
  196. if (IS_POST) {
  197. $post = input('post.');
  198. model('Archives')->editor_auto_210607($post);
  199. /* 处理TAG标签 */
  200. if (!empty($post['tags_new'])) {
  201. $post['tags'] = !empty($post['tags']) ? $post['tags'] . ',' . $post['tags_new'] : $post['tags_new'];
  202. unset($post['tags_new']);
  203. }
  204. $post['tags'] = explode(',', $post['tags']);
  205. $post['tags'] = array_unique($post['tags']);
  206. $post['tags'] = implode(',', $post['tags']);
  207. /* END */
  208. /*获取第一个html类型的内容,作为文档的内容来截取SEO描述*/
  209. $contentField = Db::name('channelfield')->where([
  210. 'channel_id' => $this->channeltype,
  211. 'dtype' => 'htmltext',
  212. ])->getField('name');
  213. $content = empty($post['addonFieldExt'][$contentField]) ? '' : htmlspecialchars_decode($post['addonFieldExt'][$contentField]);
  214. /*--end*/
  215. // 根据标题自动提取相关的关键字
  216. $seo_keywords = $post['seo_keywords'];
  217. if (!empty($seo_keywords)) {
  218. $seo_keywords = str_replace(',', ',', $seo_keywords);
  219. } else {
  220. // $seo_keywords = get_split_word($post['title'], $content);
  221. }
  222. // 自动获取内容第一张图片作为封面图
  223. $is_remote = !empty($post['is_remote']) ? $post['is_remote'] : 0;
  224. $litpic = '';
  225. if ($is_remote == 1) {
  226. $litpic = $post['litpic_remote'];
  227. } else {
  228. $litpic = $post['litpic_local'];
  229. }
  230. if (empty($litpic)) {
  231. $litpic = get_html_first_imgurl($content);
  232. }
  233. $post['litpic'] = $litpic;
  234. /*是否有封面图*/
  235. if (empty($post['litpic'])) {
  236. $is_litpic = 0; // 无封面图
  237. } else {
  238. $is_litpic = 1; // 有封面图
  239. }
  240. // SEO描述
  241. $seo_description = '';
  242. if (empty($post['seo_description']) && !empty($content)) {
  243. $seo_description = @msubstr(checkStrHtml($content), 0, config('global.arc_seo_description_length'), false);
  244. } else {
  245. $seo_description = $post['seo_description'];
  246. }
  247. // 外部链接跳转
  248. $jumplinks = '';
  249. $is_jump = isset($post['is_jump']) ? $post['is_jump'] : 0;
  250. if (intval($is_jump) > 0) {
  251. $jumplinks = $post['jumplinks'];
  252. }
  253. // 模板文件,如果文档模板名与栏目指定的一致,默认就为空。让它跟随栏目的指定而变
  254. if ($post['type_tempview'] == $post['tempview']) {
  255. unset($post['type_tempview']);
  256. unset($post['tempview']);
  257. }
  258. //处理自定义文件名,仅由字母数字下划线和短横杆组成,大写强制转换为小写
  259. $htmlfilename = trim($post['htmlfilename']);
  260. if (!empty($htmlfilename)) {
  261. $htmlfilename = preg_replace("/[^\x{4e00}-\x{9fa5}\w\-]+/u", "-", $htmlfilename);
  262. // $htmlfilename = strtolower($htmlfilename);
  263. //判断是否存在相同的自定义文件名
  264. $map = [
  265. 'htmlfilename' => $htmlfilename,
  266. 'lang' => $this->admin_lang,
  267. ];
  268. if (!empty($post['typeid'])) {
  269. $map['typeid'] = array('eq', $post['typeid']);
  270. }
  271. $filenameCount = Db::name('archives')->where($map)->count();
  272. if (!empty($filenameCount)) {
  273. $this->error("同栏目下,自定义文件名已存在!");
  274. } else if (preg_match('/^(\d+)$/i', $htmlfilename)) {
  275. $this->error("自定义文件名不能纯数字,会与文档ID冲突!");
  276. }
  277. } else {
  278. // 处理外贸链接
  279. if (is_dir('./weapp/Waimao/')) {
  280. $waimaoLogic = new \weapp\Waimao\logic\WaimaoLogic;
  281. $waimaoLogic->get_new_htmlfilename($htmlfilename, $post, 'add', $this->globalConfig);
  282. }
  283. }
  284. $post['htmlfilename'] = $htmlfilename;
  285. //做自动通过审核判断
  286. if ($admin_info['role_id'] > 0 && $auth_role_info['check_oneself'] < 1) {
  287. $post['arcrank'] = -1;
  288. }
  289. // 副栏目
  290. if (isset($post['stypeid'])) {
  291. $post['stypeid'] = preg_replace('/([^\d\,\,]+)/i', ',', $post['stypeid']);
  292. $post['stypeid'] = str_replace(',', ',', $post['stypeid']);
  293. $post['stypeid'] = trim($post['stypeid'], ',');
  294. $post['stypeid'] = str_replace(",{$post['typeid']},", ',', ",{$post['stypeid']},");
  295. $post['stypeid'] = trim($post['stypeid'], ',');
  296. }
  297. //查询排序 等级
  298. $sort_order = Db::name('archives')->where('aid','=',(int)$post['level_group_name'])->value('sort_order');
  299. //获取文档文件后缀
  300. if(!empty($post['addonFieldExt']['down_eyou_remote'])){
  301. $file = explode('.',$post['addonFieldExt']['down_eyou_remote']);
  302. $ext = end($file);
  303. }else{
  304. $ext = '';
  305. }
  306. // --存储数据
  307. $newData = array(
  308. 'typeid'=> empty($post['typeid']) ? 0 : $post['typeid'],
  309. 'channel' => $this->channeltype,
  310. 'is_b' => empty($post['is_b']) ? 0 : $post['is_b'],
  311. 'is_head' => empty($post['is_head']) ? 0 : $post['is_head'],
  312. 'is_special' => empty($post['is_special']) ? 0 : $post['is_special'],
  313. 'is_recom' => empty($post['is_recom']) ? 0 : $post['is_recom'],
  314. 'is_roll' => empty($post['is_roll']) ? 0 : $post['is_roll'],
  315. 'is_slide' => empty($post['is_slide']) ? 0 : $post['is_slide'],
  316. 'is_diyattr' => empty($post['is_diyattr']) ? 0 : $post['is_diyattr'],
  317. 'editor_remote_img_local'=> empty($post['editor_remote_img_local']) ? 0 : $post['editor_remote_img_local'],
  318. 'editor_img_clear_link' => empty($post['editor_img_clear_link']) ? 0 : $post['editor_img_clear_link'],
  319. 'is_jump' => $is_jump,
  320. 'is_litpic' => $is_litpic,
  321. 'jumplinks' => $jumplinks,
  322. 'origin' => empty($post['origin']) ? '网络' : $post['origin'],
  323. 'seo_keywords' => $seo_keywords,
  324. 'seo_description' => $seo_description,
  325. 'admin_id' => session('admin_info.admin_id'),
  326. 'lang' => $this->admin_lang,
  327. 'sort_order' => 100,
  328. 'crossed_price' => empty($post['crossed_price']) ? 0 : floatval($post['crossed_price']),
  329. 'add_time' => strtotime($post['add_time']),
  330. 'update_time' => strtotime($post['add_time']),
  331. 'product_id' => (int)$post['product_id'], //增加
  332. 'lunwen_id' => (int)$post['lunwen_id'], //增加
  333. 'level_group_id' => (int)$post['level_group_id'],
  334. 'level_id' => (int)$post['level_group_name'],
  335. 'level' => (int)$sort_order,
  336. 'product_tag_id' => (int)$post['product_tag_id'],
  337. 'area_tag_id' => (int)$post['area_tag_id'],
  338. 'ext' => $ext
  339. );
  340. $data = array_merge($post, $newData);
  341. $aid = $this->archives_db->insertGetId($data);
  342. $_POST['aid'] = $aid;
  343. if ($aid) {
  344. // ---------后置操作
  345. model('Custom')->afterSave($aid, $data, 'add', $this->table);
  346. // 添加查询执行语句到mysql缓存表
  347. model('SqlCacheTable')->InsertSqlCacheTable();
  348. // ---------end
  349. adminLog('新增数据:'.$data['title']);
  350. //新增序列号 (论文期刊和论文模板)
  351. //只考虑新增场景 其他的用api修复
  352. if((int)$newData['typeid'] === 116 || (int)$newData['typeid'] === 123 || (int)$newData['typeid'] === 127 || (int)$newData['typeid'] === 128){
  353. $last = Db::name('seo_number')->where([
  354. "type" => 4,
  355. "tid" => (int)$post['typeid'],
  356. 'topid' => 0,
  357. 'parentid' => 0,
  358. 'area_id' => 0,
  359. ])->order('number desc')->find();
  360. if(empty($last['number'])){
  361. $num = 1;
  362. }else{
  363. $num = (int)$last['number'] + 1;
  364. }
  365. $in_data = [
  366. "type" => 4, //产品类型
  367. "aid" => $aid, //实际的ID
  368. "tid" => (int)$post['typeid'], //属于哪个栏目的
  369. 'is_del' => 0,
  370. 'is_kan' => 0, // 0正常 1审核
  371. 'status' => 1,
  372. 'area_id' => 0,
  373. 'topid' => 0,
  374. 'parentid' => 0,
  375. 'number' => $num
  376. ];
  377. Db::name('seo_number')->insert($in_data);
  378. }else if((int)$newData['typeid'] === 126 || (int)$newData['typeid'] === 825 || (int)$newData['typeid'] === 826){
  379. //资料文档
  380. $last = Db::name('seo_number')->where([
  381. "type" => 5,
  382. "tid" => (int)$post['typeid'],
  383. 'topid' => 0,
  384. 'parentid' => 0,
  385. 'area_id' => (int)$post['province_id'], //如果是0的话 后续也不能改
  386. ])->order('number desc')->find();
  387. if(empty($last['number'])){
  388. $num = 1;
  389. }else{
  390. $num = (int)$last['number'] + 1;
  391. }
  392. $in_data = [
  393. "type" => 5, //产品类型
  394. "aid" => $aid, //实际的ID
  395. "tid" => (int)$post['typeid'], //属于哪个栏目的
  396. 'is_del' => 0,
  397. 'is_kan' => 0, // 0正常 1审核
  398. 'status' => 1,
  399. 'area_id' => (int)$post['province_id'],
  400. 'topid' => 0,
  401. 'parentid' => 0,
  402. 'number' => $num
  403. ];
  404. Db::name('seo_number')->insert($in_data);
  405. }else if((int)$newData['typeid'] === 120 || (int)$newData['typeid'] === 118 || (int)$newData['typeid'] === 122 || (int)$newData['typeid'] === 11100000 || (int)$newData['typeid'] === 133 || (int)$newData['typeid'] === 132 || (int)$newData['typeid'] === 131 || (int)$newData['typeid'] === 306){
  406. //案例 申报 职称相关问题 常见问题汇总 历年真题题库 答辩问题汇总 防骗指南 职称补贴
  407. $last = Db::name('seo_number')->where([
  408. "type" => 2,
  409. "tid" => (int)$post['typeid'],
  410. 'topid' => 0,
  411. 'parentid' => 0,
  412. 'area_id' => 0,
  413. ])->order('number desc')->find();
  414. if(empty($last['number'])){
  415. $num = 1;
  416. }else{
  417. $num = (int)$last['number'] + 1;
  418. }
  419. $in_data = [
  420. "type" => 2, //文章类型
  421. "aid" => $aid, //实际的ID
  422. "tid" => (int)$post['typeid'], //属于哪个栏目的
  423. 'is_del' => 0,
  424. 'is_kan' => 0, // 0正常 1审核
  425. 'status' => 1,
  426. 'area_id' => 0,
  427. 'topid' => 0,
  428. 'parentid' => 0,
  429. 'number' => $num
  430. ];
  431. Db::name('seo_number')->insert($in_data);
  432. }else if((int)$newData['typeid'] === 115 || (int)$newData['typeid'] === 117 || (int)$newData['typeid'] === 111){
  433. //政策资讯 //评审攻略 //常见问题
  434. $where6 = [
  435. "type" => 2,
  436. "tid" => (int)$post['typeid'],
  437. 'topid' => 0,
  438. 'parentid' => 0,
  439. 'area_id' => (int)$post['province_id'], //如果是0的话 后续也不能改
  440. 'city_id' => (int)$post['city_id'], //如果是0的话 后续也不能改
  441. ];
  442. /*if((int)$post['city_id'] > 0){
  443. $where6['city_id'] = (int)$post['city_id'];
  444. }*/
  445. //攻略和政策资讯
  446. $last = Db::name('seo_number')->where($where6)->order('number desc')->find();
  447. if(empty($last['number'])){
  448. $num = 1;
  449. }else{
  450. $num = (int)$last['number'] + 1;
  451. }
  452. $in_data = [
  453. "type" => 2, //产品类型
  454. "aid" => $aid, //实际的ID
  455. "tid" => (int)$post['typeid'], //属于哪个栏目的
  456. 'is_del' => 0,
  457. 'is_kan' => 0, // 0正常 1审核
  458. 'status' => 1,
  459. 'area_id' => (int)$post['province_id'],
  460. 'city_id' => (int)$post['city_id'],
  461. 'topid' => 0,
  462. 'parentid' => 0,
  463. 'number' => $num
  464. ];
  465. Db::name('seo_number')->insert($in_data);
  466. }else if((int)$newData['typeid'] === 1231 || (int)$newData['typeid'] === 1233 || (int)$newData['typeid'] === 1234){
  467. //新闻资讯 //业绩材料 //一键测评
  468. $where6 = [
  469. "type" => 2,
  470. "tid" => (int)$post['typeid'],
  471. 'topid' => 0,
  472. 'parentid' => 0,
  473. 'area_id' => 0, //(int)$post['province_id'] //如果是0的话 后续也不能改
  474. 'city_id' => 0, //(int)$post['city_id'] //如果是0的话 后续也不能改
  475. ];
  476. /*if((int)$post['city_id'] > 0){
  477. $where6['city_id'] = (int)$post['city_id'];
  478. }*/
  479. //攻略和政策资讯
  480. $last = Db::name('seo_number')->where($where6)->order('number desc')->find();
  481. if(empty($last['number'])){
  482. $num = 1;
  483. }else{
  484. $num = (int)$last['number'] + 1;
  485. }
  486. $in_data = [
  487. "type" => 2, //产品类型
  488. "aid" => $aid, //实际的ID
  489. "tid" => (int)$post['typeid'], //属于哪个栏目的
  490. 'is_del' => 0,
  491. 'is_kan' => 0, // 0正常 1审核
  492. 'status' => 1,
  493. 'area_id' => 0, //(int)$post['province_id']
  494. 'city_id' => 0, //(int)$post['city_id']
  495. 'topid' => 0,
  496. 'parentid' => 0,
  497. 'number' => $num
  498. ];
  499. Db::name('seo_number')->insert($in_data);
  500. }else if((int)$newData['typeid'] === 1232){
  501. //评审政策
  502. //按区域
  503. $where6 = [
  504. "type" => 2,
  505. "tid" => (int)$post['typeid'],
  506. 'topid' => 0,
  507. 'parentid' => 0,
  508. 'area_id' => (int)$post['area_tag_id'], //(int)$post['province_id'] //如果是0的话 后续也不能改
  509. 'city_id' => 0, //(int)$post['city_id'] //如果是0的话 后续也不能改
  510. ];
  511. /*if((int)$post['city_id'] > 0){
  512. $where6['city_id'] = (int)$post['city_id'];
  513. }*/
  514. //攻略和政策资讯
  515. $last = Db::name('seo_number')->where($where6)->order('number desc')->find();
  516. if(empty($last['number'])){
  517. $num = 1;
  518. }else{
  519. $num = (int)$last['number'] + 1;
  520. }
  521. $in_data = [
  522. "type" => 2, //产品类型
  523. "aid" => $aid, //实际的ID
  524. "tid" => (int)$post['typeid'], //属于哪个栏目的
  525. 'is_del' => 0,
  526. 'is_kan' => 0, // 0正常 1审核
  527. 'status' => 1,
  528. 'area_id' => (int)$post['area_tag_id'], //(int)$post['province_id']
  529. 'city_id' => 0, //(int)$post['city_id']
  530. 'topid' => 0,
  531. 'parentid' => 0,
  532. 'number' => $num
  533. ];
  534. Db::name('seo_number')->insert($in_data);
  535. }else{
  536. //其他
  537. }
  538. // 生成静态页面代码
  539. $successData = [
  540. 'aid' => $aid,
  541. 'tid' => $post['typeid'],
  542. ];
  543. $this->success("操作成功!", null, $successData);
  544. }
  545. $this->error("操作失败!");
  546. }
  547. $typeid = input('param.typeid/d', 0);
  548. $assign_data['typeid'] = $typeid; // 栏目ID
  549. //列出产品
  550. $list = Db::name('arctype_cat')
  551. ->where('parent_id','=',$typeid)
  552. ->where('type','=','产品')
  553. ->where('is_del','=',0)
  554. ->order('id asc')
  555. ->select();
  556. //var_dump($list);
  557. $this->assign('pro_list',$list);
  558. //列出职称级别
  559. $level_group_list = Db::name('arctype')
  560. ->field('id,parent_id,typename')
  561. ->where('parent_id','=',53)
  562. ->where('is_del','=',0)
  563. ->order('id asc')
  564. ->select();
  565. //var_dump($list);
  566. $this->assign('level_group_list',$level_group_list);
  567. //列出
  568. $level_group_name = Db::name('archives')
  569. ->field('aid,typeid,title')
  570. ->where('typeid','=',$level_group_list[0]['id'])
  571. ->where('is_del','=',0)
  572. ->order('sort_order asc,aid asc')
  573. ->select();
  574. $this->assign('level_group_name',$level_group_name);
  575. $product_id = input('param.product_id/d', 0);
  576. //var_dump($product_id);
  577. $assign_data['product_id'] = $product_id; //关联产品ID 默认都是0
  578. //var_dump($typeid);
  579. if((int)$typeid === 126 || (int)$typeid === 825 || (int)$typeid === 826){
  580. //列出职称标签
  581. $product_tag = Db::name('archives')
  582. ->field('aid,typeid,title')
  583. ->where('typeid','=',58)
  584. ->where('is_del','=',0)
  585. ->order('sort_order asc,aid asc')
  586. ->select();
  587. }else{
  588. //列出职称标签
  589. $cat = Db::name('arctype')->where(['parent_id'=>369,'article_id'=>$typeid])->find();
  590. if(empty($cat)){
  591. $cat_id = 371;
  592. }else{
  593. $cat_id = $cat['id'];
  594. }
  595. $product_tag = Db::name('archives')
  596. ->field('aid,typeid,title')
  597. ->where('typeid','=',$cat_id)
  598. ->where('is_del','=',0)
  599. ->order('sort_order asc,aid asc')
  600. ->select();
  601. }
  602. $this->assign('product_tag',$product_tag);
  603. //调用区域信息
  604. $product_area = Db::name('citysite')->where(['level'=>1])->select();
  605. $this->assign('product_area_data',$product_area);
  606. // 栏目信息
  607. $arctypeInfo = Db::name('arctype')->find($typeid);
  608. $topid = $arctypeInfo['topid'];
  609. $assign_data['topid'] = $topid;
  610. //查询区域id
  611. $catid = $arctypeInfo['area_id'];
  612. if((int)$catid === 0){
  613. $catid = input('param.catid/d', 0);
  614. }
  615. $assign_data['catid'] = $catid;
  616. //var_dump($catid);
  617. /*允许发布文档列表的栏目*/ //加入区域
  618. $arctype_html = allow_release_arctype($typeid, array($this->channeltype),true,[],false,$catid);
  619. $assign_data['arctype_html'] = $arctype_html;
  620. /*--end*/
  621. // 阅读权限
  622. $arcrank_list = get_arcrank_list();
  623. $assign_data['arcrank_list'] = $arcrank_list;
  624. /*获取可显示的系统字段*/
  625. $condition['ifcontrol'] = 0;
  626. $condition['channel_id'] = $this->channeltype;
  627. $channelfield_row = Db::name('channelfield')->where($condition)->field('name,ifeditable')->getAllWithIndex('name');
  628. $assign_data['channelfield_row'] = $channelfield_row;
  629. /*--end*/
  630. /*模板列表*/
  631. $archivesLogic = new \app\admin\logic\ArchivesLogic;
  632. $templateList = $archivesLogic->getTemplateList($this->nid);
  633. $this->assign('templateList', $templateList);
  634. /*--end*/
  635. /*默认模板文件*/
  636. $tempview = 'view_'.$this->nid.'.'.config('template.view_suffix');
  637. !empty($arctypeInfo['tempview']) && $tempview = $arctypeInfo['tempview'];
  638. $this->assign('tempview', $tempview);
  639. /*--end*/
  640. // 文档默认浏览量
  641. $globalConfig = tpCache('global');
  642. if (isset($globalConfig['other_arcclick']) && 0 <= $globalConfig['other_arcclick']) {
  643. $arcclick_arr = explode("|", $globalConfig['other_arcclick']);
  644. if (count($arcclick_arr) > 1) {
  645. $assign_data['rand_arcclick'] = mt_rand($arcclick_arr[0], $arcclick_arr[1]);
  646. } else {
  647. $assign_data['rand_arcclick'] = intval($arcclick_arr[0]);
  648. }
  649. }else{
  650. $arcclick_config['other_arcclick'] = '500|1000';
  651. tpCache('other', $arcclick_config);
  652. $assign_data['rand_arcclick'] = mt_rand(500, 1000);
  653. }
  654. // URL模式
  655. $tpcache = config('tpcache');
  656. $assign_data['seo_pseudo'] = !empty($tpcache['seo_pseudo']) ? $tpcache['seo_pseudo'] : 1;
  657. /*文档属性*/
  658. $assign_data['archives_flags'] = model('ArchivesFlag')->getList();
  659. $channelRow = Db::name('channeltype')->where('id', $this->channeltype)->find();
  660. $assign_data['channelRow'] = $channelRow;
  661. // 来源列表
  662. $system_originlist = tpSetting('system.system_originlist');
  663. $system_originlist = json_decode($system_originlist, true);
  664. $system_originlist = !empty($system_originlist) ? $system_originlist : [];
  665. $assign_data['system_originlist_0'] = !empty($system_originlist) ? $system_originlist[0] : "";
  666. $assign_data['system_originlist_str'] = implode(PHP_EOL, $system_originlist);
  667. // 多站点,当用站点域名访问后台,发布文档自动选择当前所属区域
  668. model('Citysite')->auto_location_select($assign_data);
  669. $this->assign($assign_data);
  670. return $this->fetch();
  671. }
  672. /**
  673. * 编辑
  674. */
  675. public function edit()
  676. {
  677. $admin_info = session('admin_info');
  678. $auth_role_info = $admin_info['auth_role_info'];
  679. $this->assign('auth_role_info', $auth_role_info);
  680. $this->assign('admin_info', $admin_info);
  681. if (IS_POST) {
  682. $post = input('post.');
  683. model('Archives')->editor_auto_210607($post);
  684. $post['aid'] = intval($post['aid']);
  685. $typeid = input('post.typeid/d', 0);
  686. /* 处理TAG标签 */
  687. if (!empty($post['tags_new'])) {
  688. $post['tags'] = !empty($post['tags']) ? $post['tags'] . ',' . $post['tags_new'] : $post['tags_new'];
  689. unset($post['tags_new']);
  690. }
  691. $post['tags'] = explode(',', $post['tags']);
  692. $post['tags'] = array_unique($post['tags']);
  693. $post['tags'] = implode(',', $post['tags']);
  694. /* END */
  695. /*获取第一个html类型的内容,作为文档的内容来截取SEO描述*/
  696. $contentField = Db::name('channelfield')->where([
  697. 'channel_id' => $this->channeltype,
  698. 'dtype' => 'htmltext',
  699. ])->getField('name');
  700. $content = empty($post['addonFieldExt'][$contentField]) ? '' : htmlspecialchars_decode($post['addonFieldExt'][$contentField]);
  701. /*--end*/
  702. // 根据标题自动提取相关的关键字
  703. $seo_keywords = $post['seo_keywords'];
  704. if (!empty($seo_keywords)) {
  705. $seo_keywords = str_replace(',', ',', $seo_keywords);
  706. } else {
  707. // $seo_keywords = get_split_word($post['title'], $content);
  708. }
  709. // 自动获取内容第一张图片作为封面图
  710. $is_remote = !empty($post['is_remote']) ? $post['is_remote'] : 0;
  711. $litpic = '';
  712. if ($is_remote == 1) {
  713. $litpic = $post['litpic_remote'];
  714. } else {
  715. $litpic = $post['litpic_local'];
  716. }
  717. if (empty($litpic)) {
  718. $litpic = get_html_first_imgurl($content);
  719. }
  720. $post['litpic'] = $litpic;
  721. /*是否有封面图*/
  722. if (empty($post['litpic'])) {
  723. $is_litpic = 0; // 无封面图
  724. } else {
  725. $is_litpic = !empty($post['is_litpic']) ? $post['is_litpic'] : 0; // 有封面图
  726. }
  727. // 勾选后SEO描述将随正文内容更新
  728. $basic_update_seo_description = empty($post['basic_update_seo_description']) ? 0 : 1;
  729. if (is_language()) {
  730. $langRow = \think\Db::name('language')->order('id asc')
  731. ->cache(true, EYOUCMS_CACHE_TIME, 'language')
  732. ->select();
  733. foreach ($langRow as $key => $val) {
  734. tpCache('basic', ['basic_update_seo_description'=>$basic_update_seo_description], $val['mark']);
  735. }
  736. } else {
  737. tpCache('basic', ['basic_update_seo_description'=>$basic_update_seo_description]);
  738. }
  739. /*--end*/
  740. // SEO描述
  741. $seo_description = '';
  742. if (!empty($basic_update_seo_description) || empty($post['seo_description'])) {
  743. $seo_description = @msubstr(checkStrHtml($content), 0, config('global.arc_seo_description_length'), false);
  744. } else {
  745. $seo_description = $post['seo_description'];
  746. }
  747. // --外部链接
  748. $jumplinks = '';
  749. $is_jump = isset($post['is_jump']) ? $post['is_jump'] : 0;
  750. if (intval($is_jump) > 0) {
  751. $jumplinks = $post['jumplinks'];
  752. }
  753. // 模板文件,如果文档模板名与栏目指定的一致,默认就为空。让它跟随栏目的指定而变
  754. if ($post['type_tempview'] == $post['tempview']) {
  755. unset($post['type_tempview']);
  756. unset($post['tempview']);
  757. }
  758. // 同步栏目切换模型之后的文档模型
  759. $channel = Db::name('arctype')->where(['id'=>$typeid])->getField('current_channel');
  760. //处理自定义文件名,仅由字母数字下划线和短横杆组成,大写强制转换为小写
  761. $htmlfilename = trim($post['htmlfilename']);
  762. if (!empty($htmlfilename)) {
  763. $htmlfilename = preg_replace("/[^\x{4e00}-\x{9fa5}\w\-]+/u", "-", $htmlfilename);
  764. // $htmlfilename = strtolower($htmlfilename);
  765. //判断是否存在相同的自定义文件名
  766. $map = [
  767. 'aid' => ['NEQ', $post['aid']],
  768. 'htmlfilename' => $htmlfilename,
  769. 'lang' => $this->admin_lang,
  770. ];
  771. if (!empty($post['typeid'])) {
  772. $map['typeid'] = array('eq', $post['typeid']);
  773. }
  774. $filenameCount = Db::name('archives')->where($map)->count();
  775. if (!empty($filenameCount)) {
  776. $this->error("同栏目下,自定义文件名已存在!");
  777. } else if (preg_match('/^(\d+)$/i', $htmlfilename)) {
  778. $this->error("自定义文件名不能纯数字,会与文档ID冲突!");
  779. }
  780. } else {
  781. // 处理外贸链接
  782. if (is_dir('./weapp/Waimao/')) {
  783. $waimaoLogic = new \weapp\Waimao\logic\WaimaoLogic;
  784. $waimaoLogic->get_new_htmlfilename($htmlfilename, $post, 'edit', $this->globalConfig);
  785. }
  786. }
  787. $post['htmlfilename'] = $htmlfilename;
  788. //做未通过审核文档不允许修改文档状态操作
  789. if ($admin_info['role_id'] > 0 && $auth_role_info['check_oneself'] < 1) {
  790. $old_archives_arcrank = Db::name('archives')->where(['aid' => $post['aid']])->getField("arcrank");
  791. if ($old_archives_arcrank < 0) {
  792. unset($post['arcrank']);
  793. }
  794. }
  795. // 副栏目
  796. if (isset($post['stypeid'])) {
  797. $post['stypeid'] = preg_replace('/([^\d\,\,]+)/i', ',', $post['stypeid']);
  798. $post['stypeid'] = str_replace(',', ',', $post['stypeid']);
  799. $post['stypeid'] = trim($post['stypeid'], ',');
  800. $post['stypeid'] = str_replace(",{$typeid},", ',', ",{$post['stypeid']},");
  801. $post['stypeid'] = trim($post['stypeid'], ',');
  802. }
  803. //查询排序 等级
  804. $sort_order = Db::name('archives')->where('aid','=',(int)$post['level_group_name'])->value('sort_order');
  805. //获取文档文件后缀
  806. if(!empty($post['addonFieldExt']['down_eyou_remote'])){
  807. $file = explode('.',$post['addonFieldExt']['down_eyou_remote']);
  808. $ext = end($file);
  809. }else{
  810. $ext = '';
  811. }
  812. // --存储数据
  813. $newData = array(
  814. 'typeid'=> $typeid,
  815. 'channel' => $channel,
  816. 'is_b' => empty($post['is_b']) ? 0 : $post['is_b'],
  817. 'is_head' => empty($post['is_head']) ? 0 : $post['is_head'],
  818. 'is_special' => empty($post['is_special']) ? 0 : $post['is_special'],
  819. 'is_recom' => empty($post['is_recom']) ? 0 : $post['is_recom'],
  820. 'is_roll' => empty($post['is_roll']) ? 0 : $post['is_roll'],
  821. 'is_slide' => empty($post['is_slide']) ? 0 : $post['is_slide'],
  822. 'is_diyattr' => empty($post['is_diyattr']) ? 0 : $post['is_diyattr'],
  823. 'editor_remote_img_local'=> empty($post['editor_remote_img_local']) ? 0 : $post['editor_remote_img_local'],
  824. 'editor_img_clear_link' => empty($post['editor_img_clear_link']) ? 0 : $post['editor_img_clear_link'],
  825. 'is_jump' => $is_jump,
  826. 'is_litpic' => $is_litpic,
  827. 'jumplinks' => $jumplinks,
  828. 'seo_keywords' => $seo_keywords,
  829. 'seo_description' => $seo_description,
  830. 'crossed_price' => empty($post['crossed_price']) ? 0 : floatval($post['crossed_price']),
  831. 'add_time' => strtotime($post['add_time']),
  832. 'update_time' => getTime(),
  833. 'product_id' => (int)$post['product_id'], //增加
  834. 'lunwen_id' => (int)$post['lunwen_id'], //增加
  835. 'level_group_id' => (int)$post['level_group_id'],
  836. 'level_id' => (int)$post['level_group_name'],
  837. 'level' => (int)$sort_order,
  838. 'product_tag_id' => (int)$post['product_tag_id'],
  839. 'area_tag_id' => (int)$post['area_tag_id'],
  840. 'ext' => $ext
  841. );
  842. $data = array_merge($post, $newData);
  843. if((int)$typeid === 126 || (int)$typeid === 825 || (int)$typeid === 826){
  844. //资料文档的时候
  845. //不更新 区域信息
  846. unset($data['province_id']);
  847. unset($data['city_id']);
  848. unset($data['area_id']);
  849. }
  850. if((int)$typeid === 117 || (int)$typeid === 115 || (int)$typeid === 111){
  851. //评审攻略和政策资讯 增加常见问题
  852. //不更新 区域信息
  853. unset($data['province_id']);
  854. unset($data['city_id']);
  855. unset($data['area_id']);
  856. }
  857. $arctype_par = Db::name('arctype')->field('id,parent_id')->where('id','=',$typeid)->find();
  858. if((int)$arctype_par['parent_id'] === 369){
  859. //文章标签
  860. //不更新 区域信息
  861. unset($data['province_id']);
  862. unset($data['city_id']);
  863. unset($data['area_id']);
  864. }
  865. //var_dump($post['addonFieldExt']);die;
  866. $r = Db::name('archives')->where([
  867. 'aid' => $data['aid'],
  868. 'lang' => $this->admin_lang,
  869. ])->update($data);
  870. if ($r) {
  871. // ---------后置操作
  872. model('Custom')->afterSave($data['aid'], $data, 'edit', $this->table);
  873. // ---------end
  874. adminLog('编辑文章:'.$data['title']);
  875. $numinfo = [
  876. //'is_del' => $data['is_del'],
  877. 'is_kan' => $data['arcrank'],
  878. //'status' => $data['status'],
  879. ];
  880. //文档aid 对应 序列号aid
  881. Db::name('seo_number')->where('aid','=',$data['aid'])->update($numinfo);
  882. // 生成静态页面代码
  883. $successData = [
  884. 'aid' => $data['aid'],
  885. 'tid' => $typeid,
  886. ];
  887. $this->success("操作成功!", null, $successData);
  888. }
  889. $this->error("操作失败!");
  890. }
  891. $assign_data = array();
  892. $id = input('id/d');
  893. $info = model('Custom')->getInfo($id, null, false);
  894. if (empty($info)) {
  895. $this->error('数据不存在,请联系管理员!');
  896. exit;
  897. }
  898. /*兼容采集没有归属栏目的文档*/
  899. if (empty($info['channel'])) {
  900. $channelRow = Db::name('channeltype')->field('id as channel')
  901. ->where('id',$this->channeltype)
  902. ->find();
  903. $info = array_merge($info, $channelRow);
  904. }
  905. /*--end*/
  906. $typeid = $info['typeid'];
  907. $assign_data['typeid'] = $typeid;
  908. //查找产品
  909. $list = Db::name('arctype_cat')
  910. ->where('parent_id','=',$typeid)
  911. ->where('type','=','产品')
  912. ->where('is_del','=',0)
  913. ->order('id asc')
  914. ->select();
  915. //var_dump($list);
  916. $this->assign('pro_list',$list);
  917. //列出职称级别
  918. $level_group_list = Db::name('arctype')
  919. ->field('id,parent_id,typename')
  920. ->where('parent_id','=',53)
  921. ->where('is_del','=',0)
  922. ->order('id asc')
  923. ->select();
  924. //var_dump($list);
  925. $this->assign('level_group_list',$level_group_list);
  926. //列出
  927. if((int)$info['level_group_id'] === 0){
  928. $level_group_id = $level_group_list[0]['id'];
  929. }else{
  930. $level_group_id = (int)$info['level_group_id'];
  931. }
  932. $level_group_name = Db::name('archives')
  933. ->field('aid,typeid,title')
  934. ->where('typeid','=',$level_group_id)
  935. ->where('is_del','=',0)
  936. ->order('sort_order asc,aid asc')
  937. ->select();
  938. $this->assign('level_group_name',$level_group_name);
  939. if((int)$typeid === 126 || (int)$typeid === 825 || (int)$typeid === 826){
  940. //列出职称标签
  941. $product_tag = Db::name('archives')
  942. ->field('aid,typeid,title')
  943. ->where('typeid','=',58)
  944. ->where('is_del','=',0)
  945. ->order('sort_order asc,aid asc')
  946. ->select();
  947. }else{
  948. //列出职称标签
  949. $cat = Db::name('arctype')->where(['parent_id'=>369,'article_id'=>$typeid])->find();
  950. if(empty($cat)){
  951. $cat_id = 371;
  952. }else{
  953. $cat_id = $cat['id'];
  954. }
  955. $product_tag = Db::name('archives')
  956. ->field('aid,typeid,title')
  957. ->where('typeid','=',$cat_id)
  958. ->where('is_del','=',0)
  959. ->order('sort_order asc,aid asc')
  960. ->select();
  961. }
  962. $this->assign('product_tag',$product_tag);
  963. //调用区域信息
  964. $product_area = Db::name('citysite')->where(['level'=>1])->select();
  965. $this->assign('product_area_data',$product_area);
  966. // 副栏目
  967. $stypeid_arr = [];
  968. if (!empty($info['stypeid'])) {
  969. $info['stypeid'] = trim($info['stypeid'], ',');
  970. $stypeid_arr = Db::name('arctype')->field('id,typename')->where(['id'=>['IN', $info['stypeid']],'is_del'=>0])->select();
  971. }
  972. $assign_data['stypeid_arr'] = $stypeid_arr;
  973. // 栏目信息
  974. $arctypeInfo = Db::name('arctype')->find($typeid);
  975. $topid = $arctypeInfo['topid'];
  976. $assign_data['topid'] = $topid;
  977. $info['channel'] = $arctypeInfo['current_channel'];
  978. if (is_http_url($info['litpic'])) {
  979. $info['is_remote'] = 1;
  980. $info['litpic_remote'] = handle_subdir_pic($info['litpic']);
  981. } else {
  982. $info['is_remote'] = 0;
  983. $info['litpic_local'] = handle_subdir_pic($info['litpic']);
  984. }
  985. // SEO描述
  986. // if (!empty($info['seo_description'])) {
  987. // $info['seo_description'] = @msubstr(checkStrHtml($info['seo_description']), 0, config('global.arc_seo_description_length'), false);
  988. // }
  989. $assign_data['field'] = $info;
  990. /*允许发布文档列表的栏目,文档所在模型以栏目所在模型为主,兼容切换模型之后的数据编辑*/
  991. $arctype_html = allow_release_arctype($typeid, array($info['channel']));
  992. $assign_data['arctype_html'] = $arctype_html;
  993. /*--end*/
  994. /*获取可显示的系统字段*/
  995. $condition['ifcontrol'] = 0;
  996. $condition['channel_id'] = $this->channeltype;
  997. $channelfield_row = Db::name('channelfield')->where($condition)->field('name,ifeditable')->getAllWithIndex('name');
  998. $assign_data['channelfield_row'] = $channelfield_row;
  999. /*--end*/
  1000. // 阅读权限
  1001. $arcrank_list = get_arcrank_list();
  1002. $assign_data['arcrank_list'] = $arcrank_list;
  1003. /*模板列表*/
  1004. $archivesLogic = new \app\admin\logic\ArchivesLogic;
  1005. $templateList = $archivesLogic->getTemplateList($this->nid);
  1006. $this->assign('templateList', $templateList);
  1007. /*--end*/
  1008. /*默认模板文件*/
  1009. $tempview = $info['tempview'];
  1010. empty($tempview) && $tempview = $arctypeInfo['tempview'];
  1011. $this->assign('tempview', $tempview);
  1012. /*--end*/
  1013. // URL模式
  1014. $tpcache = config('tpcache');
  1015. $assign_data['seo_pseudo'] = !empty($tpcache['seo_pseudo']) ? $tpcache['seo_pseudo'] : 1;
  1016. /*文档属性*/
  1017. $assign_data['archives_flags'] = model('ArchivesFlag')->getList();
  1018. $channelRow = Db::name('channeltype')->where('id', $this->channeltype)->find();
  1019. $assign_data['channelRow'] = $channelRow;
  1020. // 来源列表
  1021. $system_originlist = tpSetting('system.system_originlist');
  1022. $system_originlist = json_decode($system_originlist, true);
  1023. $system_originlist = !empty($system_originlist) ? $system_originlist : [];
  1024. $assign_data['system_originlist_str'] = implode(PHP_EOL, $system_originlist);
  1025. $this->assign($assign_data);
  1026. return $this->fetch();
  1027. }
  1028. /**
  1029. * 删除
  1030. */
  1031. public function del()
  1032. {
  1033. $archivesLogic = new \app\admin\logic\ArchivesLogic;
  1034. $archivesLogic->del([], 0, 'custom');
  1035. }
  1036. //帮助
  1037. public function help()
  1038. {
  1039. $system_originlist = tpSetting('system.system_originlist');
  1040. $system_originlist = json_decode($system_originlist, true);
  1041. $system_originlist = !empty($system_originlist) ? $system_originlist : [];
  1042. $assign_data['system_originlist_str'] = implode(PHP_EOL, $system_originlist);
  1043. $this->channeltype = input('param.channel/d', 0);
  1044. $assign_data['channel'] = $this->channeltype ;
  1045. $this->assign($assign_data);
  1046. return $this->fetch();
  1047. }
  1048. }