Request.php 43.2 KB
Newer Older
Qiang Xue committed
1 2 3
<?php
/**
 * @link http://www.yiiframework.com/
Qiang Xue committed
4
 * @copyright Copyright (c) 2008 Yii Software LLC
Qiang Xue committed
5 6 7
 * @license http://www.yiiframework.com/license/
 */

Qiang Xue committed
8
namespace yii\web;
Qiang Xue committed
9

Qiang Xue committed
10 11
use Yii;
use yii\base\InvalidConfigException;
12
use yii\helpers\Security;
13
use yii\helpers\StringHelper;
Qiang Xue committed
14

Qiang Xue committed
15
/**
16 17 18 19 20
 * The web Request class represents an HTTP request
 *
 * It encapsulates the $_SERVER variable and resolves its inconsistency among different Web servers.
 * Also it provides an interface to retrieve request parameters from $_POST, $_GET, $_COOKIES and REST
 * parameters sent via other HTTP methods like PUT or DELETE.
21
 *
22
 * Request is configured as an application component in [[\yii\web\Application]] by default.
23 24
 * You can access that instance via `Yii::$app->request`.
 *
25
 * @property string $absoluteUrl The currently requested absolute URL. This property is read-only.
26 27 28
 * @property array $acceptableContentTypes The content types ordered by the quality score. Types with the
 * highest scores will be returned first. The array keys are the content types, while the array values are the
 * corresponding quality score and other parameters as given in the header.
29
 * @property array $acceptableLanguages The languages ordered by the preference level. The first element
30
 * represents the most preferred language.
31 32 33 34
 * @property string $authPassword The password sent via HTTP authentication, null if the password is not
 * given. This property is read-only.
 * @property string $authUser The username sent via HTTP authentication, null if the username is not given.
 * This property is read-only.
35
 * @property string $baseUrl The relative URL for the application.
36 37 38
 * @property array $bodyParams The request parameters given in the request body.
 * @property string $contentType Request content-type. Null is returned if this information is not available.
 * This property is read-only.
39 40 41
 * @property string $cookieValidationKey The secret key used for cookie validation. If it was not set
 * previously, a random key will be generated and used.
 * @property CookieCollection $cookies The cookie collection. This property is read-only.
42
 * @property string $csrfToken The token used to perform CSRF validation. This property is read-only.
Qiang Xue committed
43 44
 * @property string $csrfTokenFromHeader The CSRF token sent via [[CSRF_HEADER]] by browser. Null is returned
 * if no such header is sent. This property is read-only.
45
 * @property HeaderCollection $headers The header collection. This property is read-only.
46 47 48 49 50 51
 * @property string $hostInfo Schema and hostname part (with port number if needed) of the request URL (e.g.
 * `http://www.yiiframework.com`).
 * @property boolean $isAjax Whether this is an AJAX (XMLHttpRequest) request. This property is read-only.
 * @property boolean $isDelete Whether this is a DELETE request. This property is read-only.
 * @property boolean $isFlash Whether this is an Adobe Flash or Adobe Flex request. This property is
 * read-only.
52 53 54
 * @property boolean $isGet Whether this is a GET request. This property is read-only.
 * @property boolean $isHead Whether this is a HEAD request. This property is read-only.
 * @property boolean $isOptions Whether this is a OPTIONS request. This property is read-only.
55 56 57 58 59 60 61 62 63
 * @property boolean $isPatch Whether this is a PATCH request. This property is read-only.
 * @property boolean $isPost Whether this is a POST request. This property is read-only.
 * @property boolean $isPut Whether this is a PUT request. This property is read-only.
 * @property boolean $isSecureConnection If the request is sent via secure channel (https). This property is
 * read-only.
 * @property string $method Request method, such as GET, POST, HEAD, PUT, PATCH, DELETE. The value returned is
 * turned into upper case. This property is read-only.
 * @property string $pathInfo Part of the request URL that is after the entry script and before the question
 * mark. Note, the returned path info is already URL-decoded.
64
 * @property integer $port Port number for insecure requests.
65
 * @property array $queryParams The request GET parameter values.
66 67 68
 * @property string $queryString Part of the request URL that is after the question mark. This property is
 * read-only.
 * @property string $rawBody The request body. This property is read-only.
69
 * @property string $rawCsrfToken The random token for CSRF validation. This property is read-only.
70
 * @property string $referrer URL referrer, null if not present. This property is read-only.
71 72 73
 * @property string $scriptFile The entry script file path.
 * @property string $scriptUrl The relative URL of the entry script.
 * @property integer $securePort Port number for secure requests.
74 75
 * @property string $serverName Server name. This property is read-only.
 * @property integer $serverPort Server port number. This property is read-only.
76
 * @property string $url The currently requested relative URL. Note that the URI returned is URL-encoded.
77 78 79
 * @property string $userAgent User agent, null if not present. This property is read-only.
 * @property string $userHost User host name, null if cannot be determined. This property is read-only.
 * @property string $userIP User IP address. This property is read-only.
80
 *
Qiang Xue committed
81
 * @author Qiang Xue <qiang.xue@gmail.com>
Qiang Xue committed
82
 * @since 2.0
Qiang Xue committed
83
 */
