説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

MakemHtml.php 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322
  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-06-28
  12. */
  13. namespace weapp\MakemHtml\controller;
  14. use think\Page;
  15. use think\Db;
  16. use app\common\controller\Weapp;
  17. use weapp\MakemHtml\model\MakemHtmlModel;
  18. use think\Cache;
  19. use app\common\logic\ArctypeLogic;
  20. use app\admin\controller\Base;
  21. /**
  22. * 插件的控制器
  23. */
  24. class MakemHtml extends Weapp
  25. {
  26. /**
  27. * 实例化模型
  28. */
  29. private $model;
  30. /**
  31. * 实例化对象
  32. */
  33. private $db;
  34. /**
  35. * 插件基本信息
  36. */
  37. private $weappInfo;
  38. /**
  39. * 构造方法
  40. */
  41. public function __construct(){
  42. parent::__construct();
  43. $this->model = new MakemHtmlModel;
  44. $this->db = Db::name('WeappMakemHtml');
  45. /*插件基本信息*/
  46. $this->weappInfo = $this->getWeappInfo();
  47. $this->assign('weappInfo', $this->weappInfo);
  48. /*--end*/
  49. }
  50. /**
  51. * 插件使用指南
  52. */
  53. public function doc()
  54. {
  55. return $this->fetch();
  56. }
  57. /**
  58. * 插件配置
  59. */
  60. public function conf()
  61. {
  62. $inc_type = 'seo';
  63. $config = tpCache($inc_type);
  64. $config['seo_pseudo'] = tpCache('seo.seo_pseudo');
  65. $templateConfig['view_path'] = "./template/".TPL_THEME."mobile/";
  66. if(!file_exists($templateConfig['view_path'])){
  67. $templateerror = 1;
  68. $this->assign('templateerror', $templateerror);
  69. }
  70. if($config['seo_pseudo']!=2){
  71. $conf_seo_pseudo = 1;
  72. $this->assign('conf_seo_pseudo', $conf_seo_pseudo);
  73. }
  74. if (IS_POST) {
  75. $seo_html_arcdir= M('config')->where('id',227)->value('value');
  76. $post = input('post.');
  77. $post['value1'] = $seo_html_arcdir;
  78. $r = Db::name('weapp_makemhtml')
  79. ->where('id',1)
  80. ->update($post);
  81. // echo( Db::getLastSql());die;
  82. if ($r) {
  83. $this->success("操作成功!", weapp_url('MakemHtml/MakemHtml/conf'));
  84. }
  85. $this->success("操作成功!");
  86. }
  87. $seo_html_arcdir = $config['seo_html_arcdir']!=''?substr($config['seo_html_arcdir'],1):'html';
  88. $row = M('weapp_makemhtml')->where(1)->find();
  89. $this->assign('row', $row);
  90. $this->assign('seo_html_arcdir', $seo_html_arcdir);
  91. return $this->fetch('conf');
  92. }
  93. // 静态生成
  94. public function build(){
  95. $config = tpCache('seo');
  96. $row = M('weapp_makemhtml')->where(1)->value('value');
  97. $row = !empty($row) ? $row : '/m';
  98. $config['seo_html_position']='..'.$row.'/index.html';
  99. $this->assign('config',$config);//当前配置项
  100. // 栏目列表
  101. $map = array(
  102. 'status' => 1,
  103. 'is_del' => 0, // 回收站功能
  104. 'current_channel' => ['neq', 51], // 问答模型
  105. 'weapp_code' => '',
  106. );
  107. $arctypeLogic = new ArctypeLogic();
  108. $select_html = $arctypeLogic->arctype_list(0, 0, true, config('global.arctype_max_level'), $map);
  109. $this->assign('select_html',$select_html);
  110. // 允许发布文档列表的栏目
  111. $arc_select_html = allow_release_arctype();
  112. $this->assign('arc_select_html', $arc_select_html);
  113. $row = M('weapp_makemhtml')->where('id',1)->value('value');
  114. $this->assign('row', $row);
  115. return $this->fetch();
  116. }
  117. /**
  118. * 插件后台管理 - 列表
  119. */
  120. public function index()
  121. {
  122. /* 纠正栏目的HTML目录路径字段值 */
  123. $this->correctArctypeDirpath();
  124. /* end */
  125. $inc_type = 'seo';
  126. $config = tpCache($inc_type);
  127. $config['seo_pseudo'] = tpCache('seo.seo_pseudo');
  128. $seo_pseudo_list = get_seo_pseudo_list();
  129. $this->assign('seo_pseudo_list', $seo_pseudo_list);
  130. $templateConfig['view_path'] = "./template/".TPL_THEME."mobile/index.htm";
  131. if(!file_exists($templateConfig['view_path'])){
  132. $templateerror = 1;
  133. $this->assign('templateerror', $templateerror);
  134. }
  135. if($config['seo_pseudo']!=2){
  136. $conf_seo_pseudo = 1;
  137. $this->assign('conf_seo_pseudo', $conf_seo_pseudo);
  138. }
  139. /* 生成静态页面代码 - 多语言统一设置URL模式 */
  140. $seo_pseudo_lang = '';
  141. $web_language_switch = tpCache('web.web_language_switch');
  142. if (is_language() && !empty($web_language_switch)) {
  143. $markArr = Db::name('language')->field('mark')->order('id asc')->limit('1,1')->select();
  144. if (!empty($markArr[0]['mark'])) {
  145. $seo_pseudo_lang = tpCache('seo.seo_pseudo', [], $markArr[0]['mark']);
  146. }
  147. $seo_pseudo_lang = !empty($seo_pseudo_lang) ? $seo_pseudo_lang : 1;
  148. }
  149. $this->assign('seo_pseudo_lang', $seo_pseudo_lang);
  150. /* end */
  151. /* 限制文档HTML保存路径的名称 */
  152. $wwwroot_dir = config('global.wwwroot_dir'); // 网站根目录的目录列表
  153. $disable_dirname = config('global.disable_dirname'); // 栏目伪静态时的路由路径
  154. $wwwroot_dir = array_merge($wwwroot_dir, $disable_dirname);
  155. // 不能与栏目的一级目录名称重复
  156. $arctypeDirnames = Db::name('arctype')->where(['parent_id'=>0])->column('dirname');
  157. is_array($arctypeDirnames) && $wwwroot_dir = array_merge($wwwroot_dir, $arctypeDirnames);
  158. // 不能与多语言的标识重复
  159. $markArr = Db::name('language_mark')->column('mark');
  160. is_array($markArr) && $wwwroot_dir = array_merge($wwwroot_dir, $markArr);
  161. $wwwroot_dir = array_unique($wwwroot_dir);
  162. $this->assign('seo_html_arcdir_limit', implode(',', $wwwroot_dir));
  163. /* end */
  164. $seo_html_arcdir_1 = '';
  165. if (!empty($config['seo_html_arcdir'])) {
  166. $config['seo_html_arcdir'] = trim($config['seo_html_arcdir'], '/');
  167. $seo_html_arcdir_1 = '/'.$config['seo_html_arcdir'];
  168. }
  169. $this->assign('seo_html_arcdir_1', $seo_html_arcdir_1);
  170. // 栏目列表
  171. $map = array(
  172. 'status' => 1,
  173. 'is_del' => 0, // 回收站功能
  174. 'current_channel' => ['neq', 51], // 问答模型
  175. 'weapp_code' => '',
  176. );
  177. $arctypeLogic = new ArctypeLogic();
  178. $select_html = $arctypeLogic->arctype_list(0, 0, true, config('global.arctype_max_level'), $map);
  179. $this->assign('select_html',$select_html);
  180. // 允许发布文档列表的栏目
  181. $arc_select_html = allow_release_arctype();
  182. $this->assign('arc_select_html', $arc_select_html);
  183. // 生成完页面之后,清除缓存
  184. $this->buildhtml_clear_cache();
  185. /*标记是否第一次切换静态页面模式*/
  186. if (!isset($config['seo_html_arcdir'])) {
  187. $init_html = 1; // 第一次切换
  188. } else {
  189. $init_html = 2; // 多次切换
  190. }
  191. $cms_version = getCmsVersion();
  192. $min_version = 'v1.5.7';
  193. if ($cms_version < $min_version) {
  194. $this->error('当前CMS版本太低,该插件要求CMS版本 >= ' . $min_version . ',请升级系统!');
  195. }
  196. //读取手机目录
  197. $row = M('weapp_makemhtml')->where('id',1)->find();
  198. $this->assign('row', $row['value']);
  199. $this->assign('seo_html_arcdir',$row['value1']);
  200. // echo $config['seo_html_arcdir'];die;
  201. $this->assign('init_html', $init_html);
  202. /*--end*/
  203. $this->assign('config',$config);//当前配置项
  204. return $this->fetch();
  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. private function buildhtml_clear_cache()
  267. {
  268. // 文档参数缓存
  269. cache("article_info_serialize",null);
  270. cache("article_page_total_serialize",null);
  271. cache("article_content_serialize",null);
  272. cache("article_tags_serialize",null);
  273. cache("article_attr_info_serialize",null);
  274. cache("article_children_row_serialize",null);
  275. // 栏目参数缓存
  276. cache("channel_page_total_serialize",null);
  277. cache("channel_info_serialize",null);
  278. cache("has_children_Row_serialize",null);
  279. }
  280. }