-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathPlatform.php
More file actions
352 lines (312 loc) · 10.1 KB
/
Platform.php
File metadata and controls
352 lines (312 loc) · 10.1 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
<?php
namespace Utopia\Platform;
use Exception;
use Utopia\CLI\Adapters\Generic;
use Utopia\CLI\CLI;
use Utopia\Http\Http;
use Utopia\Http\Route;
use Utopia\Queue\Adapter\Swoole;
use Utopia\Queue\Server;
abstract class Platform
{
protected Module $core;
/**
* Modules
*
* @var array<Module>
*/
protected array $modules = [];
protected CLI $cli;
protected Server $worker;
public function __construct(Module $module)
{
$this->core = $module;
$this->modules[] = $module;
}
/**
* Initialize Application
*
* @return void
*/
public function init(string $type, array $params = []): void
{
foreach ($this->modules as $module) {
$services = $module->getServicesByType($type);
switch ($type) {
case Service::TYPE_HTTP:
$this->initHttp($services);
break;
case Service::TYPE_TASK:
$adapter = $params['adapter'] ?? new Generic();
$this->cli ??= new CLI($adapter);
if (isset($params['container'])) {
$this->cli->setContainer($params['container']);
}
$this->initTasks($services);
break;
case Service::TYPE_GRAPHQL:
$this->initGraphQL();
break;
case Service::TYPE_WORKER:
$workerName = $params['workerName'] ?? null;
if (! isset($this->worker)) {
$consumer = $params['consumer'] ?? null;
$workersNum = $params['workersNum'] ?? 0;
$workerName = $params['workerName'] ?? null;
$queueName = $params['queueName'] ?? 'v1-'.$workerName;
$adapter = new Swoole($consumer, $workersNum, $queueName);
$this->worker ??= new Server($adapter);
}
$this->initWorker($services, $workerName);
break;
default:
throw new Exception('Please provide which type of initialization you want to carry out.');
}
}
}
/**
* Init HTTP service
*
* @param Service $service
* @return void
*/
protected function initHttp(array $services): void
{
foreach ($services as $service) {
foreach ($service->getActions() as $action) {
/** @var Action $action */
switch ($action->getType()) {
case Action::TYPE_INIT:
$hook = Http::init();
break;
case Action::TYPE_ERROR:
$hook = Http::error();
break;
case Action::TYPE_OPTIONS:
$hook = Http::options();
break;
case Action::TYPE_SHUTDOWN:
$hook = Http::shutdown();
break;
case Action::TYPE_DEFAULT:
default:
$hook = Http::addRoute($action->getHttpMethod(), $action->getHttpPath());
break;
}
$hook
->groups($action->getGroups())
->desc($action->getDesc() ?? '');
if ($hook instanceof Route) {
if (! empty($action->getHttpAliasPath())) {
$hook->alias($action->getHttpAliasPath());
}
}
foreach ($action->getOptions() as $key => $option) {
switch ($option['type']) {
case 'param':
$key = substr($key, stripos($key, ':') + 1);
$hook->param($key, $option['default'], $option['validator'], $option['description'], $option['optional'], $option['injections'], $option['skipValidation']);
break;
case 'injection':
$hook->inject($option['name']);
break;
}
}
foreach ($action->getLabels() as $key => $label) {
$hook->label($key, $label);
}
$hook->action($action->getCallback());
}
}
}
/**
* Init CLI Services
*
* @return void
*/
protected function initTasks(array $services): void
{
$cli = $this->cli;
foreach ($services as $service) {
foreach ($service->getActions() as $key => $action) {
switch ($action->getType()) {
case Action::TYPE_INIT:
$hook = $cli->init();
break;
case Action::TYPE_ERROR:
$hook = $cli->error();
break;
case Action::TYPE_SHUTDOWN:
$hook = $cli->shutdown();
break;
case Action::TYPE_DEFAULT:
default:
$hook = $cli->task($key);
break;
}
$hook
->groups($action->getGroups())
->desc($action->getDesc() ?? '');
foreach ($action->getOptions() as $key => $option) {
switch ($option['type']) {
case 'param':
$key = substr($key, stripos($key, ':') + 1);
$hook->param($key, $option['default'], $option['validator'], $option['description'], $option['optional'], $option['injections'], $option['skipValidation']);
break;
case 'injection':
$hook->inject($option['name']);
break;
}
}
foreach ($action->getLabels() as $key => $label) {
$hook->label($key, $label);
}
$hook->action($action->getCallback());
}
}
}
/**
* Init worker Services
*
* @param array $params
* @return void
*/
protected function initWorker(array $services, string $workerName): void
{
$worker = $this->worker;
foreach ($services as $service) {
foreach ($service->getActions() as $key => $action) {
if ($action->getType() == Action::TYPE_DEFAULT && strtolower($key) !== $workerName) {
continue;
}
switch ($action->getType()) {
case Action::TYPE_INIT:
$hook = $worker->init();
break;
case Action::TYPE_ERROR:
$hook = $worker->error();
break;
case Action::TYPE_SHUTDOWN:
$hook = $worker->shutdown();
break;
case Action::TYPE_WORKER_START:
$hook = $worker->workerStart();
break;
case Action::TYPE_DEFAULT:
default:
$hook = $worker->job();
break;
}
$hook
->groups($action->getGroups())
->desc($action->getDesc() ?? '');
foreach ($action->getOptions() as $key => $option) {
switch ($option['type']) {
case 'param':
$key = substr($key, stripos($key, ':') + 1);
$hook->param($key, $option['default'], $option['validator'], $option['description'], $option['optional'], $option['injections'], $option['skipValidation']);
break;
case 'injection':
$hook->inject($option['name']);
break;
}
}
foreach ($action->getLabels() as $key => $label) {
$hook->label($key, $label);
}
$hook->action($action->getCallback());
}
}
}
/**
* Initialize GraphQL Services
*
* @return void
*/
protected function initGraphQL(): void
{
}
/**
* Add module
*
* @param Module $module
* @return self
*/
public function addModule(Module $module): self
{
$this->modules[] = $module;
return $this;
}
/**
* Add Service
*
* @param string $key
* @param Service $service
* @return Platform
*/
public function addService(string $key, Service $service): self
{
$this->core->addService($key, $service);
return $this;
}
/**
* Remove Service
*
* @param string $key
* @return Platform
*/
public function removeService(string $key): self
{
$this->core->removeService($key);
return $this;
}
/**
* Get Service
*
* @param string $key
* @return Service|null
*/
public function getService(string $key): ?Service
{
return $this->core->getService($key);
}
/**
* Get Services
*
* @return array
*/
public function getServices(): array
{
return $this->core->getServices();
}
/**
* Get the value of cli
*/
public function getCli(): CLI
{
return $this->cli;
}
/**
* Set the value of cli
*/
public function setCli(CLI $cli): self
{
$this->cli = $cli;
return $this;
}
/**
* Get the value of worker
*/
public function getWorker(): Server
{
return $this->worker;
}
/**
* Set the value of worker
*/
public function setWorker(Server $worker): self
{
$this->worker = $worker;
return $this;
}
}