Geen omschrijving
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 14KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402
  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 weapp\MakemHtml\controller;
  14. use think\Db;
  15. use think\Cache;
  16. use app\common\logic\ArctypeLogic;
  17. use think\paginator\driver; // 生成静态页面代码
  18. use app\admin\controller\Base;
  19. class Seo extends Base
  20. {
  21. public function _initialize() {
  22. parent::_initialize();
  23. $this->language_access(); // 多语言功能操作权限
  24. }
  25. /*
  26. * 生成总站
  27. */
  28. public function site(){
  29. return $this->fetch();
  30. }
  31. /*
  32. * 生成栏目页
  33. */
  34. public function channel(){
  35. $typeid = input('param.typeid/d','0'); // 栏目ID
  36. $this->assign("typeid",$typeid);
  37. return $this->fetch();
  38. }
  39. /*
  40. * 生成文档页
  41. */
  42. public function article()
  43. {
  44. $typeid = input('param.typeid/d','0'); // 栏目ID
  45. $this->assign("typeid",$typeid);
  46. return $this->fetch();
  47. }
  48. /*
  49. * URL配置
  50. */
  51. public function seo()
  52. {
  53. /* 纠正栏目的HTML目录路径字段值 */
  54. $this->correctArctypeDirpath();
  55. /* end */
  56. $inc_type = 'seo';
  57. $config = tpCache($inc_type);
  58. $config['seo_pseudo'] = tpCache('seo.seo_pseudo');
  59. $seo_pseudo_list = get_seo_pseudo_list();
  60. $this->assign('seo_pseudo_list', $seo_pseudo_list);
  61. /* 生成静态页面代码 - 多语言统一设置URL模式 */
  62. $seo_pseudo_lang = '';
  63. $web_language_switch = tpCache('web.web_language_switch');
  64. if (is_language() && !empty($web_language_switch)) {
  65. $markArr = Db::name('language')->field('mark')->order('id asc')->limit('1,1')->select();
  66. if (!empty($markArr[0]['mark'])) {
  67. $seo_pseudo_lang = tpCache('seo.seo_pseudo', [], $markArr[0]['mark']);
  68. }
  69. $seo_pseudo_lang = !empty($seo_pseudo_lang) ? $seo_pseudo_lang : 1;
  70. }
  71. $this->assign('seo_pseudo_lang', $seo_pseudo_lang);
  72. /* end */
  73. /* 限制文档HTML保存路径的名称 */
  74. $wwwroot_dir = config('global.wwwroot_dir'); // 网站根目录的目录列表
  75. $disable_dirname = config('global.disable_dirname'); // 栏目伪静态时的路由路径
  76. $wwwroot_dir = array_merge($wwwroot_dir, $disable_dirname);
  77. // 不能与栏目的一级目录名称重复
  78. $arctypeDirnames = Db::name('arctype')->where(['parent_id'=>0])->column('dirname');
  79. is_array($arctypeDirnames) && $wwwroot_dir = array_merge($wwwroot_dir, $arctypeDirnames);
  80. // 不能与多语言的标识重复
  81. $markArr = Db::name('language_mark')->column('mark');
  82. is_array($markArr) && $wwwroot_dir = array_merge($wwwroot_dir, $markArr);
  83. $wwwroot_dir = array_unique($wwwroot_dir);
  84. $this->assign('seo_html_arcdir_limit', implode(',', $wwwroot_dir));
  85. /* end */
  86. $seo_html_arcdir_1 = '';
  87. if (!empty($config['seo_html_arcdir'])) {
  88. $config['seo_html_arcdir'] = trim($config['seo_html_arcdir'], '/');
  89. $seo_html_arcdir_1 = '/'.$config['seo_html_arcdir'];
  90. }
  91. $this->assign('seo_html_arcdir_1', $seo_html_arcdir_1);
  92. // 栏目列表
  93. $map = array(
  94. 'status' => 1,
  95. 'is_del' => 0, // 回收站功能
  96. 'current_channel' => ['neq', 51], // 问答模型
  97. 'weapp_code' => '',
  98. );
  99. $arctypeLogic = new ArctypeLogic();
  100. $select_html = $arctypeLogic->arctype_list(0, 0, true, config('global.arctype_max_level'), $map);
  101. $this->assign('select_html',$select_html);
  102. // 允许发布文档列表的栏目
  103. $arc_select_html = allow_release_arctype();
  104. $this->assign('arc_select_html', $arc_select_html);
  105. // 生成完页面之后,清除缓存
  106. $this->buildhtml_clear_cache();
  107. /*标记是否第一次切换静态页面模式*/
  108. if (!isset($config['seo_html_arcdir'])) {
  109. $init_html = 1; // 第一次切换
  110. } else {
  111. $init_html = 2; // 多次切换
  112. }
  113. $this->assign('init_html', $init_html);
  114. /*--end*/
  115. $this->assign('config',$config);//当前配置项
  116. return $this->fetch();
  117. }
  118. /*
  119. * 保存URL配置
  120. */
  121. public function handle()
  122. {
  123. if (IS_POST) {
  124. $inc_type = 'seo';
  125. $param = input('get.');
  126. $globalConfig = tpCache('global');
  127. $seo_pseudo_new = $param['seo_pseudo'];
  128. if($param['seo_html_arcdir']){
  129. //生成目录改成手机端设置目录
  130. $r = Db::name('config')->where('id','227')->update(['value'=>$param['seo_html_arcdir']]);
  131. $this->success('操作成功'.$param['seo_html_arcdir'], url('Seo/seo'));
  132. }else{
  133. $this->error('先设置手机端目录');
  134. }
  135. }
  136. $this->error('操作失败');
  137. }
  138. /**
  139. * 生成静态页面代码 - 更新分页php文件支持生成静态功能
  140. */
  141. private function update_paginatorfile()
  142. {
  143. $dirpath = CORE_PATH . 'paginator/driver/*.php';
  144. $files = glob($dirpath);
  145. foreach ($files as $key => $file) {
  146. if (is_writable($file)) {
  147. $strContent = @file_get_contents($file);
  148. if (false != $strContent && !stristr($strContent, 'data-ey_fc35fdc="html"')) {
  149. $replace = 'htmlentities($url) . \'" data-ey_fc35fdc="html" data-tmp="1\'';
  150. $strContent = str_replace('htmlentities($url)', $replace, $strContent);
  151. @chmod($file,0777);
  152. @file_put_contents($file, $strContent);
  153. }
  154. }
  155. }
  156. }
  157. /*
  158. * 生成整站静态文件
  159. */
  160. public function buildSite(){
  161. $type = input("param.type/s");
  162. if($type != 'site'){
  163. $this->error('操作失败');
  164. }
  165. $this->success('操作成功');
  166. }
  167. /*
  168. * 获取生成栏目或文章的栏目id
  169. */
  170. public function getAllType(){
  171. $id = input("param.id/d");//栏目id
  172. $type = input("param.type/d");//1栏目2文章
  173. if(empty($id)) {
  174. if($id == 0){
  175. $mark = Db::name('language')->order('id asc')->value('mark');
  176. if($type == 1){
  177. $arctype = Db::name('arctype')->where(['is_del'=>0,'status'=>1,'lang'=>$mark])->getfield('id',true);
  178. }else{
  179. $where['is_del'] = 0;
  180. $where['status'] = 1;
  181. $where['lang'] = $mark;
  182. $where['current_channel'] = array(array('neq',6),array('neq',8));
  183. $arctype = Db::name('arctype')->where($where)->getfield('id',true);
  184. }
  185. if(empty($arctype)){
  186. $this->error('没有要更新的栏目!');
  187. }else{
  188. $arctype = implode(',',$arctype);
  189. $this->success($arctype);
  190. }
  191. }else{
  192. $this->error('栏目ID不能为空!');
  193. }
  194. }else{
  195. //递归查询所有的子类
  196. $arctype_child_all = array($id);
  197. getAllChild($arctype_child_all,$id,$type);
  198. $arctype_child_all = implode(',',$arctype_child_all);
  199. if(empty($arctype_child_all)) {
  200. $this->error('没有要更新的栏目!');
  201. }else{
  202. $this->success($arctype_child_all);
  203. }
  204. }
  205. }
  206. /**
  207. * 纠正栏目的HTML目录路径字段值
  208. */
  209. private function correctArctypeDirpath()
  210. {
  211. $system_correctArctypeDirpath = tpCache('system.system_correctArctypeDirpath');
  212. if (!empty($system_correctArctypeDirpath)) {
  213. return false;
  214. }
  215. $saveData = [];
  216. $arctypeList = Db::name('arctype')->field('id,parent_id,dirname,dirpath,grade')
  217. ->order('grade asc')
  218. ->getAllWithIndex('id');
  219. foreach ($arctypeList as $key => $val) {
  220. if (empty($val['parent_id'])) { // 一级栏目
  221. $saveData[] = [
  222. 'id' => $val['id'],
  223. 'dirpath' => '/'.$val['dirname'],
  224. 'grade' => 0,
  225. 'update_time' => getTime(),
  226. ];
  227. } else {
  228. $parentRow = $arctypeList[$val['parent_id']];
  229. if (empty($parentRow['parent_id'])) { // 二级栏目
  230. $saveData[] = [
  231. 'id' => $val['id'],
  232. 'dirpath' => '/'.$parentRow['dirname'].'/'.$val['dirname'],
  233. 'grade' => 1,
  234. 'update_time' => getTime(),
  235. ];
  236. } else { // 三级栏目
  237. $topRow = $arctypeList[$parentRow['parent_id']];
  238. $saveData[] = [
  239. 'id' => $val['id'],
  240. 'dirpath' => '/'.$topRow['dirname'].'/'.$parentRow['dirname'].'/'.$val['dirname'],
  241. 'grade' => 2,
  242. 'update_time' => getTime(),
  243. ];
  244. }
  245. }
  246. }
  247. $r = model('Arctype')->saveAll($saveData);
  248. if (false !== $r) {
  249. /*多语言*/
  250. if (is_language()) {
  251. $langRow = \think\Db::name('language')->order('id asc')
  252. ->cache(true, EYOUCMS_CACHE_TIME, 'language')
  253. ->select();
  254. foreach ($langRow as $key => $val) {
  255. tpCache('system', ['system_correctArctypeDirpath'=>1],$val['mark']);
  256. }
  257. } else {
  258. tpCache('system',['system_correctArctypeDirpath'=>1]);
  259. }
  260. /*--end*/
  261. }
  262. }
  263. /**
  264. * 静态页面模式切换为其他模式时,检测之前生成的静态目录是否存在,并提示手工删除还是自动删除
  265. */
  266. public function ajax_checkHtmlDirpath()
  267. {
  268. $seo_pseudo_new = input('param.seo_pseudo_new/d');
  269. if (3 == $seo_pseudo_new) {
  270. $dirArr = [];
  271. $seo_html_listname = tpCache('seo.seo_html_listname');
  272. $row = Db::name('arctype')->field('dirpath')->select();
  273. foreach ($row as $key => $val) {
  274. $dirpathArr = explode('/', $val['dirpath']);
  275. if (3 == $seo_html_listname) {
  276. $dir = end($dirpathArr);
  277. } else {
  278. $dir = !empty($dirpathArr[1]) ? $dirpathArr[1] : '';
  279. }
  280. if (!empty($dir) && !in_array($dir, $dirArr)) {
  281. array_push($dirArr, $dir);
  282. }
  283. }
  284. $data = [];
  285. $data['msg'] = '';
  286. $num = 0;
  287. $wwwroot = glob('*', GLOB_ONLYDIR);
  288. foreach ($wwwroot as $key => $val) {
  289. if (in_array($val, $dirArr)) {
  290. if (0 == $num) {
  291. $data['msg'] .= "<font color='red'>根目录下有HTML静态目录,请先删除:</font><br/>";
  292. }
  293. $data['msg'] .= ($num+1)."、{$val}<br/>";
  294. $num++;
  295. }
  296. }
  297. $data['height'] = $num * 24;
  298. $this->success('检测成功!', null, $data);
  299. }
  300. }
  301. /**
  302. * 自动删除静态HTML存放目录
  303. */
  304. public function ajax_delHtmlDirpath()
  305. {
  306. if (IS_AJAX_POST) {
  307. $error = false;
  308. $dirArr = [];
  309. $seo_html_listname = tpCache('seo.seo_html_listname');
  310. $row = Db::name('arctype')->field('dirpath')->select();
  311. foreach ($row as $key => $val) {
  312. $dirpathArr = explode('/', $val['dirpath']);
  313. if (3 == $seo_html_listname) {
  314. $dir = end($dirpathArr);
  315. } else {
  316. $dir = !empty($dirpathArr[1]) ? $dirpathArr[1] : '';
  317. }
  318. $filepath = "./{$dir}";
  319. if (!empty($dir) && !in_array($dir, $dirArr) && file_exists($filepath)) {
  320. @unlink($filepath."/index.html");
  321. $bool = delFile($filepath, true);
  322. if (false !== $bool) {
  323. array_push($dirArr, $dir);
  324. } else {
  325. $error = true;
  326. }
  327. }
  328. }
  329. $data = [];
  330. $data['msg'] = '';
  331. if ($error) {
  332. $num = 0;
  333. $wwwroot = glob('*', GLOB_ONLYDIR);
  334. foreach ($wwwroot as $key => $val) {
  335. if (in_array($val, $dirArr)) {
  336. if (0 == $num) {
  337. $data['msg'] .= "<font color='red'>部分目录删除失败,请手工删除:</font><br/>";
  338. }
  339. $data['msg'] .= ($num+1)."、{$val}<br/>";
  340. $num++;
  341. }
  342. }
  343. $data['height'] = $num * 24;
  344. $this->error('删除失败!', null, $data);
  345. }
  346. $this->success('删除成功!', null, $data);
  347. }
  348. }
  349. /**
  350. * 生成完页面之后,清除缓存
  351. */
  352. private function buildhtml_clear_cache()
  353. {
  354. // 文档参数缓存
  355. cache("article_info_serialize",null);
  356. cache("article_page_total_serialize",null);
  357. cache("article_content_serialize",null);
  358. cache("article_tags_serialize",null);
  359. cache("article_attr_info_serialize",null);
  360. cache("article_children_row_serialize",null);
  361. // 栏目参数缓存
  362. cache("channel_page_total_serialize",null);
  363. cache("channel_info_serialize",null);
  364. cache("has_children_Row_serialize",null);
  365. }
  366. }