-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSensor.php
81 lines (68 loc) · 2.53 KB
/
Sensor.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
<?php
/**
* This file is part of the todocler package.
*
* (C) Alan Gabriel Bem <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Productivity\Application\Sensor\UsersEvents;
use Productivity\Application\Event as Events;
use Streak\Application;
use Streak\Application\Sensor as Sensors;
/**
* @author Alan Gabriel Bem <[email protected]>
*
* @noRector \Rector\Privatization\Rector\Class_\RepeatedLiteralToClassConstantRector
*
* @see \Productivity\Application\Sensor\UsersEvents\SensorTest
* @see \Productivity\Application\Sensor\UsersEvents\Sensor\Factory
*/
final class Sensor implements Application\Sensor
{
use Sensors\Identification;
use Sensors\Processing;
public function processText(string $message) : void
{
throw new \InvalidArgumentException('Message not supported.');
}
public function processObject(object $message) : void
{
throw new \InvalidArgumentException('Message not supported.');
}
/**
* Protobuf would be nice here as strong schema for messages.
*
* @see \Users\Application\Projector\Queue\Projector::onUserRegistered()
*/
public function processMessage(array $message) : void
{
if (false === isset($message['name'])) {
throw new \InvalidArgumentException('[name] field is missing.');
}
if (false === isset($message['body'])) {
throw new \InvalidArgumentException('[body] field is missing.');
}
if ('user_registered' === $message['name']) {
if (false === isset($message['body']['user_id'])) {
throw new \InvalidArgumentException('[body][user_id] field is missing.');
}
if (false === isset($message['body']['email'])) {
throw new \InvalidArgumentException('[body][email] field is missing.');
}
if (false === isset($message['body']['registered_at'])) {
throw new \InvalidArgumentException('[body][registered_at] field is missing.');
}
$event = new Events\UserRegistered(
$message['body']['user_id'],
$message['body']['email'],
\DateTimeImmutable::createFromFormat('Y-m-d H:i:s.u P', $message['body']['registered_at']),
);
$this->addEvent($event);
return;
}
throw new \InvalidArgumentException('Message not supported.');
}
}