forked from yiisoft/yii2-httpclient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMessage.php
338 lines (312 loc) · 9.39 KB
/
Message.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
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
<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace yii\httpclient;
use yii\base\Component;
use yii\base\ErrorHandler;
use yii\web\Cookie;
use yii\web\CookieCollection;
use yii\web\HeaderCollection;
use Yii;
/**
* Message represents a base HTTP message.
*
* @property string $content Raw body.
* @property CookieCollection|Cookie[] $cookies The cookie collection. Note that the type of this property
* differs in getter and setter. See [[getCookies()]] and [[setCookies()]] for details.
* @property mixed $data Content data fields.
* @property string $format Body format name.
* @property HeaderCollection $headers The header collection. Note that the type of this property differs in
* getter and setter. See [[getHeaders()]] and [[setHeaders()]] for details.
*
* @author Paul Klimov <[email protected]>
* @since 2.0
*/
class Message extends Component
{
/**
* @var Client owner client instance.
*/
public $client;
/**
* @var HeaderCollection headers.
*/
private $_headers;
/**
* @var CookieCollection cookies.
*/
private $_cookies;
/**
* @var string|null raw content
*/
private $_content;
/**
* @var mixed content data
*/
private $_data;
/**
* @var string content format name
*/
private $_format;
/**
* Sets the HTTP headers associated with HTTP message.
* @param array|HeaderCollection $headers headers collection or headers list in format: [headerName => headerValue]
* @return $this self reference.
*/
public function setHeaders($headers)
{
$this->_headers = $headers;
return $this;
}
/**
* Returns the header collection.
* The header collection contains the HTTP headers associated with HTTP message.
* @return HeaderCollection the header collection
*/
public function getHeaders()
{
if (!is_object($this->_headers)) {
$headerCollection = new HeaderCollection();
if (is_array($this->_headers)) {
foreach ($this->_headers as $name => $value) {
if (is_int($name)) {
// parse raw header :
$rawHeader = $value;
if (($separatorPos = strpos($rawHeader, ':')) !== false) {
$name = strtolower(trim(substr($rawHeader, 0, $separatorPos)));
$value = trim(substr($rawHeader, $separatorPos + 1));
$headerCollection->add($name, $value);
} elseif (strpos($rawHeader, 'HTTP/') === 0) {
$parts = explode(' ', $rawHeader, 3);
$headerCollection->add('http-code', $parts[1]);
} else {
$headerCollection->add('raw', $rawHeader);
}
} else {
$headerCollection->set($name, $value);
}
}
}
$this->_headers = $headerCollection;
}
return $this->_headers;
}
/**
* Adds more headers to the already defined ones.
* @param array $headers additional headers in format: [headerName => headerValue]
* @return $this self reference.
*/
public function addHeaders(array $headers)
{
$headerCollection = $this->getHeaders();
foreach ($headers as $name => $value) {
$headerCollection->add($name, $value);
}
return $this;
}
/**
* Checks of HTTP message contains any header.
* Using this method you are able to check cookie presence without instantiating [[HeaderCollection]].
* @return bool whether message contains any header.
*/
public function hasHeaders()
{
if (is_object($this->_headers)) {
return $this->_headers->getCount() > 0;
}
return !empty($this->_headers);
}
/**
* Sets the cookies associated with HTTP message.
* @param CookieCollection|Cookie[]|array $cookies cookie collection or cookies list.
* @return $this self reference.
*/
public function setCookies($cookies)
{
$this->_cookies = $cookies;
return $this;
}
/**
* Returns the cookie collection.
* The cookie collection contains the cookies associated with HTTP message.
* @return CookieCollection|Cookie[] the cookie collection.
*/
public function getCookies()
{
if (!is_object($this->_cookies)) {
$cookieCollection = new CookieCollection();
if (is_array($this->_cookies)) {
foreach ($this->_cookies as $cookie) {
if (!is_object($cookie)) {
$cookie = new Cookie($cookie);
}
$cookieCollection->add($cookie);
}
}
$this->_cookies = $cookieCollection;
}
return $this->_cookies;
}
/**
* Adds more cookies to the already defined ones.
* @param Cookie[]|array $cookies additional cookies.
* @return $this self reference.
*/
public function addCookies(array $cookies)
{
$cookieCollection = $this->getCookies();
foreach ($cookies as $cookie) {
if (!is_object($cookie)) {
$cookie = new Cookie($cookie);
}
$cookieCollection->add($cookie);
}
return $this;
}
/**
* Checks of HTTP message contains any cookie.
* Using this method you are able to check cookie presence without instantiating [[CookieCollection]].
* @return bool whether message contains any cookie.
*/
public function hasCookies()
{
if (is_object($this->_cookies)) {
return $this->_cookies->getCount() > 0;
}
return !empty($this->_cookies);
}
/**
* Sets the HTTP message raw content.
* @param string $content raw content.
* @return $this self reference.
*/
public function setContent($content)
{
$this->_content = $content;
return $this;
}
/**
* Returns HTTP message raw content.
* @return string raw body.
*/
public function getContent()
{
return $this->_content;
}
/**
* Sets the data fields, which composes message content.
* @param mixed $data content data fields.
* @return $this self reference.
*/
public function setData($data)
{
$this->_data = $data;
return $this;
}
/**
* Returns the data fields, parsed from raw content.
* @return mixed content data fields.
*/
public function getData()
{
return $this->_data;
}
/**
* Adds data fields to the existing ones.
* @param array $data additional content data fields.
* @return $this self reference.
* @since 2.0.1
*/
public function addData($data)
{
if (empty($this->_data)) {
$this->_data = $data;
} else {
$this->_data = array_merge($this->_data, $data);
}
return $this;
}
/**
* Sets body format.
* @param string $format body format name.
* @return $this self reference.
*/
public function setFormat($format)
{
$this->_format = $format;
return $this;
}
/**
* Returns body format.
* @return string body format name.
*/
public function getFormat()
{
if ($this->_format === null) {
$this->_format = $this->defaultFormat();
}
return $this->_format;
}
/**
* Returns default format name.
* @return string default format name.
*/
protected function defaultFormat()
{
return Client::FORMAT_URLENCODED;
}
/**
* Composes raw header lines from [[headers]].
* Each line will be a string in format: 'header-name: value'.
* @return array raw header lines.
*/
public function composeHeaderLines()
{
if (!$this->hasHeaders()) {
return [];
}
$headers = [];
foreach ($this->getHeaders() as $name => $values) {
$name = str_replace(' ', '-', ucwords(str_replace('-', ' ', $name)));
foreach ($values as $value) {
$headers[] = "$name: $value";
}
}
return $headers;
}
/**
* Returns string representation of this HTTP message.
* @return string the string representation of this HTTP message.
*/
public function toString()
{
$result = '';
if ($this->hasHeaders()) {
$headers = $this->composeHeaderLines();
$result .= implode("\n", $headers);
}
$content = $this->getContent();
if ($content !== null) {
$result .= "\n\n" . $content;
}
return $result;
}
/**
* PHP magic method that returns the string representation of this object.
* @return string the string representation of this object.
*/
public function __toString()
{
// __toString cannot throw exception
// use trigger_error to bypass this limitation
try {
return $this->toString();
} catch (\Exception $e) {
ErrorHandler::convertExceptionToError($e);
return '';
}
}
}