1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Yiisoft\Composer\Config\Config; |
4
|
|
|
|
5
|
|
|
use Yiisoft\Composer\Config\Builder; |
6
|
|
|
use Yiisoft\Composer\Config\ContentWriter; |
7
|
|
|
use Yiisoft\Composer\Config\Reader\ReaderFactory; |
8
|
|
|
use Yiisoft\Composer\Config\Util\ConfigMergeHelper; |
9
|
|
|
use Yiisoft\Composer\Config\Util\Helper; |
10
|
|
|
|
11
|
|
|
/** |
12
|
|
|
* Config class represents output configuration file. |
13
|
|
|
*/ |
14
|
|
|
class Config |
15
|
|
|
{ |
16
|
|
|
private const BASE_DIR_MARKER = '<<<base-dir>>>'; |
17
|
|
|
|
18
|
|
|
/** |
19
|
|
|
* @var string config name |
20
|
|
|
*/ |
21
|
|
|
private string $name; |
22
|
|
|
|
23
|
|
|
/** |
24
|
|
|
* @var array sources - paths to config source files |
25
|
|
|
*/ |
26
|
|
|
private array $sources = []; |
27
|
|
|
|
28
|
|
|
/** |
29
|
|
|
* @var array config value |
30
|
|
|
*/ |
31
|
|
|
protected array $values = []; |
32
|
|
|
|
33
|
|
|
protected Builder $builder; |
34
|
|
|
|
35
|
|
|
protected ContentWriter $contentWriter; |
36
|
|
|
|
37
|
|
|
public function __construct(Builder $builder, string $name) |
38
|
|
|
{ |
39
|
|
|
$this->builder = $builder; |
40
|
|
|
$this->name = $name; |
41
|
|
|
$this->contentWriter = new ContentWriter(); |
42
|
|
|
} |
43
|
|
|
|
44
|
|
|
public function clone(Builder $builder): self |
45
|
|
|
{ |
46
|
|
|
$config = new Config($builder, $this->name); |
47
|
|
|
$config->sources = $this->sources; |
48
|
|
|
$config->values = $this->values; |
49
|
|
|
|
50
|
|
|
return $config; |
51
|
|
|
} |
52
|
|
|
|
53
|
|
|
public function getValues(): array |
54
|
|
|
{ |
55
|
|
|
return $this->values; |
56
|
|
|
} |
57
|
|
|
|
58
|
|
|
public function load(array $paths = []): self |
59
|
|
|
{ |
60
|
|
|
$this->sources = $this->loadFiles($paths); |
61
|
|
|
|
62
|
|
|
return $this; |
63
|
|
|
} |
64
|
|
|
|
65
|
|
|
private function loadFiles(array $paths): array |
66
|
|
|
{ |
67
|
|
|
switch (count($paths)) { |
68
|
|
|
case 0: |
69
|
|
|
return []; |
70
|
|
|
case 1: |
71
|
|
|
return [$this->loadFile(reset($paths))]; |
72
|
|
|
} |
73
|
|
|
|
74
|
|
|
$configs = []; |
75
|
|
|
foreach ($paths as $path) { |
76
|
|
|
$cs = $this->loadFiles($this->glob($path)); |
77
|
|
|
foreach ($cs as $config) { |
78
|
|
|
if (!empty($config)) { |
79
|
|
|
$configs[] = $config; |
80
|
|
|
} |
81
|
|
|
} |
82
|
|
|
} |
83
|
|
|
|
84
|
|
|
return $configs; |
85
|
|
|
} |
86
|
|
|
|
87
|
|
|
private function glob(string $path): array |
88
|
|
|
{ |
89
|
|
|
if (strpos($path, '*') === false) { |
90
|
|
|
return [$path]; |
91
|
|
|
} |
92
|
|
|
|
93
|
|
|
return glob($path); |
|
|
|
|
94
|
|
|
} |
95
|
|
|
|
96
|
|
|
/** |
97
|
|
|
* Reads config file. |
98
|
|
|
* |
99
|
|
|
* @param string $path |
100
|
|
|
* @return array configuration read from file |
101
|
|
|
*/ |
102
|
|
|
protected function loadFile($path): array |
103
|
|
|
{ |
104
|
|
|
$reader = ReaderFactory::get($this->builder, $path); |
105
|
|
|
|
106
|
|
|
return $reader->read($path); |
107
|
|
|
} |
108
|
|
|
|
109
|
|
|
/** |
110
|
|
|
* Merges given configs and writes at given name. |
111
|
|
|
* |
112
|
|
|
* @return Config |
113
|
|
|
*/ |
114
|
|
|
public function build(): self |
115
|
|
|
{ |
116
|
|
|
$this->values = $this->calcValues($this->sources); |
117
|
|
|
|
118
|
|
|
return $this; |
119
|
|
|
} |
120
|
|
|
|
121
|
|
|
public function write(): self |
122
|
|
|
{ |
123
|
|
|
$this->writeFile($this->getOutputPath(), $this->values); |
124
|
|
|
|
125
|
|
|
return $this; |
126
|
|
|
} |
127
|
|
|
|
128
|
|
|
protected function calcValues(array $sources): array |
129
|
|
|
{ |
130
|
|
|
$values = call_user_func_array([ConfigMergeHelper::class, 'mergeConfig'], $sources); |
131
|
|
|
$values = Helper::fixConfig($values); |
132
|
|
|
|
133
|
|
|
return $this->substituteOutputDirs($values); |
134
|
|
|
} |
135
|
|
|
|
136
|
|
|
protected function writeFile(string $path, array $data): void |
137
|
|
|
{ |
138
|
|
|
$depth = $this->findDepth(); |
139
|
|
|
$baseDir = $depth > 0 ? "dirname(__DIR__, $depth)" : '__DIR__'; |
140
|
|
|
|
141
|
|
|
$params = $this->paramsRequired() ? "(array) require __DIR__ . '/params.php'" : '[]'; |
142
|
|
|
$constants = $this->constantsRequired() ? $this->builder->getConfig('constants')->buildRequires() : ''; |
143
|
|
|
$envs = $this->envsRequired() ? "\$_ENV = array_merge((array) require __DIR__ . '/envs.php', \$_ENV);" : ''; |
144
|
|
|
$variables = Helper::exportVar($data); |
145
|
|
|
|
146
|
|
|
$content = <<<PHP |
147
|
|
|
<?php |
148
|
|
|
\$baseDir = {$baseDir}; |
149
|
|
|
\$params = {$params}; |
150
|
|
|
{$constants} |
151
|
|
|
{$envs} |
152
|
|
|
return {$variables}; |
153
|
|
|
PHP; |
154
|
|
|
|
155
|
|
|
$this->contentWriter->write($path, $this->replaceMarkers($content) . "\n"); |
156
|
|
|
} |
157
|
|
|
|
158
|
|
|
public function envsRequired(): bool |
159
|
|
|
{ |
160
|
|
|
return true; |
161
|
|
|
} |
162
|
|
|
|
163
|
|
|
public function constantsRequired(): bool |
164
|
|
|
{ |
165
|
|
|
return true; |
166
|
|
|
} |
167
|
|
|
|
168
|
|
|
public function paramsRequired(): bool |
169
|
|
|
{ |
170
|
|
|
return true; |
171
|
|
|
} |
172
|
|
|
|
173
|
|
|
private function findDepth(): int |
174
|
|
|
{ |
175
|
|
|
$outDir = realpath(dirname($this->normalizePath($this->getOutputPath()))); |
176
|
|
|
$diff = substr($outDir, strlen(realpath($this->getBaseDir()))); |
177
|
|
|
|
178
|
|
|
return substr_count($diff, '/'); |
179
|
|
|
} |
180
|
|
|
|
181
|
|
|
private function replaceMarkers(string $content): string |
182
|
|
|
{ |
183
|
|
|
return str_replace( |
184
|
|
|
["'" . self::BASE_DIR_MARKER, "'?" . self::BASE_DIR_MARKER], |
185
|
|
|
["\$baseDir . '", "'?' . \$baseDir . '"], |
186
|
|
|
$content |
187
|
|
|
); |
188
|
|
|
} |
189
|
|
|
|
190
|
|
|
/** |
191
|
|
|
* Substitute output paths in given data array recursively with marker. |
192
|
|
|
* |
193
|
|
|
* @param array $data |
194
|
|
|
* @return array |
195
|
|
|
*/ |
196
|
|
|
protected function substituteOutputDirs(array $data): array |
197
|
|
|
{ |
198
|
|
|
$dir = $this->normalizePath($this->getBaseDir()); |
199
|
|
|
|
200
|
|
|
return $this->substitutePaths($data, $dir, self::BASE_DIR_MARKER); |
201
|
|
|
} |
202
|
|
|
|
203
|
|
|
/** |
204
|
|
|
* Normalizes given path with given directory separator. |
205
|
|
|
* Default forced to Unix directory separator for substitutePaths to work properly in Windows. |
206
|
|
|
* |
207
|
|
|
* @param string $path path to be normalized |
208
|
|
|
* @param string $ds directory separator |
209
|
|
|
* @return string |
210
|
|
|
*/ |
211
|
|
|
private function normalizePath($path): string |
212
|
|
|
{ |
213
|
|
|
return rtrim(strtr($path, '/\\', '//'), '/'); |
214
|
|
|
} |
215
|
|
|
|
216
|
|
|
/** |
217
|
|
|
* Substitute all paths in given array recursively with alias if applicable. |
218
|
|
|
* |
219
|
|
|
* @param array $data |
220
|
|
|
* @param string $dir |
221
|
|
|
* @param string $alias |
222
|
|
|
* @return array |
223
|
|
|
*/ |
224
|
|
|
private function substitutePaths($data, $dir, $alias): array |
225
|
|
|
{ |
226
|
|
|
foreach ($data as &$value) { |
227
|
|
|
if (is_string($value)) { |
228
|
|
|
$value = $this->substitutePath($value, $dir, $alias); |
229
|
|
|
} elseif (is_array($value)) { |
230
|
|
|
$value = $this->substitutePaths($value, $dir, $alias); |
231
|
|
|
} |
232
|
|
|
} |
233
|
|
|
|
234
|
|
|
return $data; |
235
|
|
|
} |
236
|
|
|
|
237
|
|
|
/** |
238
|
|
|
* Substitute path with alias if applicable. |
239
|
|
|
* |
240
|
|
|
* @param string $path |
241
|
|
|
* @param string $dir |
242
|
|
|
* @param string $alias |
243
|
|
|
* @return string |
244
|
|
|
*/ |
245
|
|
|
private function substitutePath($path, $dir, $alias): string |
246
|
|
|
{ |
247
|
|
|
$end = $dir . '/'; |
248
|
|
|
$skippable = 0 === strncmp($path, '?', 1); |
249
|
|
|
if ($skippable) { |
250
|
|
|
$path = substr($path, 1); |
251
|
|
|
} |
252
|
|
|
if ($path === $dir) { |
253
|
|
|
$result = $alias; |
254
|
|
|
} elseif (strpos($path, $end) === 0) { |
255
|
|
|
$result = $alias . substr($path, strlen($end) - 1); |
256
|
|
|
} else { |
257
|
|
|
$result = $path; |
258
|
|
|
} |
259
|
|
|
|
260
|
|
|
return ($skippable ? '?' : '') . $result; |
261
|
|
|
} |
262
|
|
|
|
263
|
|
|
private function getBaseDir(): string |
264
|
|
|
{ |
265
|
|
|
return $this->builder->getBaseDir(); |
266
|
|
|
} |
267
|
|
|
|
268
|
|
|
protected function getOutputPath(string $name = null): string |
269
|
|
|
{ |
270
|
|
|
return $this->builder->getOutputPath($name ?: $this->name); |
271
|
|
|
} |
272
|
|
|
} |
273
|
|
|
|