forked from evaisse/SimpleHttpBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStatement.php
More file actions
462 lines (389 loc) · 10.9 KB
/
Statement.php
File metadata and controls
462 lines (389 loc) · 10.9 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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
<?php
/**
* A statement that prepare a request and execute them.
* The statement contains request, response and errors
*
* User: evaisse
* Date: 29/05/15
* Time: 14:21
*/
namespace evaisse\SimpleHttpBundle\Http;
use evaisse\SimpleHttpBundle\Http\Exception\RequestNotSentException;
use React\Promise\Deferred;
use React\Promise\Promise;
use Symfony\Component\DependencyInjection\ContainerAwareTrait;
use Symfony\Component\EventDispatcher\EventDispatcher;
use Symfony\Component\HttpFoundation\File\File;
use Symfony\Component\HttpFoundation\File\UploadedFile;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpKernel\Exception\HttpException;
use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
class Statement
{
/** @var Kernel */
protected $httpKernel;
/**
* $request : Service Request
*
* @var Request
* @access protected
*/
protected $request;
/**
* $error : Error
*
* @var Error
* @access protected
*/
protected $error;
/**
* @var Response statement response
* @access protected
*/
protected $response;
/**
* @var Promise A Deferred object
*/
protected $promise;
/**
* @var \React\Promise\Deferred A Promise Deferred control object
*/
protected $deferred;
/**
* @var integer timeout in milliseconds
*/
protected $timeout;
/**
* true if request has already been sent, false otherwsie
* @var boolean true if request has already been sent, false otherwsie
*/
protected $sent;
/**
* @var boolean ignore ssl verification and notifications
*/
protected $ignoreSslErrors;
/**
* @var EventDispatcherInterface dispatcher for http transaction events
*/
protected $eventDispatcher;
/**
* Ignore SSL verification and notifications
*
* @return self
*/
public function ignoreSslErrors()
{
$this->ignoreSslErrors = true;
return $this;
}
/**
* Set verification and notifications on ssl profiles
* @return boolean
*/
public function getIgnoreSslErrors()
{
return $this->ignoreSslErrors;
}
/**
* Get verification and notifications on ssl profiles
*
* @param boolean $ignoreSslErrors
* @return self
*/
public function setIgnoreSslErrors($ignoreSslErrors)
{
$this->ignoreSslErrors = $ignoreSslErrors;
return $this;
}
/**
* @param Kernel $httpKernel
*/
public function setHttpKernel(Kernel $httpKernel): void
{
$this->httpKernel = $httpKernel;
}
/**
*
* @param Request $request An http request object to send
*/
public function __construct(Request $request, EventDispatcherInterface $eventDispatcher, ?Kernel $httpKernel = null)
{
$this->setRequest($request);
$this->deferred = new Deferred();
$this->promise = $this->deferred->promise();
$this->eventDispatcher = $eventDispatcher;
$this->httpKernel = $httpKernel;
}
/**
* Get global (connect+wait+transfer) request timeout in milliseconds
*
* @return int timeout in milliseconds
*/
public function getTimeout()
{
return $this->timeout;
}
/**
* Set global (connect+wait+transfer) request timeout in milliseconds
*
* @param int $timeout timeout in milliseconds
* @return self
*/
public function setTimeout($timeout)
{
$this->timeout = (int)$timeout;
return $this;
}
/**
* @return Promise A promise object that allow to decouple your execution from async execution
*/
public function getPromise()
{
return $this->promise;
}
/**
* Get service result if define
*
* @return mixed
*
* @throws \Symfony\Component\HttpKernel\Exception\HttpException
*/
public function getResult()
{
if (!$this->getResponse() && !$this->hasError()) {
throw new RequestNotSentException($this->request, "Request has not been sent yet");
}
if (!$this->hasError()) {
return $this->getResponse()->getResult();
} else {
throw $this->getError();
}
}
/**
* @return EventDispatcherInterface event dispatcher for internal http transactions events
*/
public function getEventDispatcher()
{
return $this->eventDispatcher;
}
/**
* Set value for $request
*
* @param Request $value value to set to request
* @return Object instance for method chaining
*/
protected function setRequest(Request $value)
{
$this->request = $value;
return $this;
}
/**
* Get value for $request
* @return Request Service Request
*/
public function getRequest()
{
return $this->request;
}
/**
* Set value for $response
*
* @param Response $response value to set to response
* @return Object instance for method chaining
*/
public function setResponse(Response $response)
{
$this->response = $response;
if ($this->response->hasError()) {
$this->setError($this->response->getError());
} else {
$this->deferred->resolve($response->getResult());
}
return $this;
}
/**
* @param string $json a json string, if omitted, request params will be used to built json string
* @return self
*/
public function json($json = null)
{
$this->request->headers->set('content-type', 'application/json');
$this->request->headers->set('charset', 'utf-8');
$this->request->headers->set('accept', 'application/json');
if ($this->request->getMethod() !== "GET") {
$requestPayload = $this->request->request->all();
if (func_num_args() === 0) {
if (empty($requestPayload)) {
$requestPayload = (object) $requestPayload;
}
$json = json_encode($requestPayload);
} elseif (is_string($json)) {
$json = (string) $json;
} else {
$json = json_encode(null);
}
$this->request->setContent($json);
}
return $this;
}
/**
* Get value for $response
* @return Response Service response
*/
public function getResponse()
{
return $this->response;
}
/**
* Set value for $error
*
* @param HttpException $value value to set to error
* @return Object instance for method chaining
*/
public function setError(HttpException $value)
{
$this->error = $value;
$this->deferred->reject($this->error);
return $this;
}
/**
* Get value for $error
* @return HttpException Error
*/
public function getError()
{
return $this->error;
}
/**
* If service has error
*
* @return boolean true if has error, false otherwise
*/
public function hasError()
{
return (bool)$this->error;
}
/**
* Get unique id for this service
* @return string string representation of current service
*/
public function getUid()
{
return md5(spl_object_hash($this));
}
/**
* @param Kernel $httpKernel
* @return mixed
* @throws Error
* @throws Exception
*/
public function execute(?Kernel $httpKernel = null)
{
$this->sent = true;
$http = $httpKernel ? $httpKernel : $this->httpKernel;
$http->execute([$this]);
if ($this->hasError()) {
throw $this->getError();
}
return $this;
}
/**
* @return boolean
*/
public function isSent()
{
return $this->sent;
}
/**
* @param boolean $sent
*/
public function setSent($sent)
{
$this->sent = $sent;
}
/**
* @param string $key multi-part form item key name
* @param string $filepath path to file
* @param string|null $mimetype file mimetype, if none provided, will be guess from filepath
* @param string|null $clientName optionnal client filename, if none provided, basename of filepath will be used
*/
public function attachFile($key, $filepath, $mimetype = null, $clientName = null)
{
$clientName = $clientName ? $clientName : basename($filepath);
$file = new File($filepath, true);
$file = new UploadedFile(
$file->getRealPath(),
$clientName,
$file->getMimeType(),
0);
$this->getRequest()->files->set($key, $file);
}
/**
* A callbackto call on completed transaction, ethier on success or failure
*
* @param callable $callable callable proxyied to getPromise()->then($callable) to call on completed transaction, ethier on success or failure
* @return self
*/
public function onSuccess(callable $callable)
{
$this->getPromise()->then($callable);
return $this;
}
/**
* Assign a callback on error
*
* @param callable $callable callable proxyied to getPromise()->otherwise($callable) to call on completed transaction, ethier on success or failure
* @return self
*/
public function onError(callable $callable)
{
$this->getPromise()->then(null, $callable);
return $this;
}
/**
* Assign a callback on progress notification
*
* @param callable $callable callable proxyied to getPromise()->progress($callable) to call on completed transaction, ethier on success or failure
* @return self
*/
public function onProgress(callable $callable)
{
$this->getPromise()->then(null, null, $callable);
return $this;
}
/**
* Assign a callback to on completed transaction, ethier on success or failure
*
* @param callable $callable callable proxyied to getPromise()->then($callable) to call on completed transaction, ethier on success or failure
* @return self
*/
public function onFinish(callable $callable)
{
if (method_exists(object_or_class: $this->getPromise(), method: 'finally')) {
$this->getPromise()->finally($callable);
} else {
$this->getPromise()->always($callable);
}
return $this;
}
/**
* @param string $consumerKey
* @param string $consumerSecret
*/
public function authorizeOAuth($consumerKey, $consumerSecret)
{
return $this;
}
/**
* @param string $key The key
* @param string|array $values The value or an array of values
* @param bool $replace Whether to replace the actual value or not (true by default)
*
* @return self
*/
public function setHeader($key, $values, $replace = true)
{
$this->request->headers->set($key, $values, $replace);
return $this;
}
}