1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Kerox\Messenger\Event; |
4
|
|
|
|
5
|
|
|
use Kerox\Messenger\Model\Callback\PolicyEnforcement; |
6
|
|
|
|
7
|
|
|
class PolicyEnforcementEvent extends AbstractEvent |
8
|
|
|
{ |
9
|
|
|
const NAME = 'policy_enforcement'; |
10
|
|
|
|
11
|
|
|
/** |
12
|
|
|
* @var int |
13
|
|
|
*/ |
14
|
|
|
protected $timestamp; |
15
|
|
|
|
16
|
|
|
/** |
17
|
|
|
* @var \Kerox\Messenger\Model\Callback\PolicyEnforcement |
18
|
|
|
*/ |
19
|
|
|
protected $policyEnforcement; |
20
|
|
|
|
21
|
|
|
/** |
22
|
|
|
* ReadEvent constructor. |
23
|
|
|
* |
24
|
|
|
* @param string $senderId |
25
|
|
|
* @param string $recipientId |
26
|
|
|
* @param int $timestamp |
27
|
|
|
* @param \Kerox\Messenger\Model\Callback\PolicyEnforcement $policyEnforcement |
28
|
|
|
*/ |
29
|
1 |
|
public function __construct(string $senderId, string $recipientId, int $timestamp, PolicyEnforcement $policyEnforcement) |
30
|
|
|
{ |
31
|
1 |
|
parent::__construct($senderId, $recipientId); |
32
|
|
|
|
33
|
1 |
|
$this->timestamp = $timestamp; |
34
|
1 |
|
$this->policyEnforcement = $policyEnforcement; |
35
|
1 |
|
} |
36
|
|
|
|
37
|
|
|
/** |
38
|
|
|
* @return int |
39
|
|
|
*/ |
40
|
|
|
public function getTimestamp(): int |
41
|
|
|
{ |
42
|
|
|
return $this->timestamp; |
43
|
|
|
} |
44
|
|
|
|
45
|
|
|
/** |
46
|
|
|
* @return \Kerox\Messenger\Model\Callback\PolicyEnforcement |
47
|
|
|
*/ |
48
|
|
|
public function getPolicyEnforcement(): PolicyEnforcement |
49
|
|
|
{ |
50
|
|
|
return $this->policyEnforcement; |
51
|
|
|
} |
52
|
|
|
|
53
|
|
|
/** |
54
|
|
|
* @return string |
55
|
|
|
*/ |
56
|
|
|
public function getName(): string |
57
|
|
|
{ |
58
|
|
|
return self::NAME; |
59
|
|
|
} |
60
|
|
|
|
61
|
|
|
/** |
62
|
|
|
* @param $payload |
63
|
|
|
* |
64
|
|
|
* @return \Kerox\Messenger\Event\PolicyEnforcementEvent |
65
|
|
|
*/ |
66
|
1 |
|
public static function create(array $payload): PolicyEnforcementEvent |
67
|
|
|
{ |
68
|
1 |
|
$senderId = isset($payload['sender']) ? $payload['sender']['id'] : ''; |
69
|
1 |
|
$recipientId = $payload['recipient']['id']; |
70
|
1 |
|
$timestamp = $payload['timestamp']; |
71
|
1 |
|
$policyEnforcement = PolicyEnforcement::create($payload['policy-enforcement']); |
72
|
|
|
|
73
|
1 |
|
return new static($senderId, $recipientId, $timestamp, $policyEnforcement); |
74
|
|
|
} |
75
|
|
|
} |
76
|
|
|
|