Qiang Xue committed
84
class Request extends \yii\base\Request
Qiang Xue committed
85
{
86 87 88
	/**
	 * The name of the HTTP header for sending CSRF token.
	 */
Qiang Xue committed
89
	const CSRF_HEADER = 'X-CSRF-Token';
90 91 92 93
	/**
	 * The length of the CSRF token mask.
	 */
	const CSRF_MASK_LENGTH = 8;
94

95

Qiang Xue committed
96
	/**
97
	 * @var boolean whether to enable CSRF (Cross-Site Request Forgery) validation. Defaults to true.
98
	 * When CSRF validation is enabled, forms submitted to an Yii Web application must be originated
Qiang Xue committed
99 100 101
	 * from the same application. If not, a 400 HTTP exception will be raised.
	 *
	 * Note, this feature requires that the user client accepts cookie. Also, to use this feature,
102
	 * forms submitted via POST method must contain a hidden input whose name is specified by [[csrfParam]].
Qiang Xue committed
103
	 * You may use [[\yii\web\Html::beginForm()]] to generate his hidden input.
104
	 *
105
	 * In JavaScript, you may get the values of [[csrfParam]] and [[csrfToken]] via `yii.getCsrfParam()` and
106 107
	 * `yii.getCsrfToken()`, respectively. The [[\yii\web\YiiAsset]] asset must be registered.
	 *
108
	 * @see Controller::enableCsrfValidation
Qiang Xue committed
109 110
	 * @see http://en.wikipedia.org/wiki/Cross-site_request_forgery
	 */
111
	public $enableCsrfValidation = true;
Qiang Xue committed
112
	/**
113
	 * @var string the name of the token used to prevent CSRF. Defaults to '_csrf'.
114
	 * This property is used only when [[enableCsrfValidation]] is true.
Qiang Xue committed
115
	 */
116
	public $csrfParam = '_csrf';
Qiang Xue committed
117 118 119 120
	/**
	 * @var array the configuration of the CSRF cookie. This property is used only when [[enableCsrfValidation]] is true.
	 * @see Cookie
	 */
Alexander Makarov committed
121
	public $csrfCookie = ['httpOnly' => true];
Qiang Xue committed
122
	/**
Qiang Xue committed
123
	 * @var boolean whether cookies should be validated to ensure they are not tampered. Defaults to true.
Qiang Xue committed
124
	 */
Qiang Xue committed
125
	public $enableCookieValidation = true;
Qiang Xue committed
126
	/**
127
	 * @var string|boolean the name of the POST parameter that is used to indicate if a request is a PUT, PATCH or DELETE
128
	 * request tunneled through POST. Default to '_method'.
Taras Gudz committed
129
	 * @see getMethod()
130
	 * @see getBodyParams()
Qiang Xue committed
131
	 */
132
	public $methodParam = '_method';
Daniel Schmidt committed
133
	/**
134
	 * @var array the parsers for converting the raw HTTP request body into [[bodyParams]].
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
	 * The array keys are the request `Content-Types`, and the array values are the
	 * corresponding configurations for [[Yii::createObject|creating the parser objects]].
	 * A parser must implement the [[RequestParserInterface]].
	 *
	 * To enable parsing for JSON requests you can use the [[JsonParser]] class like in the following example:
	 *
	 * ```
	 * [
	 *     'application/json' => 'yii\web\JsonParser',
	 * ]
	 * ```
	 *
	 * To register a parser for parsing all request types you can use `'*'` as the array key.
	 * This one will be used as a fallback in case no other types match.
	 *
150
	 * @see getBodyParams()
Daniel Schmidt committed
151 152
	 */
	public $parsers = [];
153

Carsten Brandt committed
154 155 156
	/**
	 * @var CookieCollection Collection of request cookies.
	 */
Qiang Xue committed
157
	private $_cookies;
158 159 160 161
	/**
	 * @var array the headers in this collection (indexed by the header names)
	 */
	private $_headers;
Qiang Xue committed
162

Carsten Brandt committed
163

Qiang Xue committed
164 165 166 167 168 169 170 171 172 173
	/**
	 * Resolves the current request into a route and the associated parameters.
	 * @return array the first element is the route, and the second is the associated parameters.
	 * @throws HttpException if the request cannot be resolved.
	 */
	public function resolve()
	{
		$result = Yii::$app->getUrlManager()->parseRequest($this);
		if ($result !== false) {
			list ($route, $params) = $result;
174
			$_GET = array_merge($_GET, $params);
Alexander Makarov committed
175
			return [$route, $_GET];
Qiang Xue committed
176
		} else {
177
			throw new NotFoundHttpException(Yii::t('yii', 'Page not found.'));
Qiang Xue committed
178 179 180
		}
	}

181 182 183 184 185 186 187 188 189 190 191
	/**
	 * Returns the header collection.
	 * The header collection contains incoming HTTP headers.
	 * @return HeaderCollection the header collection
	 */
	public function getHeaders()
	{
		if ($this->_headers === null) {
			$this->_headers = new HeaderCollection;
			if (function_exists('getallheaders')) {
				$headers = getallheaders();
192 193
			} elseif (function_exists('http_get_request_headers')) {
				$headers = http_get_request_headers();
194 195
			} else {
				foreach ($_SERVER as $name => $value) {
196
					if (strncmp($name, 'HTTP_', 5) === 0) {
197 198 199 200
						$name = str_replace(' ', '-', ucwords(strtolower(str_replace('_', ' ', substr($name, 5)))));
						$this->_headers->add($name, $value);
					}
				}
201 202 203 204
				return $this->_headers;
			}
			foreach ($headers as $name => $value) {
				$this->_headers->add($name, $value);
205 206
			}
		}
207

208 209 210
		return $this->_headers;
	}

Qiang Xue committed
211
	/**
212 213
	 * Returns the method of the current request (e.g. GET, POST, HEAD, PUT, PATCH, DELETE).
	 * @return string request method, such as GET, POST, HEAD, PUT, PATCH, DELETE.
Qiang Xue committed
214 215
	 * The value returned is turned into upper case.
	 */
216
	public function getMethod()
Qiang Xue committed
217
	{
218 219
		if (isset($_POST[$this->methodParam])) {
			return strtoupper($_POST[$this->methodParam]);
220 221
		} elseif (isset($_SERVER['HTTP_X_HTTP_METHOD_OVERRIDE'])) {
			return strtoupper($_SERVER['HTTP_X_HTTP_METHOD_OVERRIDE']);
Qiang Xue committed
222 223 224 225 226
		} else {
			return isset($_SERVER['REQUEST_METHOD']) ? strtoupper($_SERVER['REQUEST_METHOD']) : 'GET';
		}
	}

227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
	/**
	 * Returns whether this is a GET request.
	 * @return boolean whether this is a GET request.
	 */
	public function getIsGet()
	{
		return $this->getMethod() === 'GET';
	}

	/**
	 * Returns whether this is an OPTIONS request.
	 * @return boolean whether this is a OPTIONS request.
	 */
	public function getIsOptions()
	{
		return $this->getMethod() === 'OPTIONS';
	}
244

245 246 247 248 249 250 251 252
	/**
	 * Returns whether this is a HEAD request.
	 * @return boolean whether this is a HEAD request.
	 */
	public function getIsHead()
	{
		return $this->getMethod() === 'HEAD';
	}
253

Qiang Xue committed
254 255 256 257
	/**
	 * Returns whether this is a POST request.
	 * @return boolean whether this is a POST request.
	 */
Qiang Xue committed
258
	public function getIsPost()
Qiang Xue committed
259
	{
260
		return $this->getMethod() === 'POST';
Qiang Xue committed
261 262 263 264 265 266
	}

	/**
	 * Returns whether this is a DELETE request.
	 * @return boolean whether this is a DELETE request.
	 */
Qiang Xue committed
267
	public function getIsDelete()
Qiang Xue committed
268
	{
269
		return $this->getMethod() === 'DELETE';
Qiang Xue committed
270 271 272 273 274 275
	}

	/**
	 * Returns whether this is a PUT request.
	 * @return boolean whether this is a PUT request.
	 */
Qiang Xue committed
276
	public function getIsPut()
Qiang Xue committed
277
	{
278
		return $this->getMethod() === 'PUT';
Qiang Xue committed
279 280
	}

281 282 283 284 285 286 287 288 289
	/**
	 * Returns whether this is a PATCH request.
	 * @return boolean whether this is a PATCH request.
	 */
	public function getIsPatch()
	{
		return $this->getMethod() === 'PATCH';
	}

Qiang Xue committed
290 291 292 293
	/**
	 * Returns whether this is an AJAX (XMLHttpRequest) request.
	 * @return boolean whether this is an AJAX (XMLHttpRequest) request.
	 */
Qiang Xue committed
294
	public function getIsAjax()
Qiang Xue committed
295 296 297 298
	{
		return isset($_SERVER['HTTP_X_REQUESTED_WITH']) && $_SERVER['HTTP_X_REQUESTED_WITH'] === 'XMLHttpRequest';
	}

tof06 committed
299
	/**
Qiang Xue committed
300 301
	 * Returns whether this is a PJAX request
	 * @return boolean whether this is a PJAX request
tof06 committed
302 303 304
	 */
	public function getIsPjax ()
	{
Qiang Xue committed
305
		return $this->getIsAjax() && !empty($_SERVER['HTTP_X_PJAX']);
tof06 committed
306 307
	}
	
Qiang Xue committed
308
	/**
Qiang Xue committed
309
	 * Returns whether this is an Adobe Flash or Flex request.
Qiang Xue committed
310 311
	 * @return boolean whether this is an Adobe Flash or Adobe Flex request.
	 */
Qiang Xue committed
312
	public function getIsFlash()
Qiang Xue committed
313 314 315 316 317
	{
		return isset($_SERVER['HTTP_USER_AGENT']) &&
			(stripos($_SERVER['HTTP_USER_AGENT'], 'Shockwave') !== false || stripos($_SERVER['HTTP_USER_AGENT'], 'Flash') !== false);
	}

318 319 320 321 322 323 324 325 326 327 328 329 330 331 332
	private $_rawBody;

	/**
	 * Returns the raw HTTP request body.
	 * @return string the request body
	 */
	public function getRawBody()
	{
		if ($this->_rawBody === null) {
			$this->_rawBody = file_get_contents('php://input');
		}
		return $this->_rawBody;
	}

	private $_bodyParams;
Qiang Xue committed
333 334

	/**
335
	 * Returns the request parameters given in the request body.
336 337 338 339
	 *
	 * Request parameters are determined using the parsers configured in [[parsers]] property.
	 * If no parsers are configured for the current [[contentType]] it uses the PHP function [[mb_parse_str()]]
	 * to parse the [[rawBody|request body]].
340
	 * @return array the request parameters given in the request body.
341
	 * @throws \yii\base\InvalidConfigException if a registered parser does not implement the [[RequestParserInterface]].
Taras Gudz committed
342
	 * @see getMethod()
343 344
	 * @see getBodyParam()
	 * @see setBodyParams()
Qiang Xue committed
345
	 */
346
	public function getBodyParams()
Qiang Xue committed
347
	{
348
		if ($this->_bodyParams === null) {
349
			$contentType = $this->getContentType();
350
			if (isset($_POST[$this->methodParam])) {
351
				$this->_bodyParams = $_POST;
352
				unset($this->_bodyParams[$this->methodParam]);
353 354 355 356 357
			} elseif (isset($this->parsers[$contentType])) {
				$parser = Yii::createObject($this->parsers[$contentType]);
				if (!($parser instanceof RequestParserInterface)) {
					throw new InvalidConfigException("The '$contentType' request parser is invalid. It must implement the yii\\web\\RequestParserInterface.");
				}
358
				$this->_bodyParams = $parser->parse($this->getRawBody(), $contentType);
359 360 361 362
			} elseif (isset($this->parsers['*'])) {
				$parser = Yii::createObject($this->parsers['*']);
				if (!($parser instanceof RequestParserInterface)) {
					throw new InvalidConfigException("The fallback request parser is invalid. It must implement the yii\\web\\RequestParserInterface.");
Daniel Schmidt committed
363
				}
364
				$this->_bodyParams = $parser->parse($this->getRawBody(), $contentType);
365 366 367
			} elseif ($this->getMethod() === 'POST') {
				// PHP has already parsed the body so we have all params in $_POST
				$this->_bodyParams = $_POST;
Qiang Xue committed
368
			} else {
369 370
				$this->_bodyParams = [];
				mb_parse_str($this->getRawBody(), $this->_bodyParams);
Qiang Xue committed
371 372
			}
		}
373
		return $this->_bodyParams;
Qiang Xue committed
374 375
	}

376 377 378 379 380 381 382 383 384 385
	/**
	 * Sets the request body parameters.
	 * @param array $values the request body parameters (name-value pairs)
	 * @see getBodyParam()
	 * @see getBodyParams()
	 */
	public function setBodyParams($values)
	{
		$this->_bodyParams = $values;
	}
Qiang Xue committed
386 387

	/**
388 389 390 391 392 393
	 * Returns the named request body parameter value.
	 * @param string $name the parameter name
	 * @param mixed $defaultValue the default parameter value if the parameter does not exist.
	 * @return mixed the parameter value
	 * @see getBodyParams()
	 * @see setBodyParams()
Qiang Xue committed
394
	 */
395
	public function getBodyParam($name, $defaultValue = null)
Qiang Xue committed
396
	{
397 398
		$params = $this->getBodyParams();
		return isset($params[$name]) ? $params[$name] : $defaultValue;
Qiang Xue committed
399 400
	}

401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416
	/**
	 * Returns POST parameter with a given name. If name isn't specified, returns an array of all POST parameters.
	 *
	 * @param string $name the parameter name
	 * @param mixed $defaultValue the default parameter value if the parameter does not exist.
	 * @return array|mixed
	 */
	public function post($name = null, $defaultValue = null)
	{
		if ($name === null) {
			return $this->getBodyParams();
		} else {
			return $this->getBodyParam($name, $defaultValue);
		}
	}

417 418
	private $_queryParams;

Qiang Xue committed
419
	/**
420 421 422 423 424
	 * Returns the request parameters given in the [[queryString]].
	 *
	 * This method will return the contents of `$_GET` if params where not explicitly set.
	 * @return array the request GET parameter values.
	 * @see setQueryParams()
Qiang Xue committed
425
	 */
426
	public function getQueryParams()
Qiang Xue committed
427
	{
428 429 430 431
		if ($this->_queryParams === null) {
			return $_GET;
		}
		return $this->_queryParams;
Qiang Xue committed
432 433 434
	}

	/**
435 436 437 438
	 * Sets the request [[queryString]] parameters.
	 * @param array $values the request query parameters (name-value pairs)
	 * @see getQueryParam()
	 * @see getQueryParams()
Qiang Xue committed
439
	 */
440
	public function setQueryParams($values)
Qiang Xue committed
441
	{
442
		$this->_queryParams = $values;
Qiang Xue committed
443 444
	}

445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460
	/**
	 * Returns GET parameter with a given name. If name isn't specified, returns an array of all GET parameters.
	 *
	 * @param string $name the parameter name
	 * @param mixed $defaultValue the default parameter value if the parameter does not exist.
	 * @return array|mixed
	 */
	public function get($name = null, $defaultValue = null)
	{
		if ($name === null) {
			return $this->getQueryParams();
		} else {
			return $this->getQueryParam($name, $defaultValue);
		}
	}

Qiang Xue committed
461 462 463
	/**
	 * Returns the named GET parameter value.
	 * If the GET parameter does not exist, the second parameter to this method will be returned.
464
	 * @param string $name the GET parameter name. If not specified, whole $_GET is returned.
Qiang Xue committed
465 466
	 * @param mixed $defaultValue the default parameter value if the GET parameter does not exist.
	 * @return mixed the GET parameter value
467
	 * @see getBodyParam()
Qiang Xue committed
468
	 */
469
	public function getQueryParam($name, $defaultValue = null)
Qiang Xue committed
470
	{
471 472
		$params = $this->getQueryParams();
		return isset($params[$name]) ? $params[$name] : $defaultValue;
Qiang Xue committed
473 474
	}

Qiang Xue committed
475 476
	private $_hostInfo;

Qiang Xue committed
477
	/**
Qiang Xue committed
478
	 * Returns the schema and host part of the current request URL.
Qiang Xue committed
479 480
	 * The returned URL does not have an ending slash.
	 * By default this is determined based on the user request information.
Qiang Xue committed
481 482
	 * You may explicitly specify it by setting the [[setHostInfo()|hostInfo]] property.
	 * @return string schema and hostname part (with port number if needed) of the request URL (e.g. `http://www.yiiframework.com`)
Taras Gudz committed
483
	 * @see setHostInfo()
Qiang Xue committed
484
	 */
Qiang Xue committed
485
	public function getHostInfo()
Qiang Xue committed
486
	{
Qiang Xue committed
487
		if ($this->_hostInfo === null) {
Qiang Xue committed
488 489
			$secure = $this->getIsSecureConnection();
			$http = $secure ? 'https' : 'http';
Qiang Xue committed
490 491 492 493 494 495 496 497
			if (isset($_SERVER['HTTP_HOST'])) {
				$this->_hostInfo = $http . '://' . $_SERVER['HTTP_HOST'];
			} else {
				$this->_hostInfo = $http . '://' . $_SERVER['SERVER_NAME'];
				$port = $secure ? $this->getSecurePort() : $this->getPort();
				if (($port !== 80 && !$secure) || ($port !== 443 && $secure)) {
					$this->_hostInfo .= ':' . $port;
				}
Qiang Xue committed
498 499 500
			}
		}

Qiang Xue committed
501
		return $this->_hostInfo;
Qiang Xue committed
502 503 504 505 506 507
	}

	/**
	 * Sets the schema and host part of the application URL.
	 * This setter is provided in case the schema and hostname cannot be determined
	 * on certain Web servers.
Qiang Xue committed
508
	 * @param string $value the schema and host part of the application URL. The trailing slashes will be removed.
Qiang Xue committed
509 510 511
	 */
	public function setHostInfo($value)
	{
Qiang Xue committed
512
		$this->_hostInfo = rtrim($value, '/');
Qiang Xue committed
513 514
	}

Qiang Xue committed
515 516
	private $_baseUrl;

Qiang Xue committed
517 518
	/**
	 * Returns the relative URL for the application.
Qiang Xue committed
519 520
	 * This is similar to [[scriptUrl]] except that it does not include the script file name,
	 * and the ending slashes are removed.
Qiang Xue committed
521
	 * @return string the relative URL for the application
Taras Gudz committed
522
	 * @see setScriptUrl()
Qiang Xue committed
523
	 */
Qiang Xue committed
524
	public function getBaseUrl()
Qiang Xue committed
525
	{
Qiang Xue committed
526 527 528
		if ($this->_baseUrl === null) {
			$this->_baseUrl = rtrim(dirname($this->getScriptUrl()), '\\/');
		}
Qiang Xue committed
529
		return $this->_baseUrl;
Qiang Xue committed
530 531 532 533 534 535 536 537 538 539
	}

	/**
	 * Sets the relative URL for the application.
	 * By default the URL is determined based on the entry script URL.
	 * This setter is provided in case you want to change this behavior.
	 * @param string $value the relative URL for the application
	 */
	public function setBaseUrl($value)
	{
Qiang Xue committed
540
		$this->_baseUrl = $value;
Qiang Xue committed
541 542
	}

Qiang Xue committed
543 544
	private $_scriptUrl;

Qiang Xue committed
545 546 547 548
	/**
	 * Returns the relative URL of the entry script.
	 * The implementation of this method referenced Zend_Controller_Request_Http in Zend Framework.
	 * @return string the relative URL of the entry script.
Qiang Xue committed
549
	 * @throws InvalidConfigException if unable to determine the entry script URL
Qiang Xue committed
550 551 552
	 */
	public function getScriptUrl()
	{
Qiang Xue committed
553
		if ($this->_scriptUrl === null) {
Qiang Xue committed
554 555
			$scriptFile = $this->getScriptFile();
			$scriptName = basename($scriptFile);
Qiang Xue committed
556 557
			if (basename($_SERVER['SCRIPT_NAME']) === $scriptName) {
				$this->_scriptUrl = $_SERVER['SCRIPT_NAME'];
Qiang Xue committed
558 559 560 561 562 563
			} elseif (basename($_SERVER['PHP_SELF']) === $scriptName) {
				$this->_scriptUrl = $_SERVER['PHP_SELF'];
			} elseif (isset($_SERVER['ORIG_SCRIPT_NAME']) && basename($_SERVER['ORIG_SCRIPT_NAME']) === $scriptName) {
				$this->_scriptUrl = $_SERVER['ORIG_SCRIPT_NAME'];
			} elseif (($pos = strpos($_SERVER['PHP_SELF'], '/' . $scriptName)) !== false) {
				$this->_scriptUrl = substr($_SERVER['SCRIPT_NAME'], 0, $pos) . '/' . $scriptName;
564
			} elseif (!empty($_SERVER['DOCUMENT_ROOT']) && strpos($scriptFile, $_SERVER['DOCUMENT_ROOT']) === 0) {
Qiang Xue committed
565
				$this->_scriptUrl = str_replace('\\', '/', str_replace($_SERVER['DOCUMENT_ROOT'], '', $scriptFile));
Qiang Xue committed
566
			} else {
Qiang Xue committed
567
				throw new InvalidConfigException('Unable to determine the entry script URL.');
Qiang Xue committed
568
			}
Qiang Xue committed
569 570 571 572 573 574 575 576 577 578 579 580
		}
		return $this->_scriptUrl;
	}

	/**
	 * Sets the relative URL for the application entry script.
	 * This setter is provided in case the entry script URL cannot be determined
	 * on certain Web servers.
	 * @param string $value the relative URL for the application entry script.
	 */
	public function setScriptUrl($value)
	{
Qiang Xue committed
581
		$this->_scriptUrl = '/' . trim($value, '/');
Qiang Xue committed
582 583
	}

Qiang Xue committed
584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607
	private $_scriptFile;

	/**
	 * Returns the entry script file path.
	 * The default implementation will simply return `$_SERVER['SCRIPT_FILENAME']`.
	 * @return string the entry script file path
	 */
	public function getScriptFile()
	{
		return isset($this->_scriptFile) ? $this->_scriptFile : $_SERVER['SCRIPT_FILENAME'];
	}

	/**
	 * Sets the entry script file path.
	 * The entry script file path normally can be obtained from `$_SERVER['SCRIPT_FILENAME']`.
	 * If your server configuration does not return the correct value, you may configure
	 * this property to make it right.
	 * @param string $value the entry script file path.
	 */
	public function setScriptFile($value)
	{
		$this->_scriptFile = $value;
	}

Qiang Xue committed
608 609
	private $_pathInfo;

Qiang Xue committed
610 611
	/**
	 * Returns the path info of the currently requested URL.
Qiang Xue committed
612 613
	 * A path info refers to the part that is after the entry script and before the question mark (query string).
	 * The starting and ending slashes are both removed.
Qiang Xue committed
614
	 * @return string part of the request URL that is after the entry script and before the question mark.
Qiang Xue committed
615
	 * Note, the returned path info is already URL-decoded.
Qiang Xue committed
616
	 * @throws InvalidConfigException if the path info cannot be determined due to unexpected server configuration
Qiang Xue committed
617 618 619
	 */
	public function getPathInfo()
	{
Qiang Xue committed
620
		if ($this->_pathInfo === null) {
Qiang Xue committed
621 622 623 624
			$this->_pathInfo = $this->resolvePathInfo();
		}
		return $this->_pathInfo;
	}
Qiang Xue committed
625

Qiang Xue committed
626 627 628 629 630
	/**
	 * Sets the path info of the current request.
	 * This method is mainly provided for testing purpose.
	 * @param string $value the path info of the current request
	 */
Qiang Xue committed
631 632
	public function setPathInfo($value)
	{
Qiang Xue committed
633
		$this->_pathInfo = ltrim($value, '/');
Qiang Xue committed
634 635
	}

Qiang Xue committed
636 637 638
	/**
	 * Resolves the path info part of the currently requested URL.
	 * A path info refers to the part that is after the entry script and before the question mark (query string).
Qiang Xue committed
639
	 * The starting slashes are both removed (ending slashes will be kept).
Qiang Xue committed
640 641
	 * @return string part of the request URL that is after the entry script and before the question mark.
	 * Note, the returned path info is decoded.
Qiang Xue committed
642
	 * @throws InvalidConfigException if the path info cannot be determined due to unexpected server configuration
Qiang Xue committed
643 644 645
	 */
	protected function resolvePathInfo()
	{
Qiang Xue committed
646
		$pathInfo = $this->getUrl();
Qiang Xue committed
647

Qiang Xue committed
648 649 650
		if (($pos = strpos($pathInfo, '?')) !== false) {
			$pathInfo = substr($pathInfo, 0, $pos);
		}
Qiang Xue committed
651

Qiang Xue committed
652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667
		$pathInfo = urldecode($pathInfo);

		// try to encode in UTF8 if not so
		// http://w3.org/International/questions/qa-forms-utf-8.html
		if (!preg_match('%^(?:
				[\x09\x0A\x0D\x20-\x7E]              # ASCII
				| [\xC2-\xDF][\x80-\xBF]             # non-overlong 2-byte
				| \xE0[\xA0-\xBF][\x80-\xBF]         # excluding overlongs
				| [\xE1-\xEC\xEE\xEF][\x80-\xBF]{2}  # straight 3-byte
				| \xED[\x80-\x9F][\x80-\xBF]         # excluding surrogates
				| \xF0[\x90-\xBF][\x80-\xBF]{2}      # planes 1-3
				| [\xF1-\xF3][\x80-\xBF]{3}          # planes 4-15
				| \xF4[\x80-\x8F][\x80-\xBF]{2}      # plane 16
				)*$%xs', $pathInfo)) {
			$pathInfo = utf8_encode($pathInfo);
		}
Qiang Xue committed
668

Qiang Xue committed
669 670 671 672 673 674
		$scriptUrl = $this->getScriptUrl();
		$baseUrl = $this->getBaseUrl();
		if (strpos($pathInfo, $scriptUrl) === 0) {
			$pathInfo = substr($pathInfo, strlen($scriptUrl));
		} elseif ($baseUrl === '' || strpos($pathInfo, $baseUrl) === 0) {
			$pathInfo = substr($pathInfo, strlen($baseUrl));
Qiang Xue committed
675
		} elseif (isset($_SERVER['PHP_SELF']) && strpos($_SERVER['PHP_SELF'], $scriptUrl) === 0) {
Qiang Xue committed
676 677
			$pathInfo = substr($_SERVER['PHP_SELF'], strlen($scriptUrl));
		} else {
Qiang Xue committed
678
			throw new InvalidConfigException('Unable to determine the path info of the current request.');
Qiang Xue committed
679
		}
Qiang Xue committed
680

681
		if ($pathInfo[0] === '/') {
682 683 684
			$pathInfo = substr($pathInfo, 1);
		}

685
		return (string)$pathInfo;
Qiang Xue committed
686 687
	}

Qiang Xue committed
688
	/**
Qiang Xue committed
689 690 691
	 * Returns the currently requested absolute URL.
	 * This is a shortcut to the concatenation of [[hostInfo]] and [[url]].
	 * @return string the currently requested absolute URL.
Qiang Xue committed
692
	 */
Qiang Xue committed
693
	public function getAbsoluteUrl()
Qiang Xue committed
694
	{
Qiang Xue committed
695
		return $this->getHostInfo() . $this->getUrl();
Qiang Xue committed
696 697
	}

Qiang Xue committed
698
	private $_url;
Qiang Xue committed
699

Qiang Xue committed
700
	/**
Qiang Xue committed
701 702 703 704 705
	 * Returns the currently requested relative URL.
	 * This refers to the portion of the URL that is after the [[hostInfo]] part.
	 * It includes the [[queryString]] part if any.
	 * @return string the currently requested relative URL. Note that the URI returned is URL-encoded.
	 * @throws InvalidConfigException if the URL cannot be determined due to unusual server configuration
Qiang Xue committed
706
	 */
Qiang Xue committed
707
	public function getUrl()
Qiang Xue committed
708
	{
Qiang Xue committed
709 710
		if ($this->_url === null) {
			$this->_url = $this->resolveRequestUri();
Qiang Xue committed
711
		}
Qiang Xue committed
712
		return $this->_url;
Qiang Xue committed
713 714
	}

Qiang Xue committed
715
	/**
Qiang Xue committed
716
	 * Sets the currently requested relative URL.
Qiang Xue committed
717 718 719 720
	 * The URI must refer to the portion that is after [[hostInfo]].
	 * Note that the URI should be URL-encoded.
	 * @param string $value the request URI to be set
	 */
Qiang Xue committed
721
	public function setUrl($value)
Qiang Xue committed
722
	{
Qiang Xue committed
723
		$this->_url = $value;
Qiang Xue committed
724 725
	}

Qiang Xue committed
726 727 728 729 730 731
	/**
	 * Resolves the request URI portion for the currently requested URL.
	 * This refers to the portion that is after the [[hostInfo]] part. It includes the [[queryString]] part if any.
	 * The implementation of this method referenced Zend_Controller_Request_Http in Zend Framework.
	 * @return string|boolean the request URI portion for the currently requested URL.
	 * Note that the URI returned is URL-encoded.
Qiang Xue committed
732
	 * @throws InvalidConfigException if the request URI cannot be determined due to unusual server configuration
Qiang Xue committed
733 734 735 736 737 738 739
	 */
	protected function resolveRequestUri()
	{
		if (isset($_SERVER['HTTP_X_REWRITE_URL'])) { // IIS
			$requestUri = $_SERVER['HTTP_X_REWRITE_URL'];
		} elseif (isset($_SERVER['REQUEST_URI'])) {
			$requestUri = $_SERVER['REQUEST_URI'];
Qiang Xue committed
740
			if ($requestUri !== '' && $requestUri[0] !== '/') {
Qiang Xue committed
741 742 743 744 745 746 747 748
				$requestUri = preg_replace('/^(http|https):\/\/[^\/]+/i', '', $requestUri);
			}
		} elseif (isset($_SERVER['ORIG_PATH_INFO'])) { // IIS 5.0 CGI
			$requestUri = $_SERVER['ORIG_PATH_INFO'];
			if (!empty($_SERVER['QUERY_STRING'])) {
				$requestUri .= '?' . $_SERVER['QUERY_STRING'];
			}
		} else {
Qiang Xue committed
749
			throw new InvalidConfigException('Unable to determine the request URI.');
Qiang Xue committed
750 751 752 753
		}
		return $requestUri;
	}

Qiang Xue committed
754 755 756 757 758 759
	/**
	 * Returns part of the request URL that is after the question mark.
	 * @return string part of the request URL that is after the question mark
	 */
	public function getQueryString()
	{
Qiang Xue committed
760
		return isset($_SERVER['QUERY_STRING']) ? $_SERVER['QUERY_STRING'] : '';
Qiang Xue committed
761 762 763 764 765 766 767 768
	}

	/**
	 * Return if the request is sent via secure channel (https).
	 * @return boolean if the request is sent via secure channel (https)
	 */
	public function getIsSecureConnection()
	{
769 770
		return isset($_SERVER['HTTPS']) && (strcasecmp($_SERVER['HTTPS'], 'on') === 0 || $_SERVER['HTTPS'] == 1)
			|| isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && strcasecmp($_SERVER['HTTP_X_FORWARDED_PROTO'], 'https') === 0;
Qiang Xue committed
771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787
	}

	/**
	 * Returns the server name.
	 * @return string server name
	 */
	public function getServerName()
	{
		return $_SERVER['SERVER_NAME'];
	}

	/**
	 * Returns the server port number.
	 * @return integer server port number
	 */
	public function getServerPort()
	{
Qiang Xue committed
788
		return (int)$_SERVER['SERVER_PORT'];
Qiang Xue committed
789 790 791 792 793 794
	}

	/**
	 * Returns the URL referrer, null if not present
	 * @return string URL referrer, null if not present
	 */
Qiang Xue committed
795
	public function getReferrer()
Qiang Xue committed
796
	{
Qiang Xue committed
797
		return isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : null;
Qiang Xue committed
798 799 800 801 802 803 804 805
	}

	/**
	 * Returns the user agent, null if not present.
	 * @return string user agent, null if not present
	 */
	public function getUserAgent()
	{
Qiang Xue committed
806
		return isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : null;
Qiang Xue committed
807 808 809 810 811 812
	}

	/**
	 * Returns the user IP address.
	 * @return string user IP address
	 */
813
	public function getUserIP()
Qiang Xue committed
814
	{
Qiang Xue committed
815
		return isset($_SERVER['REMOTE_ADDR']) ? $_SERVER['REMOTE_ADDR'] : '127.0.0.1';
Qiang Xue committed
816 817 818 819 820 821 822 823
	}

	/**
	 * Returns the user host name, null if it cannot be determined.
	 * @return string user host name, null if cannot be determined
	 */
	public function getUserHost()
	{
Qiang Xue committed
824
		return isset($_SERVER['REMOTE_HOST']) ? $_SERVER['REMOTE_HOST'] : null;
Qiang Xue committed
825 826
	}

827 828 829 830 831 832 833 834 835
	/**
	 * @return string the username sent via HTTP authentication, null if the username is not given
	 */
	public function getAuthUser()
	{
		return isset($_SERVER['PHP_AUTH_USER']) ? $_SERVER['PHP_AUTH_USER'] : null;
	}

	/**
Qiang Xue committed
836
	 * @return string the password sent via HTTP authentication, null if the password is not given
837 838 839 840 841 842
	 */
	public function getAuthPassword()
	{
		return isset($_SERVER['PHP_AUTH_PW']) ? $_SERVER['PHP_AUTH_PW'] : null;
	}

Qiang Xue committed
843 844
	private $_port;

Qiang Xue committed
845
	/**
Qiang Xue committed
846 847 848 849
	 * Returns the port to use for insecure requests.
	 * Defaults to 80, or the port specified by the server if the current
	 * request is insecure.
	 * @return integer port number for insecure requests.
Taras Gudz committed
850
	 * @see setPort()
Qiang Xue committed
851 852 853
	 */
	public function getPort()
	{
Qiang Xue committed
854 855 856
		if ($this->_port === null) {
			$this->_port = !$this->getIsSecureConnection() && isset($_SERVER['SERVER_PORT']) ? (int)$_SERVER['SERVER_PORT'] : 80;
		}
Qiang Xue committed
857 858 859 860 861 862 863 864 865 866 867
		return $this->_port;
	}

	/**
	 * Sets the port to use for insecure requests.
	 * This setter is provided in case a custom port is necessary for certain
	 * server configurations.
	 * @param integer $value port number.
	 */
	public function setPort($value)
	{
Qiang Xue committed
868 869 870 871
		if ($value != $this->_port) {
			$this->_port = (int)$value;
			$this->_hostInfo = null;
		}
Qiang Xue committed
872 873 874 875 876 877 878 879 880
	}

	private $_securePort;

	/**
	 * Returns the port to use for secure requests.
	 * Defaults to 443, or the port specified by the server if the current
	 * request is secure.
	 * @return integer port number for secure requests.
Taras Gudz committed
881
	 * @see setSecurePort()
Qiang Xue committed
882 883 884
	 */
	public function getSecurePort()
	{
Qiang Xue committed
885 886 887
		if ($this->_securePort === null) {
			$this->_securePort = $this->getIsSecureConnection() && isset($_SERVER['SERVER_PORT']) ? (int)$_SERVER['SERVER_PORT'] : 443;
		}
Qiang Xue committed
888 889 890 891 892 893 894 895 896 897 898
		return $this->_securePort;
	}

	/**
	 * Sets the port to use for secure requests.
	 * This setter is provided in case a custom port is necessary for certain
	 * server configurations.
	 * @param integer $value port number.
	 */
	public function setSecurePort($value)
	{
Qiang Xue committed
899 900 901
		if ($value != $this->_securePort) {
			$this->_securePort = (int)$value;
			$this->_hostInfo = null;
Qiang Xue committed
902
		}
Qiang Xue committed
903 904
	}

905
	private $_contentTypes;
Qiang Xue committed
906 907

	/**
908
	 * Returns the content types acceptable by the end user.
909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925
	 * This is determined by the `Accept` HTTP header. For example,
	 *
	 * ```php
	 * $_SERVER['HTTP_ACCEPT'] = 'text/plain; q=0.5, application/json; version=1.0, application/xml; version=2.0;';
	 * $types = $request->getAcceptableContentTypes();
	 * print_r($types);
	 * // displays:
	 * // [
	 * //     'application/json' => ['q' => 1, 'version' => '1.0'],
	 * //      'application/xml' => ['q' => 1, 'version' => '2.0'],
	 * //           'text/plain' => ['q' => 0.5],
	 * // ]
	 * ```
	 *
	 * @return array the content types ordered by the quality score. Types with the highest scores
	 * will be returned first. The array keys are the content types, while the array values
	 * are the corresponding quality score and other parameters as given in the header.
Qiang Xue committed
926
	 */
927
	public function getAcceptableContentTypes()
Qiang Xue committed
928
	{
929 930 931 932
		if ($this->_contentTypes === null) {
			if (isset($_SERVER['HTTP_ACCEPT'])) {
				$this->_contentTypes = $this->parseAcceptHeader($_SERVER['HTTP_ACCEPT']);
			} else {
Alexander Makarov committed
933
				$this->_contentTypes = [];
934 935 936 937 938 939
			}
		}
		return $this->_contentTypes;
	}

	/**
940 941
	 * Sets the acceptable content types.
	 * Please refer to [[getAcceptableContentTypes()]] on the format of the parameter.
942
	 * @param array $value the content types that are acceptable by the end user. They should
943
	 * be ordered by the preference level.
944 945
	 * @see getAcceptableContentTypes()
	 * @see parseAcceptHeader()
946
	 */
947
	public function setAcceptableContentTypes($value)
948 949 950 951
	{
		$this->_contentTypes = $value;
	}

952
	/**
953
	 * Returns request content-type
Qiang Xue committed
954 955 956 957 958 959 960
	 * The Content-Type header field indicates the MIME type of the data
	 * contained in [[getRawBody()]] or, in the case of the HEAD method, the
	 * media type that would have been sent had the request been a GET.
	 * For the MIME-types the user expects in response, see [[acceptableContentTypes]].
	 * @return string request content-type. Null is returned if this information is not available.
	 * @link http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.17
	 * HTTP 1.1 header field definitions
961 962 963
	 */
	public function getContentType()
	{
964 965
		if (isset($_SERVER["CONTENT_TYPE"])) {
			return $_SERVER["CONTENT_TYPE"];
Vladimir Zbrailov committed
966
		} elseif (isset($_SERVER["HTTP_CONTENT_TYPE"])) { //fix bug https://bugs.php.net/bug.php?id=66606
967 968 969
			return $_SERVER["HTTP_CONTENT_TYPE"];
		}
		return null;
970 971
	}

972 973 974
	private $_languages;

	/**
975
	 * Returns the languages acceptable by the end user.
976 977 978 979
	 * This is determined by the `Accept-Language` HTTP header.
	 * @return array the languages ordered by the preference level. The first element
	 * represents the most preferred language.
	 */
980
	public function getAcceptableLanguages()
981 982 983
	{
		if ($this->_languages === null) {
			if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
984
				$this->_languages = array_keys($this->parseAcceptHeader($_SERVER['HTTP_ACCEPT_LANGUAGE']));
985
			} else {
Alexander Makarov committed
986
				$this->_languages = [];
987 988 989 990 991 992
			}
		}
		return $this->_languages;
	}

	/**
993
	 * @param array $value the languages that are acceptable by the end user. They should
994 995
	 * be ordered by the preference level.
	 */
