2019-02-03 16:22:04 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Factory;
|
|
|
|
|
2019-02-10 13:52:21 -05:00
|
|
|
use Friendica\Core;
|
2019-02-03 16:22:04 -05:00
|
|
|
use Friendica\Core\Config;
|
2019-02-10 13:52:21 -05:00
|
|
|
use Friendica\Core\Config\Adapter;
|
|
|
|
use Friendica\Core\Config\Cache;
|
2019-02-03 16:22:04 -05:00
|
|
|
|
|
|
|
class ConfigFactory
|
|
|
|
{
|
2019-02-03 16:46:50 -05:00
|
|
|
/**
|
2019-02-10 13:52:21 -05:00
|
|
|
* @param Cache\ConfigCacheLoader $loader The Config Cache loader (INI/config/.htconfig)
|
2019-02-03 16:46:50 -05:00
|
|
|
*
|
2019-02-10 13:52:21 -05:00
|
|
|
* @return Cache\ConfigCache
|
2019-02-03 16:46:50 -05:00
|
|
|
*/
|
2019-02-10 13:52:21 -05:00
|
|
|
public static function createCache(Cache\ConfigCacheLoader $loader)
|
2019-02-03 16:22:04 -05:00
|
|
|
{
|
2019-02-10 13:52:21 -05:00
|
|
|
$configCache = new Cache\ConfigCache();
|
2019-02-03 16:22:04 -05:00
|
|
|
$loader->loadConfigFiles($configCache);
|
|
|
|
|
|
|
|
return $configCache;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-02-10 13:52:21 -05:00
|
|
|
* @param Cache\ConfigCache $configCache The config cache of this adapter
|
2019-02-03 16:46:50 -05:00
|
|
|
*
|
2019-02-10 13:52:21 -05:00
|
|
|
* @return Config\Configuration
|
2019-02-03 16:22:04 -05:00
|
|
|
*/
|
2019-02-10 13:52:21 -05:00
|
|
|
public static function createConfig(Cache\ConfigCache $configCache)
|
2019-02-03 16:22:04 -05:00
|
|
|
{
|
2019-02-10 13:52:21 -05:00
|
|
|
if ($configCache->get('system', 'config_adapter') === 'preload') {
|
|
|
|
$configAdapter = new Adapter\PreloadConfigAdapter();
|
2019-02-03 16:22:04 -05:00
|
|
|
} else {
|
2019-02-10 13:52:21 -05:00
|
|
|
$configAdapter = new Adapter\JITConfigAdapter();
|
2019-02-03 16:22:04 -05:00
|
|
|
}
|
2019-02-10 13:52:21 -05:00
|
|
|
|
|
|
|
$configuration = new Config\Configuration($configCache, $configAdapter);
|
|
|
|
|
|
|
|
// Set the config in the static container for legacy usage
|
|
|
|
Core\Config::init($configuration);
|
|
|
|
|
|
|
|
return $configuration;
|
2019-02-03 16:22:04 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-02-10 13:52:21 -05:00
|
|
|
* @param Cache\ConfigCache $configCache The config cache of this adapter
|
|
|
|
* @param int $uid The UID of the current user
|
2019-02-03 16:46:50 -05:00
|
|
|
*
|
2019-02-10 13:52:21 -05:00
|
|
|
* @return Config\PConfiguration
|
2019-02-03 16:22:04 -05:00
|
|
|
*/
|
2019-02-10 13:52:21 -05:00
|
|
|
public static function createPConfig(Cache\ConfigCache $configCache, $uid = null)
|
2019-02-03 16:22:04 -05:00
|
|
|
{
|
2019-02-10 13:52:21 -05:00
|
|
|
if ($configCache->get('system', 'config_adapter') === 'preload') {
|
|
|
|
$configAdapter = new Adapter\PreloadPConfigAdapter($uid);
|
2019-02-03 16:22:04 -05:00
|
|
|
} else {
|
2019-02-10 13:52:21 -05:00
|
|
|
$configAdapter = new Adapter\JITPConfigAdapter();
|
2019-02-03 16:22:04 -05:00
|
|
|
}
|
2019-02-10 13:52:21 -05:00
|
|
|
|
|
|
|
$configuration = new Config\PConfiguration($configCache, $configAdapter);
|
|
|
|
|
|
|
|
// Set the config in the static container for legacy usage
|
|
|
|
Core\PConfig::init($configuration);
|
|
|
|
|
|
|
|
return $configuration;
|
2019-02-03 16:22:04 -05:00
|
|
|
}
|
|
|
|
}
|