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

49 lines
1.5 KiB
PHP
Raw Normal View History

2017-10-27 18:56:38 +02:00
<?php
/**
* StartFireflySession.php
* Copyright (c) 2017 thegrumpydictator@gmail.com
*
* 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-10-27 18:56:38 +02:00
*/
declare(strict_types=1);
namespace FireflyIII\Http\Middleware;
use Illuminate\Http\Request;
use Illuminate\Session\Middleware\StartSession;
/**
2017-12-26 17:34:59 +01:00
* @codeCoverageIgnore
2017-11-15 12:25:49 +01:00
* Class StartFireflySession.
2017-10-27 18:56:38 +02:00
*/
class StartFireflySession extends StartSession
{
2017-10-29 20:02:34 +01:00
/**
* Store the current URL for the request if necessary.
*
2017-11-15 12:25:49 +01:00
* @param \Illuminate\Http\Request $request
* @param \Illuminate\Contracts\Session\Session $session
2017-10-29 20:02:34 +01:00
*/
protected function storeCurrentUrl(Request $request, $session)
{
$uri = $request->fullUrl();
$strpos = strpos($uri, 'jscript');
2018-07-08 12:08:53 +02:00
if (false === $strpos && 'GET' === $request->method() && $request->route() && !$request->ajax()) {
2017-10-29 20:02:34 +01:00
$session->setPreviousUrl($uri);
}
}
2017-11-08 09:05:10 +01:00
}