996
	public function setAcceptableLanguages($value)
997 998 999 1000 1001 1002
	{
		$this->_languages = $value;
	}

	/**
	 * Parses the given `Accept` (or `Accept-Language`) header.
1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020
	 *
	 * This method will return the acceptable values with their quality scores and the corresponding parameters
	 * as specified in the given `Accept` header. The array keys of the return value are the acceptable values,
	 * while the array values consisting of the corresponding quality scores and parameters. The acceptable
	 * values with the highest quality scores will be returned first. For example,
	 *
	 * ```php
	 * $header = 'text/plain; q=0.5, application/json; version=1.0, application/xml; version=2.0;';
	 * $accepts = $request->parseAcceptHeader($header);
	 * print_r($accepts);
	 * // displays:
	 * // [
	 * //     'application/json' => ['q' => 1, 'version' => '1.0'],
	 * //      'application/xml' => ['q' => 1, 'version' => '2.0'],
	 * //           'text/plain' => ['q' => 0.5],
	 * // ]
	 * ```
	 *
1021
	 * @param string $header the header to be parsed
1022 1023
	 * @return array the acceptable values ordered by their quality score. The values with the highest scores
	 * will be returned first.
1024
	 */
1025
	public function parseAcceptHeader($header)
1026
	{
Alexander Makarov committed
1027
		$accepts = [];
1028 1029 1030 1031
		foreach (explode(',', $header) as $i => $part) {
			$params = preg_split('/\s*;\s*/', trim($part), -1, PREG_SPLIT_NO_EMPTY);
			if (empty($params)) {
				continue;
1032
			}
1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048
			$values = [
				'q' => [$i, array_shift($params), 1],
			];
			foreach ($params as $param) {
				if (strpos($param, '=') !== false) {
					list ($key, $value) = explode('=', $param, 2);
					if ($key === 'q') {
						$values['q'][2] = (double)$value;
					} else {
						$values[$key] = $value;
					}
				} else {
					$values[] = $param;
				}
			}
			$accepts[] = $values;
1049
		}
1050

1051
		usort($accepts, function ($a, $b) {
1052 1053 1054
			$a = $a['q']; // index, name, q
			$b = $b['q'];
			if ($a[2] > $b[2]) {
1055
				return -1;
1056
			} elseif ($a[2] < $b[2]) {
1057
				return 1;
1058 1059 1060
			} elseif ($a[1] === $b[1]) {
				return $a[0] > $b[0] ? 1 : -1;
			} elseif ($a[1] === '*/*') {
1061
				return 1;
1062
			} elseif ($b[1] === '*/*') {
1063
				return -1;
Qiang Xue committed
1064
			} else {
1065 1066
				$wa = $a[1][strlen($a[1]) - 1] === '*';
				$wb = $b[1][strlen($b[1]) - 1] === '*';
1067 1068 1069
				if ($wa xor $wb) {
					return $wa ? 1 : -1;
				} else {
1070
					return $a[0] > $b[0] ? 1 : -1;
1071
				}
Qiang Xue committed
1072
			}
1073
		});
1074

Alexander Makarov committed
1075
		$result = [];
1076
		foreach ($accepts as $accept) {
1077 1078 1079
			$name = $accept['q'][1];
			$accept['q'] = $accept['q'][2];
			$result[$name] = $accept;
Qiang Xue committed
1080
		}
1081 1082

		return $result;
Qiang Xue committed
1083 1084 1085
	}

	/**
1086 1087 1088
	 * Returns the user-preferred language that should be used by this application.
	 * The language resolution is based on the user preferred languages and the languages
	 * supported by the application. The method will try to find the best match.
1089 1090 1091
	 * @param array $languages a list of the languages supported by the application. If this is empty, the current
	 * application language will be returned without further processing.
	 * @return string the language that the application should use.
Qiang Xue committed
1092
	 */
