2021-06-26 17:23:15 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Http;
|
2015-07-12 21:01:42 +02:00
|
|
|
|
|
|
|
use Illuminate\Foundation\Http\Kernel as HttpKernel;
|
|
|
|
|
|
|
|
class Kernel extends HttpKernel
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The application's global HTTP middleware stack.
|
2016-09-17 19:22:04 +02:00
|
|
|
* These middleware are run during every request to your application.
|
2015-07-12 21:01:42 +02:00
|
|
|
*/
|
|
|
|
protected $middleware = [
|
2021-10-30 22:29:59 +02:00
|
|
|
\BookStack\Http\Middleware\PreventRequestsDuringMaintenance::class,
|
2017-09-30 15:31:27 +02:00
|
|
|
\Illuminate\Foundation\Http\Middleware\ValidatePostSize::class,
|
|
|
|
\BookStack\Http\Middleware\TrimStrings::class,
|
2017-11-19 16:56:06 +01:00
|
|
|
\BookStack\Http\Middleware\TrustProxies::class,
|
2016-09-17 19:22:04 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The application's route middleware groups.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $middlewareGroups = [
|
|
|
|
'web' => [
|
2021-09-04 00:32:42 +02:00
|
|
|
\BookStack\Http\Middleware\ApplyCspRules::class,
|
2016-09-17 19:22:04 +02:00
|
|
|
\BookStack\Http\Middleware\EncryptCookies::class,
|
|
|
|
\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
|
2017-09-30 15:31:27 +02:00
|
|
|
\Illuminate\Session\Middleware\StartSession::class,
|
|
|
|
\Illuminate\View\Middleware\ShareErrorsFromSession::class,
|
2016-09-17 19:22:04 +02:00
|
|
|
\BookStack\Http\Middleware\VerifyCsrfToken::class,
|
2021-10-08 16:22:09 +02:00
|
|
|
\BookStack\Http\Middleware\PreventAuthenticatedResponseCaching::class,
|
2021-08-30 22:28:17 +02:00
|
|
|
\BookStack\Http\Middleware\CheckEmailConfirmed::class,
|
2021-03-17 13:56:56 +01:00
|
|
|
\BookStack\Http\Middleware\RunThemeActions::class,
|
2019-09-19 16:12:10 +02:00
|
|
|
\BookStack\Http\Middleware\Localization::class,
|
2016-09-17 19:22:04 +02:00
|
|
|
],
|
|
|
|
'api' => [
|
2020-01-18 16:03:28 +01:00
|
|
|
\BookStack\Http\Middleware\ThrottleApiRequests::class,
|
2019-12-30 16:46:12 +01:00
|
|
|
\BookStack\Http\Middleware\EncryptCookies::class,
|
2019-12-30 15:51:28 +01:00
|
|
|
\BookStack\Http\Middleware\StartSessionIfCookieExists::class,
|
2019-12-30 03:16:07 +01:00
|
|
|
\BookStack\Http\Middleware\ApiAuthenticate::class,
|
2021-10-08 16:22:09 +02:00
|
|
|
\BookStack\Http\Middleware\PreventAuthenticatedResponseCaching::class,
|
2021-08-30 22:28:17 +02:00
|
|
|
\BookStack\Http\Middleware\CheckEmailConfirmed::class,
|
2016-09-17 19:22:04 +02:00
|
|
|
],
|
2015-07-12 21:01:42 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The application's route middleware.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $routeMiddleware = [
|
2015-09-10 20:31:09 +02:00
|
|
|
'auth' => \BookStack\Http\Middleware\Authenticate::class,
|
2021-08-28 22:51:15 +02:00
|
|
|
'can' => \BookStack\Http\Middleware\CheckUserHasPermission::class,
|
2015-09-10 20:31:09 +02:00
|
|
|
'guest' => \BookStack\Http\Middleware\RedirectIfAuthenticated::class,
|
2020-02-02 14:10:21 +01:00
|
|
|
'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class,
|
|
|
|
'guard' => \BookStack\Http\Middleware\CheckGuard::class,
|
2021-08-02 23:02:25 +02:00
|
|
|
'mfa-setup' => \BookStack\Http\Middleware\AuthenticatedOrPendingMfa::class,
|
2015-07-12 21:01:42 +02:00
|
|
|
];
|
|
|
|
}
|