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

69 lines
2.0 KiB
PHP
Raw Normal View History

2017-03-24 11:07:38 +01:00
<?php
/**
2017-12-19 19:25:50 +01:00
* IsDemoUser.php
2017-03-24 11:07:38 +01:00
* Copyright (c) 2017 thegrumpydictator@gmail.com
*
2017-10-21 08:40:00 +02:00
* This file is part of Firefly III.
*
* Firefly III is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Firefly III is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2017-12-17 14:44:05 +01:00
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
2017-03-24 11:07:38 +01:00
*/
declare(strict_types=1);
namespace FireflyIII\Http\Middleware;
use Closure;
2018-07-08 07:59:58 +02:00
use FireflyIII\Repositories\User\UserRepositoryInterface;
2017-03-24 11:07:38 +01:00
use FireflyIII\User;
use Illuminate\Http\Request;
use Log;
2017-03-24 11:07:38 +01:00
/**
2017-12-19 19:25:50 +01:00
* Class IsDemoUser.
2017-03-24 11:07:38 +01:00
*/
2017-12-19 19:25:50 +01:00
class IsDemoUser
2017-03-24 11:07:38 +01:00
{
/**
2018-03-03 17:16:47 +01:00
* Handle an incoming request.
2017-03-24 11:07:38 +01:00
*
2018-03-03 17:16:47 +01:00
* @param \Illuminate\Http\Request $request
* @param \Closure $next
2017-03-24 11:07:38 +01:00
*
* @return mixed
*/
2018-03-03 17:16:47 +01:00
public function handle(Request $request, Closure $next)
2017-03-24 11:07:38 +01:00
{
2018-03-03 17:16:47 +01:00
/** @var User $user */
$user = $request->user();
2018-04-02 15:10:40 +02:00
if (null === $user) {
2017-12-22 18:32:43 +01:00
return $next($request);
}
2018-03-03 17:16:47 +01:00
2018-07-08 07:59:58 +02:00
/** @var UserRepositoryInterface $repository */
$repository = app(UserRepositoryInterface::class);
if ($repository->hasRole($user, 'demo')) {
Log::info('User is a demo user.');
2018-04-02 15:10:40 +02: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 11:07:38 +01:00
return response()->redirectTo(route('index'));
2017-03-24 11:07:38 +01:00
}
return $next($request);
}
}