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

48 lines
1.5 KiB
PHP
Raw Normal View History

2017-10-27 11:56:38 -05: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
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
*/
declare(strict_types=1);
namespace FireflyIII\Http\Middleware;
use Illuminate\Http\Request;
use Illuminate\Session\Middleware\StartSession;
/**
2017-11-15 05:25:49 -06:00
* Class StartFireflySession.
2017-10-27 11:56:38 -05:00
*/
class StartFireflySession extends StartSession
{
2017-10-29 14:02:34 -05:00
/**
* Store the current URL for the request if necessary.
*
2017-11-15 05:25:49 -06:00
* @param \Illuminate\Http\Request $request
* @param \Illuminate\Contracts\Session\Session $session
2017-10-29 14:02:34 -05:00
*/
protected function storeCurrentUrl(Request $request, $session)
{
$uri = $request->fullUrl();
$strpos = strpos($uri, 'jscript');
2017-11-15 05:25:49 -06:00
if ('GET' === $request->method() && $request->route() && !$request->ajax() && false === $strpos) {
2017-10-29 14:02:34 -05:00
$session->setPreviousUrl($uri);
}
}
2017-11-08 02:05:10 -06:00
}