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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  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. foreach ($sorts as $value) {
  37. if ($value->outlink) {
  38. continue;
  39. } elseif ($value->type == 1) {
  40. $link = $Parser->parserLink(1, $value->urlname, 'about', $value->scode, $value->filename);
  41. $str .= $this->makeNode($link, date('Y-m-d'), '0.80', 'daily');
  42. } else {
  43. $link = $Parser->parserLink(2, $value->urlname, 'list', $value->scode, $value->filename);
  44. $str .= $this->makeNode($link, date('Y-m-d'), '0.80', 'daily');
  45. $contents = $this->model->getSortContent($value->scode);
  46. foreach ($contents as $value2) {
  47. if ($value2->outlink) { // 外链
  48. continue;
  49. } else {
  50. $link = $Parser->parserLink(2, $value2->urlname, 'content', $value2->scode, $value2->sortfilename, $value2->id, $value2->filename);
  51. }
  52. $str .= $this->makeNode($link, date('Y-m-d', strtotime($value2->date)), '0.60', 'daily');
  53. }
  54. }
  55. }
  56. }else{
  57. cookie('city',''); //防止生成的链接叠加当前城市
  58. foreach ($city as $c) {
  59. $str .= $this->makeNode( '/'.$c['etitle'] . $city_suffix, date('Y-m-d'), '1.00', 'always'); // 根目录
  60. }
  61. if( $this->config('open_citymap') ){
  62. array_unshift($city,['etitle'=>'','isurl'=>'']); // 添加主站
  63. }else{
  64. $city = ['etitle'=>'','isurl'=>''];
  65. }
  66. foreach( $city as $item ){
  67. if( $item['isurl'] !=='' ){
  68. continue;
  69. }
  70. $url = $item['etitle'] ? '/'.$item['etitle'] : '';
  71. //首页,上面生成过了,这里不再生成
  72. // if( $url!=='' ){
  73. // $str .= $this->makeNode( $url . $city_suffix, date('Y-m-d'), '1.00', 'always'); // 根目录
  74. // }
  75. foreach ($sorts as $value) {
  76. if ($value->outlink) {
  77. continue;
  78. } elseif ($value->type == 1) {
  79. $link = $Parser->parserLink(1, $value->urlname, 'about', $value->scode, $value->filename);
  80. $str .= $this->makeNode( $url . $link, date('Y-m-d'), '0.80', 'daily');
  81. } else {
  82. $link = $Parser->parserLink(2, $value->urlname, 'list', $value->scode, $value->filename);
  83. $str .= $this->makeNode( $url . $link, date('Y-m-d'), '0.80', 'daily');
  84. $contents = $this->model->getSortContent($value->scode);
  85. foreach ($contents as $value2) {
  86. if ($value2->outlink) { // 外链
  87. continue;
  88. } else {
  89. $link = $Parser->parserLink(2, $value2->urlname, 'content', $value2->scode, $value2->sortfilename, $value2->id, $value2->filename);
  90. }
  91. $str .= $this->makeNode( $url . $link, date('Y-m-d', strtotime($value2->date)), '0.60', 'daily');
  92. }
  93. }
  94. }
  95. }
  96. }
  97. echo $str . "\n</urlset>";
  98. }
  99. // 生成结点信息
  100. private function makeNode($link, $date, $priority = 0.60, $changefreq = 'always')
  101. {
  102. $node = '
  103. <url>
  104. <loc>' . get_http_url() . $link . '</loc>
  105. <priority>' . $priority . '</priority>
  106. <lastmod>' . $date . '</lastmod>
  107. <changefreq>' . $changefreq . '</changefreq>
  108. </url>';
  109. return $node;
  110. }
  111. // 文本格式
  112. public function linkTxt()
  113. {
  114. header("Content-type:text/plain;charset=utf-8");
  115. $sorts = $this->model->getSorts();
  116. $Parser = new ParserController();
  117. $str = get_http_url() . "\n";
  118. $wildcard = $this->config('wildcard'); //泛域名支持状态
  119. $city_suffix = $this->config('city_suffix'); //城市后缀
  120. $city_suffix = $city_suffix ? '.html' : '/';
  121. $model = model('admin.system.City');
  122. $city = $model->getAllList();
  123. $domain = get_http_host(); //当前域名
  124. $cur_city = array_filter($city, function($t) use ($domain) { return $t['isurl'] == $domain; }); //当前城市绑定了域名
  125. if( $wildcard || !empty($cur_city) ){
  126. foreach ($sorts as $value) {
  127. if ($value->outlink) {
  128. continue;
  129. } elseif ($value->type == 1) {
  130. $link = $Parser->parserLink(1, $value->urlname, 'about', $value->scode, $value->filename);
  131. $str .= get_http_url() . $link . "\n";
  132. } else {
  133. $link = $Parser->parserLink(2, $value->urlname, 'list', $value->scode, $value->filename);
  134. $str .= get_http_url() . $link . "\n";
  135. $contents = $this->model->getSortContent($value->scode);
  136. foreach ($contents as $value2) {
  137. if ($value2->outlink) { // 外链
  138. continue;
  139. } else {
  140. $link = $Parser->parserLink(2, $value2->urlname, 'content', $value2->scode, $value2->sortfilename, $value2->id, $value2->filename);
  141. }
  142. $str .= get_http_url() . $link . "\n";
  143. }
  144. }
  145. }
  146. }else{
  147. cookie('city',''); //防止生成的链接叠加当前城市
  148. foreach ($city as $c) {
  149. $str .= get_http_url() .'/'. $c['etitle'] . $city_suffix . "\n"; // 根目录
  150. }
  151. if( $this->config('open_citymap') ){
  152. array_unshift($city,['etitle'=>'','isurl'=>'']); // 添加主站
  153. }else{
  154. $city = ['etitle'=>'','isurl'=>''];
  155. }
  156. foreach( $city as $item ){
  157. if( $item['isurl'] !=='' ){
  158. continue;
  159. }
  160. $url = $item['etitle'] ? '/'.$item['etitle'] : '';
  161. //$str .= get_http_url() . $url . $city_suffix . "\n";
  162. foreach ($sorts as $value) {
  163. if ($value->outlink) {
  164. continue;
  165. } elseif ($value->type == 1) {
  166. $link = $Parser->parserLink(1, $value->urlname, 'about', $value->scode, $value->filename);
  167. $str .= get_http_url() . $url . $link . "\n";
  168. } else {
  169. $link = $Parser->parserLink(2, $value->urlname, 'list', $value->scode, $value->filename);
  170. $str .= get_http_url() . $url . $link . "\n";
  171. $contents = $this->model->getSortContent($value->scode);
  172. foreach ($contents as $value2) {
  173. if ($value2->outlink) { // 外链
  174. continue;
  175. } else {
  176. $link = $Parser->parserLink(2, $value2->urlname, 'content', $value2->scode, $value2->sortfilename, $value2->id, $value2->filename);
  177. }
  178. $str .= get_http_url() . $url . $link . "\n";
  179. }
  180. }
  181. }
  182. }
  183. }
  184. echo $str;
  185. }
  186. }