Request.php 26.1 KB
Newer Older
Qiang Xue committed
1 2
<?php
/**
Qiang Xue committed
3
 * Request class file.
Qiang Xue committed
4 5
 *
 * @link http://www.yiiframework.com/
Qiang Xue committed
6
 * @copyright Copyright &copy; 2008 Yii Software LLC
Qiang Xue committed
7 8 9
 * @license http://www.yiiframework.com/license/
 */

Qiang Xue committed
10
namespace yii\web;
Qiang Xue committed
11

Qiang Xue committed
12
use \yii\base\InvalidConfigException;
Qiang Xue committed
13

Qiang Xue committed
14 15
/**
 * @author Qiang Xue <qiang.xue@gmail.com>
Qiang Xue committed
16
 * @since 2.0
Qiang Xue committed
17
 */
Qiang Xue committed
18
class Request extends \yii\base\Request
Qiang Xue committed
19 20 21 22
{
	/**
	 * @var boolean whether cookies should be validated to ensure they are not tampered. Defaults to false.
	 */
Qiang Xue committed
23
	public $enableCookieValidation = false;
Qiang Xue committed
24 25 26 27 28 29 30 31 32
	/**
	 * @var boolean whether to enable CSRF (Cross-Site Request Forgery) validation. Defaults to false.
	 * By setting this property to true, forms submitted to an Yii Web application must be originated
	 * from the same application. If not, a 400 HTTP exception will be raised.
	 * Note, this feature requires that the user client accepts cookie.
	 * You also need to use {@link CHtml::form} or {@link CHtml::statefulForm} to generate
	 * the needed HTML forms in your pages.
	 * @see http://seclab.stanford.edu/websec/csrf/csrf.pdf
	 */
Qiang Xue committed
33
	public $enableCsrfValidation = false;
Qiang Xue committed
34 35 36 37 38 39 40 41
	/**
	 * @var string|boolean the name of the POST parameter that is used to indicate if a request is a PUT or DELETE
	 * request tunneled through POST. If false, it means disabling REST request tunneled through POST.
	 * Default to '_method'.
	 * @see getRequestMethod
	 * @see getRestParams
	 */
	public $restPostVar = '_method';
Qiang Xue committed
42 43
	/**
	 * @var string the name of the token used to prevent CSRF. Defaults to 'YII_CSRF_TOKEN'.
Qiang Xue committed
44
	 * This property is effective only when {@link enableCsrfValidation} is true.
Qiang Xue committed
45
	 */
Qiang Xue committed
46
	public $csrfTokenName = 'YII_CSRF_TOKEN';
Qiang Xue committed
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
	/**
	 * @var array the property values (in name-value pairs) used to initialize the CSRF cookie.
	 * Any property of {@link CHttpCookie} may be initialized.
	 * This property is effective only when {@link enableCsrfValidation} is true.
	 */
	public $csrfCookie;

	private $_cookies;

	/**
	 * Initializes the application component.
	 * This method overrides the parent implementation by preprocessing
	 * the user request data.
	 */
	public function init()
	{
		parent::init();
		$this->normalizeRequest();
	}

	/**
	 * Normalizes the request data.
	 * This method strips off slashes in request data if get_magic_quotes_gpc() returns true.
	 * It also performs CSRF validation if {@link enableCsrfValidation} is true.
	 */
	protected function normalizeRequest()
	{
Qiang Xue committed
74 75 76 77 78 79 80 81 82 83 84 85 86
		if (get_magic_quotes_gpc()) {
			if (isset($_GET)) {
				$_GET = $this->stripSlashes($_GET);
			}
			if (isset($_POST)) {
				$_POST = $this->stripSlashes($_POST);
			}
			if (isset($_REQUEST)) {
				$_REQUEST = $this->stripSlashes($_REQUEST);
			}
			if (isset($_COOKIE)) {
				$_COOKIE = $this->stripSlashes($_COOKIE);
			}
Qiang Xue committed
87 88
		}

Qiang Xue committed
89 90 91
		if ($this->enableCsrfValidation) {
			\Yii::$application->on('beginRequest', array($this, 'validateCsrfToken'));
		}
Qiang Xue committed
92 93 94 95 96 97 98 99
	}

	/**
	 * Strips slashes from input data.
	 * This method is applied when magic quotes is enabled.
	 * @param mixed $data input data to be processed
	 * @return mixed processed data
	 */
Qiang Xue committed
100
	public function stripSlashes($data)
Qiang Xue committed
101
	{
Qiang Xue committed
102
		return is_array($data) ? array_map(array($this, 'stripSlashes'), $data) : stripslashes($data);
Qiang Xue committed
103 104
	}

Qiang Xue committed
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
	/**
	 * Returns the method of the current request (e.g. GET, POST, HEAD, PUT, DELETE).
	 * @return string request method, such as GET, POST, HEAD, PUT, DELETE.
	 * The value returned is turned into upper case.
	 */
	public function getRequestMethod()
	{
		if ($this->restPostVar !== false && isset($_POST[$this->restPostVar])) {
			return strtoupper($_POST[$this->restPostVar]);
		} else {
			return isset($_SERVER['REQUEST_METHOD']) ? strtoupper($_SERVER['REQUEST_METHOD']) : 'GET';
		}
	}


	/**
	 * Returns whether this is a POST request.
	 * @return boolean whether this is a POST request.
	 */
	public function getIsPostRequest()
	{
		return isset($_SERVER['REQUEST_METHOD']) && !strcasecmp($_SERVER['REQUEST_METHOD'], 'POST');
	}

	/**
	 * Returns whether this is a DELETE request.
	 * @return boolean whether this is a DELETE request.
	 */
	public function getIsDeleteRequest()
	{
		return $this->getRequestMethod() === 'DELETE';
	}

	/**
	 * Returns whether this is a PUT request.
	 * @return boolean whether this is a PUT request.
	 */
	public function getIsPutRequest()
	{
		return $this->getRequestMethod() === 'PUT';
	}

	/**
	 * Returns whether this is an AJAX (XMLHttpRequest) request.
	 * @return boolean whether this is an AJAX (XMLHttpRequest) request.
	 */
	public function getIsAjaxRequest()
	{
		return isset($_SERVER['HTTP_X_REQUESTED_WITH']) && $_SERVER['HTTP_X_REQUESTED_WITH'] === 'XMLHttpRequest';
	}

	/**
	 * Returns whether this is an Adobe Flash or Adobe Flex request.
	 * @return boolean whether this is an Adobe Flash or Adobe Flex request.
	 */
	public function getIsFlashRequest()
	{
		return isset($_SERVER['HTTP_USER_AGENT']) &&
			(stripos($_SERVER['HTTP_USER_AGENT'], 'Shockwave') !== false || stripos($_SERVER['HTTP_USER_AGENT'], 'Flash') !== false);
	}

	private $_restParams;

	/**
	 * Returns the request parameters for the RESTful request.
	 * @return array the RESTful request parameters
	 * @see getRequestMethod
	 */
	public function getRestParams()
	{
		if ($this->_restParams === null) {
			if ($this->restPostVar !== false && isset($_POST[$this->restPostVar])) {
				$this->_restParams = $_POST;
			} else {
				$this->_restParams = array();
				if (function_exists('mb_parse_str')) {
					mb_parse_str(file_get_contents('php://input'), $this->_restParams);
				} else {
					parse_str(file_get_contents('php://input'), $this->_restParams);
				}
			}
		}
		return $this->_restParams;
	}

	/**
	 * Sets the RESTful parameters.
	 * @param array $values the RESTful parameters (name-value pairs)
	 */
	public function setRestParams($values)
	{
		$this->_restParams = $values;
	}

Qiang Xue committed
199 200 201 202 203 204 205 206 207 208
	/**
	 * Returns the named GET or POST parameter value.
	 * If the GET or POST parameter does not exist, the second parameter to this method will be returned.
	 * If both GET and POST contains such a named parameter, the GET parameter takes precedence.
	 * @param string $name the GET parameter name
	 * @param mixed $defaultValue the default parameter value if the GET parameter does not exist.
	 * @return mixed the GET parameter value
	 * @see getQuery
	 * @see getPost
	 */
Qiang Xue committed
209
	public function getParam($name, $defaultValue = null)
Qiang Xue committed
210 211 212 213
	{
		return isset($_GET[$name]) ? $_GET[$name] : (isset($_POST[$name]) ? $_POST[$name] : $defaultValue);
	}

Qiang Xue committed
214 215 216 217 218 219 220 221 222 223 224 225
	/**
	 * Returns the named RESTful 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
	 */
	public function getRestParam($name, $defaultValue = null)
	{
		$params = $this->getRestParams();
		return isset($params[$name]) ? $params[$name] : $defaultValue;
	}

Qiang Xue committed
226 227 228 229 230 231 232 233 234
	/**
	 * Returns the named GET parameter value.
	 * If the GET parameter does not exist, the second parameter to this method will be returned.
	 * @param string $name the GET parameter name
	 * @param mixed $defaultValue the default parameter value if the GET parameter does not exist.
	 * @return mixed the GET parameter value
	 * @see getPost
	 * @see getParam
	 */
Qiang Xue committed
235
	public function getQuery($name, $defaultValue = null)
Qiang Xue committed
236 237 238 239 240 241 242 243 244 245 246 247 248
	{
		return isset($_GET[$name]) ? $_GET[$name] : $defaultValue;
	}

	/**
	 * Returns the named POST parameter value.
	 * If the POST parameter does not exist, the second parameter to this method will be returned.
	 * @param string $name the POST parameter name
	 * @param mixed $defaultValue the default parameter value if the POST parameter does not exist.
	 * @return mixed the POST parameter value
	 * @see getParam
	 * @see getQuery
	 */
Qiang Xue committed
249
	public function getPost($name, $defaultValue = null)
Qiang Xue committed
250 251 252 253 254 255 256 257 258 259
	{
		return isset($_POST[$name]) ? $_POST[$name] : $defaultValue;
	}

	/**
	 * Returns the named DELETE parameter value.
	 * @param string $name the DELETE parameter name
	 * @param mixed $defaultValue the default parameter value if the DELETE parameter does not exist.
	 * @return mixed the DELETE parameter value
	 */
Qiang Xue committed
260
	public function getDelete($name, $defaultValue = null)
Qiang Xue committed
261
	{
Qiang Xue committed
262
		return $this->getIsDeleteRequest() ? $this->getRestParam($name, $defaultValue) : null;
Qiang Xue committed
263 264 265 266 267 268 269 270
	}

	/**
	 * Returns the named PUT parameter value.
	 * @param string $name the PUT parameter name
	 * @param mixed $defaultValue the default parameter value if the PUT parameter does not exist.
	 * @return mixed the PUT parameter value
	 */
Qiang Xue committed
271
	public function getPut($name, $defaultValue = null)
Qiang Xue committed
272
	{
Qiang Xue committed
273
		return $this->getIsPutRequest() ? $this->getRestParam($name, $defaultValue) : null;
Qiang Xue committed
274 275 276 277
	}

	/**
	 * Returns the currently requested URL.
Qiang Xue committed
278
	 * This is the same as [[requestUri]].
Qiang Xue committed
279 280 281 282 283 284 285
	 * @return string part of the request URL after the host info.
	 */
	public function getUrl()
	{
		return $this->getRequestUri();
	}

Qiang Xue committed
286 287
	private $_hostInfo;

Qiang Xue committed
288
	/**
Qiang Xue committed
289
	 * Returns the schema and host part of the current request URL.
Qiang Xue committed
290 291
	 * The returned URL does not have an ending slash.
	 * By default this is determined based on the user request information.
Qiang Xue committed
292 293
	 * 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`)
Qiang Xue committed
294 295
	 * @see setHostInfo
	 */
Qiang Xue committed
296
	public function getHostInfo()
Qiang Xue committed
297
	{
Qiang Xue committed
298
		if ($this->_hostInfo === null) {
Qiang Xue committed
299 300
			$secure = $this->getIsSecureConnection();
			$http = $secure ? 'https' : 'http';
Qiang Xue committed
301 302 303 304 305 306 307 308
			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
309 310 311
			}
		}

Qiang Xue committed
312
		return $this->_hostInfo;
Qiang Xue committed
313 314 315 316 317 318
	}

	/**
	 * 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
319
	 * @param string $value the schema and host part of the application URL. The trailing slashes will be removed.
Qiang Xue committed
320 321 322
	 */
	public function setHostInfo($value)
	{
Qiang Xue committed
323
		$this->_hostInfo = rtrim($value, '/');
Qiang Xue committed
324 325
	}

