]> git.mxchange.org Git - friendica.git/blob - src/Util/Network.php
Dependency of callstack moved one layer up
[friendica.git] / src / Util / Network.php
1 <?php
2 /**
3  * @file src/Util/Network.php
4  */
5 namespace Friendica\Util;
6
7 use DOMDocument;
8 use DomXPath;
9 use Friendica\Core\Config;
10 use Friendica\Core\Hook;
11 use Friendica\Core\Logger;
12 use Friendica\Core\System;
13 use Friendica\Network\CurlResult;
14
15 class Network
16 {
17         /**
18          * Curl wrapper
19          *
20          * If binary flag is true, return binary results.
21          * Set the cookiejar argument to a string (e.g. "/tmp/friendica-cookies.txt")
22          * to preserve cookies from one request to the next.
23          *
24          * @brief Curl wrapper
25          * @param string  $url            URL to fetch
26          * @param boolean $binary         default false
27          *                                TRUE if asked to return binary results (file download)
28          * @param integer $redirects      The recursion counter for internal use - default 0
29          * @param integer $timeout        Timeout in seconds, default system config value or 60 seconds
30          * @param string  $accept_content supply Accept: header with 'accept_content' as the value
31          * @param string  $cookiejar      Path to cookie jar file
32          *
33          * @return string The fetched content
34          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
35          */
36         public static function fetchUrl($url, $binary = false, &$redirects = 0, $timeout = 0, $accept_content = null, $cookiejar = '')
37         {
38                 $ret = self::fetchUrlFull($url, $binary, $redirects, $timeout, $accept_content, $cookiejar);
39
40                 return $ret->getBody();
41         }
42
43         /**
44          * Curl wrapper with array of return values.
45          *
46          * Inner workings and parameters are the same as @ref fetchUrl but returns an array with
47          * all the information collected during the fetch.
48          *
49          * @brief Curl wrapper with array of return values.
50          * @param string  $url            URL to fetch
51          * @param boolean $binary         default false
52          *                                TRUE if asked to return binary results (file download)
53          * @param integer $redirects      The recursion counter for internal use - default 0
54          * @param integer $timeout        Timeout in seconds, default system config value or 60 seconds
55          * @param string  $accept_content supply Accept: header with 'accept_content' as the value
56          * @param string  $cookiejar      Path to cookie jar file
57          *
58          * @return CurlResult With all relevant information, 'body' contains the actual fetched content.
59          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
60          */
61         public static function fetchUrlFull($url, $binary = false, &$redirects = 0, $timeout = 0, $accept_content = null, $cookiejar = '')
62         {
63                 return self::curl(
64                         $url,
65                         $binary,
66                         $redirects,
67                         ['timeout'=>$timeout,
68                         'accept_content'=>$accept_content,
69                         'cookiejar'=>$cookiejar
70                         ]
71                 );
72         }
73
74         /**
75          * @brief fetches an URL.
76          *
77          * @param string  $url       URL to fetch
78          * @param boolean $binary    default false
79          *                           TRUE if asked to return binary results (file download)
80          * @param int     $redirects The recursion counter for internal use - default 0
81          * @param array   $opts      (optional parameters) assoziative array with:
82          *                           'accept_content' => supply Accept: header with 'accept_content' as the value
83          *                           'timeout' => int Timeout in seconds, default system config value or 60 seconds
84          *                           'http_auth' => username:password
85          *                           'novalidate' => do not validate SSL certs, default is to validate using our CA list
86          *                           'nobody' => only return the header
87          *                           'cookiejar' => path to cookie jar file
88          *                           'header' => header array
89          *
90          * @return CurlResult
91          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
92          */
93         public static function curl($url, $binary = false, &$redirects = 0, $opts = [])
94         {
95                 $stamp1 = microtime(true);
96
97                 $a = \get_app();
98
99                 if (strlen($url) > 1000) {
100                         Logger::log('URL is longer than 1000 characters. Callstack: ' . System::callstack(20), Logger::DEBUG);
101                         return CurlResult::createErrorCurl(substr($url, 0, 200));
102                 }
103
104                 $parts2 = [];
105                 $parts = parse_url($url);
106                 $path_parts = explode('/', defaults($parts, 'path', ''));
107                 foreach ($path_parts as $part) {
108                         if (strlen($part) <> mb_strlen($part)) {
109                                 $parts2[] = rawurlencode($part);
110                         } else {
111                                 $parts2[] = $part;
112                         }
113                 }
114                 $parts['path'] = implode('/', $parts2);
115                 $url = self::unparseURL($parts);
116
117                 if (self::isUrlBlocked($url)) {
118                         Logger::log('domain of ' . $url . ' is blocked', Logger::DATA);
119                         return CurlResult::createErrorCurl($url);
120                 }
121
122                 $ch = @curl_init($url);
123
124                 if (($redirects > 8) || (!$ch)) {
125                         return CurlResult::createErrorCurl($url);
126                 }
127
128                 @curl_setopt($ch, CURLOPT_HEADER, true);
129
130                 if (!empty($opts['cookiejar'])) {
131                         curl_setopt($ch, CURLOPT_COOKIEJAR, $opts["cookiejar"]);
132                         curl_setopt($ch, CURLOPT_COOKIEFILE, $opts["cookiejar"]);
133                 }
134
135                 // These settings aren't needed. We're following the location already.
136                 //      @curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
137                 //      @curl_setopt($ch, CURLOPT_MAXREDIRS, 5);
138
139                 if (!empty($opts['accept_content'])) {
140                         curl_setopt(
141                                 $ch,
142                                 CURLOPT_HTTPHEADER,
143                                 ['Accept: ' . $opts['accept_content']]
144                         );
145                 }
146
147                 if (!empty($opts['header'])) {
148                         curl_setopt($ch, CURLOPT_HTTPHEADER, $opts['header']);
149                 }
150
151                 @curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
152                 @curl_setopt($ch, CURLOPT_USERAGENT, $a->getUserAgent());
153
154                 $range = intval(Config::get('system', 'curl_range_bytes', 0));
155
156                 if ($range > 0) {
157                         @curl_setopt($ch, CURLOPT_RANGE, '0-' . $range);
158                 }
159
160                 // Without this setting it seems as if some webservers send compressed content
161                 // This seems to confuse curl so that it shows this uncompressed.
162                 /// @todo  We could possibly set this value to "gzip" or something similar
163                 curl_setopt($ch, CURLOPT_ENCODING, '');
164
165                 if (!empty($opts['headers'])) {
166                         @curl_setopt($ch, CURLOPT_HTTPHEADER, $opts['headers']);
167                 }
168
169                 if (!empty($opts['nobody'])) {
170                         @curl_setopt($ch, CURLOPT_NOBODY, $opts['nobody']);
171                 }
172
173                 if (!empty($opts['timeout'])) {
174                         @curl_setopt($ch, CURLOPT_TIMEOUT, $opts['timeout']);
175                 } else {
176                         $curl_time = Config::get('system', 'curl_timeout', 60);
177                         @curl_setopt($ch, CURLOPT_TIMEOUT, intval($curl_time));
178                 }
179
180                 // by default we will allow self-signed certs
181                 // but you can override this
182
183                 $check_cert = Config::get('system', 'verifyssl');
184                 @curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, (($check_cert) ? true : false));
185
186                 if ($check_cert) {
187                         @curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
188                 }
189
190                 $proxy = Config::get('system', 'proxy');
191
192                 if (strlen($proxy)) {
193                         @curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 1);
194                         @curl_setopt($ch, CURLOPT_PROXY, $proxy);
195                         $proxyuser = @Config::get('system', 'proxyuser');
196
197                         if (strlen($proxyuser)) {
198                                 @curl_setopt($ch, CURLOPT_PROXYUSERPWD, $proxyuser);
199                         }
200                 }
201
202                 if (Config::get('system', 'ipv4_resolve', false)) {
203                         curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4);
204                 }
205
206                 if ($binary) {
207                         @curl_setopt($ch, CURLOPT_BINARYTRANSFER, 1);
208                 }
209
210                 // don't let curl abort the entire application
211                 // if it throws any errors.
212
213                 $s = @curl_exec($ch);
214                 $curl_info = @curl_getinfo($ch);
215
216                 // Special treatment for HTTP Code 416
217                 // See https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/416
218                 if (($curl_info['http_code'] == 416) && ($range > 0)) {
219                         @curl_setopt($ch, CURLOPT_RANGE, '');
220                         $s = @curl_exec($ch);
221                         $curl_info = @curl_getinfo($ch);
222                 }
223
224                 $curlResponse = new CurlResult($url, $s, $curl_info, curl_errno($ch), curl_error($ch));
225
226                 if ($curlResponse->isRedirectUrl()) {
227                         $redirects++;
228                         Logger::log('curl: redirect ' . $url . ' to ' . $curlResponse->getRedirectUrl());
229                         @curl_close($ch);
230                         return self::curl($curlResponse->getRedirectUrl(), $binary, $redirects, $opts);
231                 }
232
233                 @curl_close($ch);
234
235                 $a->getProfiler()->saveTimestamp($stamp1, 'network', System::callstack());
236
237                 return $curlResponse;
238         }
239
240         /**
241          * @brief Send POST request to $url
242          *
243          * @param string  $url       URL to post
244          * @param mixed   $params    array of POST variables
245          * @param string  $headers   HTTP headers
246          * @param integer $redirects Recursion counter for internal use - default = 0
247          * @param integer $timeout   The timeout in seconds, default system config value or 60 seconds
248          *
249          * @return CurlResult The content
250          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
251          */
252         public static function post($url, $params, $headers = null, &$redirects = 0, $timeout = 0)
253         {
254                 $stamp1 = microtime(true);
255
256                 if (self::isUrlBlocked($url)) {
257                         Logger::log('post_url: domain of ' . $url . ' is blocked', Logger::DATA);
258                         return CurlResult::createErrorCurl($url);
259                 }
260
261                 $a = \get_app();
262                 $ch = curl_init($url);
263
264                 if (($redirects > 8) || (!$ch)) {
265                         return CurlResult::createErrorCurl($url);
266                 }
267
268                 Logger::log('post_url: start ' . $url, Logger::DATA);
269
270                 curl_setopt($ch, CURLOPT_HEADER, true);
271                 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
272                 curl_setopt($ch, CURLOPT_POST, 1);
273                 curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
274                 curl_setopt($ch, CURLOPT_USERAGENT, $a->getUserAgent());
275
276                 if (Config::get('system', 'ipv4_resolve', false)) {
277                         curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4);
278                 }
279
280                 if (intval($timeout)) {
281                         curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);
282                 } else {
283                         $curl_time = Config::get('system', 'curl_timeout', 60);
284                         curl_setopt($ch, CURLOPT_TIMEOUT, intval($curl_time));
285                 }
286
287                 if (defined('LIGHTTPD')) {
288                         if (!is_array($headers)) {
289                                 $headers = ['Expect:'];
290                         } else {
291                                 if (!in_array('Expect:', $headers)) {
292                                         array_push($headers, 'Expect:');
293                                 }
294                         }
295                 }
296
297                 if ($headers) {
298                         curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
299                 }
300
301                 $check_cert = Config::get('system', 'verifyssl');
302                 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, (($check_cert) ? true : false));
303
304                 if ($check_cert) {
305                         @curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
306                 }
307
308                 $proxy = Config::get('system', 'proxy');
309
310                 if (strlen($proxy)) {
311                         curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 1);
312                         curl_setopt($ch, CURLOPT_PROXY, $proxy);
313                         $proxyuser = Config::get('system', 'proxyuser');
314                         if (strlen($proxyuser)) {
315                                 curl_setopt($ch, CURLOPT_PROXYUSERPWD, $proxyuser);
316                         }
317                 }
318
319                 // don't let curl abort the entire application
320                 // if it throws any errors.
321
322                 $s = @curl_exec($ch);
323
324                 $curl_info = curl_getinfo($ch);
325
326                 $curlResponse = new CurlResult($url, $s, $curl_info, curl_errno($ch), curl_error($ch));
327
328                 if ($curlResponse->isRedirectUrl()) {
329                         $redirects++;
330                         Logger::log('post_url: redirect ' . $url . ' to ' . $curlResponse->getRedirectUrl());
331                         curl_close($ch);
332                         return self::post($curlResponse->getRedirectUrl(), $params, $headers, $redirects, $timeout);
333                 }
334
335                 curl_close($ch);
336
337                 $a->getProfiler()->saveTimestamp($stamp1, 'network', System::callstack());
338
339                 Logger::log('post_url: end ' . $url, Logger::DATA);
340
341                 return $curlResponse;
342         }
343
344         /**
345          * @brief Check URL to see if it's real
346          *
347          * Take a URL from the wild, prepend http:// if necessary
348          * and check DNS to see if it's real (or check if is a valid IP address)
349          *
350          * @param string $url The URL to be validated
351          * @return string|boolean The actual working URL, false else
352          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
353          */
354         public static function isUrlValid($url)
355         {
356                 if (Config::get('system', 'disable_url_validation')) {
357                         return $url;
358                 }
359
360                 // no naked subdomains (allow localhost for tests)
361                 if (strpos($url, '.') === false && strpos($url, '/localhost/') === false) {
362                         return false;
363                 }
364
365                 if (substr($url, 0, 4) != 'http') {
366                         $url = 'http://' . $url;
367                 }
368
369                 /// @TODO Really suppress function outcomes? Why not find them + debug them?
370                 $h = @parse_url($url);
371
372                 if (!empty($h['host']) && (@dns_get_record($h['host'], DNS_A + DNS_CNAME) || filter_var($h['host'], FILTER_VALIDATE_IP) )) {
373                         return $url;
374                 }
375
376                 return false;
377         }
378
379         /**
380          * @brief Checks that email is an actual resolvable internet address
381          *
382          * @param string $addr The email address
383          * @return boolean True if it's a valid email address, false if it's not
384          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
385          */
386         public static function isEmailDomainValid($addr)
387         {
388                 if (Config::get('system', 'disable_email_validation')) {
389                         return true;
390                 }
391
392                 if (! strpos($addr, '@')) {
393                         return false;
394                 }
395
396                 $h = substr($addr, strpos($addr, '@') + 1);
397
398                 // Concerning the @ see here: https://stackoverflow.com/questions/36280957/dns-get-record-a-temporary-server-error-occurred
399                 if ($h && (@dns_get_record($h, DNS_A + DNS_MX) || filter_var($h, FILTER_VALIDATE_IP) )) {
400                         return true;
401                 }
402                 if ($h && @dns_get_record($h, DNS_CNAME + DNS_MX)) {
403                         return true;
404                 }
405                 return false;
406         }
407
408         /**
409          * @brief Check if URL is allowed
410          *
411          * Check $url against our list of allowed sites,
412          * wildcards allowed. If allowed_sites is unset return true;
413          *
414          * @param string $url URL which get tested
415          * @return boolean True if url is allowed otherwise return false
416          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
417          */
418         public static function isUrlAllowed($url)
419         {
420                 $h = @parse_url($url);
421
422                 if (! $h) {
423                         return false;
424                 }
425
426                 $str_allowed = Config::get('system', 'allowed_sites');
427                 if (! $str_allowed) {
428                         return true;
429                 }
430
431                 $found = false;
432
433                 $host = strtolower($h['host']);
434
435                 // always allow our own site
436                 if ($host == strtolower($_SERVER['SERVER_NAME'])) {
437                         return true;
438                 }
439
440                 $fnmatch = function_exists('fnmatch');
441                 $allowed = explode(',', $str_allowed);
442
443                 if (count($allowed)) {
444                         foreach ($allowed as $a) {
445                                 $pat = strtolower(trim($a));
446                                 if (($fnmatch && fnmatch($pat, $host)) || ($pat == $host)) {
447                                         $found = true;
448                                         break;
449                                 }
450                         }
451                 }
452                 return $found;
453         }
454
455         /**
456          * Checks if the provided url domain is on the domain blocklist.
457          * Returns true if it is or malformed URL, false if not.
458          *
459          * @param string $url The url to check the domain from
460          *
461          * @return boolean
462          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
463          */
464         public static function isUrlBlocked($url)
465         {
466                 $host = @parse_url($url, PHP_URL_HOST);
467                 if (!$host) {
468                         return false;
469                 }
470
471                 $domain_blocklist = Config::get('system', 'blocklist', []);
472                 if (!$domain_blocklist) {
473                         return false;
474                 }
475
476                 foreach ($domain_blocklist as $domain_block) {
477                         if (strcasecmp($domain_block['domain'], $host) === 0) {
478                                 return true;
479                         }
480                 }
481
482                 return false;
483         }
484
485         /**
486          * @brief Check if email address is allowed to register here.
487          *
488          * Compare against our list (wildcards allowed).
489          *
490          * @param  string $email email address
491          * @return boolean False if not allowed, true if allowed
492          *                       or if allowed list is not configured
493          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
494          */
495         public static function isEmailDomainAllowed($email)
496         {
497                 $domain = strtolower(substr($email, strpos($email, '@') + 1));
498                 if (!$domain) {
499                         return false;
500                 }
501
502                 $str_allowed = Config::get('system', 'allowed_email', '');
503                 if (empty($str_allowed)) {
504                         return true;
505                 }
506
507                 $allowed = explode(',', $str_allowed);
508
509                 return self::isDomainAllowed($domain, $allowed);
510         }
511
512         /**
513          * Checks for the existence of a domain in a domain list
514          *
515          * @brief Checks for the existence of a domain in a domain list
516          * @param string $domain
517          * @param array  $domain_list
518          * @return boolean
519          */
520         public static function isDomainAllowed($domain, array $domain_list)
521         {
522                 $found = false;
523
524                 foreach ($domain_list as $item) {
525                         $pat = strtolower(trim($item));
526                         if (fnmatch($pat, $domain) || ($pat == $domain)) {
527                                 $found = true;
528                                 break;
529                         }
530                 }
531
532                 return $found;
533         }
534
535         public static function lookupAvatarByEmail($email)
536         {
537                 $avatar['size'] = 300;
538                 $avatar['email'] = $email;
539                 $avatar['url'] = '';
540                 $avatar['success'] = false;
541
542                 Hook::callAll('avatar_lookup', $avatar);
543
544                 if (! $avatar['success']) {
545                         $avatar['url'] = System::baseUrl() . '/images/person-300.jpg';
546                 }
547
548                 Logger::log('Avatar: ' . $avatar['email'] . ' ' . $avatar['url'], Logger::DEBUG);
549                 return $avatar['url'];
550         }
551
552         /**
553          * @brief Remove Google Analytics and other tracking platforms params from URL
554          *
555          * @param string $url Any user-submitted URL that may contain tracking params
556          * @return string The same URL stripped of tracking parameters
557          */
558         public static function stripTrackingQueryParams($url)
559         {
560                 $urldata = parse_url($url);
561                 if (!empty($urldata["query"])) {
562                         $query = $urldata["query"];
563                         parse_str($query, $querydata);
564
565                         if (is_array($querydata)) {
566                                 foreach ($querydata as $param => $value) {
567                                         if (in_array(
568                                                 $param,
569                                                 [
570                                                         "utm_source", "utm_medium", "utm_term", "utm_content", "utm_campaign",
571                                                         "wt_mc", "pk_campaign", "pk_kwd", "mc_cid", "mc_eid",
572                                                         "fb_action_ids", "fb_action_types", "fb_ref",
573                                                         "awesm", "wtrid",
574                                                         "woo_campaign", "woo_source", "woo_medium", "woo_content", "woo_term"]
575                                                 )
576                                         ) {
577                                                 $pair = $param . "=" . urlencode($value);
578                                                 $url = str_replace($pair, "", $url);
579
580                                                 // Second try: if the url isn't encoded completely
581                                                 $pair = $param . "=" . str_replace(" ", "+", $value);
582                                                 $url = str_replace($pair, "", $url);
583
584                                                 // Third try: Maybey the url isn't encoded at all
585                                                 $pair = $param . "=" . $value;
586                                                 $url = str_replace($pair, "", $url);
587
588                                                 $url = str_replace(["?&", "&&"], ["?", ""], $url);
589                                         }
590                                 }
591                         }
592
593                         if (substr($url, -1, 1) == "?") {
594                                 $url = substr($url, 0, -1);
595                         }
596                 }
597
598                 return $url;
599         }
600
601         /**
602          * @brief Returns the original URL of the provided URL
603          *
604          * This function strips tracking query params and follows redirections, either
605          * through HTTP code or meta refresh tags. Stops after 10 redirections.
606          *
607          * @todo  Remove the $fetchbody parameter that generates an extraneous HEAD request
608          *
609          * @see   ParseUrl::getSiteinfo
610          *
611          * @param string $url       A user-submitted URL
612          * @param int    $depth     The current redirection recursion level (internal)
613          * @param bool   $fetchbody Wether to fetch the body or not after the HEAD requests
614          * @return string A canonical URL
615          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
616          */
617         public static function finalUrl($url, $depth = 1, $fetchbody = false)
618         {
619                 $a = \get_app();
620
621                 $url = self::stripTrackingQueryParams($url);
622
623                 if ($depth > 10) {
624                         return $url;
625                 }
626
627                 $url = trim($url, "'");
628
629                 $stamp1 = microtime(true);
630
631                 $ch = curl_init();
632                 curl_setopt($ch, CURLOPT_URL, $url);
633                 curl_setopt($ch, CURLOPT_HEADER, 1);
634                 curl_setopt($ch, CURLOPT_NOBODY, 1);
635                 curl_setopt($ch, CURLOPT_TIMEOUT, 10);
636                 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
637                 curl_setopt($ch, CURLOPT_USERAGENT, $a->getUserAgent());
638
639                 curl_exec($ch);
640                 $curl_info = @curl_getinfo($ch);
641                 $http_code = $curl_info['http_code'];
642                 curl_close($ch);
643
644                 $a->getProfiler()->saveTimestamp($stamp1, "network", System::callstack());
645
646                 if ($http_code == 0) {
647                         return $url;
648                 }
649
650                 if (in_array($http_code, ['301', '302'])) {
651                         if (!empty($curl_info['redirect_url'])) {
652                                 return self::finalUrl($curl_info['redirect_url'], ++$depth, $fetchbody);
653                         } elseif (!empty($curl_info['location'])) {
654                                 return self::finalUrl($curl_info['location'], ++$depth, $fetchbody);
655                         }
656                 }
657
658                 // Check for redirects in the meta elements of the body if there are no redirects in the header.
659                 if (!$fetchbody) {
660                         return(self::finalUrl($url, ++$depth, true));
661                 }
662
663                 // if the file is too large then exit
664                 if ($curl_info["download_content_length"] > 1000000) {
665                         return $url;
666                 }
667
668                 // if it isn't a HTML file then exit
669                 if (!empty($curl_info["content_type"]) && !strstr(strtolower($curl_info["content_type"]), "html")) {
670                         return $url;
671                 }
672
673                 $stamp1 = microtime(true);
674
675                 $ch = curl_init();
676                 curl_setopt($ch, CURLOPT_URL, $url);
677                 curl_setopt($ch, CURLOPT_HEADER, 0);
678                 curl_setopt($ch, CURLOPT_NOBODY, 0);
679                 curl_setopt($ch, CURLOPT_TIMEOUT, 10);
680                 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
681                 curl_setopt($ch, CURLOPT_USERAGENT, $a->getUserAgent());
682
683                 $body = curl_exec($ch);
684                 curl_close($ch);
685
686                 $a->getProfiler()->saveTimestamp($stamp1, "network", System::callstack());
687
688                 if (trim($body) == "") {
689                         return $url;
690                 }
691
692                 // Check for redirect in meta elements
693                 $doc = new DOMDocument();
694                 @$doc->loadHTML($body);
695
696                 $xpath = new DomXPath($doc);
697
698                 $list = $xpath->query("//meta[@content]");
699                 foreach ($list as $node) {
700                         $attr = [];
701                         if ($node->attributes->length) {
702                                 foreach ($node->attributes as $attribute) {
703                                         $attr[$attribute->name] = $attribute->value;
704                                 }
705                         }
706
707                         if (@$attr["http-equiv"] == 'refresh') {
708                                 $path = $attr["content"];
709                                 $pathinfo = explode(";", $path);
710                                 foreach ($pathinfo as $value) {
711                                         if (substr(strtolower($value), 0, 4) == "url=") {
712                                                 return self::finalUrl(substr($value, 4), ++$depth);
713                                         }
714                                 }
715                         }
716                 }
717
718                 return $url;
719         }
720
721         /**
722          * @brief Find the matching part between two url
723          *
724          * @param string $url1
725          * @param string $url2
726          * @return string The matching part
727          */
728         public static function getUrlMatch($url1, $url2)
729         {
730                 if (($url1 == "") || ($url2 == "")) {
731                         return "";
732                 }
733
734                 $url1 = Strings::normaliseLink($url1);
735                 $url2 = Strings::normaliseLink($url2);
736
737                 $parts1 = parse_url($url1);
738                 $parts2 = parse_url($url2);
739
740                 if (!isset($parts1["host"]) || !isset($parts2["host"])) {
741                         return "";
742                 }
743
744                 if (empty($parts1["scheme"])) {
745                         $parts1["scheme"] = '';
746                 }
747                 if (empty($parts2["scheme"])) {
748                         $parts2["scheme"] = '';
749                 }
750
751                 if ($parts1["scheme"] != $parts2["scheme"]) {
752                         return "";
753                 }
754
755                 if (empty($parts1["host"])) {
756                         $parts1["host"] = '';
757                 }
758                 if (empty($parts2["host"])) {
759                         $parts2["host"] = '';
760                 }
761
762                 if ($parts1["host"] != $parts2["host"]) {
763                         return "";
764                 }
765
766                 if (empty($parts1["port"])) {
767                         $parts1["port"] = '';
768                 }
769                 if (empty($parts2["port"])) {
770                         $parts2["port"] = '';
771                 }
772
773                 if ($parts1["port"] != $parts2["port"]) {
774                         return "";
775                 }
776
777                 $match = $parts1["scheme"]."://".$parts1["host"];
778
779                 if ($parts1["port"]) {
780                         $match .= ":".$parts1["port"];
781                 }
782
783                 if (empty($parts1["path"])) {
784                         $parts1["path"] = '';
785                 }
786                 if (empty($parts2["path"])) {
787                         $parts2["path"] = '';
788                 }
789
790                 $pathparts1 = explode("/", $parts1["path"]);
791                 $pathparts2 = explode("/", $parts2["path"]);
792
793                 $i = 0;
794                 $path = "";
795                 do {
796                         $path1 = defaults($pathparts1, $i, '');
797                         $path2 = defaults($pathparts2, $i, '');
798
799                         if ($path1 == $path2) {
800                                 $path .= $path1."/";
801                         }
802                 } while (($path1 == $path2) && ($i++ <= count($pathparts1)));
803
804                 $match .= $path;
805
806                 return Strings::normaliseLink($match);
807         }
808
809         /**
810          * @brief Glue url parts together
811          *
812          * @param array $parsed URL parts
813          *
814          * @return string The glued URL
815          */
816         public static function unparseURL($parsed)
817         {
818                 $get = function ($key) use ($parsed) {
819                         return isset($parsed[$key]) ? $parsed[$key] : null;
820                 };
821
822                 $pass      = $get('pass');
823                 $user      = $get('user');
824                 $userinfo  = $pass !== null ? "$user:$pass" : $user;
825                 $port      = $get('port');
826                 $scheme    = $get('scheme');
827                 $query     = $get('query');
828                 $fragment  = $get('fragment');
829                 $authority = ($userinfo !== null ? $userinfo."@" : '') .
830                                                 $get('host') .
831                                                 ($port ? ":$port" : '');
832
833                 return  (strlen($scheme) ? $scheme.":" : '') .
834                         (strlen($authority) ? "//".$authority : '') .
835                         $get('path') .
836                         (strlen($query) ? "?".$query : '') .
837                         (strlen($fragment) ? "#".$fragment : '');
838         }
839 }