Ei kuvausta
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.

Seo.php 21KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589
  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\Db;
  15. use think\Cache;
  16. use app\common\logic\ArctypeLogic;
  17. use think\paginator\driver; // 生成静态页面代码
  18. use app\admin\logic\FilemanagerLogic;
  19. use app\common\logic\BuildhtmlLogic;
  20. class Seo extends Base
  21. {
  22. private $buildhtmlLogic;
  23. public function _initialize() {
  24. parent::_initialize();
  25. $this->language_access(); // 多语言功能操作权限
  26. $this->buildhtmlLogic = new BuildhtmlLogic;
  27. }
  28. /*
  29. * 生成总站
  30. */
  31. public function site(){
  32. $param = input('param.');
  33. $uphtmltype = !empty($param['uphtmltype']) ? intval($param['uphtmltype']) : 0;
  34. $this->assign('uphtmltype', $uphtmltype);
  35. if (!empty($param['is_buildhtml'])) {
  36. /*多语言*/
  37. $seoConfig = [];
  38. $seoConfig['seo_maxpagesize'] = !empty($param['seo_maxpagesize']) ? intval($param['seo_maxpagesize']) : 50; // 栏目每页生成文件
  39. $seoConfig['seo_pagesize'] = !empty($param['seo_pagesize']) ? intval($param['seo_pagesize']) : 20; // 文档每页生成文件
  40. $seoConfig['seo_start_time'] = !empty($param['seo_start_time']) ? $param['seo_start_time'] : ""; // 起始时间
  41. $seoConfig['seo_startid2'] = !empty($param['seo_startid2']) ? intval($param['seo_startid2']) : ""; // 起始id
  42. if (is_language()) {
  43. $langRow = \think\Db::name('language')->order('id asc')
  44. ->cache(true, EYOUCMS_CACHE_TIME, 'language')
  45. ->select();
  46. foreach ($langRow as $key => $val) {
  47. tpCache('seo', $seoConfig, $val['mark']);
  48. }
  49. } else {
  50. tpCache('seo', $seoConfig);
  51. }
  52. /*--end*/
  53. }
  54. return $this->fetch();
  55. }
  56. /*
  57. * 生成栏目页
  58. */
  59. public function channel(){
  60. $param = input('param.');
  61. $typeid = !empty($param['typeid']) ? intval($param['typeid']) : 0; // 栏目ID
  62. $this->assign('typeid', $typeid);
  63. if (!empty($param['is_buildhtml'])) {
  64. /*多语言*/
  65. $seoConfig = [];
  66. $seoConfig['seo_maxpagesize'] = !empty($param['seo_maxpagesize']) ? intval($param['seo_maxpagesize']) : 50; // 每页生成文件
  67. $seoConfig['seo_upnext'] = isset($param['seo_upnext']) ? intval($param['seo_upnext']) : 1; // 是否更新子栏目
  68. if (is_language()) {
  69. $langRow = \think\Db::name('language')->order('id asc')
  70. ->cache(true, EYOUCMS_CACHE_TIME, 'language')
  71. ->select();
  72. foreach ($langRow as $key => $val) {
  73. tpCache('seo', $seoConfig, $val['mark']);
  74. }
  75. } else {
  76. tpCache('seo', $seoConfig);
  77. }
  78. /*--end*/
  79. }
  80. return $this->fetch();
  81. }
  82. /*
  83. * 生成文档页
  84. */
  85. public function article()
  86. {
  87. $param = input('param.');
  88. $typeid = !empty($param['typeid']) ? intval($param['typeid']) : 0; // 栏目ID
  89. $this->assign('typeid', $typeid);
  90. $uphtmltype = !empty($param['uphtmltype']) ? intval($param['uphtmltype']) : 0;
  91. $this->assign('uphtmltype', $uphtmltype);
  92. if (!empty($param['is_buildhtml'])) {
  93. /*多语言*/
  94. $seoConfig = [];
  95. $seoConfig['seo_startid'] = !empty($param['seo_startid']) ? intval($param['seo_startid']) : 0; // 文档ID开始
  96. $seoConfig['seo_endid'] = !empty($param['seo_endid']) ? intval($param['seo_endid']) : 0; // 文档ID结束
  97. $seoConfig['seo_pagesize'] = !empty($param['seo_pagesize']) ? intval($param['seo_pagesize']) : 20; // 每页生成文件
  98. if (is_language()) {
  99. $langRow = \think\Db::name('language')->order('id asc')
  100. ->cache(true, EYOUCMS_CACHE_TIME, 'language')
  101. ->select();
  102. foreach ($langRow as $key => $val) {
  103. tpCache('seo', $seoConfig, $val['mark']);
  104. }
  105. } else {
  106. tpCache('seo', $seoConfig);
  107. }
  108. /*--end*/
  109. }
  110. return $this->fetch();
  111. }
  112. /**
  113. * 初始化数据缓存
  114. * @return [type] [description]
  115. */
  116. public function init_data_cache()
  117. {
  118. if (IS_POST) {
  119. // 获取全部栏目的数据
  120. $this->buildhtmlLogic->get_arctype_all();
  121. // 获取全部文档微表的数据
  122. $this->buildhtmlLogic->get_archives_all();
  123. $this->success('缓存成功');
  124. }
  125. }
  126. private function resetHtmlConf()
  127. {
  128. /*多语言*/
  129. // 恢复设置默认值
  130. $seoConfig = [];
  131. $seoConfig['seo_maxpagesize'] = 50;
  132. $seoConfig['seo_upnext'] = 1;
  133. $seoConfig['seo_pagesize'] = 20;
  134. if (is_language()) {
  135. $langRow = \think\Db::name('language')->order('id asc')
  136. ->cache(true, EYOUCMS_CACHE_TIME, 'language')
  137. ->select();
  138. foreach ($langRow as $key => $val) {
  139. tpCache('seo', $seoConfig, $val['mark']);
  140. }
  141. } else {
  142. tpCache('seo', $seoConfig);
  143. }
  144. /*--end*/
  145. // 生成静态页面代码 - 更新分页php文件支持生成静态功能
  146. $this->update_paginatorfile();
  147. return $seoConfig;
  148. }
  149. /*
  150. * 静态生成页面
  151. */
  152. public function build(){
  153. $globalConfig = tpCache('global');
  154. if (2 != $globalConfig['seo_pseudo']) {
  155. $this->error('当前不是静态页面模式!');
  156. }
  157. // 恢复生成静态的设置默认值
  158. $seoConfig = $this->resetHtmlConf();
  159. $globalConfig = array_merge($globalConfig, $seoConfig);
  160. $this->assign('config', $globalConfig);//当前配置项
  161. // 栏目列表
  162. $map = array(
  163. 'status' => 1,
  164. 'is_del' => 0, // 回收站功能
  165. 'current_channel' => ['neq', 51], // 问答模型
  166. 'weapp_code' => '',
  167. );
  168. $arctypeLogic = new ArctypeLogic();
  169. $select_html = $arctypeLogic->arctype_list(0, 0, true, config('global.arctype_max_level'), $map);
  170. $this->assign('select_html',$select_html);
  171. // 允许发布文档列表的栏目
  172. $arc_select_html = allow_release_arctype();
  173. $this->assign('arc_select_html', $arc_select_html);
  174. // 网站根目录缺少 index.php 文件,请拷贝该文件上传到空间里!
  175. $is_index_file = 1;
  176. if (!file_exists('./index.php')) {
  177. $is_index_file = 0;
  178. }
  179. $this->assign('is_index_file', $is_index_file);
  180. return $this->fetch();
  181. }
  182. /*
  183. * URL配置
  184. */
  185. public function seo()
  186. {
  187. /* 纠正栏目的HTML目录路径字段值 */
  188. $this->correctArctypeDirpath();
  189. /* end */
  190. $inc_type = 'seo';
  191. $config = tpCache($inc_type);
  192. $config['seo_pseudo'] = tpCache('global.seo_pseudo');
  193. //前台默认语言
  194. $default_lang = \think\Config::get('ey_config.system_home_default_lang');
  195. $this->assign('default_lang',$default_lang);
  196. $seo_pseudo_list = get_seo_pseudo_list();
  197. $this->assign('seo_pseudo_list', $seo_pseudo_list);
  198. /* 生成静态页面代码 - 多语言统一设置URL模式 */
  199. $seo_pseudo_lang = '';
  200. $web_language_switch = tpCache('global.web_language_switch');
  201. if (is_language() && !empty($web_language_switch)) {
  202. $markArr = Db::name('language')->field('mark')->order('id asc')->limit('1,1')->select();
  203. if (!empty($markArr[0]['mark'])) {
  204. $seo_pseudo_lang = tpCache('global.seo_pseudo', [], $markArr[0]['mark']);
  205. }
  206. $seo_pseudo_lang = !empty($seo_pseudo_lang) ? $seo_pseudo_lang : 1;
  207. }
  208. $this->assign('seo_pseudo_lang', $seo_pseudo_lang);
  209. /* end */
  210. /* 限制文档HTML保存路径的名称 */
  211. $wwwroot_dir = config('global.wwwroot_dir'); // 网站根目录的目录列表
  212. $disable_dirname = config('global.disable_dirname'); // 栏目伪静态时的路由路径
  213. $wwwroot_dir = array_merge($wwwroot_dir, $disable_dirname);
  214. // 不能与栏目的一级目录名称重复
  215. $arctypeDirnames = Db::name('arctype')->where(['parent_id'=>0])->column('dirname');
  216. is_array($arctypeDirnames) && $wwwroot_dir = array_merge($wwwroot_dir, $arctypeDirnames);
  217. // 不能与多语言的标识重复
  218. $markArr = Db::name('language_mark')->column('mark');
  219. is_array($markArr) && $wwwroot_dir = array_merge($wwwroot_dir, $markArr);
  220. $wwwroot_dir = array_unique($wwwroot_dir);
  221. $this->assign('seo_html_arcdir_limit', implode(',', $wwwroot_dir));
  222. /* end */
  223. $seo_html_arcdir_1 = '';
  224. if (!empty($config['seo_html_arcdir'])) {
  225. $config['seo_html_arcdir'] = trim($config['seo_html_arcdir'], '/');
  226. $seo_html_arcdir_1 = '/'.$config['seo_html_arcdir'];
  227. }
  228. $this->assign('seo_html_arcdir_1', $seo_html_arcdir_1);
  229. // 栏目列表
  230. $map = array(
  231. 'status' => 1,
  232. 'is_del' => 0, // 回收站功能
  233. 'current_channel' => ['neq', 51], // 问答模型
  234. 'weapp_code' => '',
  235. );
  236. $arctypeLogic = new ArctypeLogic();
  237. $select_html = $arctypeLogic->arctype_list(0, 0, true, config('global.arctype_max_level'), $map);
  238. $this->assign('select_html',$select_html);
  239. // 允许发布文档列表的栏目
  240. $arc_select_html = allow_release_arctype();
  241. $this->assign('arc_select_html', $arc_select_html);
  242. /*标记是否第一次切换静态页面模式*/
  243. if (!isset($config['seo_html_arcdir'])) {
  244. $init_html = 1; // 第一次切换
  245. } else {
  246. $init_html = 2; // 多次切换
  247. }
  248. $this->assign('init_html', $init_html);
  249. /*--end*/
  250. // 恢复生成静态的设置默认值
  251. $this->resetHtmlConf();
  252. // 网站根目录缺少 index.php 文件,请拷贝该文件上传到空间里!
  253. $is_index_file = 1;
  254. if (!file_exists('./index.php')) {
  255. $is_index_file = 0;
  256. }
  257. $this->assign('is_index_file', $is_index_file);
  258. $this->assign('config',$config);//当前配置项
  259. return $this->fetch();
  260. }
  261. /*
  262. * 保存URL配置
  263. */
  264. public function handle()
  265. {
  266. if (IS_POST) {
  267. $param = input('post.');
  268. $this->buildhtmlLogic->seo_handle($param);
  269. // 优化数据
  270. $this->optimizeTableData();
  271. // 更新分页php文件支持生成静态功能
  272. $this->update_paginatorfile();
  273. delFile(HTML_ROOT);
  274. \think\Cache::clear();
  275. $this->success('操作成功', url('Seo/seo'));
  276. }
  277. $this->error('操作失败');
  278. }
  279. /**
  280. * 优化数据
  281. *
  282. * @access public
  283. * @return void
  284. */
  285. private function optimizeTableData()
  286. {
  287. $optimizeTableData_time = tpSetting('system.system_optimizeTableData_time', '', 'cn');
  288. $optimizeTableData_time = intval($optimizeTableData_time) + (15 * 86400);
  289. if (getTime() > $optimizeTableData_time) {
  290. $tptables = ['archives'];
  291. $row = Db::name('channeltype')->field('nid,table')->select();
  292. foreach ($row as $key => $val) {
  293. if (in_array($val['nid'], ['ask','guestbook'])) {
  294. continue;
  295. }
  296. $tptables[] = $val['table'].'_content';
  297. }
  298. $tptable = '';
  299. foreach ($tptables as $key => $t) {
  300. $t = PREFIX.$t;
  301. $tptable .= ($tptable == '' ? "`{$t}`" : ",`{$t}`" );
  302. }
  303. try {
  304. @Db::execute(" OPTIMIZE TABLE $tptable; ");
  305. } catch (\Exception $e) {
  306. }
  307. tpSetting('system', ['system_optimizeTableData_time'=>getTime()], 'cn');
  308. }
  309. }
  310. /**
  311. * 生成静态页面代码 - 更新分页php文件支持生成静态功能
  312. */
  313. private function update_paginatorfile()
  314. {
  315. $dirpath = CORE_PATH . 'paginator/driver/*.php';
  316. $files = glob($dirpath);
  317. foreach ($files as $key => $file) {
  318. if (is_writable($file)) {
  319. $strContent = @file_get_contents($file);
  320. if (false != $strContent && !stristr($strContent, 'data-ey_fc35fdc="html"')) {
  321. $replace = 'htmlentities($url) . \'" data-ey_fc35fdc="html" data-tmp="1\'';
  322. $strContent = str_replace('htmlentities($url)', $replace, $strContent);
  323. @chmod($file,0777);
  324. @file_put_contents($file, $strContent);
  325. }
  326. }
  327. }
  328. }
  329. /*
  330. * 生成整站静态文件
  331. */
  332. public function buildSite(){
  333. $type = input("param.type/s");
  334. if($type != 'site'){
  335. $this->error('操作失败');
  336. }
  337. $this->success('操作成功');
  338. }
  339. /*
  340. * 获取生成栏目或文章的栏目id
  341. */
  342. public function getAllType(){
  343. $id = input("param.id/d");//栏目id
  344. $type = input("param.type/d");//1栏目2文章
  345. if(empty($id)) {
  346. if($id == 0){
  347. $mark = Db::name('language')->order('id asc')->value('mark');
  348. if($type == 1){
  349. $arctype = Db::name('arctype')->where(['is_del'=>0,'status'=>1,'lang'=>$mark])->getfield('id',true);
  350. }else{
  351. $where['is_del'] = 0;
  352. $where['status'] = 1;
  353. $where['lang'] = $mark;
  354. $where['current_channel'] = array(array('neq',6),array('neq',8));
  355. $arctype = Db::name('arctype')->where($where)->getfield('id',true);
  356. }
  357. if(empty($arctype)){
  358. $this->error('没有要更新的栏目!');
  359. }else{
  360. $arctype = implode(',',$arctype);
  361. $this->success($arctype);
  362. }
  363. }else{
  364. $this->error('栏目ID不能为空!');
  365. }
  366. }else{
  367. //递归查询所有的子类
  368. $arctype_child_all = array($id);
  369. getAllChild($arctype_child_all,$id,$type);
  370. $arctype_child_all = implode(',',$arctype_child_all);
  371. if(empty($arctype_child_all)) {
  372. $this->error('没有要更新的栏目!');
  373. }else{
  374. $this->success($arctype_child_all);
  375. }
  376. }
  377. }
  378. /**
  379. * 纠正栏目的HTML目录路径字段值
  380. */
  381. private function correctArctypeDirpath()
  382. {
  383. $system_correctArctypeDirpath = tpCache('global.system_correctArctypeDirpath');
  384. if (!empty($system_correctArctypeDirpath)) {
  385. return false;
  386. }
  387. $saveData = [];
  388. $arctypeList = Db::name('arctype')->field('id,parent_id,dirname,dirpath,grade')
  389. ->order('grade asc')
  390. ->getAllWithIndex('id');
  391. foreach ($arctypeList as $key => $val) {
  392. if (empty($val['parent_id'])) { // 一级栏目
  393. $saveData[] = [
  394. 'id' => $val['id'],
  395. 'dirpath' => '/'.$val['dirname'],
  396. 'grade' => 0,
  397. 'update_time' => getTime(),
  398. ];
  399. } else {
  400. $parentRow = $arctypeList[$val['parent_id']];
  401. if (empty($parentRow['parent_id'])) { // 二级栏目
  402. $saveData[] = [
  403. 'id' => $val['id'],
  404. 'dirpath' => '/'.$parentRow['dirname'].'/'.$val['dirname'],
  405. 'grade' => 1,
  406. 'update_time' => getTime(),
  407. ];
  408. } else { // 三级栏目
  409. $topRow = $arctypeList[$parentRow['parent_id']];
  410. $saveData[] = [
  411. 'id' => $val['id'],
  412. 'dirpath' => '/'.$topRow['dirname'].'/'.$parentRow['dirname'].'/'.$val['dirname'],
  413. 'grade' => 2,
  414. 'update_time' => getTime(),
  415. ];
  416. }
  417. }
  418. }
  419. $r = model('Arctype')->saveAll($saveData);
  420. if (false !== $r) {
  421. /*多语言*/
  422. if (is_language()) {
  423. $langRow = \think\Db::name('language')->order('id asc')
  424. ->cache(true, EYOUCMS_CACHE_TIME, 'language')
  425. ->select();
  426. foreach ($langRow as $key => $val) {
  427. tpCache('system', ['system_correctArctypeDirpath'=>1],$val['mark']);
  428. }
  429. } else {
  430. tpCache('system',['system_correctArctypeDirpath'=>1]);
  431. }
  432. /*--end*/
  433. }
  434. }
  435. /**
  436. * 静态页面模式切换为其他模式时,检测之前生成的静态目录是否存在,并提示手工删除还是自动删除
  437. */
  438. public function ajax_checkHtmlDirpath()
  439. {
  440. $seo_pseudo_new = input('param.seo_pseudo_new/d');
  441. if (3 == $seo_pseudo_new) {
  442. $dirArr = [];
  443. $seo_html_listname = tpCache('global.seo_html_listname');
  444. $row = Db::name('arctype')->field('dirpath,diy_dirpath')->select();
  445. foreach ($row as $key => $val) {
  446. $dirpathArr = explode('/', $val['dirpath']);
  447. if (3 == $seo_html_listname) {
  448. $dir = end($dirpathArr);
  449. } else if (4 == $seo_html_listname) {
  450. $dirpathArr = explode('/', $val['diy_dirpath']);
  451. $dir = end($dirpathArr);
  452. } else {
  453. $dir = !empty($dirpathArr[1]) ? $dirpathArr[1] : '';
  454. }
  455. if (!empty($dir) && !in_array($dir, $dirArr)) {
  456. array_push($dirArr, $dir);
  457. }
  458. }
  459. $data = [];
  460. $data['msg'] = '';
  461. $num = 0;
  462. $wwwroot = glob('*', GLOB_ONLYDIR);
  463. foreach ($wwwroot as $key => $val) {
  464. if (in_array($val, $dirArr)) {
  465. if (0 == $num) {
  466. $data['msg'] .= "<font color='red'>根目录下有HTML静态目录,请先删除:</font><br/>";
  467. }
  468. $data['msg'] .= ($num+1)."、{$val}<br/>";
  469. $num++;
  470. }
  471. }
  472. $data['height'] = $num * 24;
  473. $this->success('检测成功!', null, $data);
  474. }
  475. }
  476. /**
  477. * 自动删除静态HTML存放目录
  478. */
  479. public function ajax_delHtmlDirpath()
  480. {
  481. if (IS_AJAX_POST) {
  482. $data = del_html_dirpath();
  483. if (!empty($data['msg'])){
  484. $this->error('删除失败!', null, $data);
  485. }
  486. $this->success('删除成功!', null, $data);
  487. }
  488. }
  489. /*
  490. * 选择首页模板
  491. */
  492. public function filemanager(){
  493. $this->filemanagerLogic = new FilemanagerLogic();
  494. $this->globalTpCache = $this->filemanagerLogic->globalTpCache;
  495. $this->baseDir = $this->filemanagerLogic->baseDir; // 服务器站点根目录绝对路径
  496. $this->maxDir = $this->filemanagerLogic->maxDir."/pc"; // 默认文件管理的最大级别目录
  497. // 获取到所有GET参数
  498. $param = input('param.', '', null);
  499. $activepath = input('param.activepath', '', null);
  500. $activepath = $this->filemanagerLogic->replace_path($activepath, ':', true);
  501. /*当前目录路径*/
  502. $activepath = !empty($activepath) ? $activepath : $this->maxDir;
  503. $tmp_max_dir = preg_replace("#\/#i", "\/", $this->maxDir);
  504. if (!preg_match("#^".$tmp_max_dir."#i", $activepath)) {
  505. $activepath = $this->maxDir;
  506. }
  507. /*--end*/
  508. $inpath = "";
  509. $activepath = str_replace("..", "", $activepath);
  510. $activepath = preg_replace("#^\/{1,}#", "/", $activepath); // 多个斜杆替换为单个斜杆
  511. if($activepath == "/") $activepath = "";
  512. if(empty($activepath)) {
  513. $inpath = $this->baseDir.$this->maxDir;
  514. } else {
  515. $inpath = $this->baseDir.$activepath;
  516. }
  517. $list = $this->filemanagerLogic->getDirFile($inpath, $activepath);
  518. $assign_data['list'] = $list;
  519. /*文件操作*/
  520. $assign_data['replaceImgOpArr'] = $this->filemanagerLogic->replaceImgOpArr;
  521. $assign_data['editOpArr'] = $this->filemanagerLogic->editOpArr;
  522. $assign_data['renameOpArr'] = $this->filemanagerLogic->renameOpArr;
  523. $assign_data['delOpArr'] = $this->filemanagerLogic->delOpArr;
  524. $assign_data['moveOpArr'] = $this->filemanagerLogic->moveOpArr;
  525. /*--end*/
  526. $assign_data['activepath'] = $activepath;
  527. $this->assign($assign_data);
  528. return $this->fetch();
  529. }
  530. }