-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathAbstractApi.php
130 lines (115 loc) · 3.58 KB
/
AbstractApi.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<?php
/**
* (c) Packagist Conductors GmbH <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace PrivatePackagist\ApiClient\Api;
use PrivatePackagist\ApiClient\Client;
use PrivatePackagist\ApiClient\HttpClient\Message\ResponseMediator;
abstract class AbstractApi
{
/** @var Client */
protected $client;
/** @var ResponseMediator */
private $responseMediator;
public function __construct(Client $client, ?ResponseMediator $responseMediator = null)
{
$this->client = $client;
$this->responseMediator = $responseMediator ?: new ResponseMediator();
}
/**
* @param string $path
* @param array $parameters
* @param array $headers
* @return array|string
*/
protected function get($path, array $parameters = [], array $headers = [])
{
if (count($parameters) > 0) {
$path .= '?'.http_build_query($parameters);
}
$response = $this->client->getHttpClient()->get(
$path,
array_merge($headers, [
'Accept' => 'application/json',
'Content-Type' => 'application/json',
])
);
return $this->responseMediator->getContent($response);
}
/**
* @param string $path
* @param array $parameters
* @param array $headers
* @return array|string
*/
protected function post($path, array $parameters = [], array $headers = [])
{
$response = $this->client->getHttpClient()->post(
$path,
array_merge($headers, [
'Accept' => 'application/json',
'Content-Type' => 'application/json',
]),
$this->createJsonBody($parameters)
);
return $this->responseMediator->getContent($response);
}
protected function postFile($path, $rawFileContent, array $headers = [])
{
$response = $this->client->getHttpClient()->post(
$path,
array_merge($headers, [
'Accept' => 'application/json',
]),
$rawFileContent
);
return $this->responseMediator->getContent($response);
}
/**
* @param string $path
* @param array $parameters
* @param array $headers
* @return array|string
*/
protected function put($path, array $parameters = [], array $headers = [])
{
$response = $this->client->getHttpClient()->put(
$path,
array_merge($headers, [
'Accept' => 'application/json',
'Content-Type' => 'application/json',
]),
$this->createJsonBody($parameters)
);
return $this->responseMediator->getContent($response);
}
/**
* @param string $path
* @param array $parameters
* @param array $headers
* @return array|string
*/
protected function delete($path, array $parameters = [], array $headers = [])
{
$response = $this->client->getHttpClient()->delete(
$path,
array_merge($headers, [
'Accept' => 'application/json',
'Content-Type' => 'application/json',
]),
$this->createJsonBody($parameters)
);
return $this->responseMediator->getContent($response);
}
/**
* @param array $parameters
* @return null|string
*/
protected function createJsonBody(array $parameters)
{
return (count($parameters) === 0) ? null : json_encode($parameters);
}
}