1093
	public function getPreferredLanguage(array $languages = [])
Qiang Xue committed
1094
	{
1095
		if (empty($languages)) {
1096
			return Yii::$app->language;
1097
		}
1098 1099
		foreach ($this->getAcceptableLanguages() as $acceptableLanguage) {
			$acceptableLanguage = str_replace('_', '-', strtolower($acceptableLanguage));
1100
			foreach ($languages as $language) {
1101 1102
				$language = str_replace('_', '-', strtolower($language));
				// en-us==en-us, en==en-us, en-us==en
1103
				if ($language === $acceptableLanguage || strpos($acceptableLanguage, $language . '-') === 0 || strpos($language, $acceptableLanguage . '-') === 0) {
1104 1105 1106 1107 1108
					return $language;
				}
			}
		}
		return reset($languages);
Qiang Xue committed
1109 1110 1111
	}

	/**
Qiang Xue committed
1112
	 * Returns the cookie collection.
1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125
	 * Through the returned cookie collection, you may access a cookie using the following syntax:
	 *
	 * ~~~
	 * $cookie = $request->cookies['name']
	 * if ($cookie !== null) {
	 *     $value = $cookie->value;
	 * }
	 *
	 * // alternatively
	 * $value = $request->cookies->getValue('name');
	 * ~~~
	 *
	 * @return CookieCollection the cookie collection.
Qiang Xue committed
1126
	 */
