* Date: 2018-4-3
*/
namespace app\common\controller;
use think\Controller;
use think\Session;
use think\Db;
class Common extends Controller {
public $session_id;
public $theme_style = '';
public $theme_style_path = '';
public $view_suffix = 'html';
public $eyou = array();
public $users_id = 0;
public $users = array();
public $usersConfig = [];
public $usersTplVersion = '';
/**
* 析构函数
*/
function __construct()
{
/*是否隐藏或显示应用入口index.php*/
if (tpCache('seo.seo_inlet') == 0) {
\think\Url::root('/index.php');
} else {
// \think\Url::root('/');
}
/*--end*/
parent::__construct();
}
/*
* 初始化操作
*/
public function _initialize()
{
$assignData = [];
// 解决PHP套用Iframe访问导致cookie跨域session失效
if (in_array($this->request->rootDomain(), ['kuaituiyun.cn'])) {
// IE浏览器cookie跨域
header("P3P:CP=CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE GOV");
// Chrome等浏览器cookie跨域(一定要加上secure,否则SameSite无效)
@ini_set('session.cookie_samesite', "None;secure");
}
session('admin_info'); // 传后台信息到前台,此处可视化用到
if (!session_id()) {
Session::start();
}
header("Cache-control: private"); // history.back返回后输入框值丢失问题
$this->session_id = session_id(); // 当前的 session_id
!defined('SESSION_ID') && define('SESSION_ID', $this->session_id); //将当前的session_id保存为常量,供其它方法调用
// 全局配置
$global = tpCache('global');
/*站点状态关闭时,所关闭的终端口(pc、mobile)*/
// $webClosePort = !empty($global['web_close_port']) ? unserialize($global['web_close_port']) : [];
// $close = 0;
// if (!empty($webClosePort)) {
// if (0 === intval($this->is_mobile) && in_array('pc', $webClosePort)) {
// $close = 1;
// } else if (1 === intval($this->is_mobile) && in_array('mobile', $webClosePort)) {
// $close = 1;
// }
// }
// if (in_array(MODULE_NAME, ['home']) && !empty($global['web_status']) && $global['web_status'] == 1 && !empty($close)) {}
/*end*/
/*关闭网站*/
if (in_array(MODULE_NAME, ['home']) && !empty($global['web_status']) && $global['web_status'] == 1) {
if ($global['web_status_mode'] == 1) {
if (!empty($global['web_status_url'])) {
$this->redirect($global['web_status_url']);
exit;
} else {
die("
网站暂时关闭,没有找到跳转的URL
");
}
} else if ($global['web_status_mode'] == 2) {
$web_status_tpl = !empty($global['web_status_tpl']) ? $global['web_status_tpl'] : 'public/close.html';
$web_status_tpl = preg_replace('/^(([^\:\.]+):)?(\/\/)?([^\/\:]*)(\:\d+)?(.*)$/i', '${6}', $web_status_tpl);
if (!empty($this->root_dir)) {
$web_status_tpl = preg_replace('/^'.str_replace('/', '\/', $this->root_dir).'\//i', '', $web_status_tpl);
}
$filesize = @filesize($web_status_tpl);
if (file_exists($web_status_tpl) && !empty($filesize)) {
$fp = fopen($web_status_tpl, 'r');
$html = fread($fp, $filesize);
fclose($fp);
exit($html);
}
}
$web_status_text = isset($global['web_status_text']) ? $global['web_status_text'] : '网站暂时关闭,维护中……';
die("{$web_status_text}
");
}
/*--end*/
// 会员中心相关逻辑
if (!empty($global['web_users_switch'])) {
$this->usersConfig = getUsersConfigData('all');
$this->usersTplVersion = getUsersTplVersion();
$times = getTime();
/*会员登录有效期逻辑*/
$users_login_expire = 0;
if (session('?users_id')) {
$users_login_expiretime = !empty($this->usersConfig['users_login_expiretime']) ? intval($this->usersConfig['users_login_expiretime']) : 3600;
$users_login_expire = (int)session('users_login_expire'); //最后登录时间
if (empty($users_login_expire)) {
$users_login_expire = $times;
session('users_login_expire', $users_login_expire);
}
// 招聘插件会员中心导航内置代码 start
if (file_exists('./weapp/Recruits/model/RecruitsModel.php')) {
$recruitsModel = new \weapp\Recruits\model\RecruitsModel;
$recruitsModel->common_initialize($assignData, $this->usersConfig);
}
// 招聘插件会员中心导航内置代码 end
}
/*end*/
if ( !session('?users_id') || (!empty($users_login_expire) && ($times - $users_login_expire) >= $users_login_expiretime) ) {
session('users_id', null);
session('users', null);
cookie('users_id', null);
} else if ( session('?users_id') && ($times - $users_login_expire) < $users_login_expiretime ) {
session('users_login_expire', getTime()); // 登录有效期
}
}
$this->assign('usersConfig', $this->usersConfig);
$this->assign('usersTplVersion',$this->usersTplVersion);
/*强制微信模式,仅允许微信端访问*/
$shop_force_use_wechat = getUsersConfigData('shop.shop_force_use_wechat');
if (!empty($shop_force_use_wechat) && 1 == $shop_force_use_wechat && !isWeixin() && in_array(MODULE_NAME, ['home'])) {
$html = "网站仅微信端可访问
";
$WeChatLoginConfig = getUsersConfigData('wechat.wechat_login_config') ? unserialize(getUsersConfigData('wechat.wechat_login_config')) : [];
if (!empty($WeChatLoginConfig['wechat_name'])) $html .= "关注微信公众号:".$WeChatLoginConfig['wechat_name']."
";
if (!empty($WeChatLoginConfig['wechat_pic'])) $html .= "";
die($html);
}
/*END*/
$this->global_assign($global); // 获取网站全局变量值
$this->view_suffix = config('template.view_suffix'); // 模板后缀htm
$this->theme_style = THEME_STYLE; // 模板标识
$this->theme_style_path = THEME_STYLE_PATH; // 模板目录
//全局变量
$this->eyou['global'] = $global;
$sub_doman = request()->subDomain();
$site = input('param.site/s');
if($sub_doman == 'www' && $site == 'shandong'){
//如果是shandong.zc10000.com 则不匹配
$site_info = [];
}else{
// 多城市站点
$site_info = [];
if (config('city_switch_on')) {
$where = [];
$site = input('param.site/s');
if (!empty($site)) {
$where = ['domain'=>$site];
} else if (!empty($global['site_default_home'])) {
$where = ['id'=>$global['site_default_home']];
} else {
$site = get_home_site();
if (!empty($site)) {
$where = ['domain'=>$site];
}
}
if (!empty($where)) {
$site_info = Db::name('citysite')->field('add_time,update_time,sort_order', true)->where($where)->find();
if (empty($site_info['status'])) {
//to_index();
to_index();
}
if (!empty($site_info['seoset'])) { // 分站自定义seo信息
$site_info['seo_title'] = str_replace(['{region}','{区域}'], $site_info['name'], $site_info['seo_title']);
$site_info['seo_keywords'] = str_replace(['{region}','{区域}'], $site_info['name'], $site_info['seo_keywords']);
$site_info['seo_description'] = str_replace(['{region}','{区域}'], $site_info['name'], $site_info['seo_description']);
} else if (!empty($global['site_seoset'])) { // 分站引用系统默认seo信息
$site_info['seo_title'] = !empty($global['site_seo_title']) ? site_seo_handle($global['site_seo_title'], $site_info) : '';
$site_info['seo_keywords'] = !empty($global['site_seo_keywords']) ? site_seo_handle($global['site_seo_keywords'], $site_info) : '';
$site_info['seo_description'] = !empty($global['site_seo_description']) ? site_seo_handle($global['site_seo_description'], $site_info) : '';
}
cookie('site_info', json_encode($site_info));
}
}
}
empty($site_info) && cookie('site_info', null);
$this->eyou['site'] = $site_info;
// 多语言变量
if (config('lang_switch_on')) {
try {
$langArr = include_once APP_PATH."lang/{$this->home_lang}.php";
} catch (\Exception $e) {
$this->home_lang = $this->main_lang;
$langCookieVar = \think\Config::get('global.home_lang');
\think\Cookie::set($langCookieVar, $this->home_lang);
$langArr = include_once APP_PATH."lang/{$this->home_lang}.php";
}
$this->eyou['lang'] = !empty($langArr) ? $langArr : [];
$lang_info = cookie('lang_info');
if (!empty($lang_info)) {
$this->eyou['global'] = array_merge($this->eyou['global'], $lang_info);
}
}
/*电脑版与手机版的切换*/
$v = I('param.v/s', 'pc');
$v = trim($v, '/');
$this->assign('v', $v);
/*--end*/
/*多语言开关限制 - 不开某个语言情况下,报404 */
if ($this->main_lang != $this->home_lang) {
if (isset($global['web_language_switch']) && 1 != $global['web_language_switch']) {
to_index();
} else {
$langInfo = Db::name('language')->field('id')
->where([
'mark' => $this->home_lang,
'status' => 1,
])->find();
if (empty($langInfo)) {
to_index();
}
}
}
/*--end*/
$assignName2 = $this->arrJoinStr(['cGhwX3Nlcn','ZpY2VtZWFs']);
$assignValue2 = tpCache('php.'.$assignName2);
$this->assign($assignName2, $assignValue2);
// 判断是否开启注册入口
$users_open_register = getUsersConfigData('users.users_open_register');
$this->assign('users_open_register', $users_open_register);
// 默认主题颜色
if (!empty($this->usersConfig['theme_color'])) {
$theme_color = $this->usersConfig['theme_color'];
} else {
if ($this->usersTplVersion == 'v1') {
$theme_color = '#ff6565';
} else {
$theme_color = '#fd8a27';
}
}
$this->usersConfig['theme_color'] = $theme_color;
$this->assign('theme_color', $theme_color);
// 存在游客免登录查询则执行
if (is_dir('./weapp/FreeLogin/')) {
// 未登录 且 存在指定访问的控制器和方法 则执行
$freeLoginRow = model('Weapp')->getWeappList('FreeLogin');
if (!empty($freeLoginRow['status']) && 1 == $freeLoginRow['status']) {
$unifyController = new \weapp\FreeLogin\controller\FreeLogin;
$unifyController->freeLoginHandle($this->usersConfig);
}
}
$this->assign($assignData);
}
/**
* 获取系统内置变量
*/
public function global_assign($globalParams = [])
{
if (empty($globalParams)) {
$globalParams = tpCache('global');
}
$this->assign('global', $globalParams);
}
}