-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathRequest.php
More file actions
82 lines (61 loc) · 1.67 KB
/
Request.php
File metadata and controls
82 lines (61 loc) · 1.67 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
<?php
namespace App\HttpClient;
class Request
{
private const DEFAULT_USER_AGENT = 'PHP.net HTTP client';
private const DEFAULT_POST_CONTENT_TYPE = 'application/x-www-form-urlencoded';
private $uri;
private $method;
private $headers = [];
private $body;
public function __construct(string $uri, string $method = 'GET')
{
$this->uri = $uri;
$this->method = $method;
$this->headers['user-agent'] = new Header('User-Agent', self::DEFAULT_USER_AGENT);
if ($method === 'POST') {
$this->headers['content-type'] = new Header('Content-Type', self::DEFAULT_POST_CONTENT_TYPE);
}
}
public function addHeaders(Header ...$headers): self
{
foreach ($headers as $header) {
$this->headers[$header->getNormalizedKey()] = $header;
}
return $this;
}
public function setBody(string $body): self
{
$this->body = $body;
return $this;
}
public function getUri(): string
{
return $this->uri;
}
public function getMethod(): string
{
return $this->method;
}
/**
* @return Header[]
*/
public function getHeaders(): array
{
return $this->headers;
}
public function getHeadersAsString(): string
{
return array_reduce($this->headers, function (string $headers, Header $header) {
$headers .= sprintf("%s: %s\r\n", $header->getKey(), $header->getValue());
return $headers;
}, '');
}
public function getBody(): string
{
if ($this->body === null) {
return '';
}
return $this->body;
}
}