-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathMamlRecipe.php
More file actions
486 lines (436 loc) · 15.5 KB
/
MamlRecipe.php
File metadata and controls
486 lines (436 loc) · 15.5 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
<?php
declare(strict_types=1);
/* (c) Anton Medvedev <anton@medv.io>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Deployer\Import;
use Deployer\Exception\Exception;
use Deployer\Exception\SchemaException;
use Deployer\Task\Task;
use Maml\Ast\ArrayNode;
use Maml\Ast\BooleanNode;
use Maml\Ast\ObjectNode;
use Maml\Ast\Property;
use Maml\Ast\RawStringNode;
use Maml\Ast\Span;
use Maml\Ast\StringNode;
use Maml\Maml;
use Maml\Schema\S;
use Maml\Schema\SchemaType;
use function Deployer\after;
use function Deployer\before;
use function Deployer\cd;
use function Deployer\download;
use function Deployer\fail;
use function Deployer\host;
use function Deployer\localhost;
use function Deployer\run;
use function Deployer\runLocally;
use function Deployer\set;
use function Deployer\task;
use function Deployer\upload;
class MamlRecipe
{
private string $filename;
private string $content;
public function __construct(string $path)
{
$this->filename = basename($path);
$this->content = file_get_contents($path, true);
}
public static function schema(): SchemaType
{
$cd = S::object([
'cd' => S::string(),
]);
$run = S::object([
'run' => S::string(),
'cd' => S::optional(S::string()),
'cwd' => S::optional(S::string()),
'env' => S::optional(S::map(S::string())),
'secrets' => S::optional(S::map(S::string())),
'nothrow' => S::optional(S::boolean()),
'forceOutput' => S::optional(S::boolean()),
'timeout' => S::optional(S::number()),
'idleTimeout' => S::optional(S::number()),
]);
$runLocally = S::object([
'runLocally' => S::string(),
'cwd' => S::optional(S::string()),
'timeout' => S::optional(S::number()),
'idleTimeout' => S::optional(S::number()),
'secrets' => S::optional(S::map(S::string())),
'env' => S::optional(S::map(S::string())),
'nothrow' => S::optional(S::boolean()),
'forceOutput' => S::optional(S::boolean()),
'shell' => S::optional(S::string()),
]);
$upload = S::object([
'upload' => S::object([
'src' => S::union(S::string(), S::arrayOf(S::string())),
'dest' => S::string(),
]),
]);
$download = S::object([
'download' => S::object([
'src' => S::string(),
'dest' => S::string(),
]),
]);
$taskConfig = S::object([
'desc' => S::optional(S::string()),
'once' => S::optional(S::boolean()),
'hidden' => S::optional(S::boolean()),
'limit' => S::optional(S::number()),
'select' => S::optional(S::string()),
]);
$step = S::union(
$cd,
$run,
$runLocally,
$upload,
$download,
$taskConfig,
);
return S::object([
'import' => S::optional(
S::union(
S::string(),
S::arrayOf(S::string()),
),
),
'config' => S::optional(
S::map(S::any()),
),
'hosts' => S::optional(
S::map(
S::map(S::any()),
),
),
'tasks' => S::optional(
S::map(
S::union(
S::arrayOf($step),
S::arrayOf(S::string()),
),
),
),
'before' => S::optional(
S::map(
S::union(
S::string(),
S::arrayOf(S::string()),
),
),
),
'after' => S::optional(
S::map(
S::union(
S::string(),
S::arrayOf(S::string()),
),
),
),
'fail' => S::optional(
S::map(S::string()),
),
]);
}
public function run(): void
{
$recipe = Maml::parseAst($this->content);
$validationErrors = Maml::validate($recipe, self::schema());
$exception = null;
foreach ($validationErrors as $error) {
$exception = new SchemaException(
Maml::errorSnippet(
$this->content,
$error->span,
$error->message,
context: 3,
gutter: true,
),
$exception,
);
}
if ($exception) {
throw $exception;
}
foreach ($recipe->value->properties as $property) {
$key = $property->key->value;
switch ($key) {
case 'import':
$this->import($property);
break;
case 'config':
$this->config($property);
break;
case 'hosts':
$this->hosts($property);
break;
case 'tasks':
$this->tasks($property);
break;
case 'before':
$this->before($property);
break;
case 'after':
$this->after($property);
break;
case 'fail':
$this->fail($property);
break;
default:
$this->throwException("Unknown property $key", $property->key->span);
}
}
}
private function import(Property $property): void
{
if ($property->value instanceof StringNode || $property->value instanceof RawStringNode) {
Import::import($property->value->value);
} elseif ($property->value instanceof ArrayNode) {
foreach ($property->value->elements as $element) {
$import = $element->value;
if ($import instanceof StringNode || $import instanceof RawStringNode) {
Import::import($import->value);
} else {
$this->throwException('Invalid import format', $import->span);
}
}
} else {
$this->throwException('Invalid import format', $property->value->span);
}
}
protected function config(Property $property): void
{
$object = $property->value;
if (!$object instanceof ObjectNode) {
$this->throwException('Invalid config format', $property->value->span);
}
foreach ($object->properties as $property) {
$key = $property->key->value;
$value = $property->value;
set($key, Maml::toValue($value));
}
}
protected function hosts(Property $property): void
{
$object = $property->value;
if (!$object instanceof ObjectNode) {
$this->throwException('Invalid hosts format', $property->value->span);
}
foreach ($object->properties as $property) {
$alias = $property->key->value;
$object = $property->value;
if (!$object instanceof ObjectNode) {
$this->throwException('Invalid host format', $property->value->span);
}
$isLocalhost = false;
foreach ($object->properties as $config) {
$key = $config->key->value;
$value = $config->value;
if ($key === 'local' && $value instanceof BooleanNode && $value->value === true) {
$isLocalhost = true;
}
}
if ($isLocalhost) {
$host = localhost($alias);
} else {
$host = host($alias);
}
foreach ($object->properties as $config) {
$host->set($config->key->value, Maml::toValue($config->value));
}
}
}
protected function tasks(Property $property): void
{
$tasks = $property->value;
if (!$tasks instanceof ObjectNode) {
$this->throwException('Invalid tasks format', $property->value->span);
}
foreach ($tasks->properties as $task) {
$name = $task->key->value;
$value = $task->value;
$desc = trim(implode("\n", array_map(fn($comment) => $comment->value, $task->leadingComments)));
if (!$value instanceof ArrayNode) {
$this->throwException('Task must be an array', $value->span);
}
$this->createTask($name, $value, $desc);
}
}
private function createTask(string $name, ArrayNode $array, string $desc): ?Task
{
$isGroupTask = true;
$groupTasks = [];
foreach ($array->elements as $element) {
if ($element->value instanceof StringNode || $element->value instanceof RawStringNode) {
$groupTasks[] = $element->value->value;
} else {
$isGroupTask = false;
}
}
if ($isGroupTask) {
task($name, $groupTasks)->desc($desc);
return null;
}
$body = function () {
// Empty task body.
};
$task = task($name, $body)->desc($desc);
foreach ($array->elements as $element) {
$object = $element->value;
if (!$object instanceof ObjectNode) {
$this->throwException('Task step must be an object', $object->span);
}
$step = Maml::toValue($element->value);
foreach ($object->properties as $property) {
$key = $property->key->value;
if (in_array($key, ['desc', 'once', 'hidden', 'limit', 'select'])) {
$task->$key($step[$key]);
continue;
}
$prev = $body;
$body = match ($key) {
'cd' => function () use ($step, $prev, $property) {
$prev();
try {
cd($step['cd']);
} catch (\Throwable $e) {
$this->wrapException($e, $property->span);
}
},
'run' => function () use ($step, $prev, $property) {
$prev();
try {
run(
$step['run'],
cwd: $step['cwd'] ?? null,
env: $step['env'] ?? null,
secrets: $step['secrets'] ?? null,
nothrow: $step['nothrow'] ?? false,
forceOutput: $step['forceOutput'] ?? false,
timeout: $step['timeout'] ?? null,
idleTimeout: $step['idleTimeout'] ?? null,
);
} catch (\Throwable $e) {
$this->wrapException($e, $property->span);
}
},
'runLocally' => function () use ($step, $prev, $property) {
$prev();
try {
runLocally(
$step['runLocally'],
cwd: $step['cwd'] ?? null,
timeout: $step['timeout'] ?? null,
idleTimeout: $step['idleTimeout'] ?? null,
secrets: $step['secrets'] ?? null,
env: $step['env'] ?? null,
forceOutput: $step['forceOutput'] ?? false,
nothrow: $step['nothrow'] ?? false,
shell: $step['shell'] ?? null,
);
} catch (\Throwable $e) {
$this->wrapException($e, $property->span);
}
},
'upload' => function () use ($step, $prev, $property) {
$prev();
try {
upload(
$step['upload']['src'],
$step['upload']['dest'],
);
} catch (\Throwable $e) {
$this->wrapException($e, $property->span);
}
},
'download' => function () use ($step, $prev, $property) {
$prev();
try {
download(
$step['download']['src'],
$step['download']['dest'],
);
} catch (\Throwable $e) {
$this->wrapException($e, $property->span);
}
},
default => $body,
};
}
}
$task->setCallback($body);
return $task;
}
protected function before(Property $property): void
{
$object = $property->value;
if (!$object instanceof ObjectNode) {
$this->throwException('Invalid before format', $object->span);
}
foreach ($object->properties as $property) {
$key = $property->key->value;
$value = Maml::toValue($property->value);
if (is_array($value)) {
foreach (array_reverse($value) as $v) {
before($key, $v);
}
} else {
before($key, $value);
}
}
}
protected function after(Property $property): void
{
$object = $property->value;
if (!$object instanceof ObjectNode) {
$this->throwException('Invalid after format', $object->span);
}
foreach ($object->properties as $property) {
$key = $property->key->value;
$value = Maml::toValue($property->value);
if (is_array($value)) {
foreach (array_reverse($value) as $v) {
after($key, $v);
}
} else {
after($key, $value);
}
}
}
protected function fail(Property $property): void
{
$object = $property->value;
if (!$object instanceof ObjectNode) {
$this->throwException('Invalid fail format', $object->span);
}
foreach ($object->properties as $property) {
$key = $property->key->value;
$value = Maml::toValue($property->value);
fail($key, $value);
}
}
private function throwException(string $string, Span $span): never
{
throw new Exception(Maml::errorSnippet(
$this->content,
$span,
$string,
context: 3,
gutter: true,
));
}
private function wrapException(\Throwable $e, Span $span): never
{
if ($e instanceof Exception) {
$e->setTaskFilename($this->filename);
$e->setTaskLineNumber($span->start->line);
}
throw $e;
}
}