mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-12-15 06:09:58 +08:00
62 lines
1.5 KiB
PHP
Executable File
62 lines
1.5 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Bootstrap file of Blessing Skin Server
|
|
*/
|
|
namespace App;
|
|
|
|
// BASE_DIR
|
|
define('BASE_DIR', __DIR__);
|
|
|
|
// Autoloader
|
|
require BASE_DIR.'/vendor/autoload.php';
|
|
|
|
// Load dotenv configuration
|
|
$dotenv = new \Dotenv\Dotenv(BASE_DIR);
|
|
$dotenv->load();
|
|
|
|
define('SALT', $_ENV['SALT']);
|
|
|
|
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();
|
|
}
|
|
|
|
$services = require BASE_DIR.'/config/services.php';
|
|
foreach ($services as $facade => $class) {
|
|
class_alias($class, $facade);
|
|
}
|
|
|
|
/**
|
|
* URL ends with slash will cause many reference problems
|
|
*/
|
|
if (\Http::getUri() != "/" && substr(\Http::getUri(), -1) == "/")
|
|
{
|
|
die(\Http::getUri());
|
|
$url = substr(\Http::getCurrentUrl(), 0, -1);
|
|
\Http::redirect($url);
|
|
}
|
|
|
|
// Check database config
|
|
$db_config = require BASE_DIR.'/config/database.php';
|
|
\Database::checkConfig($db_config);
|
|
|
|
// Boot Eloquent ORM
|
|
$capsule = new \Illuminate\Database\Capsule\Manager;
|
|
$capsule->addConnection($db_config);
|
|
$capsule->bootEloquent();
|
|
|
|
session_start();
|
|
|
|
\Pecee\SimpleRouter\SimpleRouter::group([
|
|
'exceptionHandler' => 'App\Exceptions\RouterExceptionHandler'
|
|
], function() {
|
|
require BASE_DIR.'/config/routes.php';
|
|
});
|
|
|
|
// Start route dispatching
|
|
\Pecee\SimpleRouter\SimpleRouter::start('App\Controllers');
|