Qiang Xue committed
326 327
	private $_baseUrl;

Qiang Xue committed
328 329
	/**
	 * Returns the relative URL for the application.
Qiang Xue committed
330 331
	 * This is similar to [[scriptUrl]] except that it does not include the script file name,
	 * and the ending slashes are removed.
Qiang Xue committed
332 333 334
	 * @return string the relative URL for the application
	 * @see setScriptUrl
	 */
Qiang Xue committed
335
	public function getBaseUrl()
Qiang Xue committed
336
	{
Qiang Xue committed
337 338 339
		if ($this->_baseUrl === null) {
			$this->_baseUrl = rtrim(dirname($this->getScriptUrl()), '\\/');
		}
Qiang Xue committed
340
		return $this->_baseUrl;
Qiang Xue committed
341 342 343 344 345 346 347 348 349 350
	}

	/**
	 * 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
351
		$this->_baseUrl = $value;
Qiang Xue committed
352 353
	}

Qiang Xue committed
354 355
	private $_scriptUrl;

Qiang Xue committed
356 357 358 359
	/**
	 * 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
360
	 * @throws InvalidConfigException if unable to determine the entry script URL
Qiang Xue committed
361 362 363
	 */
	public function getScriptUrl()
	{
Qiang Xue committed
364 365 366 367
		if ($this->_scriptUrl === null) {
			$scriptName = basename($_SERVER['SCRIPT_FILENAME']);
			if (basename($_SERVER['SCRIPT_NAME']) === $scriptName) {
				$this->_scriptUrl = $_SERVER['SCRIPT_NAME'];
Qiang Xue committed
368 369 370 371 372 373 374 375
			} 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;
			} elseif (isset($_SERVER['DOCUMENT_ROOT']) && strpos($_SERVER['SCRIPT_FILENAME'], $_SERVER['DOCUMENT_ROOT']) === 0) {
				$this->_scriptUrl = str_replace('\\', '/', str_replace($_SERVER['DOCUMENT_ROOT'], '', $_SERVER['SCRIPT_FILENAME']));
Qiang Xue committed
376
			} else {
Qiang Xue committed
377
				throw new InvalidConfigException('Unable to determine the entry script URL.');
Qiang Xue committed
378
			}
Qiang Xue committed
379 380 381 382 383 384 385 386 387 388 389 390
		}
		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
