心理咨询网
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

HomeController.php 7.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. <?php
  2. /**
  3. * @copyright (C)2016-2099 Hnaoyun Inc.
  4. * @author XingMeng
  5. * @email hnxsh@foxmail.com
  6. * @date 2018年04月12日
  7. * 前台公共控制类
  8. */
  9. namespace app\common;
  10. use core\basic\Controller;
  11. use core\basic\Config;
  12. use app\home\model\ParserModel;
  13. class HomeController extends Controller
  14. {
  15. public function __construct()
  16. {
  17. $this->model = new ParserModel();
  18. // 自动缓存基础信息
  19. cache_config();
  20. // 从配置文件读取cmsname参数来设置系统名称
  21. define("CMSNAME", $this->config("cmsname") ?: 'PbootCMS');
  22. // 站点关闭检测
  23. if (! ! $close_site = Config::get('close_site')) {
  24. $close_site_note = Config::get('close_site_note');
  25. error($close_site_note ?: '本站维护中,请稍后再访问,带来不便,敬请谅解!');
  26. }
  27. // 自动跳转HTTPS
  28. if (! is_https() && ! ! $tohttps = Config::get('to_https')) {
  29. //header("Location: http://" . $_SERVER['HTTP_HOST'], true, 301);
  30. header("Location: https://" . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'], true,301);
  31. }
  32. // 自动跳转主域名
  33. if (! ($this->config('wap_domain') && is_mobile()) && (! ! $main_domain = Config::get('main_domain')) && (! ! $to_main_domain = Config::get('to_main_domain'))) {
  34. if (! preg_match('{^' . $main_domain . '$}i', get_http_host(true))) {
  35. if (is_https()) {
  36. header("Location: https://" . $main_domain . ':' . $_SERVER['SERVER_PORT'], true, 301);
  37. } else {
  38. header("Location: http://" . $main_domain . ':' . $_SERVER['SERVER_PORT'], true, 301);
  39. }
  40. exit();
  41. }
  42. }
  43. // IP访问黑白名单检测
  44. $user_ip = get_user_ip(); // 获取用户IP
  45. if (filter_var($user_ip, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4)) {
  46. // ip黑名单
  47. $ip_deny = Config::get('ip_deny', true);
  48. foreach ($ip_deny as $key => $value) {
  49. if (network_match($user_ip, $value)) {
  50. error('本站启用了黑名单功能,您的IP(' . $user_ip . ')不允许访问!');
  51. }
  52. }
  53. // ip白名单
  54. $ip_allow = Config::get('ip_allow', true);
  55. foreach ($ip_allow as $key => $value) {
  56. if (network_match($user_ip, $value)) {
  57. $allow = true;
  58. }
  59. }
  60. // 如果设置了白名单,IP不在白名单内,则阻止访问
  61. if ($ip_allow && ! isset($allow)) {
  62. error('本站启用了白名单功能,您的IP(' . $user_ip . ')不在允许范围!');
  63. }
  64. }
  65. // 语言绑定域名检测, 如果匹配到多语言绑定则自动设置当前语言
  66. $lgs = Config::get('lgs');
  67. if (count($lgs) > 1) {
  68. $domain = get_http_host();
  69. foreach ($lgs as $value) {
  70. if ($value['domain'] == $domain) {
  71. cookie('lg', $value['acode']);
  72. break;
  73. }
  74. }
  75. }
  76. //===检测城市分站====
  77. $citys = Config::get('citys');
  78. $domain = get_http_host();
  79. $wildcard = $this->config('wildcard');
  80. //如果开启泛域名支持
  81. if( $wildcard ){
  82. $main_domain = $this->config('main_domain');
  83. if( $main_domain=='' ){
  84. error('请到后台全局配置->参数配置->基本配置中填入「网站主域名」');
  85. }
  86. $domain_first = explode('.', $domain)[0];
  87. define('PATH', P);
  88. define('ISURL', TRUE);
  89. if( $domain == $main_domain ){
  90. //cookie('city','');
  91. cookie('city',$this->config('firstcity'));
  92. //var_dump($domain_first);die;
  93. }else{
  94. cookie('city',$domain_first);
  95. //var_dump($domain_first);
  96. //设置新的cookie 城市id
  97. //$cityid = 1;
  98. $cityid = $this->model->getCityId($domain_first);
  99. if(empty($cityid)){
  100. $cityid = 0;
  101. }
  102. //var_dump($cityid);
  103. cookie('city_id',$cityid);
  104. //模板赋值变量 用于sql 同样查询数组可循环
  105. $this->assign('cityId',$cityid);
  106. //测试数据
  107. /*$testArray = [
  108. 1,2,3,4
  109. ];
  110. $this->assign('testArray',$testArray);*/
  111. }
  112. //var_dump($domain_first);die;
  113. //输出logo
  114. $citylogo = $this->model->getCityLogo($domain_first);
  115. if(empty($citylogo)){
  116. $citylogo = $this->model->getSiteLogo();
  117. }
  118. $this->assign('citylogo',$citylogo);
  119. }else{
  120. $cur_city = array_filter($citys, function($t) use ($domain) { return $t['isurl'] == $domain; });
  121. if( !empty($cur_city) ){
  122. define('PATH', P);
  123. define('ISURL', TRUE);
  124. cookie('city',key($cur_city));
  125. }else{
  126. if( !empty(P) ){
  127. //.html结尾
  128. if( strpos(P,'/')===false && strpos(P,'.html')!==false ){
  129. $tmp = explode('.', P);
  130. if ( array_key_exists($tmp[0],$citys) ){
  131. define('PATH', '');
  132. cookie('city',$tmp[0]);
  133. }else{
  134. define('PATH', P);
  135. //cookie('city','');
  136. cookie('city',$this->config('firstcity'));
  137. }
  138. }elseif( strpos(P,'/')!==false ){
  139. $tmp = explode('/', P);
  140. if ( array_key_exists($tmp[0],$citys) ){
  141. $tmp_p = substr(P,strpos(P,'/')+1);
  142. define('PATH', $tmp_p);
  143. cookie('city',$tmp[0]);
  144. }else{
  145. define('PATH', P);
  146. //cookie('city','');
  147. cookie('city',$this->config('firstcity'));
  148. }
  149. }
  150. }else{
  151. define('PATH', P);
  152. //cookie('city','');
  153. cookie('city',$this->config('firstcity'));
  154. }
  155. }
  156. }
  157. //===END=====
  158. // 未设置语言时使用默认语言
  159. $black_lg = ['pboot','system'];
  160. if (!isset($_COOKIE['lg']) || in_array($_COOKIE['lg'],$black_lg)) {
  161. cookie('lg', get_default_lg());
  162. }
  163. // 手机自适应主题
  164. if ($this->config('open_wap')) {
  165. if ($this->config('wap_domain') && $this->config('wap_domain') == get_http_host()) {
  166. $this->setTheme(get_theme() . '/wap'); // 已绑域名并且一致则自动手机版本
  167. } elseif (is_mobile() && $this->config('wap_domain') && $this->config('wap_domain') != get_http_host()) {
  168. if (is_https()) {
  169. $pre = 'https://';
  170. } else {
  171. $pre = 'http://';
  172. }
  173. header('Location:' . $pre . $this->config('wap_domain') . URL, true, 302); // 手机访问并且绑定了域名,但是访问域名不一致则跳转
  174. exit();
  175. } elseif (is_mobile()) { // 其他情况手机访问则自动手机版本
  176. $this->setTheme(get_theme() . '/wap');
  177. } else { // 其他情况,电脑版本
  178. $this->setTheme(get_theme());
  179. }
  180. } else { // 未开启手机,则一律电脑版本
  181. $this->setTheme(get_theme());
  182. }
  183. }
  184. }