-
-
Notifications
You must be signed in to change notification settings - Fork 901
/
Copy pathSubscriptionIdentifierGenerator.php
43 lines (36 loc) · 1.11 KB
/
SubscriptionIdentifierGenerator.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
<?php
/*
* This file is part of the API Platform project.
*
* (c) Kévin Dunglas <[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 ApiPlatform\GraphQl\Subscription;
/**
* Generates an identifier used to identify a subscription.
*
* @author Alan Poulain <[email protected]>
*/
final class SubscriptionIdentifierGenerator implements SubscriptionIdentifierGeneratorInterface
{
public function generateSubscriptionIdentifier(array $fields): string
{
unset($fields['mercureUrl'], $fields['clientSubscriptionId']);
$fields = $this->removeTypename($fields);
return hash('sha256', print_r($fields, true));
}
private function removeTypename(array $data): array
{
foreach ($data as $key => $value) {
if ($key === '__typename') {
unset($data[$key]);
} elseif (is_array($value)) {
$data[$key] = $this->removeTypename($value);
}
}
return $data;
}
}