心理咨询网
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.

SitemapController.php 9.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. <?php
  2. /**
  3. * @copyright (C)2016-2099 Hnaoyun Inc.
  4. * @author XingMeng
  5. * @email hnxsh@foxmail.com
  6. * @date 2018年7月15日
  7. * 生成sitemap文件
  8. */
  9. namespace app\home\controller;
  10. use core\basic\Controller;
  11. use app\home\model\SitemapModel;
  12. use core\basic\Url;
  13. class SitemapController extends Controller{
  14. protected $model;
  15. public function __construct(){
  16. $this->model = new SitemapModel();
  17. cookie('city',''); //防止生成的链接叠加当前城市
  18. }
  19. public function index()
  20. {
  21. header("Content-type:text/xml;charset=utf-8");
  22. $str = '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
  23. //$str .= '<urlset>' . "\n";
  24. $str .= '<urlset xmlns= "http://www.sitemaps.org/schemas/sitemap/0.9">' . "\n" ;
  25. $str .= $this->makeNode('', date('Y-m-d'), '1.00', 'always'); // 根目录
  26. $sorts = $this->model->getSorts();
  27. $Parser = new ParserController();
  28. $wildcard = $this->config('wildcard'); //泛域名支持状态
  29. $city_suffix = $this->config('city_suffix'); //城市后缀
  30. $city_suffix = $city_suffix ? '.html' : '/';
  31. $model = model('admin.system.City');
  32. $city = $model->getAllList();
  33. $domain = get_http_host(); //当前域名
  34. $cur_city = array_filter($city, function($t) use ($domain) { return $t['isurl'] == $domain; }); //当前城市绑定了域名
  35. if( $wildcard || !empty($cur_city) ){
  36. //开启泛域名
  37. //var_dump("fdfdf");die;
  38. foreach ($sorts as $value) {
  39. if ($value->outlink) {
  40. continue;
  41. } elseif ($value->type == 1) {
  42. $link = $Parser->parserLink(1, $value->urlname, 'about', $value->scode, $value->filename);
  43. $str .= $this->makeNode($link, date('Y-m-d'), '0.80', 'daily');
  44. } else {
  45. $link = $Parser->parserLink(2, $value->urlname, 'list', $value->scode, $value->filename);
  46. $str .= $this->makeNode($link, date('Y-m-d'), '0.80', 'daily');
  47. $contents = $this->model->getSortContent($value->scode);
  48. foreach ($contents as $value2) {
  49. if ($value2->outlink) { // 外链
  50. continue;
  51. } else {
  52. $link = $Parser->parserLink(2, $value2->urlname, 'content', $value2->scode, $value2->sortfilename, $value2->id, $value2->filename);
  53. //echo $link;die;
  54. //去除.html
  55. $link = str_replace(".html", "", $link);
  56. }
  57. $str .= $this->makeNode($link, date('Y-m-d', strtotime($value2->date)), '0.60', 'daily');
  58. }
  59. }
  60. }
  61. }else{
  62. //var_dump("fdfdf");die;
  63. cookie('city',''); //防止生成的链接叠加当前城市
  64. foreach ($city as $c) {
  65. $str .= $this->makeNode( '/'.$c['etitle'] . $city_suffix, date('Y-m-d'), '1.00', 'always'); // 根目录
  66. }
  67. if( $this->config('open_citymap') ){
  68. array_unshift($city,['etitle'=>'','isurl'=>'']); // 添加主站
  69. }else{
  70. $city = ['etitle'=>'','isurl'=>''];
  71. }
  72. foreach( $city as $item ){
  73. if( $item['isurl'] !=='' ){
  74. continue;
  75. }
  76. $url = $item['etitle'] ? '/'.$item['etitle'] : '';
  77. //首页,上面生成过了,这里不再生成
  78. // if( $url!=='' ){
  79. // $str .= $this->makeNode( $url . $city_suffix, date('Y-m-d'), '1.00', 'always'); // 根目录
  80. // }
  81. foreach ($sorts as $value) {
  82. if ($value->outlink) {
  83. continue;
  84. } elseif ($value->type == 1) {
  85. $link = $Parser->parserLink(1, $value->urlname, 'about', $value->scode, $value->filename);
  86. $str .= $this->makeNode( $url . $link, date('Y-m-d'), '0.80', 'daily');
  87. } else {
  88. $link = $Parser->parserLink(2, $value->urlname, 'list', $value->scode, $value->filename);
  89. $str .= $this->makeNode( $url . $link, date('Y-m-d'), '0.80', 'daily');
  90. $contents = $this->model->getSortContent($value->scode);
  91. foreach ($contents as $value2) {
  92. if ($value2->outlink) { // 外链
  93. continue;
  94. } else {
  95. $link = $Parser->parserLink(2, $value2->urlname, 'content', $value2->scode, $value2->sortfilename, $value2->id, $value2->filename);
  96. //echo $link;die;
  97. //去除.html
  98. $link = str_replace(".html", "", $link);
  99. }
  100. $str .= $this->makeNode( $url . $link, date('Y-m-d', strtotime($value2->date)), '0.60', 'daily');
  101. }
  102. }
  103. }
  104. }
  105. }
  106. echo $str . "\n</urlset>";
  107. }
  108. // 生成结点信息
  109. private function makeNode($link, $date, $priority = 0.60, $changefreq = 'always')
  110. {
  111. $node = '
  112. <url>
  113. <loc>' . get_http_url() . $link . '</loc>
  114. <priority>' . $priority . '</priority>
  115. <lastmod>' . $date . '</lastmod>
  116. <changefreq>' . $changefreq . '</changefreq>
  117. </url>';
  118. return $node;
  119. }
  120. // 文本格式
  121. public function linkTxt()
  122. {
  123. header("Content-type:text/plain;charset=utf-8");
  124. $sorts = $this->model->getSorts();
  125. $Parser = new ParserController();
  126. $str = get_http_url() . "\n";
  127. $wildcard = $this->config('wildcard'); //泛域名支持状态
  128. $city_suffix = $this->config('city_suffix'); //城市后缀
  129. $city_suffix = $city_suffix ? '.html' : '/';
  130. $model = model('admin.system.City');
  131. $city = $model->getAllList();
  132. $domain = get_http_host(); //当前域名
  133. $cur_city = array_filter($city, function($t) use ($domain) { return $t['isurl'] == $domain; }); //当前城市绑定了域名
  134. if( $wildcard || !empty($cur_city) ){
  135. //开启二级域名
  136. //var_dump("55dfd5");die;
  137. foreach ($sorts as $value) {
  138. if ($value->outlink) {
  139. continue;
  140. } elseif ($value->type == 1) {
  141. $link = $Parser->parserLink(1, $value->urlname, 'about', $value->scode, $value->filename);
  142. $str .= get_http_url() . $link . "\n";
  143. } else {
  144. $link = $Parser->parserLink(2, $value->urlname, 'list', $value->scode, $value->filename);
  145. $str .= get_http_url() . $link . "\n";
  146. $contents = $this->model->getSortContent($value->scode);
  147. foreach ($contents as $value2) {
  148. if ($value2->outlink) { // 外链
  149. continue;
  150. } else {
  151. $link = $Parser->parserLink(2, $value2->urlname, 'content', $value2->scode, $value2->sortfilename, $value2->id, $value2->filename);
  152. //echo $link;die;
  153. //去除.html
  154. $link = str_replace(".html", "", $link);
  155. }
  156. $str .= get_http_url() . $link . "\n";
  157. }
  158. }
  159. }
  160. }else{
  161. cookie('city',''); //防止生成的链接叠加当前城市
  162. foreach ($city as $c) {
  163. $str .= get_http_url() .'/'. $c['etitle'] . $city_suffix . "\n"; // 根目录
  164. }
  165. if( $this->config('open_citymap') ){
  166. array_unshift($city,['etitle'=>'','isurl'=>'']); // 添加主站
  167. }else{
  168. $city = ['etitle'=>'','isurl'=>''];
  169. }
  170. foreach( $city as $item ){
  171. if( $item['isurl'] !=='' ){
  172. continue;
  173. }
  174. $url = $item['etitle'] ? '/'.$item['etitle'] : '';
  175. //$str .= get_http_url() . $url . $city_suffix . "\n";
  176. foreach ($sorts as $value) {
  177. if ($value->outlink) {
  178. continue;
  179. } elseif ($value->type == 1) {
  180. $link = $Parser->parserLink(1, $value->urlname, 'about', $value->scode, $value->filename);
  181. $str .= get_http_url() . $url . $link . "\n";
  182. } else {
  183. $link = $Parser->parserLink(2, $value->urlname, 'list', $value->scode, $value->filename);
  184. $str .= get_http_url() . $url . $link . "\n";
  185. $contents = $this->model->getSortContent($value->scode);
  186. foreach ($contents as $value2) {
  187. if ($value2->outlink) { // 外链
  188. continue;
  189. } else {
  190. $link = $Parser->parserLink(2, $value2->urlname, 'content', $value2->scode, $value2->sortfilename, $value2->id, $value2->filename);
  191. //echo $link;die;
  192. //去除.html
  193. $link = str_replace(".html", "", $link);
  194. }
  195. $str .= get_http_url() . $url . $link . "\n";
  196. }
  197. }
  198. }
  199. }
  200. }
  201. echo $str;
  202. }
  203. }