firefly-iii/app/Http/Middleware/IsDemoUser.php

70 lines
2.0 KiB
PHP
Raw Normal View History

2017-03-24 05:07:38 -05:00
<?php
2022-12-29 12:42:26 -06:00
2017-03-24 05:07:38 -05:00
/**
2017-12-19 12:25:50 -06:00
* IsDemoUser.php
2020-01-31 00:32:04 -06:00
* Copyright (c) 2019 james@firefly-iii.org
2017-03-24 05:07:38 -05:00
*
* This file is part of Firefly III (https://github.com/firefly-iii).
2017-10-21 01:40:00 -05: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 01:40:00 -05:00
*
* This program is distributed in the hope that it will be useful,
2017-10-21 01:40:00 -05: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 01:40:00 -05: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-03-24 05:07:38 -05:00
*/
declare(strict_types=1);
namespace FireflyIII\Http\Middleware;
use Closure;
2018-07-08 00:59:58 -05:00
use FireflyIII\Repositories\User\UserRepositoryInterface;
2017-03-24 05:07:38 -05:00
use FireflyIII\User;
use Illuminate\Http\Request;
use Log;
2017-03-24 05:07:38 -05:00
/**
2017-12-19 12:25:50 -06:00
* Class IsDemoUser.
2017-03-24 05:07:38 -05:00
*/
2017-12-19 12:25:50 -06:00
class IsDemoUser
2017-03-24 05:07:38 -05:00
{
/**
2018-03-03 10:16:47 -06:00
* Handle an incoming request.
2017-03-24 05:07:38 -05:00
*
2022-12-29 12:42:26 -06:00
* @param Request $request
* @param Closure $next
2017-03-24 05:07:38 -05:00
*
* @return mixed
*/
2018-03-03 10:16:47 -06:00
public function handle(Request $request, Closure $next)
2017-03-24 05:07:38 -05:00
{
2018-03-03 10:16:47 -06:00
/** @var User $user */
$user = $request->user();
2018-04-02 08:10:40 -05:00
if (null === $user) {
2017-12-22 11:32:43 -06:00
return $next($request);
}
2018-03-03 10:16:47 -06:00
2018-07-08 00:59:58 -05:00
/** @var UserRepositoryInterface $repository */
$repository = app(UserRepositoryInterface::class);
if ($repository->hasRole($user, 'demo')) {
Log::info('User is a demo user.');
2022-12-29 12:42:26 -06:00
$request->session()->flash('info', (string)trans('firefly.not_available_demo_user'));
$current = $request->url();
$previous = $request->session()->previousUrl();
if ($current !== $previous) {
return response()->redirectTo($previous);
}
2017-03-24 05:07:38 -05:00
return response()->redirectTo(route('index'));
2017-03-24 05:07:38 -05:00
}
return $next($request);
}
}