]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - application/http/HttpUtils.php
4fc4e3dcff08f3457c7a2d541962c699979732c7
[github/shaarli/Shaarli.git] / application / http / HttpUtils.php
1 <?php
2
3 use Shaarli\Http\Url;
4
5 /**
6 * GET an HTTP URL to retrieve its content
7 * Uses the cURL library or a fallback method
8 *
9 * @param string $url URL to get (http://...)
10 * @param int $timeout network timeout (in seconds)
11 * @param int $maxBytes maximum downloaded bytes (default: 4 MiB)
12 * @param callable|string $curlWriteFunction Optional callback called during the download (cURL CURLOPT_WRITEFUNCTION).
13 * Can be used to add download conditions on the
14 * headers (response code, content type, etc.).
15 *
16 * @return array HTTP response headers, downloaded content
17 *
18 * Output format:
19 * [0] = associative array containing HTTP response headers
20 * [1] = URL content (downloaded data)
21 *
22 * Example:
23 * list($headers, $data) = get_http_response('http://sebauvage.net/');
24 * if (strpos($headers[0], '200 OK') !== false) {
25 * echo 'Data type: '.htmlspecialchars($headers['Content-Type']);
26 * } else {
27 * echo 'There was an error: '.htmlspecialchars($headers[0]);
28 * }
29 *
30 * @see https://secure.php.net/manual/en/ref.curl.php
31 * @see https://secure.php.net/manual/en/functions.anonymous.php
32 * @see https://secure.php.net/manual/en/function.preg-split.php
33 * @see https://secure.php.net/manual/en/function.explode.php
34 * @see http://stackoverflow.com/q/17641073
35 * @see http://stackoverflow.com/q/9183178
36 * @see http://stackoverflow.com/q/1462720
37 */
38 function get_http_response($url, $timeout = 30, $maxBytes = 4194304, $curlWriteFunction = null)
39 {
40 $urlObj = new Url($url);
41 $cleanUrl = $urlObj->idnToAscii();
42
43 if (!filter_var($cleanUrl, FILTER_VALIDATE_URL) || !$urlObj->isHttp()) {
44 return array(array(0 => 'Invalid HTTP UrlUtils'), false);
45 }
46
47 $userAgent =
48 'Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:45.0)'
49 . ' Gecko/20100101 Firefox/45.0';
50 $acceptLanguage =
51 substr(setlocale(LC_COLLATE, 0), 0, 2) . ',en-US;q=0.7,en;q=0.3';
52 $maxRedirs = 3;
53
54 if (!function_exists('curl_init')) {
55 return get_http_response_fallback(
56 $cleanUrl,
57 $timeout,
58 $maxBytes,
59 $userAgent,
60 $acceptLanguage,
61 $maxRedirs
62 );
63 }
64
65 $ch = curl_init($cleanUrl);
66 if ($ch === false) {
67 return array(array(0 => 'curl_init() error'), false);
68 }
69
70 // General cURL settings
71 curl_setopt($ch, CURLOPT_AUTOREFERER, true);
72 curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
73 curl_setopt($ch, CURLOPT_HEADER, true);
74 curl_setopt(
75 $ch,
76 CURLOPT_HTTPHEADER,
77 array('Accept-Language: ' . $acceptLanguage)
78 );
79 curl_setopt($ch, CURLOPT_MAXREDIRS, $maxRedirs);
80 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
81 curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);
82 curl_setopt($ch, CURLOPT_USERAGENT, $userAgent);
83
84 if (is_callable($curlWriteFunction)) {
85 curl_setopt($ch, CURLOPT_WRITEFUNCTION, $curlWriteFunction);
86 }
87
88 // Max download size management
89 curl_setopt($ch, CURLOPT_BUFFERSIZE, 1024*16);
90 curl_setopt($ch, CURLOPT_NOPROGRESS, false);
91 curl_setopt(
92 $ch,
93 CURLOPT_PROGRESSFUNCTION,
94 function ($arg0, $arg1, $arg2, $arg3, $arg4 = 0) use ($maxBytes) {
95 if (version_compare(phpversion(), '5.5', '<')) {
96 // PHP version lower than 5.5
97 // Callback has 4 arguments
98 $downloaded = $arg1;
99 } else {
100 // Callback has 5 arguments
101 $downloaded = $arg2;
102 }
103 // Non-zero return stops downloading
104 return ($downloaded > $maxBytes) ? 1 : 0;
105 }
106 );
107
108 $response = curl_exec($ch);
109 $errorNo = curl_errno($ch);
110 $errorStr = curl_error($ch);
111 $headSize = curl_getinfo($ch, CURLINFO_HEADER_SIZE);
112 curl_close($ch);
113
114 if ($response === false) {
115 if ($errorNo == CURLE_COULDNT_RESOLVE_HOST) {
116 /*
117 * Workaround to match fallback method behaviour
118 * Removing this would require updating
119 * GetHttpUrlTest::testGetInvalidRemoteUrl()
120 */
121 return array(false, false);
122 }
123 return array(array(0 => 'curl_exec() error: ' . $errorStr), false);
124 }
125
126 // Formatting output like the fallback method
127 $rawHeaders = substr($response, 0, $headSize);
128
129 // Keep only headers from latest redirection
130 $rawHeadersArrayRedirs = explode("\r\n\r\n", trim($rawHeaders));
131 $rawHeadersLastRedir = end($rawHeadersArrayRedirs);
132
133 $content = substr($response, $headSize);
134 $headers = array();
135 foreach (preg_split('~[\r\n]+~', $rawHeadersLastRedir) as $line) {
136 if (empty($line) || ctype_space($line)) {
137 continue;
138 }
139 $splitLine = explode(': ', $line, 2);
140 if (count($splitLine) > 1) {
141 $key = $splitLine[0];
142 $value = $splitLine[1];
143 if (array_key_exists($key, $headers)) {
144 if (!is_array($headers[$key])) {
145 $headers[$key] = array(0 => $headers[$key]);
146 }
147 $headers[$key][] = $value;
148 } else {
149 $headers[$key] = $value;
150 }
151 } else {
152 $headers[] = $splitLine[0];
153 }
154 }
155
156 return array($headers, $content);
157 }
158
159 /**
160 * GET an HTTP URL to retrieve its content (fallback method)
161 *
162 * @param string $cleanUrl URL to get (http://... valid and in ASCII form)
163 * @param int $timeout network timeout (in seconds)
164 * @param int $maxBytes maximum downloaded bytes
165 * @param string $userAgent "User-Agent" header
166 * @param string $acceptLanguage "Accept-Language" header
167 * @param int $maxRedr maximum amount of redirections followed
168 *
169 * @return array HTTP response headers, downloaded content
170 *
171 * Output format:
172 * [0] = associative array containing HTTP response headers
173 * [1] = URL content (downloaded data)
174 *
175 * @see http://php.net/manual/en/function.file-get-contents.php
176 * @see http://php.net/manual/en/function.stream-context-create.php
177 * @see http://php.net/manual/en/function.get-headers.php
178 */
179 function get_http_response_fallback(
180 $cleanUrl,
181 $timeout,
182 $maxBytes,
183 $userAgent,
184 $acceptLanguage,
185 $maxRedr
186 ) {
187 $options = array(
188 'http' => array(
189 'method' => 'GET',
190 'timeout' => $timeout,
191 'user_agent' => $userAgent,
192 'header' => "Accept: */*\r\n"
193 . 'Accept-Language: ' . $acceptLanguage
194 )
195 );
196
197 stream_context_set_default($options);
198 list($headers, $finalUrl) = get_redirected_headers($cleanUrl, $maxRedr);
199 if (! $headers || strpos($headers[0], '200 OK') === false) {
200 $options['http']['request_fulluri'] = true;
201 stream_context_set_default($options);
202 list($headers, $finalUrl) = get_redirected_headers($cleanUrl, $maxRedr);
203 }
204
205 if (! $headers) {
206 return array($headers, false);
207 }
208
209 try {
210 // TODO: catch Exception in calling code (thumbnailer)
211 $context = stream_context_create($options);
212 $content = file_get_contents($finalUrl, false, $context, -1, $maxBytes);
213 } catch (Exception $exc) {
214 return array(array(0 => 'HTTP Error'), $exc->getMessage());
215 }
216
217 return array($headers, $content);
218 }
219
220 /**
221 * Retrieve HTTP headers, following n redirections (temporary and permanent ones).
222 *
223 * @param string $url initial URL to reach.
224 * @param int $redirectionLimit max redirection follow.
225 *
226 * @return array HTTP headers, or false if it failed.
227 */
228 function get_redirected_headers($url, $redirectionLimit = 3)
229 {
230 $headers = get_headers($url, 1);
231 if (!empty($headers['location']) && empty($headers['Location'])) {
232 $headers['Location'] = $headers['location'];
233 }
234
235 // Headers found, redirection found, and limit not reached.
236 if ($redirectionLimit-- > 0
237 && !empty($headers)
238 && (strpos($headers[0], '301') !== false || strpos($headers[0], '302') !== false)
239 && !empty($headers['Location'])) {
240 $redirection = is_array($headers['Location']) ? end($headers['Location']) : $headers['Location'];
241 if ($redirection != $url) {
242 $redirection = getAbsoluteUrl($url, $redirection);
243 return get_redirected_headers($redirection, $redirectionLimit);
244 }
245 }
246
247 return array($headers, $url);
248 }
249
250 /**
251 * Get an absolute URL from a complete one, and another absolute/relative URL.
252 *
253 * @param string $originalUrl The original complete URL.
254 * @param string $newUrl The new one, absolute or relative.
255 *
256 * @return string Final URL:
257 * - $newUrl if it was already an absolute URL.
258 * - if it was relative, absolute URL from $originalUrl path.
259 */
260 function getAbsoluteUrl($originalUrl, $newUrl)
261 {
262 $newScheme = parse_url($newUrl, PHP_URL_SCHEME);
263 // Already an absolute URL.
264 if (!empty($newScheme)) {
265 return $newUrl;
266 }
267
268 $parts = parse_url($originalUrl);
269 $final = $parts['scheme'] .'://'. $parts['host'];
270 $final .= (!empty($parts['port'])) ? $parts['port'] : '';
271 $final .= '/';
272 if ($newUrl[0] != '/') {
273 $final .= substr(ltrim($parts['path'], '/'), 0, strrpos($parts['path'], '/'));
274 }
275 $final .= ltrim($newUrl, '/');
276 return $final;
277 }
278
279 /**
280 * Returns the server's base URL: scheme://domain.tld[:port]
281 *
282 * @param array $server the $_SERVER array
283 *
284 * @return string the server's base URL
285 *
286 * @see http://www.ietf.org/rfc/rfc7239.txt
287 * @see http://www.ietf.org/rfc/rfc6648.txt
288 * @see http://stackoverflow.com/a/3561399
289 * @see http://stackoverflow.com/q/452375
290 */
291 function server_url($server)
292 {
293 $scheme = 'http';
294 $port = '';
295
296 // Shaarli is served behind a proxy
297 if (isset($server['HTTP_X_FORWARDED_PROTO'])) {
298 // Keep forwarded scheme
299 if (strpos($server['HTTP_X_FORWARDED_PROTO'], ',') !== false) {
300 $schemes = explode(',', $server['HTTP_X_FORWARDED_PROTO']);
301 $scheme = trim($schemes[0]);
302 } else {
303 $scheme = $server['HTTP_X_FORWARDED_PROTO'];
304 }
305
306 if (isset($server['HTTP_X_FORWARDED_PORT'])) {
307 // Keep forwarded port
308 if (strpos($server['HTTP_X_FORWARDED_PORT'], ',') !== false) {
309 $ports = explode(',', $server['HTTP_X_FORWARDED_PORT']);
310 $port = trim($ports[0]);
311 } else {
312 $port = $server['HTTP_X_FORWARDED_PORT'];
313 }
314
315 // This is a workaround for proxies that don't forward the scheme properly.
316 // Connecting over port 443 has to be in HTTPS.
317 // See https://github.com/shaarli/Shaarli/issues/1022
318 if ($port == '443') {
319 $scheme = 'https';
320 }
321
322 if (($scheme == 'http' && $port != '80')
323 || ($scheme == 'https' && $port != '443')
324 ) {
325 $port = ':' . $port;
326 } else {
327 $port = '';
328 }
329 }
330
331 if (isset($server['HTTP_X_FORWARDED_HOST'])) {
332 // Keep forwarded host
333 if (strpos($server['HTTP_X_FORWARDED_HOST'], ',') !== false) {
334 $hosts = explode(',', $server['HTTP_X_FORWARDED_HOST']);
335 $host = trim($hosts[0]);
336 } else {
337 $host = $server['HTTP_X_FORWARDED_HOST'];
338 }
339 } else {
340 $host = $server['SERVER_NAME'];
341 }
342
343 return $scheme.'://'.$host.$port;
344 }
345
346 // SSL detection
347 if ((! empty($server['HTTPS']) && strtolower($server['HTTPS']) == 'on')
348 || (isset($server['SERVER_PORT']) && $server['SERVER_PORT'] == '443')) {
349 $scheme = 'https';
350 }
351
352 // Do not append standard port values
353 if (($scheme == 'http' && $server['SERVER_PORT'] != '80')
354 || ($scheme == 'https' && $server['SERVER_PORT'] != '443')) {
355 $port = ':'.$server['SERVER_PORT'];
356 }
357
358 return $scheme.'://'.$server['SERVER_NAME'].$port;
359 }
360
361 /**
362 * Returns the absolute URL of the current script, without the query
363 *
364 * If the resource is "index.php", then it is removed (for better-looking URLs)
365 *
366 * @param array $server the $_SERVER array
367 *
368 * @return string the absolute URL of the current script, without the query
369 */
370 function index_url($server)
371 {
372 $scriptname = $server['SCRIPT_NAME'] ?? '';
373 if (endsWith($scriptname, 'index.php')) {
374 $scriptname = substr($scriptname, 0, -9);
375 }
376 return server_url($server) . $scriptname;
377 }
378
379 /**
380 * Returns the absolute URL of the current script, with current route and query
381 *
382 * If the resource is "index.php", then it is removed (for better-looking URLs)
383 *
384 * @param array $server the $_SERVER array
385 *
386 * @return string the absolute URL of the current script, with the query
387 */
388 function page_url($server)
389 {
390 $scriptname = $server['SCRIPT_NAME'] ?? '';
391 if (endsWith($scriptname, 'index.php')) {
392 $scriptname = substr($scriptname, 0, -9);
393 }
394
395 $route = ltrim($server['REQUEST_URI'] ?? '', $scriptname);
396 if (! empty($server['QUERY_STRING'])) {
397 return index_url($server) . $route . '?' . $server['QUERY_STRING'];
398 }
399
400 return index_url($server) . $route;
401 }
402
403 /**
404 * Retrieve the initial IP forwarded by the reverse proxy.
405 *
406 * Inspired from: https://github.com/zendframework/zend-http/blob/master/src/PhpEnvironment/RemoteAddress.php
407 *
408 * @param array $server $_SERVER array which contains HTTP headers.
409 * @param array $trustedIps List of trusted IP from the configuration.
410 *
411 * @return string|bool The forwarded IP, or false if none could be extracted.
412 */
413 function getIpAddressFromProxy($server, $trustedIps)
414 {
415 $forwardedIpHeader = 'HTTP_X_FORWARDED_FOR';
416 if (empty($server[$forwardedIpHeader])) {
417 return false;
418 }
419
420 $ips = preg_split('/\s*,\s*/', $server[$forwardedIpHeader]);
421 $ips = array_diff($ips, $trustedIps);
422 if (empty($ips)) {
423 return false;
424 }
425
426 return array_pop($ips);
427 }
428
429
430 /**
431 * Return an identifier based on the advertised client IP address(es)
432 *
433 * This aims at preventing session hijacking from users behind the same proxy
434 * by relying on HTTP headers.
435 *
436 * See:
437 * - https://secure.php.net/manual/en/reserved.variables.server.php
438 * - https://stackoverflow.com/questions/3003145/how-to-get-the-client-ip-address-in-php
439 * - https://stackoverflow.com/questions/12233406/preventing-session-hijacking
440 * - https://stackoverflow.com/questions/21354859/trusting-x-forwarded-for-to-identify-a-visitor
441 *
442 * @param array $server The $_SERVER array
443 *
444 * @return string An identifier based on client IP address information
445 */
446 function client_ip_id($server)
447 {
448 $ip = $server['REMOTE_ADDR'];
449
450 if (isset($server['HTTP_X_FORWARDED_FOR'])) {
451 $ip = $ip . '_' . $server['HTTP_X_FORWARDED_FOR'];
452 }
453 if (isset($server['HTTP_CLIENT_IP'])) {
454 $ip = $ip . '_' . $server['HTTP_CLIENT_IP'];
455 }
456 return $ip;
457 }
458
459
460 /**
461 * Returns true if Shaarli's currently browsed in HTTPS.
462 * Supports reverse proxies (if the headers are correctly set).
463 *
464 * @param array $server $_SERVER.
465 *
466 * @return bool true if HTTPS, false otherwise.
467 */
468 function is_https($server)
469 {
470
471 if (isset($server['HTTP_X_FORWARDED_PORT'])) {
472 // Keep forwarded port
473 if (strpos($server['HTTP_X_FORWARDED_PORT'], ',') !== false) {
474 $ports = explode(',', $server['HTTP_X_FORWARDED_PORT']);
475 $port = trim($ports[0]);
476 } else {
477 $port = $server['HTTP_X_FORWARDED_PORT'];
478 }
479
480 if ($port == '443') {
481 return true;
482 }
483 }
484
485 return ! empty($server['HTTPS']);
486 }
487
488 /**
489 * Get cURL callback function for CURLOPT_WRITEFUNCTION
490 *
491 * @param string $charset to extract from the downloaded page (reference)
492 * @param string $title to extract from the downloaded page (reference)
493 * @param string $description to extract from the downloaded page (reference)
494 * @param string $keywords to extract from the downloaded page (reference)
495 * @param bool $retrieveDescription Automatically tries to retrieve description and keywords from HTML content
496 * @param string $curlGetInfo Optionally overrides curl_getinfo function
497 *
498 * @return Closure
499 */
500 function get_curl_download_callback(
501 &$charset,
502 &$title,
503 &$description,
504 &$keywords,
505 $retrieveDescription,
506 $curlGetInfo = 'curl_getinfo'
507 ) {
508 $isRedirected = false;
509 $currentChunk = 0;
510 $foundChunk = null;
511
512 /**
513 * cURL callback function for CURLOPT_WRITEFUNCTION (called during the download).
514 *
515 * While downloading the remote page, we check that the HTTP code is 200 and content type is 'html/text'
516 * Then we extract the title and the charset and stop the download when it's done.
517 *
518 * @param resource $ch cURL resource
519 * @param string $data chunk of data being downloaded
520 *
521 * @return int|bool length of $data or false if we need to stop the download
522 */
523 return function (&$ch, $data) use (
524 $retrieveDescription,
525 $curlGetInfo,
526 &$charset,
527 &$title,
528 &$description,
529 &$keywords,
530 &$isRedirected,
531 &$currentChunk,
532 &$foundChunk
533 ) {
534 $currentChunk++;
535 $responseCode = $curlGetInfo($ch, CURLINFO_RESPONSE_CODE);
536 if (!empty($responseCode) && in_array($responseCode, [301, 302])) {
537 $isRedirected = true;
538 return strlen($data);
539 }
540 if (!empty($responseCode) && $responseCode !== 200) {
541 return false;
542 }
543 // After a redirection, the content type will keep the previous request value
544 // until it finds the next content-type header.
545 if (! $isRedirected || strpos(strtolower($data), 'content-type') !== false) {
546 $contentType = $curlGetInfo($ch, CURLINFO_CONTENT_TYPE);
547 }
548 if (!empty($contentType) && strpos($contentType, 'text/html') === false) {
549 return false;
550 }
551 if (!empty($contentType) && empty($charset)) {
552 $charset = header_extract_charset($contentType);
553 }
554 if (empty($charset)) {
555 $charset = html_extract_charset($data);
556 }
557 if (empty($title)) {
558 $title = html_extract_title($data);
559 $foundChunk = ! empty($title) ? $currentChunk : $foundChunk;
560 }
561 if ($retrieveDescription && empty($description)) {
562 $description = html_extract_tag('description', $data);
563 $foundChunk = ! empty($description) ? $currentChunk : $foundChunk;
564 }
565 if ($retrieveDescription && empty($keywords)) {
566 $keywords = html_extract_tag('keywords', $data);
567 if (! empty($keywords)) {
568 $foundChunk = $currentChunk;
569 // Keywords use the format tag1, tag2 multiple words, tag
570 // So we format them to match Shaarli's separator and glue multiple words with '-'
571 $keywords = implode(' ', array_map(function($keyword) {
572 return implode('-', preg_split('/\s+/', trim($keyword)));
573 }, explode(',', $keywords)));
574 }
575 }
576
577 // We got everything we want, stop the download.
578 // If we already found either the title, description or keywords,
579 // it's highly unlikely that we'll found the other metas further than
580 // in the same chunk of data or the next one. So we also stop the download after that.
581 if ((!empty($responseCode) && !empty($contentType) && !empty($charset)) && $foundChunk !== null
582 && (! $retrieveDescription
583 || $foundChunk < $currentChunk
584 || (!empty($title) && !empty($description) && !empty($keywords))
585 )
586 ) {
587 return false;
588 }
589
590 return strlen($data);
591 };
592 }