391
		$this->_scriptUrl = '/' . trim($value, '/');
Qiang Xue committed
392 393
	}

Qiang Xue committed
394 395
	private $_pathInfo;

Qiang Xue committed
396 397
	/**
	 * Returns the path info of the currently requested URL.
Qiang Xue committed
398 399
	 * 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
400
	 * @return string part of the request URL that is after the entry script and before the question mark.
Qiang Xue committed
401
	 * Note, the returned path info is decoded.
Qiang Xue committed
402
	 * @throws InvalidConfigException if the path info cannot be determined due to unexpected server configuration
Qiang Xue committed
403 404 405
	 */
	public function getPathInfo()
	{
Qiang Xue committed
406
		if ($this->_pathInfo === null) {
Qiang Xue committed
407 408 409 410
			$this->_pathInfo = $this->resolvePathInfo();
		}
		return $this->_pathInfo;
	}
Qiang Xue committed
411

Qiang Xue committed
412 413 414 415 416 417
	/**
	 * 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).
	 * The starting and ending slashes are both removed.
	 * @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
418
	 * @throws InvalidConfigException if the path info cannot be determined due to unexpected server configuration
Qiang Xue committed
419 420 421 422
	 */
	protected function resolvePathInfo()
	{
		$pathInfo = $this->getRequestUri();
Qiang Xue committed
423

Qiang Xue committed
424 425 426
		if (($pos = strpos($pathInfo, '?')) !== false) {
			$pathInfo = substr($pathInfo, 0, $pos);
		}
Qiang Xue committed
427

Qiang Xue committed
428
		$pathInfo = $this->decodeUrl($pathInfo);
Qiang Xue committed
429

Qiang Xue committed
430 431 432 433 434 435 436 437 438 439
		$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));
		} elseif (strpos($_SERVER['PHP_SELF'], $scriptUrl) === 0) {
			$pathInfo = substr($_SERVER['PHP_SELF'], strlen($scriptUrl));
		} else {
			return false;
Qiang Xue committed
440
		}
