1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/* |
4
|
|
|
* This file is part of the CwdPowerDNS Client |
5
|
|
|
* |
6
|
|
|
* (c) 2018 cwd.at GmbH <[email protected]> |
7
|
|
|
* |
8
|
|
|
* For the full copyright and license information, please view the LICENSE |
9
|
|
|
* file that was distributed with this source code. |
10
|
|
|
*/ |
11
|
|
|
|
12
|
|
|
declare(strict_types=1); |
13
|
|
|
|
14
|
|
|
namespace Cwd\PowerDNSClient; |
15
|
|
|
|
16
|
|
|
use Doctrine\Common\Annotations\AnnotationReader; |
17
|
|
|
use GuzzleHttp\Psr7\Request; |
18
|
|
|
use Http\Discovery\HttpClientDiscovery; |
19
|
|
|
use Symfony\Component\PropertyAccess\PropertyAccessor; |
20
|
|
|
use Symfony\Component\PropertyInfo\Extractor\ReflectionExtractor; |
21
|
|
|
use Symfony\Component\Serializer\Encoder\JsonEncoder; |
22
|
|
|
use Symfony\Component\Serializer\Mapping\ClassDiscriminatorFromClassMetadata; |
23
|
|
|
use Symfony\Component\Serializer\Mapping\Factory\ClassMetadataFactory; |
24
|
|
|
use Symfony\Component\Serializer\Mapping\Loader\AnnotationLoader; |
25
|
|
|
use Symfony\Component\Serializer\NameConverter\CamelCaseToSnakeCaseNameConverter; |
26
|
|
|
use Symfony\Component\Serializer\Normalizer\ArrayDenormalizer; |
27
|
|
|
use Symfony\Component\Serializer\Normalizer\DateTimeNormalizer; |
28
|
|
|
use Symfony\Component\Serializer\Normalizer\ObjectNormalizer; |
29
|
|
|
use Symfony\Component\Serializer\Serializer; |
30
|
|
|
use GuzzleHttp\Client as GuzzleClient; |
31
|
|
|
|
32
|
|
|
class Client |
33
|
|
|
{ |
34
|
|
|
private $basePath = 'api/v1'; |
35
|
|
|
private $apiKey; |
36
|
|
|
|
37
|
|
|
private $apiUri; |
38
|
|
|
|
39
|
|
|
/** @var GuzzleClient */ |
40
|
|
|
private $client; |
41
|
|
|
|
42
|
|
|
/** @var Serializer */ |
43
|
|
|
private $serializer; |
44
|
|
|
|
45
|
|
|
public function __construct($apiHost, $apiKey, ?GuzzleClient $client = null) |
46
|
|
|
{ |
47
|
|
|
$this->apiKey = $apiKey; |
48
|
|
|
$this->apiUri = sprintf('%s/%s', $apiHost, $this->basePath); |
49
|
|
|
if (null === $client) { |
50
|
|
|
//$this->client = new GuzzleClient(['base_uri' => $this->apiUri]); |
51
|
|
|
$this->client = HttpClientDiscovery::find(); |
|
|
|
|
52
|
|
|
} |
53
|
|
|
|
54
|
|
|
$classMetadataFactory = new ClassMetadataFactory(new AnnotationLoader(new AnnotationReader())); |
55
|
|
|
$discriminator = new ClassDiscriminatorFromClassMetadata($classMetadataFactory); |
56
|
|
|
|
57
|
|
|
$normalizer = new ObjectNormalizer($classMetadataFactory, new CamelCaseToSnakeCaseNameConverter(), new PropertyAccessor(), new ReflectionExtractor(), $discriminator); |
58
|
|
|
$this->serializer = new Serializer([new DateTimeNormalizer(), new ArrayDenormalizer(), $normalizer], ['json' => new JsonEncoder()]); |
59
|
|
|
} |
60
|
|
|
|
61
|
|
|
/** |
62
|
|
|
* @param string|null $payload |
63
|
|
|
* @param int|string|null $id |
64
|
|
|
* @param string $endpoint |
65
|
|
|
* @param string|null $hydrationClass |
66
|
|
|
* @param bool $isList |
67
|
|
|
* @param string $method |
68
|
|
|
* |
69
|
|
|
* @throws \Http\Client\Exception |
70
|
|
|
* @throws \LogicException |
71
|
|
|
* |
72
|
|
|
* @return mixed |
73
|
|
|
*/ |
74
|
|
|
public function call($payload = null, $uri, $hydrationClass = null, $isList = false, $method = 'GET', array $queryParams = []) |
75
|
|
|
{ |
76
|
|
|
$uri = rtrim(sprintf('%s/%s', $this->apiUri, $uri), '/'); |
77
|
|
|
|
78
|
|
|
if (count($queryParams) > 0) { |
79
|
|
|
$uri .= '?'.http_build_query($queryParams); |
80
|
|
|
} |
81
|
|
|
|
82
|
|
|
$request = new Request($method, $uri, [ |
83
|
|
|
'X-API-Key' => $this->apiKey, |
84
|
|
|
'Content-Type' => 'application/json', |
85
|
|
|
], $payload); |
86
|
|
|
|
87
|
|
|
$response = $this->client->sendRequest($request); |
88
|
|
|
|
89
|
|
|
$responseBody = $response->getBody()->getContents(); |
|
|
|
|
90
|
|
|
$responseData = json_decode($responseBody); |
91
|
|
|
|
92
|
|
|
if ($response->getStatusCode() >= 300 && isset($responseData->error)) { |
|
|
|
|
93
|
|
|
throw new \LogicException(sprintf('Error on %s request %s: %s', $method, $uri, $responseData->error)); |
94
|
|
|
} |
95
|
|
|
if ($response->getStatusCode() >= 300) { |
96
|
|
|
$message = isset($responseData->message) ?? 'Unknown'; |
97
|
|
|
throw new \Exception(sprintf('Error on request %s: %s', $response->getStatusCode(), $message)); |
98
|
|
|
} |
99
|
|
|
|
100
|
|
|
if (null !== $hydrationClass && class_exists($hydrationClass)) { |
101
|
|
|
return $this->denormalizeObject($hydrationClass, $responseData, $isList); |
102
|
|
|
} |
103
|
|
|
if (null !== $hydrationClass && !class_exists($hydrationClass)) { |
104
|
|
|
throw new \Exception(sprintf('HydrationClass (%s) does not exist', $hydrationClass)); |
105
|
|
|
} |
106
|
|
|
|
107
|
|
|
return $responseData; |
108
|
|
|
} |
109
|
|
|
|
110
|
|
|
public function denormalizeObject($hydrationClass, $dataObject, $isList = false) |
111
|
|
|
{ |
112
|
|
|
if (!$isList) { |
113
|
|
|
$dataObject = [$dataObject]; |
114
|
|
|
} |
115
|
|
|
|
116
|
|
|
$result = []; |
117
|
|
|
|
118
|
|
|
foreach ($dataObject as $data) { |
119
|
|
|
$result[] = $this->serializer->denormalize($data, $hydrationClass, null, [ |
120
|
|
|
ObjectNormalizer::DISABLE_TYPE_ENFORCEMENT => false, |
121
|
|
|
]); |
122
|
|
|
} |
123
|
|
|
|
124
|
|
|
if ($isList) { |
125
|
|
|
return $result; |
126
|
|
|
} |
127
|
|
|
|
128
|
|
|
return current($result); |
129
|
|
|
} |
130
|
|
|
|
131
|
|
|
/** |
132
|
|
|
* @return Serializer |
133
|
|
|
*/ |
134
|
|
|
public function getSerializer(): Serializer |
135
|
|
|
{ |
136
|
|
|
return $this->serializer; |
137
|
|
|
} |
138
|
|
|
} |
139
|
|
|
|
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..