2020-01-31 00:24:41 -06:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* InstallationId.php
|
|
|
|
* Copyright (c) 2020 james@firefly-iii.org
|
|
|
|
*
|
|
|
|
* This file is part of Firefly III (https://github.com/firefly-iii).
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* This program 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 Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
2021-03-28 04:46:23 -05:00
|
|
|
|
2020-01-31 00:24:41 -06:00
|
|
|
namespace FireflyIII\Http\Middleware;
|
|
|
|
|
|
|
|
use Closure;
|
2020-06-05 23:57:44 -05:00
|
|
|
use FireflyIII\Support\System\GeneratesInstallationId;
|
2021-03-21 03:15:40 -05:00
|
|
|
use Illuminate\Http\Request;
|
2020-01-31 00:24:41 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Class InstallationId
|
|
|
|
*/
|
|
|
|
class InstallationId
|
|
|
|
{
|
2020-06-05 23:57:44 -05:00
|
|
|
use GeneratesInstallationId;
|
2020-11-24 23:25:08 -06:00
|
|
|
|
2020-01-31 00:24:41 -06:00
|
|
|
/**
|
|
|
|
* Handle an incoming request.
|
|
|
|
*
|
2022-12-29 12:42:26 -06:00
|
|
|
* @param Request $request
|
|
|
|
* @param Closure $next
|
2020-01-31 00:24:41 -06:00
|
|
|
*
|
2020-03-17 09:02:57 -05:00
|
|
|
* @return mixed
|
|
|
|
*
|
2020-11-24 23:25:08 -06:00
|
|
|
*
|
2020-01-31 00:24:41 -06:00
|
|
|
*/
|
|
|
|
public function handle($request, Closure $next)
|
|
|
|
{
|
2020-06-05 23:57:44 -05:00
|
|
|
$this->generateInstallationId();
|
2020-01-31 00:24:41 -06:00
|
|
|
|
|
|
|
return $next($request);
|
|
|
|
}
|
2020-03-17 09:02:57 -05:00
|
|
|
}
|