2016-08-28 18:32:38 +08:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Setup Bootstraper of Blessing Skin Server
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Define Base Directory
|
|
|
|
define('BASE_DIR', dirname(dirname(__FILE__)));
|
|
|
|
|
|
|
|
// Register Composer Auto Loader
|
|
|
|
require BASE_DIR.'/vendor/autoload.php';
|
|
|
|
|
|
|
|
// Load dotenv Configuration
|
|
|
|
if (file_exists(BASE_DIR."/.env")) {
|
|
|
|
$dotenv = new \Dotenv\Dotenv(BASE_DIR);
|
|
|
|
$dotenv->load();
|
|
|
|
} else {
|
|
|
|
exit('错误:.env 配置文件不存在');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Register Error Hanlders
|
|
|
|
$whoops = new \Whoops\Run;
|
|
|
|
$handler = new \Whoops\Handler\PrettyPageHandler;
|
|
|
|
$whoops->pushHandler($handler);
|
|
|
|
$whoops->register();
|
|
|
|
|
2016-08-28 18:48:59 +08:00
|
|
|
// Instantiate Application
|
2016-08-28 18:32:38 +08:00
|
|
|
$app = new Illuminate\Foundation\Application(BASE_DIR);
|
|
|
|
|
2016-08-28 18:48:59 +08:00
|
|
|
// Set Container for Facades
|
2016-08-28 18:32:38 +08:00
|
|
|
Illuminate\Support\Facades\Facade::setFacadeApplication($app);
|
|
|
|
|
2016-08-28 18:48:59 +08:00
|
|
|
// Register Basic Service Providers manually
|
2016-08-28 18:32:38 +08:00
|
|
|
(new Illuminate\View\ViewServiceProvider($app))->register();
|
|
|
|
(new Illuminate\Foundation\Bootstrap\LoadConfiguration)->bootstrap($app);
|
|
|
|
(new Illuminate\Database\DatabaseServiceProvider($app))->register();
|
|
|
|
(new Illuminate\Filesystem\FilesystemServiceProvider($app))->register();
|
|
|
|
(new Illuminate\Foundation\Bootstrap\LoadConfiguration)->bootstrap($app);
|
|
|
|
|
|
|
|
$app->singleton('database', \App\Services\Database\Database::class);
|
|
|
|
|
|
|
|
require BASE_DIR.'/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php';
|
|
|
|
|
|
|
|
// Load Aliases
|
|
|
|
$config = require BASE_DIR.'/config/app.php';
|
|
|
|
|
|
|
|
foreach ($config['aliases'] as $facade => $class) {
|
|
|
|
class_alias($class, $facade);
|
|
|
|
}
|
|
|
|
|
|
|
|
\View::addExtension('tpl', 'blade');
|
|
|
|
|
|
|
|
$config = require BASE_DIR.'/config/database.php';
|
|
|
|
|
|
|
|
$db_config = $config['connections']['mysql'];
|
|
|
|
|
|
|
|
// Check Database Config
|
|
|
|
@$conn = new \mysqli($db_config['host'], $db_config['username'], $db_config['password'], $db_config['database'], $db_config['port']);
|
|
|
|
|
|
|
|
if ($conn->connect_error) {
|
|
|
|
throw new App\Exceptions\E("无法连接至 MySQL 服务器,请检查你的配置:".$conn->connect_error, $conn->connect_errno, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Boot Eloquent ORM
|
|
|
|
$capsule = new \Illuminate\Database\Capsule\Manager;
|
|
|
|
$capsule->addConnection($db_config);
|
|
|
|
$capsule->setAsGlobal();
|
|
|
|
$capsule->bootEloquent();
|
|
|
|
|
|
|
|
// Start Session
|
|
|
|
session_start();
|
|
|
|
|
|
|
|
function checkTableExist() {
|
|
|
|
$tables = ['users', 'closets', 'players', 'textures', 'options'];
|
|
|
|
|
|
|
|
foreach ($tables as $table_name) {
|
|
|
|
// prefix will be added automatically
|
|
|
|
if (!Database::hasTable($table_name)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|