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

66 lines
1.8 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;
use FireflyIII\Exceptions\IsDemoUserException;
2017-03-24 11:07:38 +01:00
use FireflyIII\User;
use Illuminate\Http\Request;
/**
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
* @throws \RuntimeException
2017-03-24 11:07:38 +01:00
*/
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();
if (is_null($user)) {
2017-12-22 18:32:43 +01:00
return $next($request);
}
2018-03-03 17:16:47 +01:00
2017-03-24 11:07:38 +01:00
if ($user->hasRole('demo')) {
$request->session()->flash('info', strval(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);
}
}