TYPO3 CMS  TYPO3_7-6
HttpUtility.php
Go to the documentation of this file.
1 <?php
2 namespace TYPO3\CMS\Core\Utility;
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
21 {
22  // HTTP Headers, see http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html for Details
23  const HTTP_STATUS_100 = 'HTTP/1.1 100 Continue';
24  const HTTP_STATUS_101 = 'HTTP/1.1 101 Switching Protocols';
25  const HTTP_STATUS_200 = 'HTTP/1.1 200 OK';
26  const HTTP_STATUS_201 = 'HTTP/1.1 201 Created';
27  const HTTP_STATUS_202 = 'HTTP/1.1 202 Accepted';
28  const HTTP_STATUS_203 = 'HTTP/1.1 203 Non-Authoritative Information';
29  const HTTP_STATUS_204 = 'HTTP/1.1 204 No Content';
30  const HTTP_STATUS_205 = 'HTTP/1.1 205 Reset Content';
31  const HTTP_STATUS_206 = 'HTTP/1.1 206 Partial Content';
32  const HTTP_STATUS_300 = 'HTTP/1.1 300 Multiple Choices';
33  const HTTP_STATUS_301 = 'HTTP/1.1 301 Moved Permanently';
34  const HTTP_STATUS_302 = 'HTTP/1.1 302 Found';
35  const HTTP_STATUS_303 = 'HTTP/1.1 303 See Other';
36  const HTTP_STATUS_304 = 'HTTP/1.1 304 Not Modified';
37  const HTTP_STATUS_305 = 'HTTP/1.1 305 Use Proxy';
38  const HTTP_STATUS_307 = 'HTTP/1.1 307 Temporary Redirect';
39  const HTTP_STATUS_400 = 'HTTP/1.1 400 Bad Request';
40  const HTTP_STATUS_401 = 'HTTP/1.1 401 Unauthorized';
41  const HTTP_STATUS_402 = 'HTTP/1.1 402 Payment Required';
42  const HTTP_STATUS_403 = 'HTTP/1.1 403 Forbidden';
43  const HTTP_STATUS_404 = 'HTTP/1.1 404 Not Found';
44  const HTTP_STATUS_405 = 'HTTP/1.1 405 Method Not Allowed';
45  const HTTP_STATUS_406 = 'HTTP/1.1 406 Not Acceptable';
46  const HTTP_STATUS_407 = 'HTTP/1.1 407 Proxy Authentication Required';
47  const HTTP_STATUS_408 = 'HTTP/1.1 408 Request Timeout';
48  const HTTP_STATUS_409 = 'HTTP/1.1 409 Conflict';
49  const HTTP_STATUS_410 = 'HTTP/1.1 410 Gone';
50  const HTTP_STATUS_411 = 'HTTP/1.1 411 Length Required';
51  const HTTP_STATUS_412 = 'HTTP/1.1 412 Precondition Failed';
52  const HTTP_STATUS_413 = 'HTTP/1.1 413 Request Entity Too Large';
53  const HTTP_STATUS_414 = 'HTTP/1.1 414 Request-URI Too Long';
54  const HTTP_STATUS_415 = 'HTTP/1.1 415 Unsupported Media Type';
55  const HTTP_STATUS_416 = 'HTTP/1.1 416 Requested Range Not Satisfiable';
56  const HTTP_STATUS_417 = 'HTTP/1.1 417 Expectation Failed';
57  const HTTP_STATUS_500 = 'HTTP/1.1 500 Internal Server Error';
58  const HTTP_STATUS_501 = 'HTTP/1.1 501 Not Implemented';
59  const HTTP_STATUS_502 = 'HTTP/1.1 502 Bad Gateway';
60  const HTTP_STATUS_503 = 'HTTP/1.1 503 Service Unavailable';
61  const HTTP_STATUS_504 = 'HTTP/1.1 504 Gateway Timeout';
62  const HTTP_STATUS_505 = 'HTTP/1.1 505 Version Not Supported';
63  // URL Schemes
64  const SCHEME_HTTP = 1;
65  const SCHEME_HTTPS = 2;
66 
76  public static function redirect($url, $httpStatus = self::HTTP_STATUS_303)
77  {
78  self::setResponseCode($httpStatus);
79  header('Location: ' . GeneralUtility::locationHeaderUrl($url));
80  die;
81  }
82 
89  public static function setResponseCode($httpStatus = self::HTTP_STATUS_303)
90  {
91  header($httpStatus);
92  }
93 
100  public static function setResponseCodeAndExit($httpStatus = self::HTTP_STATUS_303)
101  {
102  self::setResponseCode($httpStatus);
103  die;
104  }
105 
113  public static function buildUrl(array $urlParts)
114  {
115  return (isset($urlParts['scheme']) ? $urlParts['scheme'] . '://' : '') .
116  (isset($urlParts['user']) ? $urlParts['user'] .
117  (isset($urlParts['pass']) ? ':' . $urlParts['pass'] : '') . '@' : '') .
118  (isset($urlParts['host']) ? $urlParts['host'] : '') .
119  (isset($urlParts['port']) ? ':' . $urlParts['port'] : '') .
120  (isset($urlParts['path']) ? $urlParts['path'] : '') .
121  (isset($urlParts['query']) ? '?' . $urlParts['query'] : '') .
122  (isset($urlParts['fragment']) ? '#' . $urlParts['fragment'] : '');
123  }
124 }
static setResponseCode($httpStatus=self::HTTP_STATUS_303)
Definition: HttpUtility.php:89
static buildUrl(array $urlParts)
static redirect($url, $httpStatus=self::HTTP_STATUS_303)
Definition: HttpUtility.php:76
static setResponseCodeAndExit($httpStatus=self::HTTP_STATUS_303)