firefly-iii/app/Support/Binder/StaticConfigKey.php

52 lines
1.5 KiB
PHP
Raw Normal View History

2018-12-08 23:39:56 -06:00
<?php
2021-02-16 23:17:48 -06:00
/*
* StaticConfigKey.php
* Copyright (c) 2021 james@firefly-iii.org
2018-12-08 23:39:56 -06:00
*
* This file is part of Firefly III (https://github.com/firefly-iii).
2018-12-08 23:39:56 -06:00
*
* 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.
2018-12-08 23:39:56 -06:00
*
* This program is distributed in the hope that it will be useful,
2018-12-08 23:39:56 -06:00
* 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.
2018-12-08 23:39:56 -06:00
*
* 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/>.
2018-12-08 23:39:56 -06:00
*/
namespace FireflyIII\Support\Binder;
use Illuminate\Routing\Route;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
/**
2021-02-16 23:17:48 -06:00
* Class StaticConfigKey
2018-12-08 23:39:56 -06:00
*/
2021-02-16 23:17:48 -06:00
class StaticConfigKey
2018-12-08 23:39:56 -06:00
{
2021-02-16 23:17:48 -06:00
public static array $accepted = [
'firefly.version',
'firefly.api_version',
'firefly.default_location'
];
2018-12-08 23:39:56 -06:00
/**
* @param string $value
* @param Route $route
*
* @return string
* @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException
*/
public static function routeBinder(string $value, Route $route): string
{
2021-02-16 23:17:48 -06:00
if (in_array($value, self::$accepted, true)) {
2018-12-08 23:39:56 -06:00
return $value;
}
throw new NotFoundHttpException;
}
2021-02-16 23:17:48 -06:00
}