This repository was archived by the owner on Oct 31, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathRestRequest.php
More file actions
287 lines (256 loc) · 7.93 KB
/
RestRequest.php
File metadata and controls
287 lines (256 loc) · 7.93 KB
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
<?php
/**
* RestRequest class file.
*/
namespace LiveChat\Api\Rest;
/**
* RestRequest class.
*/
class RestRequest
{
/**
* @var string accept type header
*/
const ACCEPT_TYPE = 'application/json';
/**
* @var integer request lenght
*/
const REQUEST_LENGTH = 0;
/**
* @var string base API url
*/
const BASE_API_URL = 'https://api.livechatinc.com/';
private $url;
private $method;
private $requestBody;
private $username;
private $password;
private $error;
private $responseBody;
private $responseInfo;
private $proxy;
private $proxyPort;
/**
* Setting base request data.
*
* @param string $path
* @param string $method request method GET|POST|PUT|DELETE
* @param array $requestBody request body
* @param array $headers headers
*/
public function __construct($path, $method, array $requestBody, array $headers = array())
{
$this->url = self::BASE_API_URL . $path;
$this->headers = $headers;
// valid method
if (!in_array(strtoupper($method), array('GET', 'POST', 'PUT', 'DELETE'))) {
throw new \InvalidArgumentException('Current method (' . $method . ') is an invalid REST method.');
}
$this->method = strtoupper($method);
$this->buildRequestBody($requestBody);
}
/**
* Set password
* @param string $password
*/
public function setPassword($password)
{
$this->password = $password;
}
/**
* Set proxy
* @param string $proxy Url:Port
*/
public function setProxy($proxy)
{
$this->proxyPort = parse_url($proxy, PHP_URL_PORT) ?: 80;
$this->proxy = str_replace(':' . $this->proxyPort, '', $proxy);
}
/**
* Returns response body
* @return mixed
*/
public function getResponseBody()
{
return $this->responseBody;
}
/**
* @return boolean
* @see curl_getinfo()
*/
public function getResponseInfo()
{
return $this->responseInfo;
}
/**
* Set username
* @param string $username
*/
public function setUsername($username)
{
$this->username = $username;
}
/**
* Returns error.
* @return string the error message or '' (the empty string) if no error occurred.
*/
public function getError()
{
return $this->error;
}
/**
* Build request body.
* @param array $data
*/
private function buildRequestBody(array $data = array())
{
if (in_array($this->method, array('POST', 'PUT'))) {
$this->requestBody = http_build_query($data, '', '&');
}
}
/**
* Execute request
*
* @throws \InvalidArgumentException
*/
public function execute()
{
$ch = curl_init();
$this->setAuth($ch);
try {
$methodName = 'execute' . ucfirst(strtolower($this->method));
$this->{$methodName}($ch);
} catch (\InvalidArgumentException $e) {
curl_close($ch);
throw $e;
} catch (\Exception $e) {
curl_close($ch);
throw $e;
}
}
/**
* Get response.
* @return mixed
* @throws \Exception
*/
public function getResponse() {
if (false === ($response = $this->getResponseInfo())) {
return json_encode(array('error' => array('message' => 'Something went wrong.')));
}
$httpCode = (is_array($response) && array_key_exists('http_code', $response)) ? $response['http_code'] : null;
// Check if response HTTP code starts with `2` (200, 201, 202 codes)
if (preg_match('/^2/', $httpCode) == false) {
$this->throwException($httpCode);
}
return json_decode($this->getResponseBody());
}
/**
* Throw exception.
*
* @param integer $httpCode
* @throws \Exception
*/
private function throwException($httpCode) {
if (null === $httpCode){
throw new \Exception('Something went wrong. StatusCode is null.');
} else{
$errorResponseBody = json_decode($this->getResponseBody(), true);
$errorMessage = RestUtils::getStatusCodeMessage($httpCode) . '. ';
if (is_array($errorResponseBody)) {
if (array_key_exists('error', $errorResponseBody)) {
$errorMessage .= $errorResponseBody['error'] . '.';
} else if (array_key_exists('errors', $errorResponseBody)) {
$errorMessage .= (is_array($errorResponseBody['errors'])) ?
implode('. ', array_map('ucfirst', $errorResponseBody['errors'])) : $errorResponseBody['errors'];
$errorMessage .= '.';
}
}
throw new \Exception($errorMessage, $httpCode);
}
}
/**
* Execute request for GET method.
* @param $ch cURL handle
*/
private function executeGet(&$ch)
{
$this->doExecute($ch);
}
/**
* Execute request for POST method.
* @param $ch cURL handle
*/
private function executePost(&$ch)
{
curl_setopt($ch, CURLOPT_POSTFIELDS, $this->requestBody);
curl_setopt($ch, CURLOPT_POST, 1);
$this->doExecute($ch);
}
/**
* Execute request for PUT method.
* @param $ch cURL handle
*/
private function executePut(&$ch)
{
// Prepare the data for HTTP PUT
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'PUT');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Length: ' . self::REQUEST_LENGTH));
curl_setopt($ch, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $this->requestBody);
$this->doExecute($ch);
}
/**
* Execute request for DELETE method.
* @param $ch cURL handle
*/
private function executeDelete(&$ch)
{
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
$this->doExecute($ch);
}
/**
* Execute request.
* @param $curlHandle cURL handle
*/
private function doExecute(&$curlHandle)
{
$this->setCurlOpts($curlHandle);
$this->responseBody = curl_exec($curlHandle);
$this->responseInfo = curl_getinfo($curlHandle);
$this->error = curl_error($curlHandle);
curl_close($curlHandle);
}
/**
* Set cURL options.
* @param $curlHandle cURL handle
*/
private function setCurlOpts(&$curlHandle)
{
$headers = array('Accept' => self::ACCEPT_TYPE);
foreach ($this->headers as $key => $value) {
$headers[] = "$key: $value";
}
curl_setopt($curlHandle, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($curlHandle, CURLOPT_SSL_VERIFYHOST, 2);
curl_setopt($curlHandle, CURLOPT_TIMEOUT, 15);
curl_setopt($curlHandle, CURLOPT_URL, $this->url);
curl_setopt($curlHandle, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curlHandle, CURLOPT_HTTPHEADER, $headers);
if ($this->proxy && $this->proxyPort) {
curl_setopt($curlHandle, CURLOPT_PROXY, $this->proxy);
curl_setopt($curlHandle, CURLOPT_PROXYPORT, $this->proxyPort);
}
}
/**
* Set user authentication
* @param $curlHandle cURL handle
*/
private function setAuth(&$curlHandle)
{
if ($this->username !== null && $this->password !== null) {
curl_setopt($curlHandle, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
curl_setopt($curlHandle, CURLOPT_USERPWD, $this->username . ':' . $this->password);
}
}
}