2020-05-03 16:41:59 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Aerex\BaikalStorage\Configs;
|
|
|
|
|
|
|
|
use Symfony\Component\Config\Definition\ConfigurationInterface;
|
|
|
|
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
|
|
|
|
use Symfony\Component\Config\Definition\Processor;
|
|
|
|
use Symfony\Component\Yaml\Yaml;
|
|
|
|
|
|
|
|
class ConfigBuilder implements ConfigurationInterface {
|
|
|
|
private $configs = [];
|
2020-05-05 00:04:31 -05:00
|
|
|
private $configDir;
|
2020-05-03 16:41:59 -05:00
|
|
|
|
2020-05-12 23:56:22 -05:00
|
|
|
public function __construct($configDir) {
|
|
|
|
$this->configDir = $configDir;
|
2020-05-03 16:41:59 -05:00
|
|
|
$this->processor = new Processor();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function add($config) {
|
|
|
|
$this->configs[] = $config;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getConfigTreeBuilder() {
|
2020-05-12 23:56:22 -05:00
|
|
|
$treeBuilder = new TreeBuilder();
|
|
|
|
$rootNode = $treeBuilder->root('configs');
|
2020-05-03 16:41:59 -05:00
|
|
|
$ref = $rootNode->children();
|
|
|
|
foreach ($this->configs as $config) {
|
|
|
|
$ref = $ref->append($config->get());
|
|
|
|
}
|
|
|
|
$ref->end();
|
|
|
|
return $treeBuilder;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function readContent() {
|
2020-05-12 23:56:22 -05:00
|
|
|
$contents = sprintf('%s/storage.yaml', $this->configDir);
|
2020-05-03 16:41:59 -05:00
|
|
|
return file_get_contents($contents);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function loadYaml() {
|
|
|
|
$contents = $this->readContent();
|
|
|
|
$parseContents = Yaml::parse($contents);
|
|
|
|
return $this->processor->processConfiguration($this, [$parseContents]);
|
|
|
|
}
|
|
|
|
}
|