2017-01-16 00:27:24 +08:00
|
|
|
<?php namespace BookStack\Http;
|
2015-07-13 03:01:42 +08:00
|
|
|
|
|
|
|
use Illuminate\Foundation\Http\Kernel as HttpKernel;
|
|
|
|
|
|
|
|
class Kernel extends HttpKernel
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The application's global HTTP middleware stack.
|
2016-09-18 01:22:04 +08:00
|
|
|
* These middleware are run during every request to your application.
|
2015-07-13 03:01:42 +08:00
|
|
|
*/
|
|
|
|
protected $middleware = [
|
2019-09-07 05:14:39 +08:00
|
|
|
\BookStack\Http\Middleware\CheckForMaintenanceMode::class,
|
2017-09-30 21:31:27 +08:00
|
|
|
\Illuminate\Foundation\Http\Middleware\ValidatePostSize::class,
|
|
|
|
\BookStack\Http\Middleware\TrimStrings::class,
|
2017-11-19 23:56:06 +08:00
|
|
|
\BookStack\Http\Middleware\TrustProxies::class,
|
2016-09-18 01:22:04 +08:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The application's route middleware groups.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $middlewareGroups = [
|
|
|
|
'web' => [
|
|
|
|
\BookStack\Http\Middleware\EncryptCookies::class,
|
|
|
|
\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
|
2017-09-30 21:31:27 +08:00
|
|
|
\Illuminate\Session\Middleware\StartSession::class,
|
|
|
|
\Illuminate\View\Middleware\ShareErrorsFromSession::class,
|
2019-09-14 21:12:39 +08:00
|
|
|
\Illuminate\Routing\Middleware\ThrottleRequests::class,
|
2016-09-18 01:22:04 +08:00
|
|
|
\BookStack\Http\Middleware\VerifyCsrfToken::class,
|
2019-09-19 22:12:10 +08:00
|
|
|
\BookStack\Http\Middleware\Localization::class,
|
|
|
|
\BookStack\Http\Middleware\GlobalViewData::class,
|
2016-09-18 01:22:04 +08:00
|
|
|
],
|
|
|
|
'api' => [
|
2020-01-18 23:03:28 +08:00
|
|
|
\BookStack\Http\Middleware\ThrottleApiRequests::class,
|
2019-12-30 23:46:12 +08:00
|
|
|
\BookStack\Http\Middleware\EncryptCookies::class,
|
2019-12-30 22:51:28 +08:00
|
|
|
\BookStack\Http\Middleware\StartSessionIfCookieExists::class,
|
2019-12-30 10:16:07 +08:00
|
|
|
\BookStack\Http\Middleware\ApiAuthenticate::class,
|
2016-09-18 01:22:04 +08:00
|
|
|
],
|
2015-07-13 03:01:42 +08:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The application's route middleware.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $routeMiddleware = [
|
2015-09-11 02:31:09 +08:00
|
|
|
'auth' => \BookStack\Http\Middleware\Authenticate::class,
|
2017-11-19 23:56:06 +08:00
|
|
|
'can' => \Illuminate\Auth\Middleware\Authorize::class,
|
2015-09-11 02:31:09 +08:00
|
|
|
'guest' => \BookStack\Http\Middleware\RedirectIfAuthenticated::class,
|
2017-11-19 23:56:06 +08:00
|
|
|
'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class,
|
2015-09-11 02:31:09 +08:00
|
|
|
'perm' => \BookStack\Http\Middleware\PermissionMiddleware::class
|
2015-07-13 03:01:42 +08:00
|
|
|
];
|
|
|
|
}
|