Files
firefly-iii/app/Http/Middleware/IsAdmin.php

65 lines
1.8 KiB
PHP
Raw Normal View History

2016-04-03 07:07:17 +02:00
<?php
2022-12-29 19:42:26 +01:00
2016-04-03 07:07:17 +02:00
/**
* IsAdmin.php
2020-01-31 07:32:04 +01:00
* Copyright (c) 2019 james@firefly-iii.org
2016-04-03 07:07:17 +02:00
*
* This file is part of Firefly III (https://github.com/firefly-iii).
*
* 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
*
* 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
* GNU Affero General Public License for more details.
2017-10-21 08:40:00 +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/>.
2016-04-03 07:07:17 +02:00
*/
declare(strict_types=1);
2016-04-03 07:07:17 +02:00
namespace FireflyIII\Http\Middleware;
2018-07-08 07:59:58 +02:00
use FireflyIII\Repositories\User\UserRepositoryInterface;
2016-04-03 07:07:17 +02:00
use FireflyIII\User;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
/**
2017-11-15 12:25:49 +01:00
* Class IsAdmin.
2016-04-03 07:07:17 +02:00
*/
class IsAdmin
{
/**
* Handle an incoming request. Must be admin.
2016-04-03 07:07:17 +02:00
*
2023-12-20 19:35:52 +01:00
* @param null|string $guard
2016-04-03 07:07:17 +02:00
*
* @return mixed
*/
2023-12-20 19:35:52 +01:00
public function handle(Request $request, \Closure $next, $guard = null)
2016-04-03 07:07:17 +02:00
{
if (Auth::guard($guard)->guest()) {
if ($request->ajax()) {
return response('Unauthorized.', 401);
}
return response()->redirectTo(route('login'));
}
2023-12-20 19:35:52 +01:00
/** @var User $user */
$user = auth()->user();
2023-12-20 19:35:52 +01:00
2018-07-08 07:59:58 +02:00
/** @var UserRepositoryInterface $repository */
$repository = app(UserRepositoryInterface::class);
if (!$repository->hasRole($user, 'owner')) {
return response()->redirectTo(route('home'));
2016-04-03 07:07:17 +02:00
}
return $next($request);
}
}