2016-01-08 16:01:21 +01:00
|
|
|
<?php
|
2022-12-29 19:41:57 +01:00
|
|
|
|
2017-10-21 08:40:00 +02:00
|
|
|
/**
|
|
|
|
|
* Kernel.php
|
2020-01-31 07:32:04 +01:00
|
|
|
* Copyright (c) 2019 james@firefly-iii.org
|
2017-10-21 08:40:00 +02:00
|
|
|
*
|
2019-10-02 06:37:26 +02:00
|
|
|
* This file is part of Firefly III (https://github.com/firefly-iii).
|
2017-10-21 08:40:00 +02:00
|
|
|
*
|
2019-10-02 06:37:26 +02:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
|
* License, or (at your option) any later version.
|
2017-10-21 08:40:00 +02:00
|
|
|
*
|
2019-10-02 06:37:26 +02:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2017-10-21 08:40:00 +02:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2019-10-02 06:37:26 +02:00
|
|
|
* GNU Affero General Public License for more details.
|
2017-10-21 08:40:00 +02:00
|
|
|
*
|
2019-10-02 06:37:26 +02:00
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2017-10-21 08:40:00 +02:00
|
|
|
*/
|
2017-09-14 17:40:02 +02:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
2016-01-08 16:01:21 +01:00
|
|
|
namespace FireflyIII\Http;
|
2015-02-06 04:39:52 +01:00
|
|
|
|
2017-09-10 08:33:51 +02:00
|
|
|
use FireflyIII\Http\Middleware\Authenticate;
|
2018-02-09 15:01:22 +01:00
|
|
|
use FireflyIII\Http\Middleware\Binder;
|
2020-01-31 07:24:41 +01:00
|
|
|
use FireflyIII\Http\Middleware\InstallationId;
|
2017-09-10 08:33:51 +02:00
|
|
|
use FireflyIII\Http\Middleware\RedirectIfAuthenticated;
|
2017-10-27 18:56:38 +02:00
|
|
|
use FireflyIII\Http\Middleware\StartFireflySession;
|
2017-09-10 08:33:51 +02:00
|
|
|
use FireflyIII\Http\Middleware\TrimStrings;
|
|
|
|
|
use FireflyIII\Http\Middleware\TrustProxies;
|
|
|
|
|
use Illuminate\Auth\Middleware\AuthenticateWithBasicAuth;
|
|
|
|
|
use Illuminate\Auth\Middleware\Authorize;
|
2015-02-06 04:39:52 +01:00
|
|
|
use Illuminate\Foundation\Http\Kernel as HttpKernel;
|
2017-09-10 08:33:51 +02:00
|
|
|
use Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode;
|
|
|
|
|
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
|
|
|
|
|
use Illuminate\Foundation\Http\Middleware\ValidatePostSize;
|
|
|
|
|
use Illuminate\Routing\Middleware\ThrottleRequests;
|
|
|
|
|
use Illuminate\View\Middleware\ShareErrorsFromSession;
|
2018-02-07 10:49:06 +01:00
|
|
|
|
2017-12-17 14:30:53 +01:00
|
|
|
/**
|
|
|
|
|
* Class Kernel
|
|
|
|
|
*/
|
2015-02-06 19:33:31 +01:00
|
|
|
class Kernel extends HttpKernel
|
|
|
|
|
{
|
2026-01-25 10:55:27 +01:00
|
|
|
protected $middleware = [
|
|
|
|
|
// SecureHeaders::class,
|
|
|
|
|
CheckForMaintenanceMode::class,
|
|
|
|
|
ValidatePostSize::class,
|
|
|
|
|
TrimStrings::class,
|
|
|
|
|
ConvertEmptyStringsToNull::class,
|
|
|
|
|
TrustProxies::class,
|
|
|
|
|
InstallationId::class,
|
|
|
|
|
];
|
|
|
|
|
protected $middlewareAliases = [
|
|
|
|
|
'auth' => Authenticate::class,
|
|
|
|
|
'auth.basic' => AuthenticateWithBasicAuth::class,
|
|
|
|
|
'bindings' => Binder::class,
|
|
|
|
|
'can' => Authorize::class,
|
|
|
|
|
'guest' => RedirectIfAuthenticated::class,
|
|
|
|
|
'throttle' => ThrottleRequests::class,
|
|
|
|
|
];
|
2026-01-23 15:09:50 +01:00
|
|
|
protected $middlewarePriority = [StartFireflySession::class, ShareErrorsFromSession::class, Authenticate::class, Binder::class, Authorize::class];
|
2015-02-06 04:39:52 +01:00
|
|
|
}
|