2019-05-12 18:42:53 +05:00

184 lines
4.8 KiB
PHP
Executable File

<?php
use PackageVersions\Versions;
require_once __DIR__.'/../vendor/autoload.php';
try {
(new Dotenv\Dotenv(__DIR__.'/../'))->load();
} catch (Dotenv\Exception\InvalidPathException $e) {
//
}
/*
Defines
*/
define('BLACKLIST_PATH', __DIR__.'/../storage/app/blacklist.json');
define('JIKAN_PARSER_VERSION', Versions::getVersion('jikan-me/jikan'));
/*
|--------------------------------------------------------------------------
| Create The Application
|--------------------------------------------------------------------------
|
| Here we will load the environment and create the application instance
| that serves as the central piece of this framework. We'll use this
| application as an "IoC" container and router for this framework.
|
*/
$app = new Laravel\Lumen\Application(
realpath(__DIR__.'/../')
);
$app->withFacades();
$app->withEloquent();
/*
|--------------------------------------------------------------------------
| Register Container Bindings
|--------------------------------------------------------------------------
|
| Now we will register a few bindings in the service container. We will
| register the exception handler and the console kernel. You may add
| your own bindings here if you like or you can make another file.
|
*/
$app->singleton(
Illuminate\Contracts\Debug\ExceptionHandler::class,
App\Exceptions\Handler::class
);
$app->singleton(
Illuminate\Contracts\Console\Kernel::class,
App\Console\Kernel::class
);
/*
|--------------------------------------------------------------------------
| Register Middleware
|--------------------------------------------------------------------------
|
| Next, we will register the middleware with the application. These can
| be global middleware that run before and after each request into a
| route or middleware that'll be assigned to some specific routes.
|
*/
$app->routeMiddleware([
'slave-auth' => App\Http\Middleware\SlaveAuthentication::class,
'blacklist' => App\Http\Middleware\Blacklist::class,
'meta' => App\Http\Middleware\Meta::class,
'jikan-response' => App\Http\Middleware\JikanResponseHandler::class,
'throttle' => App\Http\Middleware\Throttle::class,
]);
/*
|--------------------------------------------------------------------------
| Register Service Providers
|--------------------------------------------------------------------------
|
| Here we will register all of the application's service providers which
| are used to bind services into the container. Service providers are
| totally optional, so you are not required to uncomment this line.
|
*/
$app->configure('database');
$app->configure('queue');
$app->register(Illuminate\Redis\RedisServiceProvider::class);
$guzzleClient = new \GuzzleHttp\Client();
$app->instance('GuzzleClient', $guzzleClient);
$jikan = new \Jikan\MyAnimeList\MalClient(app('GuzzleClient'));
$app->instance('JikanParser', $jikan);
/*
|--------------------------------------------------------------------------
| Load The Application Routes
|--------------------------------------------------------------------------
|
| Next we will include the routes file so that they can all be added to
| the application. This will provide all of the URLs the application
| can respond to, as well as the controllers that may handle them.
|
*/
$commonMiddleware = [
'slave-auth',
'meta',
'jikan-response',
'throttle'
];
/*$app->router->group(
[
'prefix' => 'v4',
'namespace' => 'App\Http\Controllers\V4',
'middleware' => $commonMiddleware
],
function ($router) {
require __DIR__.'/../routes/web.v4.php';
}
);*/
$app->router->group(
[
'prefix' => 'v3',
'namespace' => 'App\Http\Controllers\V3',
'middleware' => $commonMiddleware
],
function ($router) {
require __DIR__.'/../routes/web.v3.php';
}
);
$app->router->group(
[
'prefix' => 'v2',
'namespace' => 'App\Http\Controllers\V2',
'middleware' => $commonMiddleware
],
function ($router) {
require __DIR__.'/../routes/web.v2.php';
}
);
$app->router->group(
[
'prefix' => '/',
'namespace' => 'App\Http\Controllers\V2',
'middleware' => $commonMiddleware
],
function ($router) {
require __DIR__.'/../routes/web.v2.php';
}
);
$app->router->group(
[
'prefix' => 'v1',
],
function ($router) {
$router->get('/', function () {
return response()
->json([
'status' => 400,
'type' => 'HttpException',
'message' => 'This version is depreciated. Please check the documentation for the latest and supported versions.',
'error' => null
], 400);
});
}
);
return $app;