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

61 lines
1.9 KiB
PHP
Raw Normal View History

2018-12-08 23:39:56 -06:00
<?php
2021-03-28 04:43:07 -05:00
declare(strict_types=1);
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-03-07 00:43:18 -06:00
* Class EitherConfigKey
2018-12-08 23:39:56 -06:00
*/
2021-03-07 00:43:18 -06:00
class EitherConfigKey
2018-12-08 23:39:56 -06:00
{
2021-03-07 00:43:18 -06:00
public static array $static = [
2021-02-16 23:17:48 -06:00
'firefly.version',
'firefly.api_version',
2021-02-19 09:25:36 -06:00
'firefly.default_location',
2021-02-25 23:39:20 -06:00
'firefly.account_to_transaction',
2021-03-07 00:43:18 -06:00
'firefly.allowed_opposing_types',
2021-04-07 07:18:43 -05:00
'firefly.accountRoles',
'firefly.valid_liabilities',
2021-04-07 11:24:06 -05:00
'firefly.interest_periods',
2021-07-25 12:39:35 -05:00
'firefly.bill_periods',
2021-04-08 04:21:20 -05:00
'firefly.enable_external_map',
2021-04-08 19:07:34 -05:00
'firefly.expected_source_types',
'app.timezone',
2021-02-16 23:17:48 -06:00
];
2018-12-08 23:39:56 -06:00
/**
* @param string $value
* @param Route $route
*
* @return string
2021-05-24 01:57:02 -05:00
* @throws NotFoundHttpException
2018-12-08 23:39:56 -06:00
*/
public static function routeBinder(string $value, Route $route): string
{
2021-03-07 00:43:18 -06:00
if (in_array($value, self::$static, true) || in_array($value, DynamicConfigKey::$accepted, true)) {
2018-12-08 23:39:56 -06:00
return $value;
}
throw new NotFoundHttpException;
}
2021-03-28 04:43:07 -05:00
}