1 | <?php |
||
12 | class Webhook extends AbstractApi |
||
13 | { |
||
14 | |||
15 | /** |
||
16 | * @var null|\Kerox\Messenger\Api\Webhook |
||
17 | */ |
||
18 | private static $_instance; |
||
19 | |||
20 | /** |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $appSecret; |
||
24 | |||
25 | /** |
||
26 | * @var string |
||
27 | */ |
||
28 | protected $verifyToken; |
||
29 | |||
30 | /** |
||
31 | * @var \Psr\Http\Message\ServerRequestInterface |
||
32 | */ |
||
33 | protected $request; |
||
34 | |||
35 | /** |
||
36 | * @var string |
||
37 | */ |
||
38 | protected $body; |
||
39 | |||
40 | /** |
||
41 | * @var array |
||
42 | */ |
||
43 | protected $decodedBody; |
||
44 | |||
45 | /** |
||
46 | * @var \Kerox\Messenger\Model\Entry[] |
||
47 | */ |
||
48 | protected $hydratedEntries; |
||
49 | |||
50 | /** |
||
51 | * Webhook constructor. |
||
52 | * |
||
53 | * @param string $appSecret |
||
54 | * @param string $verifyToken |
||
55 | * @param string $pageToken |
||
56 | * @param \GuzzleHttp\ClientInterface $client |
||
57 | * @param \Psr\Http\Message\ServerRequestInterface $request |
||
58 | */ |
||
59 | 7 | public function __construct(string $appSecret, string $verifyToken, string $pageToken, ClientInterface $client, ServerRequestInterface $request = null) |
|
67 | |||
68 | /** |
||
69 | * @param string $appSecret |
||
70 | * @param string $verifyToken |
||
71 | * @param string $pageToken |
||
72 | * @param \GuzzleHttp\ClientInterface $client |
||
73 | * @param \Psr\Http\Message\ServerRequestInterface $request |
||
74 | * @return \Kerox\Messenger\Api\Webhook |
||
75 | */ |
||
76 | 1 | public static function getInstance(string $appSecret, string $verifyToken, string $pageToken, ClientInterface $client, ServerRequestInterface $request = null): Webhook |
|
84 | |||
85 | /** |
||
86 | * @return bool |
||
87 | */ |
||
88 | 1 | public function isValidToken(): bool |
|
89 | { |
||
90 | 1 | if ($this->request->getMethod() !== 'GET') { |
|
91 | return false; |
||
92 | } |
||
93 | |||
94 | 1 | $params = $this->request->getQueryParams(); |
|
95 | 1 | if (!isset($params['hub_verify_token'])) { |
|
96 | return false; |
||
97 | } |
||
98 | |||
99 | 1 | return ($params['hub_mode'] === 'subscribe' && $params['hub_verify_token'] === $this->verifyToken); |
|
100 | } |
||
101 | |||
102 | /** |
||
103 | * @return string|null |
||
104 | */ |
||
105 | 1 | public function challenge() |
|
111 | |||
112 | /** |
||
113 | * @deprecated since 1.2.0 and will be removed in 1.3.0. |
||
114 | * @see challenge() |
||
115 | * @return null|string |
||
116 | */ |
||
117 | public function getChallenge() |
||
118 | { |
||
119 | return $this->challenge(); |
||
120 | } |
||
121 | |||
122 | /** |
||
123 | * @return \Kerox\Messenger\Response\WebhookResponse |
||
124 | */ |
||
125 | 1 | public function subscribe(): WebhookResponse |
|
132 | |||
133 | /** |
||
134 | * @deprecated since 1.2.0 and will be removed in 1.3.0. |
||
135 | * @see subscribe() |
||
136 | * @return \Kerox\Messenger\Response\WebhookResponse |
||
137 | */ |
||
138 | public function sendSubscribe(): WebhookResponse |
||
139 | { |
||
140 | return $this->subscribe(); |
||
141 | } |
||
142 | |||
143 | /** |
||
144 | * @return bool |
||
145 | */ |
||
146 | 1 | public function isValidCallback(): bool |
|
147 | { |
||
148 | 1 | if (!$this->isValidHubSignature()) { |
|
149 | return false; |
||
150 | } |
||
151 | |||
152 | 1 | $decodedBody = $this->getDecodedBody(); |
|
153 | |||
154 | 1 | $object = $decodedBody['object'] ?? null; |
|
155 | 1 | $entry = $decodedBody['entry'] ?? null; |
|
156 | |||
157 | 1 | return ($object === 'page' && $entry !== null); |
|
158 | } |
||
159 | |||
160 | /** |
||
161 | * @return string |
||
162 | */ |
||
163 | 4 | public function getBody(): string |
|
171 | |||
172 | /** |
||
173 | * @return array |
||
174 | * @throws \Exception |
||
175 | */ |
||
176 | 4 | public function getDecodedBody(): array |
|
177 | { |
||
178 | 4 | if ($this->decodedBody === null) { |
|
179 | 4 | $decodedBody = json_decode($this->getBody(), true); |
|
180 | 4 | if (json_last_error() !== JSON_ERROR_NONE || $decodedBody === null) { |
|
181 | $decodedBody = []; |
||
182 | } |
||
183 | |||
184 | 4 | $this->decodedBody = $decodedBody; |
|
185 | } |
||
186 | |||
187 | 4 | return $this->decodedBody; |
|
188 | } |
||
189 | |||
190 | /** |
||
191 | * @return \Kerox\Messenger\Model\Entry[] |
||
192 | */ |
||
193 | 1 | public function getCallbackEntries(): array |
|
197 | |||
198 | /** |
||
199 | * @return array |
||
200 | */ |
||
201 | 1 | public function getCallbackEvents(): array |
|
211 | |||
212 | /** |
||
213 | * @return \Kerox\Messenger\Model\Callback\Entry[] |
||
214 | */ |
||
215 | 2 | private function getHydratedEntries(): array |
|
230 | |||
231 | /** |
||
232 | * @return bool |
||
233 | */ |
||
234 | 1 | private function isValidHubSignature(): bool |
|
235 | { |
||
247 | } |
||
248 |