Qiang Xue committed
441 442

		return trim($pathInfo, '/');
Qiang Xue committed
443 444 445
	}

	/**
Qiang Xue committed
446 447 448 449 450
	 * Decodes the given URL.
	 * This method is an improved variant of the native urldecode() function. It will properly encode
	 * UTF-8 characters which may be returned by urldecode().
	 * @param string $url encoded URL
	 * @return string decoded URL
Qiang Xue committed
451
	 */
Qiang Xue committed
452
	public function decodeUrl($url)
Qiang Xue committed
453
	{
Qiang Xue committed
454
		$url = urldecode($url);
Qiang Xue committed
455 456 457

		// is it UTF-8?
		// http://w3.org/International/questions/qa-forms-utf-8.html
Qiang Xue committed
458
		if (preg_match('%^(?:
Qiang Xue committed
459 460 461 462 463 464 465 466 467 468
				[\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', $url)) {
			return $url;
Qiang Xue committed
469
		} else {
Qiang Xue committed
470
			return utf8_encode($url);
Qiang Xue committed
471 472 473
		}
	}

Qiang Xue committed
474 475
	private $_requestUri;

Qiang Xue committed
476 477
	/**
	 * Returns the request URI portion for the currently requested URL.
Qiang Xue committed
478
	 * This refers to the portion that is after the [[hostInfo]] part. It includes the [[queryString]] part if any.
Qiang Xue committed
479 480
	 * The implementation of this method referenced Zend_Controller_Request_Http in Zend Framework.
	 * @return string the request URI portion for the currently requested URL.
Qiang Xue committed
481
	 * Note that the URI returned is URL-encoded.
Qiang Xue committed
482
	 * @throws InvalidConfigException if the request URI cannot be determined due to unusual server configuration
Qiang Xue committed
483 484 485
	 */
	public function getRequestUri()
	{
Qiang Xue committed
486
		if ($this->_requestUri === null) {
Qiang Xue committed
487
			$this->_requestUri = $this->resolveRequestUri();
Qiang Xue committed
488 489 490 491 492
		}

		return $this->_requestUri;
	}

Qiang Xue committed
493 494 495 496 497 498
	/**
	 * 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
499
	 * @throws InvalidConfigException if the request URI cannot be determined due to unusual server configuration
Qiang Xue committed
500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519
	 */
	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'];
			if (!empty($_SERVER['HTTP_HOST'])) {
				if (strpos($requestUri, $_SERVER['HTTP_HOST']) !== false) {
					$requestUri = preg_replace('/^\w+:\/\/[^\/]+/', '', $requestUri);
				}
			} else {
				$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
520
			throw new InvalidConfigException('Unable to determine the request URI.');
Qiang Xue committed
521 522 523 524
		}
		return $requestUri;
	}

Qiang Xue committed
525 526 527 528 529 530
	/**
	 * 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
531
		return isset($_SERVER['QUERY_STRING']) ? $_SERVER['QUERY_STRING'] : '';
Qiang Xue committed
532 533 534 535 536 537 538 539
	}

	/**
	 * Return if the request is sent via secure channel (https).
	 * @return boolean if the request is sent via secure channel (https)
	 */
	public function getIsSecureConnection()
	{
Qiang Xue committed
540
		return !empty($_SERVER['HTTPS']) && strcasecmp($_SERVER['HTTPS'], 'off');
Qiang Xue committed
541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557
	}

	/**
	 * 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
558
		return (int)$_SERVER['SERVER_PORT'];
Qiang Xue committed
559 560 561 562 563 564
	}

	/**
	 * Returns the URL referrer, null if not present
	 * @return string URL referrer, null if not present
	 */
Qiang Xue committed
565
	public function getReferrer()
Qiang Xue committed
566
	{
Qiang Xue committed
567
		return isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : null;
Qiang Xue committed
568 569 570 571 572 573 574 575
	}

	/**
	 * Returns the user agent, null if not present.
	 * @return string user agent, null if not present
	 */
	public function getUserAgent()
	{
Qiang Xue committed
576
		return isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : null;
Qiang Xue committed
577 578 579 580 581 582 583 584
	}

	/**
	 * Returns the user IP address.
	 * @return string user IP address
	 */
	public function getUserHostAddress()
	{
Qiang Xue committed
585
		return isset($_SERVER['REMOTE_ADDR']) ? $_SERVER['REMOTE_ADDR'] : '127.0.0.1';
Qiang Xue committed
586 587 588 589 590 591 592 593
	}

	/**
	 * 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
594
		return isset($_SERVER['REMOTE_HOST']) ? $_SERVER['REMOTE_HOST'] : null;
Qiang Xue committed
595 596
	}

Qiang Xue committed
597 598
	private $_scriptFile;

Qiang Xue committed
599 600 601
	/**
	 * Returns entry script file path.
	 * @return string entry script file path (processed w/ realpath())
Qiang Xue committed
602
	 * @throws InvalidConfigException if the entry script file path cannot be determined automatically.
Qiang Xue committed
603 604 605
	 */
	public function getScriptFile()
	{
Qiang Xue committed
606 607 608 609 610 611 612 613 614 615 616 617
		if ($this->_scriptFile === null) {
			$this->setScriptFile($_SERVER['SCRIPT_FILENAME']);
		}
		return $this->_scriptFile;
	}

	/**
	 * Sets the entry script file path.
	 * The entry script file path can normally be determined based on the `SCRIPT_FILENAME` SERVER variable.
	 * However, in some server configuration, this may not be correct or feasible.
	 * This setter is provided so that the entry script file path can be manually specified.
	 * @param string $value the entry script file path
Qiang Xue committed
618
	 * @throws InvalidConfigException if the provided entry script file path is invalid.
Qiang Xue committed
619 620 621 622 623
	 */
	public function setScriptFile($value)
	{
		$this->_scriptFile = realpath($value);
		if ($this->_scriptFile === false || !is_file($this->_scriptFile)) {
Qiang Xue committed
624
			throw new InvalidConfigException('Unable to determine the entry script file path.');
Qiang Xue committed
625
		}
Qiang Xue committed
626 627 628 629 630 631 632 633 634
	}

	/**
	 * Returns information about the capabilities of user browser.
	 * @param string $userAgent the user agent to be analyzed. Defaults to null, meaning using the
	 * current User-Agent HTTP header information.
	 * @return array user browser capabilities.
	 * @see http://www.php.net/manual/en/function.get-browser.php
	 */
Qiang Xue committed
635
	public function getBrowser($userAgent = null)
Qiang Xue committed
636
	{
Qiang Xue committed
637
		return get_browser($userAgent, true);
Qiang Xue committed
638 639 640 641 642 643 644 645
	}

	/**
	 * Returns user browser accept types, null if not present.
	 * @return string user browser accept types, null if not present
	 */
	public function getAcceptTypes()
	{
Qiang Xue committed
646
		return isset($_SERVER['HTTP_ACCEPT']) ? $_SERVER['HTTP_ACCEPT'] : null;
Qiang Xue committed
647 648 649 650
	}

	private $_port;

Qiang Xue committed
651
	/**
Qiang Xue committed
652 653 654 655 656 657 658 659
	 * 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.
	 * @see setPort
	 */
	public function getPort()
	{
Qiang Xue committed
660 661 662
		if ($this->_port === null) {
			$this->_port = !$this->getIsSecureConnection() && isset($_SERVER['SERVER_PORT']) ? (int)$_SERVER['SERVER_PORT'] : 80;
		}
Qiang Xue committed
663 664 665 666 667 668 669 670 671 672 673
		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
674 675 676 677
		if ($value != $this->_port) {
			$this->_port = (int)$value;
			$this->_hostInfo = null;
		}
Qiang Xue committed
678 679 680 681 682 683 684 685 686 687 688 689 690
	}

	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.
	 * @see setSecurePort
	 */
	public function getSecurePort()
	{
Qiang Xue committed
691 692 693
		if ($this->_securePort === null) {
			$this->_securePort = $this->getIsSecureConnection() && isset($_SERVER['SERVER_PORT']) ? (int)$_SERVER['SERVER_PORT'] : 443;
		}
Qiang Xue committed
694 695 696 697 698 699 700 701 702 703 704
		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
705 706 707
		if ($value != $this->_securePort) {
			$this->_securePort = (int)$value;
			$this->_hostInfo = null;
Qiang Xue committed
708
		}
Qiang Xue committed
709 710
	}

Qiang Xue committed
711
	private $_preferredLanguages;
Qiang Xue committed
712 713

	/**
Qiang Xue committed
714 715 716 717
	 * Returns the user preferred languages.
	 * The languages returned are ordered by user's preference, starting with the language that the user
	 * prefers the most.
	 * @return string the user preferred languages. An empty array may be returned if the user has no preference.
Qiang Xue committed
718
	 */
Qiang Xue committed
719
	public function getPreferredLanguages()
Qiang Xue committed
720
	{
Qiang Xue committed
721
		if ($this->_preferredLanguages === null) {
Qiang Xue committed
722 723 724 725 726
			if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE']) && ($n = preg_match_all('/([\w\-_]+)\s*(;\s*q\s*=\s*(\d*\.\d*))?/', $_SERVER['HTTP_ACCEPT_LANGUAGE'], $matches)) > 0) {
				$languages = array();
				for ($i = 0; $i < $n; ++$i) {
					$languages[$matches[1][$i]] = empty($matches[3][$i]) ? 1.0 : floatval($matches[3][$i]);
				}
Qiang Xue committed
727
				arsort($languages);
Qiang Xue committed
728 729 730
				$this->_preferredLanguages = array_keys($languages);
			} else {
				$this->_preferredLanguages = array();
Qiang Xue committed
731 732
			}
		}
Qiang Xue committed
733
		return $this->_preferredLanguages;
Qiang Xue committed
734 735 736
	}

	/**
Qiang Xue committed
737 738 739
	 * Returns the language most preferred by the user.
	 * @return string|boolean the language most preferred by the user. If the user has no preference, false
	 * will be returned.
Qiang Xue committed
740
	 */