Qiang Xue committed
1127
	public function getCookies()
Qiang Xue committed
1128
	{
1129
		if ($this->_cookies === null) {
Alexander Makarov committed
1130
			$this->_cookies = new CookieCollection($this->loadCookies(), [
Qiang Xue committed
1131
				'readOnly' => true,
Alexander Makarov committed
1132
			]);
1133 1134 1135
		}
		return $this->_cookies;
	}
Qiang Xue committed
1136

Qiang Xue committed
1137 1138 1139 1140 1141 1142
	/**
	 * Converts `$_COOKIE` into an array of [[Cookie]].
	 * @return array the cookies obtained from request
	 */
	protected function loadCookies()
	{
Alexander Makarov committed
1143
		$cookies = [];
Qiang Xue committed
1144 1145 1146
		if ($this->enableCookieValidation) {
			$key = $this->getCookieValidationKey();
			foreach ($_COOKIE as $name => $value) {
1147
				if (is_string($value) && ($value = Security::validateData($value, $key)) !== false) {
Alexander Makarov committed
1148
					$cookies[$name] = new Cookie([
Qiang Xue committed
1149 1150
						'name' => $name,
						'value' => @unserialize($value),
Alexander Makarov committed
1151
					]);
Qiang Xue committed
1152 1153 1154 1155
				}
			}
		} else {
			foreach ($_COOKIE as $name => $value) {
Alexander Makarov committed
1156
				$cookies[$name] = new Cookie([
Qiang Xue committed
1157 1158
					'name' => $name,
					'value' => $value,
Alexander Makarov committed
1159
				]);
Qiang Xue committed
1160 1161 1162 1163 1164 1165 1166 1167
			}
		}
		return $cookies;
	}

	private $_cookieValidationKey;

	/**
1168
	 * @return string the secret key used for cookie validation. If it was not set previously,
Qiang Xue committed
1169 1170 1171 1172 1173
	 * a random key will be generated and used.
	 */
	public function getCookieValidationKey()
	{
		if ($this->_cookieValidationKey === null) {
1174
			$this->_cookieValidationKey = Security::getSecretKey(__CLASS__ . '/' . Yii::$app->id);
Qiang Xue committed
1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187
		}
		return $this->_cookieValidationKey;
	}

	/**
	 * Sets the secret key used for cookie validation.
	 * @param string $value the secret key used for cookie validation.
	 */
	public function setCookieValidationKey($value)
	{
		$this->_cookieValidationKey = $value;
	}

