Files
firefly-iii/app/Support/Binder/EitherConfigKey.php

60 lines
1.9 KiB
PHP
Raw Normal View History

2018-12-09 06:39:56 +01:00
<?php
2021-03-28 11:43:07 +02:00
declare(strict_types=1);
2021-02-17 06:17:48 +01:00
/*
* StaticConfigKey.php
* Copyright (c) 2021 james@firefly-iii.org
2018-12-09 06:39:56 +01:00
*
* This file is part of Firefly III (https://github.com/firefly-iii).
2018-12-09 06:39:56 +01: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-09 06:39:56 +01:00
*
* This program is distributed in the hope that it will be useful,
2018-12-09 06:39:56 +01: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-09 06:39:56 +01: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-09 06:39:56 +01:00
*/
namespace FireflyIII\Support\Binder;
use Illuminate\Routing\Route;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
/**
2021-03-07 07:43:18 +01:00
* Class EitherConfigKey
2018-12-09 06:39:56 +01:00
*/
2021-03-07 07:43:18 +01:00
class EitherConfigKey
2018-12-09 06:39:56 +01:00
{
2021-03-07 07:43:18 +01:00
public static array $static = [
2021-02-17 06:17:48 +01:00
'firefly.version',
'firefly.api_version',
2021-02-19 16:25:36 +01:00
'firefly.default_location',
2021-02-26 06:39:20 +01:00
'firefly.account_to_transaction',
2021-03-07 07:43:18 +01:00
'firefly.allowed_opposing_types',
2021-04-07 14:18:43 +02:00
'firefly.accountRoles',
'firefly.valid_liabilities',
2021-04-07 18:24:06 +02:00
'firefly.interest_periods',
2021-04-08 11:21:20 +02:00
'firefly.enable_external_map',
2021-04-09 02:07:34 +02:00
'firefly.expected_source_types',
'app.timezone',
2021-02-17 06:17:48 +01:00
];
2018-12-09 06:39:56 +01: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-03-07 07:43:18 +01:00
if (in_array($value, self::$static, true) || in_array($value, DynamicConfigKey::$accepted, true)) {
2018-12-09 06:39:56 +01:00
return $value;
}
throw new NotFoundHttpException;
}
2021-03-28 11:43:07 +02:00
}