Bez popisu
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.

Sitemap.php 13KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345
  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\api\controller;
  14. use think\Db;
  15. use think\template\driver\File;
  16. class Sitemap extends Base
  17. {
  18. public function _initialize() {
  19. parent::_initialize();
  20. }
  21. /**
  22. * 生成sitemap
  23. * @return [type] [description]
  24. */
  25. public function ajax_update_sitemap()
  26. {
  27. sitemap_all();
  28. if (IS_POST) {
  29. $this->success('更新成功');
  30. }
  31. exit('success');
  32. }
  33. /**
  34. * 生成sitemap.xml
  35. * @return [type] [description]
  36. */
  37. public function ajax_update_sitemap_xml()
  38. {
  39. sitemap_all('xml');
  40. if (IS_POST) {
  41. $this->success('更新成功');
  42. }
  43. exit('success');
  44. }
  45. /**
  46. * 生成sitemap.txt
  47. * @return [type] [description]
  48. */
  49. public function ajax_update_sitemap_txt()
  50. {
  51. sitemap_all('txt');
  52. if (IS_POST) {
  53. $this->success('更新成功');
  54. }
  55. exit('success');
  56. }
  57. /**
  58. * 生成sitemap.html
  59. * @return [type] [description]
  60. */
  61. public function ajax_update_sitemap_html(){
  62. \think\Session::pause(); // 暂停session,防止session阻塞机制
  63. $msg = $this->handleBuildSitemap();
  64. if (IS_AJAX) {
  65. if (empty($msg)) {
  66. $this->success('更新成功');
  67. } else {
  68. $this->error('更新失败', null, ['msg'=>$msg]);
  69. }
  70. }
  71. if (empty($msg)) {
  72. exit('success');
  73. } else {
  74. exit($msg);
  75. }
  76. }
  77. /*
  78. * 处理生成html
  79. */
  80. private function handleBuildSitemap()
  81. {
  82. $is_auto = input('param.is_auto/s', 'on'); // 是否自动生成,还是手工生成
  83. $sitemapid = tpSetting('system.system_sitemapid1647228884'); //四个模块最后一条id,type_arc_tag_ask
  84. $last_type = $last_arc = $last_tag = $last_ask = 0;
  85. $is_create = false;
  86. if (!is_file('./sitemap.html') || 'off' == $is_auto) {
  87. $is_create = true;
  88. }
  89. if (!empty($sitemapid)){
  90. $sitemapid_arr = explode("_",$sitemapid);
  91. $last_type = !empty($sitemapid_arr[0]) ? $sitemapid_arr[0] : 0;
  92. $last_arc = !empty($sitemapid_arr[1]) ? $sitemapid_arr[1] : 0;
  93. $last_tag = !empty($sitemapid_arr[2]) ? $sitemapid_arr[2] : 0;
  94. $last_ask = !empty($sitemapid_arr[3]) ? $sitemapid_arr[3] : 0;
  95. }
  96. $globalConfig = tpCache('global');
  97. $web_name = empty($globalConfig['web_name']) ? $globalConfig['web_title'] : $globalConfig['web_name'];
  98. $lang = get_current_lang();
  99. //栏目信息
  100. $type_map = array(
  101. 'status' => 1,
  102. 'is_del' => 0,
  103. 'lang' => $lang,
  104. );
  105. if (is_array($globalConfig)) {
  106. // 过滤隐藏栏目
  107. if (isset($globalConfig['sitemap_not1']) && $globalConfig['sitemap_not1'] > 0) {
  108. $type_map['is_hidden'] = 0;
  109. }
  110. // 过滤外部模块
  111. if (isset($globalConfig['sitemap_not2']) && $globalConfig['sitemap_not2'] > 0) {
  112. $type_map['is_part'] = 0;
  113. }
  114. }
  115. $result_arctype = Db::name('arctype')->field("*")
  116. ->where($type_map)
  117. ->order('id asc')
  118. ->getAllWithIndex('id');
  119. $last_type_new = reset($result_arctype);
  120. if ($is_create == false && !empty($last_type_new['id']) && $last_type_new['id'] > $last_type){
  121. $is_create = true;
  122. $last_type = $last_type_new['id'];
  123. }
  124. $type_list = [];
  125. foreach ($result_arctype as $sub){
  126. if ($sub['is_part'] == 1 && !empty($sub['typelink'])) {
  127. $url = $sub['typelink'];
  128. } else {
  129. $url = get_typeurl($sub, false);
  130. }
  131. $type_list[] = [
  132. 'url' => $url,
  133. 'title' => $sub['typename']
  134. ];
  135. }
  136. //文档信息
  137. $arc_map = array(
  138. 'channel' => ['IN', config('global.allow_release_channel')],
  139. 'arcrank' => array('gt', -1),
  140. 'status' => 1,
  141. 'is_del' => 0,
  142. 'lang' => $lang,
  143. );
  144. if (is_array($globalConfig)) {
  145. // 过滤外部模块
  146. if (isset($globalConfig['sitemap_not2']) && $globalConfig['sitemap_not2'] > 0) {
  147. $arc_map['is_jump'] = 0;
  148. }
  149. }
  150. /*定时文档显示插件*/
  151. if (is_dir('./weapp/TimingTask/')) {
  152. $weappModel = new \app\admin\model\Weapp;
  153. $TimingTaskRow = $weappModel->getWeappList('TimingTask');
  154. if (!empty($TimingTaskRow['status']) && 1 == $TimingTaskRow['status']) {
  155. $arc_map['add_time'] = ['elt', getTime()]; // 只显当天或之前的文档
  156. }
  157. }
  158. /*end*/
  159. if (!isset($globalConfig['sitemap_archives_num']) || $globalConfig['sitemap_archives_num'] === '') {
  160. $sitemap_archives_num = 1000;
  161. } else {
  162. $sitemap_archives_num = intval($globalConfig['sitemap_archives_num']);
  163. }
  164. $field = "aid, channel, is_jump, jumplinks, htmlfilename, add_time, update_time, typeid,title,province_id,city_id,area_id";
  165. $result_archives = Db::name('archives')->field($field)
  166. ->where($arc_map)
  167. ->order('aid desc')
  168. ->limit($sitemap_archives_num)
  169. ->select();
  170. $arc_list = [];
  171. if ($is_create == false && !empty($result_archives[0]['aid']) && $result_archives[0]['aid'] > $last_arc){
  172. $is_create = true;
  173. $last_arc = $result_archives[0]['aid'];
  174. }
  175. foreach ($result_archives as $val){
  176. if (empty($result_arctype[$val['typeid']])){
  177. continue;
  178. }
  179. $val = array_merge($result_arctype[$val['typeid']], $val);
  180. if ($val['is_jump'] == 1) {
  181. $url = $val['jumplinks'];
  182. } else {
  183. $url = get_arcurl($val, false);
  184. }
  185. $arc_list[] = [
  186. 'url' => $url,
  187. 'title' => $val['title']
  188. ];
  189. }
  190. //tags页面
  191. if (!isset($globalConfig['sitemap_tags_num']) || $globalConfig['sitemap_tags_num'] === '') {
  192. $sitemap_tags_num = 1000;
  193. } else {
  194. $sitemap_tags_num = intval($globalConfig['sitemap_tags_num']);
  195. }
  196. $tags_map = array(
  197. 'lang' => $lang,
  198. );
  199. $field = "id, add_time, tag";
  200. $result_tags = Db::name('tagindex')->field($field)
  201. ->where($tags_map)
  202. ->order('id desc')
  203. ->limit($sitemap_tags_num)
  204. ->select();
  205. if ($is_create == false && !empty($result_tags[0]['id']) && $result_tags[0]['id'] > $last_tag){
  206. $is_create = true;
  207. $last_tag = $result_tags[0]['id'];
  208. }
  209. $tags_list = [];
  210. foreach ($result_tags as $val){
  211. $tags_list[] = [
  212. 'url' => get_tagurl($val['id']),
  213. 'title' => $val['tag']
  214. ];
  215. }
  216. // 问答插件
  217. $ask_list = [];
  218. if (is_dir('./weapp/Ask/')) {
  219. try{
  220. $askLogic = new \app\plugins\logic\AskLogic;
  221. $Askow = Db::name("weapp")->where(['code'=>'Ask'])->field("status,data")->find();
  222. if (!empty($Askow['status']) && 1 == $Askow['status']) {
  223. $ask_map = [
  224. 'is_review' =>1,
  225. ];
  226. $ask_seo_pseudo = 1;
  227. $Askow['data'] = unserialize($Askow['data']);
  228. if (!empty($Askow['data']['seo_pseudo'])) {
  229. $ask_seo_pseudo = intval($Askow['data']['seo_pseudo']);
  230. }
  231. //问答首页
  232. if (method_exists($askLogic, 'askurl')) {
  233. $url = $askLogic->askurl('plugins/Ask/index', [], true, false, $ask_seo_pseudo);
  234. } else {
  235. $url = url('plugins/Ask/index', [], true, false, $ask_seo_pseudo);
  236. }
  237. $ask_list[] = [
  238. 'url' => auto_hide_index($url),
  239. 'title' => "问答首页"
  240. ];
  241. //问答栏目
  242. $result_ask_type = Db::name("weapp_ask_type")->field("type_id,type_name")->order('sort_order asc')->select();
  243. foreach ($result_ask_type as $val){
  244. if (method_exists($askLogic, 'askurl')) {
  245. $url = $askLogic->askurl('plugins/Ask/index', ['type_id'=>$val['type_id']],true,false,$ask_seo_pseudo);
  246. } else {
  247. $url = url('plugins/Ask/index', ['type_id'=>$val['type_id']],true,false,$ask_seo_pseudo);
  248. }
  249. $ask_list[] = [
  250. 'url' => auto_hide_index($url),
  251. 'title' => $val['type_name']
  252. ];
  253. }
  254. //问答内容
  255. $result_ask = Db::name('weapp_ask')->field('ask_id,type_id,ask_title')
  256. ->where($ask_map)
  257. ->order('ask_id desc')
  258. ->select();
  259. foreach ($result_ask as $val){
  260. if (method_exists($askLogic, 'askurl')) {
  261. $url = $askLogic->askurl('plugins/Ask/details', ['ask_id'=>$val['ask_id']],true,false,$ask_seo_pseudo);
  262. } else {
  263. $url = url('plugins/Ask/details', ['ask_id'=>$val['ask_id']],true,false,$ask_seo_pseudo);
  264. }
  265. $ask_list[] = [
  266. 'url' => auto_hide_index($url),
  267. 'title' => $val['ask_title']
  268. ];
  269. }
  270. if ($is_create == false && !empty($result_ask[0]['ask_id']) && $result_ask[0]['ask_id'] > $last_ask){
  271. $is_create = true;
  272. $last_ask = $result_ask[0]['ask_id'];
  273. }
  274. }
  275. }catch (\Exception $e){}
  276. }
  277. $msg = '';
  278. if ($is_create){
  279. //数据整合与生成
  280. $eyou = array(
  281. 'seo_title' => $web_name.'_网站地图',
  282. 'seo_keywords' => '',
  283. 'seo_description' => '',
  284. 'index' => ['url'=>request()->domain().ROOT_DIR.'/','title'=>$web_name], //首页信息(url链接和title)
  285. 'type_list' => $type_list,
  286. 'arc_list' => $arc_list,
  287. 'tags_list' => $tags_list,
  288. 'ask_list' => $ask_list
  289. );
  290. $this->assign('eyou', $eyou);
  291. try {
  292. $savepath = "./sitemap.html";
  293. $tpl = 'index';
  294. $this->filePutContents($savepath, $tpl);
  295. $sitemapid = $last_type."_".$last_arc."_".$last_tag."_".$last_ask;
  296. $r = tpSetting('system',['system_sitemapid1647228884'=>$sitemapid]);
  297. } catch (\Exception $e) {
  298. $msg .= '<span>sitemap.html生成失败!' . $e->getMessage() . '</span><br>';
  299. }
  300. }
  301. return $msg;
  302. }
  303. /*
  304. * 写入静态页面
  305. * $savepath 保存位置
  306. * $tpl 模板名称
  307. *
  308. */
  309. private function filePutContents($savepath, $tpl)
  310. {
  311. ob_start();
  312. static $templateConfig = null;
  313. null === $templateConfig && $templateConfig = \think\Config::get('template');
  314. $templateConfig['view_path'] = "./public/html/";
  315. $template = "./public/html/sitemap.{$templateConfig['view_suffix']}";
  316. $content = $this->fetch($template, [], [], $templateConfig);
  317. /*解决模板里没有设置编码的情况*/
  318. if (!stristr($content, 'utf-8')) {
  319. $content = str_ireplace('<head>', "<head>\n<meta charset='utf-8'>", $content);
  320. }
  321. /*end*/
  322. echo $content;
  323. $_cache = ob_get_contents();
  324. ob_end_clean();
  325. static $File = null;
  326. null === $File && $File = new File;
  327. $File->fwrite($savepath, $_cache);
  328. }
  329. }