1188 1189 1190 1191
	/**
	 * @var Cookie
	 */
	private $_csrfCookie;
Qiang Xue committed
1192 1193

	/**
1194 1195
	 * Returns the unmasked random token used to perform CSRF validation.
	 * This token is typically sent via a cookie. If such a cookie does not exist, a new token will be generated.
Qiang Xue committed
1196 1197 1198
	 * @return string the random token for CSRF validation.
	 * @see enableCsrfValidation
	 */
1199
	public function getRawCsrfToken()
Qiang Xue committed
1200
	{
1201
		if ($this->_csrfCookie === null) {
1202
			$this->_csrfCookie = $this->getCookies()->get($this->csrfParam);
1203 1204
			if ($this->_csrfCookie === null) {
				$this->_csrfCookie = $this->createCsrfCookie();
1205
				Yii::$app->getResponse()->getCookies()->add($this->_csrfCookie);
Qiang Xue committed
1206 1207 1208
			}
		}

1209
		return $this->_csrfCookie->value;
Qiang Xue committed
1210 1211
	}

1212
	private $_csrfToken;
1213 1214

	/**
1215 1216 1217 1218 1219 1220 1221
	 * Returns the token used to perform CSRF validation.
	 *
	 * This token is a masked version of [[rawCsrfToken]] to prevent [BREACH attacks](http://breachattack.com/).
	 * This token may be passed along via a hidden field of an HTML form or an HTTP header value
	 * to support CSRF validation.
	 *
	 * @return string the token used to perform CSRF validation.
1222
	 */
