123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP(tm) Project
- * @since 1.0.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Core;
- use Cake\Cache\Cache;
- use Cake\Core\Configure\ConfigEngineInterface;
- use Cake\Core\Configure\Engine\PhpConfig;
- use Cake\Core\Exception\Exception;
- use Cake\Utility\Hash;
- use RuntimeException;
- /**
- * Configuration class. Used for managing runtime configuration information.
- *
- * Provides features for reading and writing to the runtime configuration, as well
- * as methods for loading additional configuration files or storing runtime configuration
- * for future use.
- *
- * @link https://book.cakephp.org/3.0/en/development/configuration.html
- */
- class Configure
- {
- /**
- * Array of values currently stored in Configure.
- *
- * @var array
- */
- protected static $_values = [
- 'debug' => false
- ];
- /**
- * Configured engine classes, used to load config files from resources
- *
- * @see \Cake\Core\Configure::load()
- * @var \Cake\Core\Configure\ConfigEngineInterface[]
- */
- protected static $_engines = [];
- /**
- * Flag to track whether or not ini_set exists.
- *
- * @var bool|null
- */
- protected static $_hasIniSet;
- /**
- * Used to store a dynamic variable in Configure.
- *
- * Usage:
- * ```
- * Configure::write('One.key1', 'value of the Configure::One[key1]');
- * Configure::write(['One.key1' => 'value of the Configure::One[key1]']);
- * Configure::write('One', [
- * 'key1' => 'value of the Configure::One[key1]',
- * 'key2' => 'value of the Configure::One[key2]'
- * ]);
- *
- * Configure::write([
- * 'One.key1' => 'value of the Configure::One[key1]',
- * 'One.key2' => 'value of the Configure::One[key2]'
- * ]);
- * ```
- *
- * @param string|array $config The key to write, can be a dot notation value.
- * Alternatively can be an array containing key(s) and value(s).
- * @param mixed $value Value to set for var
- * @return bool True if write was successful
- * @link https://book.cakephp.org/3.0/en/development/configuration.html#writing-configuration-data
- */
- public static function write($config, $value = null)
- {
- if (!is_array($config)) {
- $config = [$config => $value];
- }
- foreach ($config as $name => $value) {
- static::$_values = Hash::insert(static::$_values, $name, $value);
- }
- if (isset($config['debug'])) {
- if (static::$_hasIniSet === null) {
- static::$_hasIniSet = function_exists('ini_set');
- }
- if (static::$_hasIniSet) {
- ini_set('display_errors', $config['debug'] ? '1' : '0');
- }
- }
- return true;
- }
- /**
- * Used to read information stored in Configure. It's not
- * possible to store `null` values in Configure.
- *
- * Usage:
- * ```
- * Configure::read('Name'); will return all values for Name
- * Configure::read('Name.key'); will return only the value of Configure::Name[key]
- * ```
- *
- * @param string|null $var Variable to obtain. Use '.' to access array elements.
- * @param mixed $default The return value when the configure does not exist
- * @return mixed Value stored in configure, or null.
- * @link https://book.cakephp.org/3.0/en/development/configuration.html#reading-configuration-data
- */
- public static function read($var = null, $default = null)
- {
- if ($var === null) {
- return static::$_values;
- }
- return Hash::get(static::$_values, $var, $default);
- }
- /**
- * Returns true if given variable is set in Configure.
- *
- * @param string $var Variable name to check for
- * @return bool True if variable is there
- */
- public static function check($var)
- {
- if (empty($var)) {
- return false;
- }
- return static::read($var) !== null;
- }
- /**
- * Used to get information stored in Configure. It's not
- * possible to store `null` values in Configure.
- *
- * Acts as a wrapper around Configure::read() and Configure::check().
- * The configure key/value pair fetched via this method is expected to exist.
- * In case it does not an exception will be thrown.
- *
- * Usage:
- * ```
- * Configure::readOrFail('Name'); will return all values for Name
- * Configure::readOrFail('Name.key'); will return only the value of Configure::Name[key]
- * ```
- *
- * @param string $var Variable to obtain. Use '.' to access array elements.
- * @return mixed Value stored in configure.
- * @throws \RuntimeException if the requested configuration is not set.
- * @link https://book.cakephp.org/3.0/en/development/configuration.html#reading-configuration-data
- */
- public static function readOrFail($var)
- {
- if (static::check($var) === false) {
- throw new RuntimeException(sprintf('Expected configuration key "%s" not found.', $var));
- }
- return static::read($var);
- }
- /**
- * Used to delete a variable from Configure.
- *
- * Usage:
- * ```
- * Configure::delete('Name'); will delete the entire Configure::Name
- * Configure::delete('Name.key'); will delete only the Configure::Name[key]
- * ```
- *
- * @param string $var the var to be deleted
- * @return void
- * @link https://book.cakephp.org/3.0/en/development/configuration.html#deleting-configuration-data
- */
- public static function delete($var)
- {
- static::$_values = Hash::remove(static::$_values, $var);
- }
- /**
- * Used to consume information stored in Configure. It's not
- * possible to store `null` values in Configure.
- *
- * Acts as a wrapper around Configure::consume() and Configure::check().
- * The configure key/value pair consumed via this method is expected to exist.
- * In case it does not an exception will be thrown.
- *
- * @param string $var Variable to consume. Use '.' to access array elements.
- * @return mixed Value stored in configure.
- * @throws \RuntimeException if the requested configuration is not set.
- * @since 3.6.0
- */
- public static function consumeOrFail($var)
- {
- if (static::check($var) === false) {
- throw new RuntimeException(sprintf('Expected configuration key "%s" not found.', $var));
- }
- return static::consume($var);
- }
- /**
- * Used to read and delete a variable from Configure.
- *
- * This is primarily used during bootstrapping to move configuration data
- * out of configure into the various other classes in CakePHP.
- *
- * @param string $var The key to read and remove.
- * @return array|string|null
- */
- public static function consume($var)
- {
- if (strpos($var, '.') === false) {
- if (!isset(static::$_values[$var])) {
- return null;
- }
- $value = static::$_values[$var];
- unset(static::$_values[$var]);
- return $value;
- }
- $value = Hash::get(static::$_values, $var);
- static::delete($var);
- return $value;
- }
- /**
- * Add a new engine to Configure. Engines allow you to read configuration
- * files in various formats/storage locations. CakePHP comes with two built-in engines
- * PhpConfig and IniConfig. You can also implement your own engine classes in your application.
- *
- * To add a new engine to Configure:
- *
- * ```
- * Configure::config('ini', new IniConfig());
- * ```
- *
- * @param string $name The name of the engine being configured. This alias is used later to
- * read values from a specific engine.
- * @param \Cake\Core\Configure\ConfigEngineInterface $engine The engine to append.
- * @return void
- */
- public static function config($name, ConfigEngineInterface $engine)
- {
- static::$_engines[$name] = $engine;
- }
- /**
- * Gets the names of the configured Engine objects.
- *
- * Checking if a specific engine has been configured with this method is deprecated.
- * Use Configure::isConfigured() instead.
- *
- * @param string|null $name Engine name.
- * @return string[]|bool Array of the configured Engine objects, bool for specific name.
- */
- public static function configured($name = null)
- {
- if ($name !== null) {
- deprecationWarning(
- 'Checking for a named engine with configured() is deprecated. ' .
- 'Use Configure::isConfigured() instead.'
- );
- return isset(static::$_engines[$name]);
- }
- return array_keys(static::$_engines);
- }
- /**
- * Returns true if the Engine objects is configured.
- *
- * @param string $name Engine name.
- * @return bool
- */
- public static function isConfigured($name)
- {
- return isset(static::$_engines[$name]);
- }
- /**
- * Remove a configured engine. This will unset the engine
- * and make any future attempts to use it cause an Exception.
- *
- * @param string $name Name of the engine to drop.
- * @return bool Success
- */
- public static function drop($name)
- {
- if (!isset(static::$_engines[$name])) {
- return false;
- }
- unset(static::$_engines[$name]);
- return true;
- }
- /**
- * Loads stored configuration information from a resource. You can add
- * config file resource engines with `Configure::config()`.
- *
- * Loaded configuration information will be merged with the current
- * runtime configuration. You can load configuration files from plugins
- * by preceding the filename with the plugin name.
- *
- * `Configure::load('Users.user', 'default')`
- *
- * Would load the 'user' config file using the default config engine. You can load
- * app config files by giving the name of the resource you want loaded.
- *
- * ```
- * Configure::load('setup', 'default');
- * ```
- *
- * If using `default` config and no engine has been configured for it yet,
- * one will be automatically created using PhpConfig
- *
- * @param string $key name of configuration resource to load.
- * @param string $config Name of the configured engine to use to read the resource identified by $key.
- * @param bool $merge if config files should be merged instead of simply overridden
- * @return bool False if file not found, true if load successful.
- * @link https://book.cakephp.org/3.0/en/development/configuration.html#reading-and-writing-configuration-files
- */
- public static function load($key, $config = 'default', $merge = true)
- {
- $engine = static::_getEngine($config);
- if (!$engine) {
- return false;
- }
- $values = $engine->read($key);
- if ($merge) {
- $values = Hash::merge(static::$_values, $values);
- }
- return static::write($values);
- }
- /**
- * Dump data currently in Configure into $key. The serialization format
- * is decided by the config engine attached as $config. For example, if the
- * 'default' adapter is a PhpConfig, the generated file will be a PHP
- * configuration file loadable by the PhpConfig.
- *
- * ### Usage
- *
- * Given that the 'default' engine is an instance of PhpConfig.
- * Save all data in Configure to the file `my_config.php`:
- *
- * ```
- * Configure::dump('my_config', 'default');
- * ```
- *
- * Save only the error handling configuration:
- *
- * ```
- * Configure::dump('error', 'default', ['Error', 'Exception'];
- * ```
- *
- * @param string $key The identifier to create in the config adapter.
- * This could be a filename or a cache key depending on the adapter being used.
- * @param string $config The name of the configured adapter to dump data with.
- * @param array $keys The name of the top-level keys you want to dump.
- * This allows you save only some data stored in Configure.
- * @return bool Success
- * @throws \Cake\Core\Exception\Exception if the adapter does not implement a `dump` method.
- */
- public static function dump($key, $config = 'default', $keys = [])
- {
- $engine = static::_getEngine($config);
- if (!$engine) {
- throw new Exception(sprintf('There is no "%s" config engine.', $config));
- }
- $values = static::$_values;
- if (!empty($keys) && is_array($keys)) {
- $values = array_intersect_key($values, array_flip($keys));
- }
- return (bool)$engine->dump($key, $values);
- }
- /**
- * Get the configured engine. Internally used by `Configure::load()` and `Configure::dump()`
- * Will create new PhpConfig for default if not configured yet.
- *
- * @param string $config The name of the configured adapter
- * @return \Cake\Core\Configure\ConfigEngineInterface|false Engine instance or false
- */
- protected static function _getEngine($config)
- {
- if (!isset(static::$_engines[$config])) {
- if ($config !== 'default') {
- return false;
- }
- static::config($config, new PhpConfig());
- }
- return static::$_engines[$config];
- }
- /**
- * Used to determine the current version of CakePHP.
- *
- * Usage
- * ```
- * Configure::version();
- * ```
- *
- * @return string Current version of CakePHP
- */
- public static function version()
- {
- if (!isset(static::$_values['Cake']['version'])) {
- $config = require CORE_PATH . 'config/config.php';
- static::write($config);
- }
- return static::$_values['Cake']['version'];
- }
- /**
- * Used to write runtime configuration into Cache. Stored runtime configuration can be
- * restored using `Configure::restore()`. These methods can be used to enable configuration managers
- * frontends, or other GUI type interfaces for configuration.
- *
- * @param string $name The storage name for the saved configuration.
- * @param string $cacheConfig The cache configuration to save into. Defaults to 'default'
- * @param array|null $data Either an array of data to store, or leave empty to store all values.
- * @return bool Success
- */
- public static function store($name, $cacheConfig = 'default', $data = null)
- {
- if ($data === null) {
- $data = static::$_values;
- }
- if (!class_exists(Cache::class)) {
- throw new RuntimeException('You must install cakephp/cache to use Configure::store()');
- }
- return Cache::write($name, $data, $cacheConfig);
- }
- /**
- * Restores configuration data stored in the Cache into configure. Restored
- * values will overwrite existing ones.
- *
- * @param string $name Name of the stored config file to load.
- * @param string $cacheConfig Name of the Cache configuration to read from.
- * @return bool Success.
- */
- public static function restore($name, $cacheConfig = 'default')
- {
- if (!class_exists(Cache::class)) {
- throw new RuntimeException('You must install cakephp/cache to use Configure::restore()');
- }
- $values = Cache::read($name, $cacheConfig);
- if ($values) {
- return static::write($values);
- }
- return false;
- }
- /**
- * Clear all values stored in Configure.
- *
- * @return bool success.
- */
- public static function clear()
- {
- static::$_values = [];
- return true;
- }
- }
|