ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ConfigReader.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Setup\CLI;
22 
31 
36 {
37  protected JsonParser $json_parser;
38  protected string $base_dir;
39 
40  public function __construct(JsonParser $json_parser, ?string $base_dir = null)
41  {
42  $this->json_parser = $json_parser;
43  $this->base_dir = $base_dir ?? getcwd();
44  }
45 
55  public function readConfigFile(string $name, array $overwrites = []): array
56  {
57  $name = $this->getRealFilename($name);
58  if (!is_readable($name)) {
59  throw new \InvalidArgumentException(
60  "Config-file '$name' does not exist or is not readable."
61  );
62  }
63  $json = $this->json_parser->parse(
64  file_get_contents($name),
65  JsonParser::PARSE_TO_ASSOC | JsonParser::DETECT_KEY_CONFLICTS
66  );
67 
68  if (!is_array($json)) {
69  throw new \InvalidArgumentException(
70  "Could not find JSON-array in '$name'."
71  );
72  }
73  return $this->applyOverwrites($json, $overwrites);
74  }
75 
76  protected function applyOverwrites(array $json, array $overwrites): array
77  {
78  $replacer = null;
79  $replacer = function ($subject, $path, $value) use (&$replacer) {
80  if (count($path) === 0) {
81  return $value;
82  }
83  $cur = array_shift($path);
84  $subject[$cur] = $replacer($subject[$cur] ?? [], $path, $value);
85  return $subject;
86  };
87 
88  foreach ($overwrites as $path => $value) {
89  $path = explode(".", (string) $path);
90  $json = $replacer($json, $path, $value);
91  }
92 
93  return $json;
94  }
95 
96  protected function getRealFilename(string $name): string
97  {
98  if (in_array($name[0], ["/", "\\"])) {
99  return $name;
100  }
101  return $this->base_dir . "/" . $name;
102  }
103 }
Read a json-formatted config from a file and overwrite some fields.
readConfigFile(string $name, array $overwrites=[])
TODO: We could use the "give me a transformation and I&#39;ll give you your result" pattern from th...
applyOverwrites(array $json, array $overwrites)
$path
Definition: ltiservices.php:29
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(JsonParser $json_parser, ?string $base_dir=null)