forked from yiisoft/yii2-httpclient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUrlEncodedFormatter.php
63 lines (55 loc) · 2.01 KB
/
UrlEncodedFormatter.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
<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace yii\httpclient;
use Yii;
use yii\base\Object;
/**
* UrlEncodedFormatter formats HTTP message as 'application/x-www-form-urlencoded'.
*
* @author Paul Klimov <klimov.paul@gmail.com>
* @since 2.0
*/
class UrlEncodedFormatter extends Object implements FormatterInterface
{
/**
* @var int URL encoding type.
* Possible values are:
* - PHP_QUERY_RFC1738 - encoding is performed per 'RFC 1738' and the 'application/x-www-form-urlencoded' media type,
* which implies that spaces are encoded as plus (+) signs. This is most common encoding type used by most web
* applications.
* - PHP_QUERY_RFC3986 - then encoding is performed according to 'RFC 3986', and spaces will be percent encoded (%20).
* This encoding type is required by OpenID and OAuth protocols.
*/
public $encodingType = PHP_QUERY_RFC1738;
/**
* @var string the content charset. If not set, it will use the value of [[\yii\base\Application::charset]].
* @since 2.0.1
*/
public $charset;
/**
* @inheritdoc
*/
public function format(Request $request)
{
$data = (array)$request->getData();
$content = http_build_query($data, '', '&', $this->encodingType);
if (strcasecmp('get', $request->getMethod()) === 0) {
if (!empty($content)) {
$request->setFullUrl(null);
$url = $request->getFullUrl();
$url .= (strpos($url, '?') === false) ? '?' : '&';
$url .= $content;
$request->setFullUrl($url);
}
return $request;
}
$charset = $this->charset === null ? Yii::$app->charset : $this->charset;
$request->getHeaders()->set('Content-Type', 'application/x-www-form-urlencoded; charset=' . $charset);
$request->setContent($content);
return $request;
}
}