2019-02-03 22:22:04 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Core\Config;
|
|
|
|
|
2019-02-04 09:33:55 +01:00
|
|
|
use Friendica\Core\Addon;
|
|
|
|
|
2019-02-03 23:39:30 +01:00
|
|
|
/**
|
|
|
|
* The ConfigCacheLoader loads config-files and stores them in a ConfigCache ( @see ConfigCache )
|
|
|
|
*
|
|
|
|
* It is capable of loading the following config files:
|
|
|
|
* - *.config.php (current)
|
|
|
|
* - *.ini.php (deprecated)
|
|
|
|
* - *.htconfig.php (deprecated)
|
|
|
|
*/
|
2019-02-03 22:22:04 +01:00
|
|
|
class ConfigCacheLoader
|
|
|
|
{
|
2019-02-03 23:39:30 +01:00
|
|
|
/**
|
|
|
|
* The Sub directory of the config-files
|
|
|
|
* @var string
|
|
|
|
*/
|
2019-02-05 23:36:01 +01:00
|
|
|
const SUBDIRECTORY = 'config';
|
2019-02-03 23:39:30 +01:00
|
|
|
|
2019-02-03 22:22:04 +01:00
|
|
|
private $baseDir;
|
|
|
|
private $configDir;
|
|
|
|
|
|
|
|
public function __construct($baseDir)
|
|
|
|
{
|
|
|
|
$this->baseDir = $baseDir;
|
2019-02-05 23:36:01 +01:00
|
|
|
$this->configDir = $baseDir . DIRECTORY_SEPARATOR . self::SUBDIRECTORY;
|
2019-02-03 22:22:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Load the configuration files
|
|
|
|
*
|
|
|
|
* First loads the default value for all the configuration keys, then the legacy configuration files, then the
|
|
|
|
* expected local.config.php
|
|
|
|
*/
|
|
|
|
public function loadConfigFiles(ConfigCache $config)
|
|
|
|
{
|
|
|
|
// Setting at least the basepath we know
|
|
|
|
$config->set('system', 'basepath', $this->baseDir);
|
|
|
|
|
2019-02-05 22:27:57 +01:00
|
|
|
$config->loadConfigArray($this->loadCoreConfig('defaults'));
|
|
|
|
$config->loadConfigArray($this->loadCoreConfig('settings'));
|
2019-02-03 22:22:04 +01:00
|
|
|
|
2019-02-05 23:36:01 +01:00
|
|
|
$config->loadConfigArray($this->loadLegacyConfigFile('htpreconfig'), true);
|
|
|
|
$config->loadConfigArray($this->loadLegacyConfigFile('htconfig'), true);
|
2019-02-03 22:22:04 +01:00
|
|
|
|
2019-02-05 23:36:01 +01:00
|
|
|
$config->loadConfigArray($this->loadCoreConfig('local'), true);
|
|
|
|
}
|
2019-02-03 22:22:04 +01:00
|
|
|
|
2019-02-05 23:36:01 +01:00
|
|
|
/**
|
|
|
|
* Tries to load the legacy config files (.htconfig.php, .htpreconfig.php)
|
|
|
|
*
|
|
|
|
* @param string $name The name of the config file
|
|
|
|
* @return array The configuration array
|
|
|
|
*
|
|
|
|
* @deprecated since version 2018.09
|
|
|
|
*/
|
|
|
|
private function loadLegacyConfigFile($name)
|
|
|
|
{
|
|
|
|
$filePath = $this->baseDir . DIRECTORY_SEPARATOR . '.' . $name . '.php';
|
2019-02-03 22:22:04 +01:00
|
|
|
|
2019-02-05 23:36:01 +01:00
|
|
|
if (file_exists($filePath)) {
|
|
|
|
$a = new \stdClass();
|
|
|
|
$a->config = [];
|
|
|
|
include $filePath;
|
2019-02-03 22:22:04 +01:00
|
|
|
|
2019-02-05 23:36:01 +01:00
|
|
|
if (isset($db_host)) {
|
|
|
|
$a->config['database']['hostname'] = $db_host;
|
|
|
|
unset($db_host);
|
|
|
|
}
|
|
|
|
if (isset($db_user)) {
|
|
|
|
$a->config['database']['username'] = $db_user;
|
|
|
|
unset($db_user);
|
|
|
|
}
|
|
|
|
if (isset($db_pass)) {
|
|
|
|
$a->config['database']['password'] = $db_pass;
|
|
|
|
unset($db_pass);
|
|
|
|
}
|
|
|
|
if (isset($db_data)) {
|
|
|
|
$a->config['database']['database'] = $db_data;
|
|
|
|
unset($db_data);
|
|
|
|
}
|
|
|
|
if (isset($a->config['system']['db_charset'])) {
|
|
|
|
$a->config['database']['charset'] = $a->config['system']['charset'];
|
2019-02-03 22:22:04 +01:00
|
|
|
}
|
|
|
|
if (isset($pidfile)) {
|
2019-02-05 23:36:01 +01:00
|
|
|
$a->config['system']['pidfile'] = $pidfile;
|
2019-02-03 22:22:04 +01:00
|
|
|
unset($pidfile);
|
|
|
|
}
|
2019-02-05 23:36:01 +01:00
|
|
|
if (isset($default_timezone)) {
|
|
|
|
$a->config['system']['default_timezone'] = $default_timezone;
|
|
|
|
unset($default_timezone);
|
|
|
|
}
|
2019-02-03 22:22:04 +01:00
|
|
|
if (isset($lang)) {
|
2019-02-05 23:36:01 +01:00
|
|
|
$a->config['system']['language'] = $lang;
|
2019-02-03 22:22:04 +01:00
|
|
|
unset($lang);
|
|
|
|
}
|
|
|
|
|
2019-02-05 23:36:01 +01:00
|
|
|
return $a->config;
|
|
|
|
} else {
|
|
|
|
return [];
|
|
|
|
}
|
2019-02-03 22:22:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-02-05 23:36:01 +01:00
|
|
|
* Tries to load the specified legacy configuration file and returns the config array.
|
2019-02-03 22:22:04 +01:00
|
|
|
*
|
|
|
|
* @deprecated since version 2018.12
|
2019-02-05 23:47:40 +01:00
|
|
|
* @param string $filepath
|
2019-02-03 22:22:04 +01:00
|
|
|
*
|
2019-02-05 23:36:01 +01:00
|
|
|
* @return array The configuration array
|
2019-02-03 22:22:04 +01:00
|
|
|
* @throws \Exception
|
|
|
|
*/
|
2019-02-05 23:47:40 +01:00
|
|
|
public function loadINIConfigFile($filepath)
|
2019-02-03 22:22:04 +01:00
|
|
|
{
|
|
|
|
if (!file_exists($filepath)) {
|
|
|
|
throw new \Exception('Error parsing non-existent INI config file ' . $filepath);
|
|
|
|
}
|
|
|
|
|
|
|
|
$contents = include($filepath);
|
|
|
|
|
|
|
|
$config = parse_ini_string($contents, true, INI_SCANNER_TYPED);
|
|
|
|
|
|
|
|
if ($config === false) {
|
|
|
|
throw new \Exception('Error parsing INI config file ' . $filepath);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $config;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-02-05 22:27:57 +01:00
|
|
|
* Tries to load the specified configuration file and returns the config array.
|
2019-02-03 22:22:04 +01:00
|
|
|
*
|
|
|
|
* The config format is PHP array and the template for configuration files is the following:
|
|
|
|
*
|
|
|
|
* <?php return [
|
|
|
|
* 'section' => [
|
|
|
|
* 'key' => 'value',
|
|
|
|
* ],
|
|
|
|
* ];
|
|
|
|
*
|
2019-02-05 22:27:57 +01:00
|
|
|
* @param string $filepath The filepath of the
|
|
|
|
* @return array The config array0
|
|
|
|
*
|
|
|
|
* @throws \Exception if the config cannot get loaded.
|
2019-02-03 22:22:04 +01:00
|
|
|
*/
|
2019-02-05 22:27:57 +01:00
|
|
|
private function loadConfigFile($filepath)
|
2019-02-03 22:22:04 +01:00
|
|
|
{
|
|
|
|
if (!file_exists($filepath)) {
|
|
|
|
throw new \Exception('Error loading non-existent config file ' . $filepath);
|
|
|
|
}
|
|
|
|
|
|
|
|
$config = include($filepath);
|
|
|
|
|
|
|
|
if (!is_array($config)) {
|
|
|
|
throw new \Exception('Error loading config file ' . $filepath);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $config;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-02-05 22:27:57 +01:00
|
|
|
* Tries to load the specified core-configuration and returns the config array.
|
|
|
|
*
|
|
|
|
* @param string $name The name of the configuration
|
|
|
|
*
|
|
|
|
* @return array The config array (empty if no config found)
|
|
|
|
*
|
|
|
|
* @throws \Exception if the configuration file isn't readable
|
|
|
|
*/
|
|
|
|
public function loadCoreConfig($name)
|
|
|
|
{
|
2019-02-05 23:36:01 +01:00
|
|
|
if (file_exists($this->configDir . DIRECTORY_SEPARATOR . $name . '.config.php')) {
|
|
|
|
return $this->loadConfigFile($this->configDir . DIRECTORY_SEPARATOR . $name . '.config.php');
|
|
|
|
} elseif (file_exists($this->configDir . DIRECTORY_SEPARATOR . $name . '.ini.php')) {
|
|
|
|
return $this->loadINIConfigFile($this->configDir . DIRECTORY_SEPARATOR . $name . '.ini.php');
|
2019-02-05 22:27:57 +01:00
|
|
|
} else {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tries to load the specified addon-configuration and returns the config array.
|
2019-02-03 22:22:04 +01:00
|
|
|
*
|
2019-02-05 22:27:57 +01:00
|
|
|
* @param string $name The name of the configuration
|
2019-02-03 22:22:04 +01:00
|
|
|
*
|
2019-02-05 22:27:57 +01:00
|
|
|
* @return array The config array (empty if no config found)
|
|
|
|
*
|
|
|
|
* @throws \Exception if the configuration file isn't readable
|
2019-02-03 22:22:04 +01:00
|
|
|
*/
|
2019-02-05 22:27:57 +01:00
|
|
|
public function loadAddonConfig($name)
|
2019-02-03 22:22:04 +01:00
|
|
|
{
|
2019-02-05 23:36:01 +01:00
|
|
|
$filepath = $this->baseDir . DIRECTORY_SEPARATOR . // /var/www/html/
|
|
|
|
Addon::DIRECTORY . DIRECTORY_SEPARATOR . // addon/
|
|
|
|
$name . DIRECTORY_SEPARATOR . // openstreetmap/
|
|
|
|
self::SUBDIRECTORY . DIRECTORY_SEPARATOR . // config/
|
|
|
|
$name . ".config.php"; // openstreetmap.config.php
|
2019-02-05 22:27:57 +01:00
|
|
|
|
|
|
|
if (file_exists($filepath)) {
|
|
|
|
return $this->loadConfigFile($filepath);
|
2019-02-03 22:22:04 +01:00
|
|
|
} else {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|