-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWorkflow.php
129 lines (95 loc) · 3.25 KB
/
Workflow.php
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
<?php
declare(strict_types=1);
/**
* Copyright 2020-Present The Serverless Workflow Specification Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
namespace Serverless\Workflow;
use Symfony\Component\Yaml\Yaml;
final class Workflow extends BaseObject
{
public string|null $id = null;
public string|null $key = null;
public string|null $name = null;
public string|null $description = null;
public string|null $version = null;
/** @var string[]|null */
public array|null $annotations = null;
public string|DataInputSchema|null $dataInputSchema = null;
public string|null $secrets = null;
/** @var mixed[] */
public string|array|null $constants = null;
public string|StartDef|null $start = null;
public string|null $specVersion = null;
public string|null $expressionLang = null;
public string|WorkflowTimeOut|null $timeouts = null;
/** @var mixed[] */
public string|array|null $errors = null;
public bool|null $keepActive = null;
public Metadata|null $metadata = null;
/** @var mixed[] */
public string|array|null $events = null;
/** @var string|FunctionDef[]|null */
public string|array|null $functions = null;
public bool|null $autoRetries = null;
/** @var mixed[] */
public string|array|null $retries = null;
/** @var mixed[] */
public string|array|null $auth = null;
/** @var State[]|null */
public array|null $states = null;
/**
* @param mixed[] $data
*/
public function __construct(array $data = [])
{
parent::__construct($data);
$this->keepActive ??= true;
}
/**
* @return mixed[]
*/
public function toArray(): array
{
$convertObjectsToArray = static function ($input) use (&$convertObjectsToArray) {
if (is_object($input)) {
$input = get_object_vars($input);
}
if (is_array($input)) {
$input = array_filter($input, static fn ($value): bool => $value !== null);
foreach ($input as $key => $value) {
$input[$key] = $convertObjectsToArray($value);
}
}
return $input;
};
return $convertObjectsToArray($this);
}
public function toJson(): string
{
return json_encode($this->toArray(), JSON_PRETTY_PRINT) ?: '';
}
public static function fromJson(string $json): self
{
return new self(json_decode($json, true, 512, JSON_THROW_ON_ERROR));
}
public function toYaml(): string
{
return Yaml::dump($this->toArray(), 100, 2, Yaml::DUMP_OBJECT_AS_MAP);
}
public static function fromYaml(string $yaml): self
{
return new self(Yaml::parse($yaml));
}
}