2010-12-04 17:15:47 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* IniReader
|
|
|
|
*
|
|
|
|
* PHP 5
|
|
|
|
*
|
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
|
|
|
* Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
|
|
|
* @copyright Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
2010-12-24 18:57:20 +00:00
|
|
|
* @package cake.libs.config
|
2010-12-04 17:15:47 +00:00
|
|
|
* @since CakePHP(tm) v 2.0
|
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Ini file configuration parser. Since IniReader uses parse_ini_file underneath,
|
|
|
|
* you should be aware that this class shares the same behavior, especially with
|
|
|
|
* regards to boolean and null values.
|
|
|
|
*
|
2010-12-04 17:56:37 +00:00
|
|
|
* In addition to the native parse_ini_file features, IniReader also allows you
|
|
|
|
* to create nested array structures through usage of . delimited names. This allows
|
|
|
|
* you to create nested arrays structures in an ini config file. For example:
|
|
|
|
*
|
|
|
|
* `db.password = secret` would turn into `array('db' => array('password' => 'secret'))`
|
|
|
|
*
|
|
|
|
* You can nest properties as deeply as needed using .'s. IniReader also manipulates
|
|
|
|
* how the special ini values of 'yes', 'no', 'on', 'off', 'null' are handled.
|
|
|
|
* These values will be converted to their boolean equivalents.
|
|
|
|
*
|
2010-12-04 17:15:47 +00:00
|
|
|
* @package cake.config
|
|
|
|
* @see http://php.net/parse_ini_file
|
|
|
|
*/
|
|
|
|
class IniReader implements ConfigReaderInterface {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The path to read ini files from.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $_path;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The section to read, if null all sections will be read.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $_section;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Build and construct a new ini file parser. The parser can be used to read
|
|
|
|
* ini files that are on the filesystem.
|
|
|
|
*
|
|
|
|
* @param string $path Path to load ini config files from.
|
|
|
|
* @param string $section Only get one section.
|
|
|
|
*/
|
|
|
|
public function __construct($path, $section = null) {
|
|
|
|
$this->_path = $path;
|
|
|
|
$this->_section = $section;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Read an ini file and return the results as an array.
|
|
|
|
*
|
|
|
|
* @param string $file Name of the file to read.
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function read($file) {
|
|
|
|
$filename = $this->_path . $file;
|
2011-01-23 22:27:46 +00:00
|
|
|
if (!file_exists($filename)) {
|
|
|
|
$filename .= '.ini';
|
|
|
|
if (!file_exists($filename)) {
|
|
|
|
throw new ConfigureException(__('Could not load configuration files: %s or %s', substr($filename, 0, -4), $filename));
|
|
|
|
}
|
|
|
|
}
|
2010-12-04 17:15:47 +00:00
|
|
|
$contents = parse_ini_file($filename, true);
|
|
|
|
if (!empty($this->_section) && isset($contents[$this->_section])) {
|
2010-12-04 17:56:37 +00:00
|
|
|
$values = $this->_parseNestedValues($contents[$this->_section]);
|
2010-12-04 17:15:47 +00:00
|
|
|
} else {
|
2010-12-04 17:56:37 +00:00
|
|
|
$values = array();
|
|
|
|
foreach ($contents as $section => $attribs) {
|
2011-01-23 21:26:13 +00:00
|
|
|
if (is_array($attribs)) {
|
|
|
|
$values[$section] = $this->_parseNestedValues($attribs);
|
|
|
|
} else {
|
|
|
|
$parse = $this->_parseNestedValues(array($attribs));
|
|
|
|
$values[$section] = array_shift($parse);
|
|
|
|
}
|
2010-12-04 17:56:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return $values;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* parses nested values out of keys.
|
|
|
|
*
|
|
|
|
* @param array $values Values to be exploded.
|
|
|
|
* @return array Array of values exploded
|
|
|
|
*/
|
|
|
|
protected function _parseNestedValues($values) {
|
|
|
|
foreach ($values as $key => $value) {
|
|
|
|
if ($value === '1') {
|
|
|
|
$value = true;
|
|
|
|
}
|
|
|
|
if ($value === '') {
|
|
|
|
$value = false;
|
|
|
|
}
|
|
|
|
if (strpos($key, '.') !== false) {
|
|
|
|
$values = Set::insert($values, $key, $value);
|
|
|
|
} else {
|
|
|
|
$values[$key] = $value;
|
|
|
|
}
|
2010-12-04 17:15:47 +00:00
|
|
|
}
|
|
|
|
return $values;
|
|
|
|
}
|
|
|
|
}
|