mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-12-27 06:29:19 +08:00
124 lines
3.4 KiB
PHP
124 lines
3.4 KiB
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use \Illuminate\Database\Capsule\Manager as Capsule;
|
|
use \Pecee\SimpleRouter\SimpleRouter as Router;
|
|
use App\Exceptions\ExceptionHandler;
|
|
use App\Exceptions\E;
|
|
|
|
class Boot
|
|
{
|
|
public static function loadDotEnv($dir)
|
|
{
|
|
if (Config::checkDotEnvExist()) {
|
|
$dotenv = new \Dotenv\Dotenv($dir);
|
|
$dotenv->load();
|
|
}
|
|
}
|
|
|
|
public static function setTimeZone($timezone = 'Asia/Shanghai')
|
|
{
|
|
// set default time zone, UTC+8 for default
|
|
date_default_timezone_set($timezone);
|
|
}
|
|
|
|
public static function checkRuntimeEnv()
|
|
{
|
|
Config::checkPHPVersion();
|
|
Config::checkCache();
|
|
}
|
|
|
|
public static function checkInstallation($redirect_to = '../setup/index.php')
|
|
{
|
|
if (!Config::checkTableExist()) {
|
|
Http::redirect($redirect_to);
|
|
}
|
|
|
|
if (!is_dir(BASE_DIR.'/textures/')) {
|
|
throw new E("检测到 `textures` 文件夹已被删除,请重新运行 <a href='./setup'>安装程序</a>,或者手动放置一个。", -1, true);
|
|
}
|
|
|
|
if (Application::getVersion() != Option::get('version', '')) {
|
|
Http::redirect(Http::getBaseUrl().'/setup/update.php');
|
|
exit;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
public static function loadServices()
|
|
{
|
|
// Set Aliases for App\Services
|
|
$services = require BASE_DIR.'/config/services.php';
|
|
|
|
foreach ($services as $facade => $class) {
|
|
class_alias($class, $facade);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Register error handler
|
|
*
|
|
* @param object $handler Push specified whoops handler
|
|
* @return void
|
|
*/
|
|
public static function registerErrorHandler($handler = null)
|
|
{
|
|
if (!is_null($handler) && $handler instanceof \Whoops\Handler\HandlerInterface) {
|
|
$whoops = new \Whoops\Run;
|
|
$whoops->pushHandler($handler);
|
|
$whoops->register();
|
|
return;
|
|
}
|
|
|
|
if ($_ENV['APP_DEBUG'] !== "false") {
|
|
// whoops: php errors for cool kids
|
|
$whoops = new \Whoops\Run;
|
|
$handler = ($_SERVER['REQUEST_METHOD'] == "GET") ?
|
|
new \Whoops\Handler\PrettyPageHandler : new \Whoops\Handler\PlainTextHandler;
|
|
$whoops->pushHandler($handler);
|
|
$whoops->register();
|
|
} else {
|
|
// Register custom error handler
|
|
ExceptionHandler::register();
|
|
}
|
|
}
|
|
|
|
public static function bootEloquent(Array $config)
|
|
{
|
|
if (Config::checkDbConfig($config)) {
|
|
$capsule = new Capsule;
|
|
$capsule->addConnection($config);
|
|
$capsule->setAsGlobal();
|
|
$capsule->bootEloquent();
|
|
}
|
|
}
|
|
|
|
public static function startSession()
|
|
{
|
|
session_start();
|
|
}
|
|
|
|
public static function bootRouter()
|
|
{
|
|
/**
|
|
* URL ends with slash will cause many reference problems
|
|
*/
|
|
if (Http::getUri() != "/" && substr(Http::getUri(), -1) == "/") {
|
|
$url = substr(Http::getCurrentUrl(), 0, -1);
|
|
Http::redirect($url);
|
|
}
|
|
|
|
// Require Route Config
|
|
Router::group([
|
|
'exceptionHandler' => 'App\Exceptions\RouterExceptionHandler'
|
|
], function() {
|
|
require BASE_DIR.'/config/routes.php';
|
|
});
|
|
|
|
// Start Route Dispatching
|
|
Router::start('App\Controllers');
|
|
}
|
|
}
|