This repository has been archived by the owner on Jan 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/config' of https://github.com/ezimuel/zf2 into …
…feature/config-json-yaml
- Loading branch information
57 parents
f66ad20
+
66c5ff2
+
6bcfccb
+
0b2a1a9
+
7974490
+
f3ba45e
+
4357e80
+
7d43d02
+
421a0f4
+
e7aa329
+
6d05bfe
+
f27c5e2
+
6cb3b21
+
1ecb5ed
+
b66b0e2
+
0b91e40
+
6bda391
+
b932fa5
+
a431b75
+
9ce83ec
+
a35dff6
+
60e4965
+
0f071e9
+
3fe17b4
+
196ca18
+
17cbc64
+
8f4a51f
+
88ec12d
+
31ab35e
+
59c83c4
+
d50da4c
+
01af50b
+
6a46af5
+
4308adc
+
1c3d629
+
18a268d
+
1987408
+
abc72db
+
175f7ab
+
8a85704
+
7706019
+
cc5d38c
+
fbaa5aa
+
0555415
+
20ae04b
+
0680687
+
e65301c
+
424e30a
+
d36a7f1
+
64bb794
+
c74649b
+
b14bb6b
+
4e73e4e
+
0ee93d0
+
e887bfd
+
be11776
+
c2dc8a7
commit 1c0577b
Showing
20 changed files
with
852 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
<?php | ||
/** | ||
* Zend Framework | ||
* | ||
* LICENSE | ||
* | ||
* This source file is subject to the new BSD license that is bundled | ||
* with this package in the file LICENSE.txt. | ||
* It is also available through the world-wide-web at this URL: | ||
* http://framework.zend.com/license/new-bsd | ||
* If you did not receive a copy of the license and are unable to | ||
* obtain it through the world-wide-web, please send an email | ||
* to license@zend.com so we can send you a copy immediately. | ||
* | ||
* @category Zend | ||
* @package Zend_Config | ||
* @subpackage Reader | ||
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) | ||
* @license http://framework.zend.com/license/new-bsd New BSD License | ||
*/ | ||
|
||
namespace Zend\Config\Reader; | ||
|
||
use Zend\Config\Reader, | ||
Zend\Config\Exception, | ||
Zend\Json\Json as JsonFormat; | ||
|
||
/** | ||
* Json config reader. | ||
* | ||
* @category Zend | ||
* @package Zend_Config | ||
* @subpackage Reader | ||
* @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com) | ||
* @license http://framework.zend.com/license/new-bsd New BSD License | ||
*/ | ||
class Json implements Reader | ||
{ | ||
/** | ||
* Directory of the JSON file | ||
* | ||
* @var string | ||
*/ | ||
protected $directory; | ||
/** | ||
* fromFile(): defined by Reader interface. | ||
* | ||
* @see Reader::fromFile() | ||
* @param string $filename | ||
* @return array | ||
*/ | ||
public function fromFile($filename) | ||
{ | ||
if (!file_exists($filename)) { | ||
throw new Exception\RuntimeException("The file $filename doesn't exists."); | ||
} | ||
|
||
$this->directory = dirname($filename); | ||
|
||
try { | ||
$config = JsonFormat::decode(file_get_contents($filename), JsonFormat::TYPE_ARRAY); | ||
} catch (\Zend\Json\Exception\RuntimeException $e) { | ||
throw new Exception\RuntimeException($e->getMessage()); | ||
} | ||
|
||
return $this->process($config); | ||
} | ||
|
||
/** | ||
* fromString(): defined by Reader interface. | ||
* | ||
* @see Reader::fromString() | ||
* @param string $string | ||
* @return array | ||
*/ | ||
public function fromString($string) | ||
{ | ||
if (empty($string)) { | ||
return array(); | ||
} | ||
$this->directory = null; | ||
|
||
try { | ||
$config = JsonFormat::decode($string, JsonFormat::TYPE_ARRAY); | ||
} catch (\Zend\Json\Exception\RuntimeException $e) { | ||
throw new Exception\RuntimeException($e->getMessage()); | ||
} | ||
|
||
return $this->process($config); | ||
} | ||
/** | ||
* Process the array for @include | ||
* | ||
* @param array $data | ||
* @return array | ||
*/ | ||
protected function process(array $data) { | ||
foreach ($data as $key => $value) { | ||
if (is_array($value)) { | ||
$data[$key] = $this->process($value); | ||
} | ||
if (trim($key)==='@include') { | ||
if ($this->directory === null) { | ||
throw new Exception\RuntimeException('Cannot process @include statement for a json string'); | ||
} | ||
$reader = clone $this; | ||
unset($data[$key]); | ||
$data = array_replace_recursive($data, $reader->fromFile($this->directory . '/' . $value)); | ||
} | ||
} | ||
return $data; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,160 @@ | ||
<?php | ||
/** | ||
* Zend Framework | ||
* | ||
* LICENSE | ||
* | ||
* This source file is subject to the new BSD license that is bundled | ||
* with this package in the file LICENSE.txt. | ||
* It is also available through the world-wide-web at this URL: | ||
* http://framework.zend.com/license/new-bsd | ||
* If you did not receive a copy of the license and are unable to | ||
* obtain it through the world-wide-web, please send an email | ||
* to license@zend.com so we can send you a copy immediately. | ||
* | ||
* @category Zend | ||
* @package Zend_Config | ||
* @subpackage Reader | ||
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) | ||
* @license http://framework.zend.com/license/new-bsd New BSD License | ||
*/ | ||
|
||
namespace Zend\Config\Reader; | ||
|
||
use Zend\Config\Reader, | ||
Zend\Config\Exception; | ||
|
||
/** | ||
* Yaml config reader. | ||
* | ||
* @category Zend | ||
* @package Zend_Config | ||
* @subpackage Reader | ||
* @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com) | ||
* @license http://framework.zend.com/license/new-bsd New BSD License | ||
*/ | ||
class Yaml implements Reader | ||
{ | ||
/** | ||
* Directory of the JSON file | ||
* | ||
* @var string | ||
*/ | ||
protected $directory; | ||
/** | ||
* Yaml decoder callback | ||
* | ||
* @var callable | ||
*/ | ||
protected $yamlDecoder; | ||
/** | ||
* Constructor | ||
* | ||
* @param callable $yamlDecoder | ||
*/ | ||
public function __construct($yamlDecoder=null) { | ||
if (!empty($yamlDecoder)) { | ||
$this->setYamlDecoder($yamlDecoder); | ||
} else { | ||
if (function_exists('yaml_parse')) { | ||
$this->setYamlDecoder('yaml_parse'); | ||
} | ||
} | ||
} | ||
/** | ||
* Get callback for decoding YAML | ||
* | ||
* @return callable | ||
*/ | ||
public function getYamlDecoder() | ||
{ | ||
return $this->yamlDecoder; | ||
} | ||
/** | ||
* Set callback for decoding YAML | ||
* | ||
* @param callable $yamlDecoder the decoder to set | ||
* @return Yaml | ||
*/ | ||
public function setYamlDecoder($yamlDecoder) | ||
{ | ||
if (!is_callable($yamlDecoder)) { | ||
throw new Exception\InvalidArgumentException('Invalid parameter to setYamlDecoder() - must be callable'); | ||
} | ||
$this->yamlDecoder = $yamlDecoder; | ||
return $this; | ||
} | ||
/** | ||
* fromFile(): defined by Reader interface. | ||
* | ||
* @see Reader::fromFile() | ||
* @param string $filename | ||
* @return array | ||
*/ | ||
public function fromFile($filename) | ||
{ | ||
if (!file_exists($filename)) { | ||
throw new Exception\RuntimeException("The file $filename doesn't exists."); | ||
} | ||
if (null === $this->getYamlDecoder()) { | ||
throw new Exception\RuntimeException("You didn't specify a Yaml callback decoder"); | ||
} | ||
|
||
$this->directory = dirname($filename); | ||
|
||
$config = call_user_func($this->getYamlDecoder(), file_get_contents($filename)); | ||
if (null === $config) { | ||
throw new Exception\RuntimeException("Error parsing YAML data"); | ||
} | ||
|
||
return $this->process($config); | ||
} | ||
|
||
/** | ||
* fromString(): defined by Reader interface. | ||
* | ||
* @see Reader::fromString() | ||
* @param string $string | ||
* @return array | ||
*/ | ||
public function fromString($string) | ||
{ | ||
if (null === $this->getYamlDecoder()) { | ||
throw new Exception\RuntimeException("You didn't specify a Yaml callback decoder"); | ||
} | ||
if (empty($string)) { | ||
return array(); | ||
} | ||
|
||
$this->directory = null; | ||
|
||
$config = call_user_func($this->getYamlDecoder(), $string); | ||
if (null === $config) { | ||
throw new Exception\RuntimeException("Error parsing YAML data"); | ||
} | ||
|
||
return $this->process($config); | ||
} | ||
/** | ||
* Process the array for @include | ||
* | ||
* @param array $data | ||
* @return array | ||
*/ | ||
protected function process(array $data) { | ||
foreach ($data as $key => $value) { | ||
if (is_array($value)) { | ||
$data[$key] = $this->process($value); | ||
} | ||
if (trim($key)==='@include') { | ||
if ($this->directory === null) { | ||
throw new Exception\RuntimeException('Cannot process @include statement for a json string'); | ||
} | ||
$reader = clone $this; | ||
unset($data[$key]); | ||
$data = array_replace_recursive($data, $reader->fromFile($this->directory . '/' . $value)); | ||
} | ||
} | ||
return $data; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<?php | ||
/** | ||
* Zend Framework | ||
* | ||
* LICENSE | ||
* | ||
* This source file is subject to the new BSD license that is bundled | ||
* with this package in the file LICENSE.txt. | ||
* It is also available through the world-wide-web at this URL: | ||
* http://framework.zend.com/license/new-bsd | ||
* If you did not receive a copy of the license and are unable to | ||
* obtain it through the world-wide-web, please send an email | ||
* to license@zend.com so we can send you a copy immediately. | ||
* | ||
* @category Zend | ||
* @package Zend_Config | ||
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) | ||
* @license http://framework.zend.com/license/new-bsd New BSD License | ||
*/ | ||
|
||
namespace Zend\Config\Writer; | ||
|
||
use Zend\Config\Exception, | ||
Zend\Json\Json as JsonFormat; | ||
/** | ||
* @category Zend | ||
* @package Zend_Config | ||
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) | ||
* @license http://framework.zend.com/license/new-bsd New BSD License | ||
*/ | ||
class Json extends AbstractWriter | ||
{ | ||
/** | ||
* processConfig(): defined by AbstractWriter. | ||
* | ||
* @param array $config | ||
* @return string | ||
*/ | ||
public function processConfig(array $config) | ||
{ | ||
return JsonFormat::encode($config); | ||
} | ||
} |
Oops, something went wrong.