Blame view

sources/lib/private/request.php 5.94 KB
03e52840d   Kload   Init
1
2
3
4
5
6
7
8
9
10
11
  <?php
  /**
   * Copyright (c) 2012 Bart Visscher <bartv@thisnet.nl>
   * This file is licensed under the Affero General Public License version 3 or
   * later.
   * See the COPYING-README file.
   */
  
  class OC_Request {
  	/**
  	 * @brief Check overwrite condition
31b7f2792   Kload   Upgrade to ownclo...
12
  	 * @param string $type
03e52840d   Kload   Init
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
  	 * @returns bool
  	 */
  	private static function isOverwriteCondition($type = '') {
  		$regex = '/' . OC_Config::getValue('overwritecondaddr', '')  . '/';
  		return $regex === '//' or preg_match($regex, $_SERVER['REMOTE_ADDR']) === 1
  			or ($type !== 'protocol' and OC_Config::getValue('forcessl', false));
  	}
  
  	/**
  	 * @brief Returns the server host
  	 * @returns string the server host
  	 *
  	 * Returns the server host, even if the website uses one or more
  	 * reverse proxies
  	 */
  	public static function serverHost() {
  		if(OC::$CLI) {
  			return 'localhost';
  		}
  		if(OC_Config::getValue('overwritehost', '') !== '' and self::isOverwriteCondition()) {
  			return OC_Config::getValue('overwritehost');
  		}
  		if (isset($_SERVER['HTTP_X_FORWARDED_HOST'])) {
  			if (strpos($_SERVER['HTTP_X_FORWARDED_HOST'], ",") !== false) {
  				$host = trim(array_pop(explode(",", $_SERVER['HTTP_X_FORWARDED_HOST'])));
  			}
  			else{
  				$host=$_SERVER['HTTP_X_FORWARDED_HOST'];
  			}
  		}
  		else{
  			if (isset($_SERVER['HTTP_HOST'])) {
  				return $_SERVER['HTTP_HOST'];
  			}
  			if (isset($_SERVER['SERVER_NAME'])) {
  				return $_SERVER['SERVER_NAME'];
  			}
  			return 'localhost';
  		}
  		return $host;
  	}
  
  
  	/**
  	* @brief Returns the server protocol
  	* @returns string the server protocol
  	*
  	* Returns the server protocol. It respects reverse proxy servers and load balancers
  	*/
  	public static function serverProtocol() {
  		if(OC_Config::getValue('overwriteprotocol', '') !== '' and self::isOverwriteCondition('protocol')) {
  			return OC_Config::getValue('overwriteprotocol');
  		}
  		if (isset($_SERVER['HTTP_X_FORWARDED_PROTO'])) {
  			$proto = strtolower($_SERVER['HTTP_X_FORWARDED_PROTO']);
  		}else{
  			if(isset($_SERVER['HTTPS']) and !empty($_SERVER['HTTPS']) and ($_SERVER['HTTPS']!='off')) {
  				$proto = 'https';
  			}else{
  				$proto = 'http';
  			}
  		}
  		return $proto;
  	}
  
  	/**
  	 * @brief Returns the request uri
  	 * @returns string the request uri
  	 *
  	 * Returns the request uri, even if the website uses one or more
  	 * reverse proxies
  	 */
  	public static function requestUri() {
  		$uri = isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : '';
  		if (OC_Config::getValue('overwritewebroot', '') !== '' and self::isOverwriteCondition()) {
  			$uri = self::scriptName() . substr($uri, strlen($_SERVER['SCRIPT_NAME']));
  		}
  		return $uri;
  	}
  
  	/**
  	 * @brief Returns the script name
  	 * @returns string the script name
  	 *
  	 * Returns the script name, even if the website uses one or more
  	 * reverse proxies
  	 */
  	public static function scriptName() {
  		$name = $_SERVER['SCRIPT_NAME'];
  		if (OC_Config::getValue('overwritewebroot', '') !== '' and self::isOverwriteCondition()) {
31b7f2792   Kload   Upgrade to ownclo...
103
  			$serverroot = str_replace("\\", '/', substr(__DIR__, 0, -strlen('lib/private/')));
03e52840d   Kload   Init
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
  			$suburi = str_replace("\\", "/", substr(realpath($_SERVER["SCRIPT_FILENAME"]), strlen($serverroot)));
  			$name = OC_Config::getValue('overwritewebroot', '') . $suburi;
  		}
  		return $name;
  	}
  
  	/**
  	 * @brief get Path info from request
  	 * @returns string Path info or false when not found
  	 */
  	public static function getPathInfo() {
  		if (array_key_exists('PATH_INFO', $_SERVER)) {
  			$path_info = $_SERVER['PATH_INFO'];
  		}else{
  			$path_info = self::getRawPathInfo();
  			// following is taken from Sabre_DAV_URLUtil::decodePathSegment
  			$path_info = rawurldecode($path_info);
  			$encoding = mb_detect_encoding($path_info, array('UTF-8', 'ISO-8859-1'));
  
  			switch($encoding) {
  
  				case 'ISO-8859-1' :
  					$path_info = utf8_encode($path_info);
  
  			}
  			// end copy
  		}
  		return $path_info;
  	}
  
  	/**
  	 * @brief get Path info from request, not urldecoded
  	 * @returns string Path info or false when not found
  	 */
  	public static function getRawPathInfo() {
31b7f2792   Kload   Upgrade to ownclo...
139
140
141
142
143
  		$requestUri = $_SERVER['REQUEST_URI'];
  		// remove too many leading slashes - can be caused by reverse proxy configuration
  		if (strpos($requestUri, '/') === 0) {
  			$requestUri = '/' . ltrim($requestUri, '/');
  		}
03e52840d   Kload   Init
144
  		// Remove the query string from REQUEST_URI
31b7f2792   Kload   Upgrade to ownclo...
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
  		if ($pos = strpos($requestUri, '?')) {
  			$requestUri = substr($requestUri, 0, $pos);
  		}
  
  		$scriptName = $_SERVER['SCRIPT_NAME'];
  		$path_info = $requestUri;
  
  		// strip off the script name's dir and file name
  		list($path, $name) = \Sabre_DAV_URLUtil::splitPath($scriptName);
  		if (!empty($path)) {
  			if( $path === $path_info || strpos($path_info, $path.'/') === 0) {
  				$path_info = substr($path_info, strlen($path));
  			} else {
  				throw new Exception("The requested uri($requestUri) cannot be processed by the script '$scriptName')");
  			}
  		}
  		if (strpos($path_info, '/'.$name) === 0) {
  			$path_info = substr($path_info, strlen($name) + 1);
  		}
  		if (strpos($path_info, $name) === 0) {
  			$path_info = substr($path_info, strlen($name));
  		}
  		if($path_info === '/'){
  			return '';
  		} else {
  			return $path_info;
03e52840d   Kload   Init
171
  		}
03e52840d   Kload   Init
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
  	}
  
  	/**
  	 * @brief Check if this is a no-cache request
  	 * @returns boolean true for no-cache
  	 */
  	static public function isNoCache() {
  		if (!isset($_SERVER['HTTP_CACHE_CONTROL'])) {
  			return false;
  		}
  		return $_SERVER['HTTP_CACHE_CONTROL'] == 'no-cache';
  	}
  
  	/**
  	 * @brief Check if the requestor understands gzip
  	 * @returns boolean true for gzip encoding supported
  	 */
  	static public function acceptGZip() {
  		if (!isset($_SERVER['HTTP_ACCEPT_ENCODING'])) {
  			return false;
  		}
  		$HTTP_ACCEPT_ENCODING = $_SERVER["HTTP_ACCEPT_ENCODING"];
  		if( strpos($HTTP_ACCEPT_ENCODING, 'x-gzip') !== false )
  			return 'x-gzip';
  		else if( strpos($HTTP_ACCEPT_ENCODING, 'gzip') !== false )
  			return 'gzip';
  		return false;
  	}
  
  	/**
  	 * @brief Check if the requester sent along an mtime
  	 * @returns false or an mtime
  	 */
  	static public function hasModificationTime () {
  		if (isset($_SERVER['HTTP_X_OC_MTIME'])) {
  			return $_SERVER['HTTP_X_OC_MTIME'];
  		} else {
  			return false;
  		}
  	}
  }