1223
	public function getCsrfToken()
1224
	{
1225 1226 1227 1228 1229 1230
		if ($this->_csrfToken === null) {
			// the mask doesn't need to be very random
			$chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_-.';
			$mask = substr(str_shuffle(str_repeat($chars, 5)), 0, self::CSRF_MASK_LENGTH);

			$token = $this->getRawCsrfToken();
1231
			// The + sign may be decoded as blank space later, which will fail the validation
1232
			$this->_csrfToken = str_replace('+', '.', base64_encode($mask . $this->xorTokens($token, $mask)));
1233
		}
1234
		return $this->_csrfToken;
1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255
	}

	/**
	 * Returns the XOR result of two strings.
	 * If the two strings are of different lengths, the shorter one will be padded to the length of the longer one.
	 * @param string $token1
	 * @param string $token2
	 * @return string the XOR result
	 */
	private function xorTokens($token1, $token2)
	{
		$n1 = StringHelper::byteLength($token1);
		$n2 = StringHelper::byteLength($token2);
		if ($n1 > $n2) {
			$token2 = str_pad($token2, $n1, $token2);
		} elseif ($n1 < $n2) {
			$token1 = str_pad($token1, $n2, $token1);
		}
		return $token1 ^ $token2;
	}

1256 1257 1258 1259 1260
	/**
	 * @return string the CSRF token sent via [[CSRF_HEADER]] by browser. Null is returned if no such header is sent.
	 */
	public function getCsrfTokenFromHeader()
	{
Qiang Xue committed
1261 1262
		$key = 'HTTP_' . str_replace('-', '_', strtoupper(self::CSRF_HEADER));
		return isset($_SERVER[$key]) ? $_SERVER[$key] : null;
1263 1264
	}

