friendica/src/Core/Config/Factory/Config.php

102 lines
2.8 KiB
PHP
Raw Normal View History

2019-02-03 22:22:04 +01:00
<?php
2020-02-09 15:45:36 +01:00
/**
2021-03-29 08:40:20 +02:00
* @copyright Copyright (C) 2010-2021, the Friendica project
2020-02-09 15:45:36 +01:00
*
* @license GNU AGPL version 3 or any later version
*
* 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/>.
*
*/
2019-02-03 22:22:04 +01:00
namespace Friendica\Core\Config\Factory;
2019-02-03 22:22:04 +01:00
2021-10-26 21:44:29 +02:00
use Friendica\Core\Config\Capability;
use Friendica\Core\Config\Repository;
use Friendica\Core\Config\Type;
use Friendica\Core\Config\Util;
use Friendica\Core\Config\ValueObject\Cache;
2019-02-03 22:22:04 +01:00
2021-10-26 21:44:29 +02:00
class Config
2019-02-03 22:22:04 +01:00
{
/**
* The key of the $_SERVER variable to override the config directory
*
* @var string
*/
const CONFIG_DIR_ENV = 'FRIENDICA_CONFIG_DIR';
/**
* The Sub directory of the config-files
*
* @var string
*/
const CONFIG_DIR = 'config';
/**
* The Sub directory of the static config-files
*
* @var string
*/
const STATIC_DIR = 'static';
/**
* @param string $basePath The basepath of FRIENDICA
2021-10-26 21:44:29 +02:00
* @param array $server The $_SERVER array
*
2021-10-26 21:44:29 +02:00
* @return Util\ConfigFileLoader
*/
2021-10-26 21:44:29 +02:00
public function createConfigFileLoader(string $basePath, array $server = []): Util\ConfigFileLoader
{
if (!empty($server[self::CONFIG_DIR_ENV]) && is_dir($server[self::CONFIG_DIR_ENV])) {
$configDir = $server[self::CONFIG_DIR_ENV];
} else {
$configDir = $basePath . DIRECTORY_SEPARATOR . self::CONFIG_DIR;
}
$staticDir = $basePath . DIRECTORY_SEPARATOR . self::STATIC_DIR;
2021-10-26 21:44:29 +02:00
return new Util\ConfigFileLoader($basePath, $configDir, $staticDir);
}
/**
2021-10-26 21:44:29 +02:00
* @param Util\ConfigFileLoader $loader The Config Cache loader (INI/config/.htconfig)
* @param array $server
*
* @return Cache
*/
2021-10-26 21:44:29 +02:00
public function createCache(Util\ConfigFileLoader $loader, array $server = []): Cache
2019-02-03 22:22:04 +01:00
{
$configCache = new Cache();
$loader->setupCache($configCache, $server);
2019-02-03 22:22:04 +01:00
return $configCache;
}
/**
2021-10-26 21:44:29 +02:00
* @param Cache $configCache The config cache of this adapter
* @param Repository\Config $configRepo The configuration repository
*
2021-10-26 21:44:29 +02:00
* @return Capability\IManageConfigValues
2019-02-03 22:22:04 +01:00
*/
2021-10-26 21:44:29 +02:00
public function create(Cache $configCache, Repository\Config $configRepo)
2019-02-03 22:22:04 +01:00
{
if ($configCache->get('system', 'config_adapter') === 'preload') {
2021-10-26 21:44:29 +02:00
$configuration = new Type\PreloadConfig($configCache, $configRepo);
2019-02-03 22:22:04 +01:00
} else {
2021-10-26 21:44:29 +02:00
$configuration = new Type\JitConfig($configCache, $configRepo);
2019-02-03 22:22:04 +01:00
}
return $configuration;
2019-02-03 22:22:04 +01:00
}
}