-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEventsManager.php
More file actions
417 lines (371 loc) · 11.4 KB
/
EventsManager.php
File metadata and controls
417 lines (371 loc) · 11.4 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
<?php
/**
* Arikaim
*
* @link http://www.arikaim.com
* @copyright Copyright (c) Konstantin Atanasov <info@arikaim.com>
* @license http://www.arikaim.com/license
*
*/
namespace Arikaim\Core\Events;
use Arikaim\Core\Utils\Factory;
use Arikaim\Core\Utils\Utils;
use Arikaim\Core\Events\Event;
use Arikaim\Core\Events\EventDispatchJob;
use Arikaim\Core\Interfaces\Events\EventInterface;
use Arikaim\Core\Interfaces\Events\EventListenerInterface;
use Arikaim\Core\Interfaces\Events\EventSubscriberInterface;
use Arikaim\Core\Interfaces\Events\EventDispatcherInterface;
use Arikaim\Core\Interfaces\Events\EventRegistryInterface;
use Arikaim\Core\Interfaces\Events\SubscriberRegistryInterface;
use Arikaim\Core\Interfaces\Events\EventLogInterface;
use Exception;
/**
* Dispatch and manage events and event subscribers.
*/
class EventsManager implements EventDispatcherInterface
{
/**
* Subscribers
*
* @var array
*/
protected $subscribers;
/**
* Event Registry
*
* @var EventRegistryInterface
*/
protected $eventRegistry;
/**
* Subscriber Registry
*
* @var SubscriberRegistryInterface
*/
protected $subscriberRegistry;
/**
* Options
*
* @var array
*/
private $options = [];
/**
* Constructor
*/
public function __construct(
EventRegistryInterface $eventRegistry,
SubscriberRegistryInterface $subscriberRegistry,
array $options = []
)
{
$this->subscribers = [];
$this->eventRegistry = $eventRegistry;
$this->subscriberRegistry = $subscriberRegistry;
$this->options = $options;
}
/**
* Get events storage ref
*
* @return EventRegistryInterface
*/
public function registry(): EventRegistryInterface
{
return $this->eventRegistry;
}
/**
* Set events status
*
* @param array $filter
* @param integer $status
* @return boolean
*/
public function setEventsStatus(array $filter, int $status): bool
{
return $this->eventRegistry->setEventsStatus($filter,$status);
}
/**
* Return true if event exist
*
* @param string $name
* @return boolean
*/
public function hasEvent(string $name): bool
{
return $this->eventRegistry->hasEvent($name);
}
/**
* Delete events.
*
* @param array $filter
* @return bool
*/
public function deleteEvents(array $filter): bool
{
return $this->eventRegistry->deleteEvents($filter);
}
/**
* Delete subscribers.
*
* @param array $filter
* @return bool
*/
public function deleteSubscribers(array $filter): bool
{
return $this->subscriberRegistry->deleteSubscribers($filter);
}
/**
* Get events list
*
* @param array $filter
* @return array
*/
public function getEvents(array $filter = []): array
{
return $this->eventRegistry->getEvents($filter);
}
/**
* Get subscribers list
*
* @param string|null $eventName
* @param string|null $extensionName
* @param integer|null $status
* @return array
*/
public function getSubscribers(?string $eventName = null, ?string $extensionName = null, ?int $status = null): array
{
return $this->subscriberRegistry->getSubscribers($eventName,$extensionName,$status);
}
/**
* Unregister event
*
* @param string $eventName
* @return bool
*/
public function unregisterEvent(string $eventName): bool
{
return $this->eventRegistry->deleteEvent($eventName);
}
/**
* Add event to events db table.
*
* @param string $name
* @param string"null $title
* @param string|null $extension
* @param string|null $description
* @return bool
*/
public function registerEvent(string $name, ?string $title, ?string $extension = null, ?string $description = null): bool
{
if (($this->isCoreEvent($name) == true) && ($extension != null)) {
// core events can't be registered from extension
return false;
}
return $this->eventRegistry->registerEvent($name,$title,$extension,$description);
}
/**
* Get event properties
*
* @param string $name
* @return array|null
*/
public function getEventProperties(string $name): ?array
{
return $this->eventRegistry->getProperties($name);
}
/**
* Save event properties descrition
*
* @param string $name
* @param mixed $descriptor
* @return boolean
*/
public function savePropertiesDescriptor(string $name, $descriptor): bool
{
return $this->eventRegistry->savePropertiesDescriptor($name,$descriptor);
}
/**
* Check if event name is core event name.
*
* @param string $name
* @return boolean
*/
public function isCoreEvent(string $name): bool
{
return (\substr($name,0,4) == 'core');
}
/**
* Register event subscriber.
*
* @param string|object $subscriber Subscriber class or object ref
* @param string|null $extension
* @return bool
*/
public function registerSubscriber($subscriber, ?string $extension): bool
{
if (\is_object($subscriber) == false) {
$subscriber = Factory::createEventSubscriber($subscriber,$extension);
}
$subscriberClass = Utils::getBaseClassName($subscriber);
if ($subscriber instanceof EventSubscriberInterface) {
$events = $subscriber->getSubscribedEvents();
foreach ($events as $event) {
$this->subscribe($event['event_name'],$subscriberClass,$extension,$event['priority'],$event['handler_method']);
}
return true;
}
if ($subscriber instanceof EventListenerInterface) {
if (empty($subscriber->getEventName()) == false) {
$this->subscribe($subscriber->getEventName(),$subscriberClass,$extension,$subscriber->getPriority(),null);
}
}
return false;
}
/**
* Save subscriber info to db table.
*
* @param string $eventName
* @param string $class
* @param string|null $extension
* @param integer $priority
* @param string|null $hadnlerMethod
* @return bool
*/
public function subscribe(
string $eventName,
string $class,
?string $extension = null,
int $priority = 0,
?string $hadnlerMethod = null
): bool
{
return $this->subscriberRegistry->addSubscriber($eventName,$class,$extension,$priority,$hadnlerMethod);
}
/**
* Subscribe callback
*
* @param string $eventName
* @param Closure $callback
* @param boolean $single
* @return void
*/
public function subscribeCallback(string $eventName, $callback, bool $single = false): void
{
if (isset($this->subscribers[$eventName]) == false) {
$this->subscribers[$eventName] = [];
}
if ($single == true) {
$this->subscribers[$eventName] = [$callback];
} else {
$this->subscribers[$eventName][] = $callback;
}
}
/**
* Push dispatch event job in queue
*
* @param string $eventName
* @param array $params
* @return bool
*/
public function addDispatchEventJob(string $eventName, array $params = []): bool
{
global $arikaim;
$params = [
'event_name' => $eventName,
'event_params' => $params
];
$job = new EventDispatchJob($params,$this);
return $arikaim->get('queue')->addJob($job,null,false,null,null,$params);
}
/**
* Fire event, dispatch event data to all subscribers
*
* @param string $eventName
* @param array|EventInterface $event
* @param boolean $callbackOnly
* @param string|null $extension
* @return array
*/
public function dispatch(string $eventName, $event = [], bool $callbackOnly = false, ?string $extension = null): array
{
if (\is_object($event) == false) {
$event = new Event($event);
}
if (($event instanceof EventInterface) == false) {
throw new Exception('Not valid event object.',1);
}
$event->setName($eventName);
$result = [];
if ($callbackOnly != true) {
// get all subscribers for event
$subscribers = $this->getSubscribers($eventName,$extension,1);
$this->log('Dispatch event ' . $eventName,$event->toArray());
$result = $this->executeEventHandlers($subscribers,$event);
}
// run subscribed callback
$callbackResult = $this->runCallback($eventName,$event);
return \array_merge($result,$callbackResult);
}
/**
* Execute closure subscribers
*
* @param string $eventName
* @param EventInterface $event
* @return array
*/
private function runCallback(string $eventName, $event): array
{
if (isset($this->subscribers[$eventName]) == false) {
return [];
}
$result = [];
foreach ($this->subscribers[$eventName] as $callback) {
if (Utils::isClosure($callback) == true) {
$callbackResult = $callback($event);
$result[] = $callbackResult;
}
}
return $result;
}
/**
* Run event handlers
*
* @param array $eventSubscribers
* @param EventInterface $event
* @return array
*/
private function executeEventHandlers(array $eventSubscribers, Event $event): array
{
$result = [];
foreach ($eventSubscribers as $item) {
$subscriber = Factory::createInstance($item['handler_class']);
$handlerMethod = (empty($item['handler_method']) == true) ? 'execute' : $item['handler_method'];
if ($subscriber instanceof EventSubscriberInterface) {
// check for subscriber log
if ($subscriber instanceof EventLogInterface) {
$this->log($subscriber->getLogMessage(),$subscriber->getLogContext());
}
$eventResult = $subscriber->{$handlerMethod}($event);
// logging
if (empty($eventResult) == false) {
$result[] = $eventResult;
}
}
}
return $result;
}
/**
* Log
*
* @param string $message
* @param array $context
* @return boolean
*/
private function log(string $message, array $context = []): bool
{
global $arikaim;
if (($this->options['log'] ?? false) == true) {
return $arikaim->get('logger')->info($message,$context);
}
return false;
}
}