Qiang Xue committed
1265 1266 1267 1268 1269 1270 1271 1272 1273
	/**
	 * Creates a cookie with a randomly generated CSRF token.
	 * Initial values specified in [[csrfCookie]] will be applied to the generated cookie.
	 * @return Cookie the generated cookie
	 * @see enableCsrfValidation
	 */
	protected function createCsrfCookie()
	{
		$options = $this->csrfCookie;
1274
		$options['name'] = $this->csrfParam;
1275
		$options['value'] = Security::generateRandomKey();
Qiang Xue committed
1276 1277 1278 1279 1280 1281 1282
		return new Cookie($options);
	}

	/**
	 * Performs the CSRF validation.
	 * The method will compare the CSRF token obtained from a cookie and from a POST field.
	 * If they are different, a CSRF attack is detected and a 400 HTTP exception will be raised.
1283
	 * This method is called in [[Controller::beforeAction()]].
Qiang Xue committed
1284
	 * @return boolean whether CSRF token is valid. If [[enableCsrfValidation]] is false, this method will return true.
Qiang Xue committed
1285 1286 1287
	 */
	public function validateCsrfToken()
	{
1288
		$method = $this->getMethod();
Carsten Brandt committed
1289
		// only validate CSRF token on non-"safe" methods http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9.1.1
1290
		if (!$this->enableCsrfValidation || in_array($method, ['GET', 'HEAD', 'OPTIONS'], true)) {
Qiang Xue committed
1291
			return true;
Qiang Xue committed
1292
		}
1293 1294
		$trueToken = $this->getCookies()->getValue($this->csrfParam);
		$token = $this->getBodyParam($this->csrfParam);
1295 1296
		return $this->validateCsrfTokenInternal($token, $trueToken)
			|| $this->validateCsrfTokenInternal($this->getCsrfTokenFromHeader(), $trueToken);
1297 1298 1299 1300
	}

	private function validateCsrfTokenInternal($token, $trueToken)
	{
Qiang Xue committed
1301
		$token = base64_decode(str_replace('.', '+', $token));
1302 1303 1304 1305 1306 1307 1308 1309
		$n = StringHelper::byteLength($token);
		if ($n <= self::CSRF_MASK_LENGTH) {
			return false;
		}
		$mask = StringHelper::byteSubstr($token, 0, self::CSRF_MASK_LENGTH);
		$token = StringHelper::byteSubstr($token, self::CSRF_MASK_LENGTH, $n - self::CSRF_MASK_LENGTH);
		$token = $this->xorTokens($mask, $token);
		return $token === $trueToken;
Qiang Xue committed
1310
	}
Qiang Xue committed
1311
}