2019-02-03 21:22:04 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Factory;
|
|
|
|
|
|
|
|
use Friendica\Core\Config;
|
2019-02-10 18:52:21 +00:00
|
|
|
use Friendica\Core\Config\Cache;
|
2019-07-12 21:01:01 +00:00
|
|
|
use Friendica\Model\Config\Config as ConfigModel;
|
2019-07-15 18:13:53 +00:00
|
|
|
use Friendica\Model\Config\PConfig as PConfigModel;
|
2019-07-20 23:22:10 +00:00
|
|
|
use Friendica\Util\ConfigFileLoader;
|
2019-02-03 21:22:04 +00:00
|
|
|
|
|
|
|
class ConfigFactory
|
|
|
|
{
|
2019-02-03 21:46:50 +00:00
|
|
|
/**
|
2019-03-24 11:54:26 +00:00
|
|
|
* @param ConfigFileLoader $loader The Config Cache loader (INI/config/.htconfig)
|
2019-02-03 21:46:50 +00:00
|
|
|
*
|
2019-02-10 18:52:21 +00:00
|
|
|
* @return Cache\ConfigCache
|
2019-02-03 21:46:50 +00:00
|
|
|
*/
|
2019-07-20 23:22:10 +00:00
|
|
|
public function createCache(ConfigFileLoader $loader)
|
2019-02-03 21:22:04 +00:00
|
|
|
{
|
2019-02-10 18:52:21 +00:00
|
|
|
$configCache = new Cache\ConfigCache();
|
2019-03-24 11:54:26 +00:00
|
|
|
$loader->setupCache($configCache);
|
2019-02-03 21:22:04 +00:00
|
|
|
|
|
|
|
return $configCache;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-07-12 21:01:01 +00:00
|
|
|
* @param Cache\ConfigCache $configCache The config cache of this adapter
|
2019-07-20 23:22:10 +00:00
|
|
|
* @param ConfigModel $configModel The configuration model
|
2019-02-03 21:46:50 +00:00
|
|
|
*
|
2019-12-19 19:11:07 +00:00
|
|
|
* @return Config\IConfiguration
|
2019-02-03 21:22:04 +00:00
|
|
|
*/
|
2019-07-20 23:22:10 +00:00
|
|
|
public function createConfig(Cache\ConfigCache $configCache, ConfigModel $configModel)
|
2019-02-03 21:22:04 +00:00
|
|
|
{
|
2019-02-10 18:52:21 +00:00
|
|
|
if ($configCache->get('system', 'config_adapter') === 'preload') {
|
2019-07-12 21:01:01 +00:00
|
|
|
$configuration = new Config\PreloadConfiguration($configCache, $configModel);
|
2019-02-03 21:22:04 +00:00
|
|
|
} else {
|
2019-07-12 21:01:01 +00:00
|
|
|
$configuration = new Config\JitConfiguration($configCache, $configModel);
|
2019-02-03 21:22:04 +00:00
|
|
|
}
|
2019-02-10 18:52:21 +00:00
|
|
|
|
|
|
|
|
|
|
|
return $configuration;
|
2019-02-03 21:22:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-07-20 23:22:10 +00:00
|
|
|
* @param Cache\ConfigCache $configCache The config cache
|
|
|
|
* @param Cache\PConfigCache $pConfigCache The personal config cache
|
|
|
|
* @param PConfigModel $configModel The configuration model
|
2019-02-03 21:46:50 +00:00
|
|
|
*
|
2019-12-19 19:11:07 +00:00
|
|
|
* @return Config\IPConfiguration
|
2019-02-03 21:22:04 +00:00
|
|
|
*/
|
2019-07-20 23:22:10 +00:00
|
|
|
public function createPConfig(Cache\ConfigCache $configCache, Cache\PConfigCache $pConfigCache, PConfigModel $configModel)
|
2019-02-03 21:22:04 +00:00
|
|
|
{
|
2019-02-10 18:52:21 +00:00
|
|
|
if ($configCache->get('system', 'config_adapter') === 'preload') {
|
2019-07-15 18:13:53 +00:00
|
|
|
$configuration = new Config\PreloadPConfiguration($pConfigCache, $configModel);
|
2019-02-03 21:22:04 +00:00
|
|
|
} else {
|
2019-07-15 18:13:53 +00:00
|
|
|
$configuration = new Config\JitPConfiguration($pConfigCache, $configModel);
|
2019-02-03 21:22:04 +00:00
|
|
|
}
|
2019-02-10 18:52:21 +00:00
|
|
|
|
|
|
|
return $configuration;
|
2019-02-03 21:22:04 +00:00
|
|
|
}
|
|
|
|
}
|