123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531 |
- <?php
- /* vim: set expandtab sw=4 ts=4 sts=4: */
- /**
- * Config file management
- *
- * @package PhpMyAdmin
- */
- namespace PhpMyAdmin\Config;
- use PhpMyAdmin\Config;
- use PhpMyAdmin\Core;
- /**
- * Config file management class.
- * Stores its data in $_SESSION
- *
- * @package PhpMyAdmin
- */
- class ConfigFile
- {
- /**
- * Stores default PMA config from config.default.php
- * @var array
- */
- private $_defaultCfg;
- /**
- * Stores allowed values for non-standard fields
- * @var array
- */
- private $_cfgDb;
- /**
- * Stores original PMA config, not modified by user preferences
- * @var Config
- */
- private $_baseCfg;
- /**
- * Whether we are currently working in PMA Setup context
- * @var bool
- */
- private $_isInSetup;
- /**
- * Keys which will be always written to config file
- * @var array
- */
- private $_persistKeys = array();
- /**
- * Changes keys while updating config in {@link updateWithGlobalConfig()}
- * or reading by {@link getConfig()} or {@link getConfigArray()}
- * @var array
- */
- private $_cfgUpdateReadMapping = array();
- /**
- * Key filter for {@link set()}
- * @var array|null
- */
- private $_setFilter;
- /**
- * Instance id (key in $_SESSION array, separate for each server -
- * ConfigFile{server id})
- * @var string
- */
- private $_id;
- /**
- * Result for {@link _flattenArray()}
- * @var array|null
- */
- private $_flattenArrayResult;
- /**
- * Constructor
- *
- * @param array|null $base_config base configuration read from
- * {@link PhpMyAdmin\Config::$base_config},
- * use only when not in PMA Setup
- */
- public function __construct($base_config = null)
- {
- // load default config values
- $cfg = &$this->_defaultCfg;
- include './libraries/config.default.php';
- $cfg['fontsize'] = '82%';
- // load additional config information
- $cfg_db = &$this->_cfgDb;
- include './libraries/config.values.php';
- // apply default values overrides
- if (count($cfg_db['_overrides'])) {
- foreach ($cfg_db['_overrides'] as $path => $value) {
- Core::arrayWrite($path, $cfg, $value);
- }
- }
- $this->_baseCfg = $base_config;
- $this->_isInSetup = is_null($base_config);
- $this->_id = 'ConfigFile' . $GLOBALS['server'];
- if (!isset($_SESSION[$this->_id])) {
- $_SESSION[$this->_id] = array();
- }
- }
- /**
- * Sets names of config options which will be placed in config file even if
- * they are set to their default values (use only full paths)
- *
- * @param array $keys the names of the config options
- *
- * @return void
- */
- public function setPersistKeys(array $keys)
- {
- // checking key presence is much faster than searching so move values
- // to keys
- $this->_persistKeys = array_flip($keys);
- }
- /**
- * Returns flipped array set by {@link setPersistKeys()}
- *
- * @return array
- */
- public function getPersistKeysMap()
- {
- return $this->_persistKeys;
- }
- /**
- * By default ConfigFile allows setting of all configuration keys, use
- * this method to set up a filter on {@link set()} method
- *
- * @param array|null $keys array of allowed keys or null to remove filter
- *
- * @return void
- */
- public function setAllowedKeys($keys)
- {
- if ($keys === null) {
- $this->_setFilter = null;
- return;
- }
- // checking key presence is much faster than searching so move values
- // to keys
- $this->_setFilter = array_flip($keys);
- }
- /**
- * Sets path mapping for updating config in
- * {@link updateWithGlobalConfig()} or reading
- * by {@link getConfig()} or {@link getConfigArray()}
- *
- * @param array $mapping Contains the mapping of "Server/config options"
- * to "Server/1/config options"
- *
- * @return void
- */
- public function setCfgUpdateReadMapping(array $mapping)
- {
- $this->_cfgUpdateReadMapping = $mapping;
- }
- /**
- * Resets configuration data
- *
- * @return void
- */
- public function resetConfigData()
- {
- $_SESSION[$this->_id] = array();
- }
- /**
- * Sets configuration data (overrides old data)
- *
- * @param array $cfg Configuration options
- *
- * @return void
- */
- public function setConfigData(array $cfg)
- {
- $_SESSION[$this->_id] = $cfg;
- }
- /**
- * Sets config value
- *
- * @param string $path Path
- * @param mixed $value Value
- * @param string $canonical_path Canonical path
- *
- * @return void
- */
- public function set($path, $value, $canonical_path = null)
- {
- if ($canonical_path === null) {
- $canonical_path = $this->getCanonicalPath($path);
- }
- // apply key whitelist
- if ($this->_setFilter !== null
- && ! isset($this->_setFilter[$canonical_path])
- ) {
- return;
- }
- // if the path isn't protected it may be removed
- if (isset($this->_persistKeys[$canonical_path])) {
- Core::arrayWrite($path, $_SESSION[$this->_id], $value);
- return;
- }
- $default_value = $this->getDefault($canonical_path);
- $remove_path = $value === $default_value;
- if ($this->_isInSetup) {
- // remove if it has a default value or is empty
- $remove_path = $remove_path
- || (empty($value) && empty($default_value));
- } else {
- // get original config values not overwritten by user
- // preferences to allow for overwriting options set in
- // config.inc.php with default values
- $instance_default_value = Core::arrayRead(
- $canonical_path,
- $this->_baseCfg
- );
- // remove if it has a default value and base config (config.inc.php)
- // uses default value
- $remove_path = $remove_path
- && ($instance_default_value === $default_value);
- }
- if ($remove_path) {
- Core::arrayRemove($path, $_SESSION[$this->_id]);
- return;
- }
- Core::arrayWrite($path, $_SESSION[$this->_id], $value);
- }
- /**
- * Flattens multidimensional array, changes indices to paths
- * (eg. 'key/subkey').
- * Used as array_walk() callback.
- *
- * @param mixed $value Value
- * @param mixed $key Key
- * @param mixed $prefix Prefix
- *
- * @return void
- */
- private function _flattenArray($value, $key, $prefix)
- {
- // no recursion for numeric arrays
- if (is_array($value) && !isset($value[0])) {
- $prefix .= $key . '/';
- array_walk($value, array($this, '_flattenArray'), $prefix);
- } else {
- $this->_flattenArrayResult[$prefix . $key] = $value;
- }
- }
- /**
- * Returns default config in a flattened array
- *
- * @return array
- */
- public function getFlatDefaultConfig()
- {
- $this->_flattenArrayResult = array();
- array_walk($this->_defaultCfg, array($this, '_flattenArray'), '');
- $flat_cfg = $this->_flattenArrayResult;
- $this->_flattenArrayResult = null;
- return $flat_cfg;
- }
- /**
- * Updates config with values read from given array
- * (config will contain differences to defaults from config.defaults.php).
- *
- * @param array $cfg Configuration
- *
- * @return void
- */
- public function updateWithGlobalConfig(array $cfg)
- {
- // load config array and flatten it
- $this->_flattenArrayResult = array();
- array_walk($cfg, array($this, '_flattenArray'), '');
- $flat_cfg = $this->_flattenArrayResult;
- $this->_flattenArrayResult = null;
- // save values map for translating a few user preferences paths,
- // should be complemented by code reading from generated config
- // to perform inverse mapping
- foreach ($flat_cfg as $path => $value) {
- if (isset($this->_cfgUpdateReadMapping[$path])) {
- $path = $this->_cfgUpdateReadMapping[$path];
- }
- $this->set($path, $value, $path);
- }
- }
- /**
- * Returns config value or $default if it's not set
- *
- * @param string $path Path of config file
- * @param mixed $default Default values
- *
- * @return mixed
- */
- public function get($path, $default = null)
- {
- return Core::arrayRead($path, $_SESSION[$this->_id], $default);
- }
- /**
- * Returns default config value or $default it it's not set ie. it doesn't
- * exist in config.default.php ($cfg) and config.values.php
- * ($_cfg_db['_overrides'])
- *
- * @param string $canonical_path Canonical path
- * @param mixed $default Default value
- *
- * @return mixed
- */
- public function getDefault($canonical_path, $default = null)
- {
- return Core::arrayRead($canonical_path, $this->_defaultCfg, $default);
- }
- /**
- * Returns config value, if it's not set uses the default one; returns
- * $default if the path isn't set and doesn't contain a default value
- *
- * @param string $path Path
- * @param mixed $default Default value
- *
- * @return mixed
- */
- public function getValue($path, $default = null)
- {
- $v = Core::arrayRead($path, $_SESSION[$this->_id], null);
- if ($v !== null) {
- return $v;
- }
- $path = $this->getCanonicalPath($path);
- return $this->getDefault($path, $default);
- }
- /**
- * Returns canonical path
- *
- * @param string $path Path
- *
- * @return string
- */
- public function getCanonicalPath($path)
- {
- return preg_replace('#^Servers/([\d]+)/#', 'Servers/1/', $path);
- }
- /**
- * Returns config database entry for $path ($cfg_db in config_info.php)
- *
- * @param string $path path of the variable in config db
- * @param mixed $default default value
- *
- * @return mixed
- */
- public function getDbEntry($path, $default = null)
- {
- return Core::arrayRead($path, $this->_cfgDb, $default);
- }
- /**
- * Returns server count
- *
- * @return int
- */
- public function getServerCount()
- {
- return isset($_SESSION[$this->_id]['Servers'])
- ? count($_SESSION[$this->_id]['Servers'])
- : 0;
- }
- /**
- * Returns server list
- *
- * @return array|null
- */
- public function getServers()
- {
- return isset($_SESSION[$this->_id]['Servers'])
- ? $_SESSION[$this->_id]['Servers']
- : null;
- }
- /**
- * Returns DSN of given server
- *
- * @param integer $server server index
- *
- * @return string
- */
- public function getServerDSN($server)
- {
- if (!isset($_SESSION[$this->_id]['Servers'][$server])) {
- return '';
- }
- $path = 'Servers/' . $server;
- $dsn = 'mysqli://';
- if ($this->getValue("$path/auth_type") == 'config') {
- $dsn .= $this->getValue("$path/user");
- if (! empty($this->getValue("$path/password"))) {
- $dsn .= ':***';
- }
- $dsn .= '@';
- }
- if ($this->getValue("$path/host") != 'localhost') {
- $dsn .= $this->getValue("$path/host");
- $port = $this->getValue("$path/port");
- if ($port) {
- $dsn .= ':' . $port;
- }
- } else {
- $dsn .= $this->getValue("$path/socket");
- }
- return $dsn;
- }
- /**
- * Returns server name
- *
- * @param int $id server index
- *
- * @return string
- */
- public function getServerName($id)
- {
- if (!isset($_SESSION[$this->_id]['Servers'][$id])) {
- return '';
- }
- $verbose = $this->get("Servers/$id/verbose");
- if (!empty($verbose)) {
- return $verbose;
- }
- $host = $this->get("Servers/$id/host");
- return empty($host) ? 'localhost' : $host;
- }
- /**
- * Removes server
- *
- * @param int $server server index
- *
- * @return void
- */
- public function removeServer($server)
- {
- if (!isset($_SESSION[$this->_id]['Servers'][$server])) {
- return;
- }
- $last_server = $this->getServerCount();
- for ($i = $server; $i < $last_server; $i++) {
- $_SESSION[$this->_id]['Servers'][$i]
- = $_SESSION[$this->_id]['Servers'][$i + 1];
- }
- unset($_SESSION[$this->_id]['Servers'][$last_server]);
- if (isset($_SESSION[$this->_id]['ServerDefault'])
- && $_SESSION[$this->_id]['ServerDefault'] == $last_server
- ) {
- unset($_SESSION[$this->_id]['ServerDefault']);
- }
- }
- /**
- * Returns configuration array (full, multidimensional format)
- *
- * @return array
- */
- public function getConfig()
- {
- $c = $_SESSION[$this->_id];
- foreach ($this->_cfgUpdateReadMapping as $map_to => $map_from) {
- // if the key $c exists in $map_to
- if (Core::arrayRead($map_to, $c) !== null) {
- Core::arrayWrite($map_to, $c, Core::arrayRead($map_from, $c));
- Core::arrayRemove($map_from, $c);
- }
- }
- return $c;
- }
- /**
- * Returns configuration array (flat format)
- *
- * @return array
- */
- public function getConfigArray()
- {
- $this->_flattenArrayResult = array();
- array_walk($_SESSION[$this->_id], array($this, '_flattenArray'), '');
- $c = $this->_flattenArrayResult;
- $this->_flattenArrayResult = null;
- $persistKeys = array_diff(
- array_keys($this->_persistKeys),
- array_keys($c)
- );
- foreach ($persistKeys as $k) {
- $c[$k] = $this->getDefault($this->getCanonicalPath($k));
- }
- foreach ($this->_cfgUpdateReadMapping as $map_to => $map_from) {
- if (!isset($c[$map_from])) {
- continue;
- }
- $c[$map_to] = $c[$map_from];
- unset($c[$map_from]);
- }
- return $c;
- }
- }
|