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

55 lines
1.4 KiB
PHP
Raw Normal View History

<?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
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;
/**
*
* Class InstallationId
*/
class InstallationId
{
2020-06-05 23:57:44 -05:00
use GeneratesInstallationId;
2020-11-24 23:25:08 -06:00
/**
* Handle an incoming request.
*
2022-12-29 12:42:26 -06:00
* @param Request $request
* @param Closure $next
*
* @return mixed
*
2020-11-24 23:25:08 -06:00
*
*/
public function handle($request, Closure $next)
{
2020-06-05 23:57:44 -05:00
$this->generateInstallationId();
return $next($request);
}
}