1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87:
<?php
namespace NetBazzlineZfCliGenerator\Service\ProcessPipe\Transformer;
use Net\Bazzline\Component\ProcessPipe\ExecutableException;
use Net\Bazzline\Component\ProcessPipe\ExecutableInterface;
class DumpConfigurationContent implements ExecutableInterface
{
private $timestamp;
public function setTimestamp($timestamp)
{
$this->timestamp = $timestamp;
}
public function execute($input = null)
{
if (!is_array($input)) {
throw new ExecutableException(
'input must be an array'
);
}
if (empty($input)) {
throw new ExecutableException(
'empty input provided'
);
}
$output = '<?php' . PHP_EOL;
$output .= '/**' . PHP_EOL .
' * @author Net\Bazzline Zf Cli Generator' . PHP_EOL .
' * @since ' . date('Y-m-d H:i:s', $this->timestamp) . PHP_EOL .
' */' . PHP_EOL . PHP_EOL;
$output .= 'return array(' . PHP_EOL;
$output .= $this->dumpConfiguration($input, 'callApplication');
$output .= ');';
return $output;
}
private function dumpConfiguration(array $configuration, $closureName, $indention = ' ', $level = 1)
{
$content = '';
$localIndention = str_repeat($indention, $level);
end($configuration);
$lastIndex = key($configuration);
foreach ($configuration as $index => $values) {
if (empty($values)) {
$content .= $localIndention . '\'' . $index . '\' => $' . $closureName;
} else {
$content .= $localIndention . '\'' . $index . '\' => array(' . PHP_EOL;
$content .= $this->dumpConfiguration($values, $closureName, $indention, $level + 1);
$content .= $localIndention . ')';
}
if ($index !== $lastIndex) {
$content .= ',';
}
$content .= PHP_EOL;
}
return $content;
}
}