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

Seom.php 21KB

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