Qiang Xue committed
741
	public function getPreferredLanguage()
Qiang Xue committed
742
	{
Qiang Xue committed
743 744
		$languages = $this->getPreferredLanguages();
		return isset($languages[0]) ? $languages[0] : false;
Qiang Xue committed
745 746
	}

Qiang Xue committed
747

Qiang Xue committed
748
	/**
Qiang Xue committed
749 750 751 752 753
	 * Returns the cookie collection.
	 * The result can be used like an associative array. Adding {@link CHttpCookie} objects
	 * to the collection will send the cookies to the client; and removing the objects
	 * from the collection will delete those cookies on the client.
	 * @return CCookieCollection the cookie collection.
Qiang Xue committed
754
	 */
Qiang Xue committed
755
	public function getCookies()
Qiang Xue committed
756
	{
Qiang Xue committed
757 758
		if ($this->_cookies !== null) {
			return $this->_cookies;
Qiang Xue committed
759
		} else {
Qiang Xue committed
760
			return $this->_cookies = new CCookieCollection($this);
Qiang Xue committed
761
		}
Qiang Xue committed
762 763
	}

Qiang Xue committed
764 765
	private $_csrfToken;

Qiang Xue committed
766 767 768 769 770 771 772 773 774
	/**
	 * Returns the random token used to perform CSRF validation.
	 * The token will be read from cookie first. If not found, a new token
	 * will be generated.
	 * @return string the random token for CSRF validation.
	 * @see enableCsrfValidation
	 */
	public function getCsrfToken()
	{
Qiang Xue committed
775 776 777 778 779 780
		if ($this->_csrfToken === null) {
			$cookie = $this->getCookies()->itemAt($this->csrfTokenName);
			if (!$cookie || ($this->_csrfToken = $cookie->value) == null) {
				$cookie = $this->createCsrfCookie();
				$this->_csrfToken = $cookie->value;
				$this->getCookies()->add($cookie->name, $cookie);
Qiang Xue committed
781 782 783 784 785 786 787 788 789 790 791 792 793 794 795
			}
		}

		return $this->_csrfToken;
	}

	/**
	 * Creates a cookie with a randomly generated CSRF token.
	 * Initial values specified in {@link csrfCookie} will be applied
	 * to the generated cookie.
	 * @return CHttpCookie the generated cookie
	 * @see enableCsrfValidation
	 */
	protected function createCsrfCookie()
	{
Qiang Xue committed
796 797 798 799 800
		$cookie = new CHttpCookie($this->csrfTokenName, sha1(uniqid(mt_rand(), true)));
		if (is_array($this->csrfCookie)) {
			foreach ($this->csrfCookie as $name => $value) {
				$cookie->$name = $value;
			}
Qiang Xue committed
801 802 803 804 805 806 807 808 809 810 811 812 813 814
		}
		return $cookie;
	}

	/**
	 * Performs the CSRF validation.
	 * This is the event handler responding to {@link CApplication::onBeginRequest}.
	 * The default implementation will compare the CSRF token obtained
	 * from a cookie and from a POST field. If they are different, a CSRF attack is detected.
	 * @param CEvent $event event parameter
	 * @throws CHttpException if the validation fails
	 */
	public function validateCsrfToken($event)
	{
Qiang Xue committed
815
		if ($this->getIsPostRequest()) {
Qiang Xue committed
816
			// only validate POST requests
Qiang Xue committed
817 818 819 820 821 822 823 824 825 826
			$cookies = $this->getCookies();
			if ($cookies->contains($this->csrfTokenName) && isset($_POST[$this->csrfTokenName])) {
				$tokenFromCookie = $cookies->itemAt($this->csrfTokenName)->value;
				$tokenFromPost = $_POST[$this->csrfTokenName];
				$valid = $tokenFromCookie === $tokenFromPost;
			} else {
				$valid = false;
			}
			if (!$valid) {
				throw new CHttpException(400, Yii::t('yii', 'The CSRF token could not be verified.'));
Qiang Xue committed
827 828 829 830 831
			}
		}
	}
}