3 * @file include/network.php
6 use Friendica\Core\Addon;
7 use Friendica\Core\System;
8 use Friendica\Core\Config;
9 use Friendica\Network\Probe;
10 use Friendica\Object\Image;
11 use Friendica\Util\XML;
16 * If binary flag is true, return binary results.
17 * Set the cookiejar argument to a string (e.g. "/tmp/friendica-cookies.txt")
18 * to preserve cookies from one request to the next.
20 * @param string $url URL to fetch
21 * @param boolean $binary default false
22 * TRUE if asked to return binary results (file download)
23 * @param integer $redirects The recursion counter for internal use - default 0
24 * @param integer $timeout Timeout in seconds, default system config value or 60 seconds
25 * @param string $accept_content supply Accept: header with 'accept_content' as the value
26 * @param string $cookiejar Path to cookie jar file
28 * @return string The fetched content
30 function fetch_url($url, $binary = false, &$redirects = 0, $timeout = 0, $accept_content = null, $cookiejar = 0)
37 'accept_content'=>$accept_content,
38 'cookiejar'=>$cookiejar
46 * @brief fetches an URL.
48 * @param string $url URL to fetch
49 * @param boolean $binary default false
50 * TRUE if asked to return binary results (file download)
51 * @param int $redirects The recursion counter for internal use - default 0
52 * @param array $opts (optional parameters) assoziative array with:
53 * 'accept_content' => supply Accept: header with 'accept_content' as the value
54 * 'timeout' => int Timeout in seconds, default system config value or 60 seconds
55 * 'http_auth' => username:password
56 * 'novalidate' => do not validate SSL certs, default is to validate using our CA list
57 * 'nobody' => only return the header
58 * 'cookiejar' => path to cookie jar file
60 * @return array an assoziative array with:
61 * int 'return_code' => HTTP return code or 0 if timeout or failure
62 * boolean 'success' => boolean true (if HTTP 2xx result) or false
63 * string 'redirect_url' => in case of redirect, content was finally retrieved from this URL
64 * string 'header' => HTTP headers
65 * string 'body' => fetched content
67 function z_fetch_url($url, $binary = false, &$redirects = 0, $opts = [])
69 $ret = ['return_code' => 0, 'success' => false, 'header' => '', 'info' => '', 'body' => ''];
71 $stamp1 = microtime(true);
75 if (blocked_url($url)) {
76 logger('z_fetch_url: domain of ' . $url . ' is blocked', LOGGER_DATA);
80 $ch = @curl_init($url);
82 if (($redirects > 8) || (!$ch)) {
86 @curl_setopt($ch, CURLOPT_HEADER, true);
88 if (x($opts, "cookiejar")) {
89 curl_setopt($ch, CURLOPT_COOKIEJAR, $opts["cookiejar"]);
90 curl_setopt($ch, CURLOPT_COOKIEFILE, $opts["cookiejar"]);
93 // These settings aren't needed. We're following the location already.
94 // @curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
95 // @curl_setopt($ch, CURLOPT_MAXREDIRS, 5);
97 if (x($opts, 'accept_content')) {
101 ['Accept: ' . $opts['accept_content']]
105 @curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
106 @curl_setopt($ch, CURLOPT_USERAGENT, $a->get_useragent());
108 $range = intval(Config::get('system', 'curl_range_bytes', 0));
111 @curl_setopt($ch, CURLOPT_RANGE, '0-' . $range);
114 // Without this setting it seems as if some webservers send compressed content
115 // This seems to confuse curl so that it shows this uncompressed.
116 /// @todo We could possibly set this value to "gzip" or something similar
117 curl_setopt($ch, CURLOPT_ENCODING, '');
119 if (x($opts, 'headers')) {
120 @curl_setopt($ch, CURLOPT_HTTPHEADER, $opts['headers']);
123 if (x($opts, 'nobody')) {
124 @curl_setopt($ch, CURLOPT_NOBODY, $opts['nobody']);
127 if (x($opts, 'timeout')) {
128 @curl_setopt($ch, CURLOPT_TIMEOUT, $opts['timeout']);
130 $curl_time = Config::get('system', 'curl_timeout', 60);
131 @curl_setopt($ch, CURLOPT_TIMEOUT, intval($curl_time));
134 // by default we will allow self-signed certs
135 // but you can override this
137 $check_cert = Config::get('system', 'verifyssl');
138 @curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, (($check_cert) ? true : false));
141 @curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
144 $proxy = Config::get('system', 'proxy');
146 if (strlen($proxy)) {
147 @curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 1);
148 @curl_setopt($ch, CURLOPT_PROXY, $proxy);
149 $proxyuser = @Config::get('system', 'proxyuser');
151 if (strlen($proxyuser)) {
152 @curl_setopt($ch, CURLOPT_PROXYUSERPWD, $proxyuser);
156 if (Config::get('system', 'ipv4_resolve', false)) {
157 curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4);
161 @curl_setopt($ch, CURLOPT_BINARYTRANSFER, 1);
164 $a->set_curl_code(0);
166 // don't let curl abort the entire application
167 // if it throws any errors.
169 $s = @curl_exec($ch);
170 $curl_info = @curl_getinfo($ch);
172 // Special treatment for HTTP Code 416
173 // See https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/416
174 if (($curl_info['http_code'] == 416) && ($range > 0)) {
175 @curl_setopt($ch, CURLOPT_RANGE, '');
176 $s = @curl_exec($ch);
177 $curl_info = @curl_getinfo($ch);
180 if (curl_errno($ch) !== CURLE_OK) {
181 logger('fetch_url error fetching ' . $url . ': ' . curl_error($ch), LOGGER_NORMAL);
184 $ret['errno'] = curl_errno($ch);
187 $ret['info'] = $curl_info;
189 $http_code = $curl_info['http_code'];
191 logger('fetch_url ' . $url . ': ' . $http_code . " " . $s, LOGGER_DATA);
194 // Pull out multiple headers, e.g. proxy and continuation headers
195 // allow for HTTP/2.x without fixing code
197 while (preg_match('/^HTTP\/[1-2].+? [1-5][0-9][0-9]/', $base)) {
198 $chunk = substr($base, 0, strpos($base, "\r\n\r\n") + 4);
200 $base = substr($base, strlen($chunk));
203 $a->set_curl_code($http_code);
204 $a->set_curl_content_type($curl_info['content_type']);
205 $a->set_curl_headers($header);
207 if ($http_code == 301 || $http_code == 302 || $http_code == 303 || $http_code == 307) {
208 $new_location_info = @parse_url($curl_info['redirect_url']);
209 $old_location_info = @parse_url($curl_info['url']);
211 $newurl = $curl_info['redirect_url'];
213 if (($new_location_info['path'] == '') && ( $new_location_info['host'] != '')) {
214 $newurl = $new_location_info['scheme'] . '://' . $new_location_info['host'] . $old_location_info['path'];
219 if (preg_match('/(Location:|URI:)(.*?)\n/i', $header, $matches)) {
220 $newurl = trim(array_pop($matches));
222 if (strpos($newurl, '/') === 0) {
223 $newurl = $old_location_info["scheme"]."://".$old_location_info["host"].$newurl;
226 if (filter_var($newurl, FILTER_VALIDATE_URL)) {
229 return z_fetch_url($newurl, $binary, $redirects, $opts);
233 $a->set_curl_code($http_code);
234 $a->set_curl_content_type($curl_info['content_type']);
236 $rc = intval($http_code);
237 $ret['return_code'] = $rc;
238 $ret['success'] = (($rc >= 200 && $rc <= 299) ? true : false);
239 $ret['redirect_url'] = $url;
241 if (!$ret['success']) {
242 $ret['error'] = curl_error($ch);
243 $ret['debug'] = $curl_info;
244 logger('z_fetch_url: error: '.$url.': '.$ret['return_code'].' - '.$ret['error'], LOGGER_DEBUG);
245 logger('z_fetch_url: debug: '.print_r($curl_info, true), LOGGER_DATA);
248 $ret['body'] = substr($s, strlen($header));
249 $ret['header'] = $header;
251 if (x($opts, 'debug')) {
252 $ret['debug'] = $curl_info;
257 $a->save_timestamp($stamp1, 'network');
263 * @brief Send POST request to $url
265 * @param string $url URL to post
266 * @param mixed $params array of POST variables
267 * @param string $headers HTTP headers
268 * @param integer $redirects Recursion counter for internal use - default = 0
269 * @param integer $timeout The timeout in seconds, default system config value or 60 seconds
271 * @return string The content
273 function post_url($url, $params, $headers = null, &$redirects = 0, $timeout = 0)
275 $stamp1 = microtime(true);
277 if (blocked_url($url)) {
278 logger('post_url: domain of ' . $url . ' is blocked', LOGGER_DATA);
283 $ch = curl_init($url);
285 if (($redirects > 8) || (!$ch)) {
289 logger('post_url: start ' . $url, LOGGER_DATA);
291 curl_setopt($ch, CURLOPT_HEADER, true);
292 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
293 curl_setopt($ch, CURLOPT_POST, 1);
294 curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
295 curl_setopt($ch, CURLOPT_USERAGENT, $a->get_useragent());
297 if (Config::get('system', 'ipv4_resolve', false)) {
298 curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4);
301 if (intval($timeout)) {
302 curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);
304 $curl_time = Config::get('system', 'curl_timeout', 60);
305 curl_setopt($ch, CURLOPT_TIMEOUT, intval($curl_time));
308 if (defined('LIGHTTPD')) {
309 if (!is_array($headers)) {
310 $headers = ['Expect:'];
312 if (!in_array('Expect:', $headers)) {
313 array_push($headers, 'Expect:');
319 curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
322 $check_cert = Config::get('system', 'verifyssl');
323 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, (($check_cert) ? true : false));
326 @curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
329 $proxy = Config::get('system', 'proxy');
331 if (strlen($proxy)) {
332 curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 1);
333 curl_setopt($ch, CURLOPT_PROXY, $proxy);
334 $proxyuser = Config::get('system', 'proxyuser');
335 if (strlen($proxyuser)) {
336 curl_setopt($ch, CURLOPT_PROXYUSERPWD, $proxyuser);
340 $a->set_curl_code(0);
342 // don't let curl abort the entire application
343 // if it throws any errors.
345 $s = @curl_exec($ch);
348 $curl_info = curl_getinfo($ch);
349 $http_code = $curl_info['http_code'];
351 logger('post_url: result ' . $http_code . ' - ' . $url, LOGGER_DATA);
355 // Pull out multiple headers, e.g. proxy and continuation headers
356 // allow for HTTP/2.x without fixing code
358 while (preg_match('/^HTTP\/[1-2].+? [1-5][0-9][0-9]/', $base)) {
359 $chunk = substr($base, 0, strpos($base, "\r\n\r\n") + 4);
361 $base = substr($base, strlen($chunk));
364 if ($http_code == 301 || $http_code == 302 || $http_code == 303 || $http_code == 307) {
366 preg_match('/(Location:|URI:)(.*?)\n/', $header, $matches);
367 $newurl = trim(array_pop($matches));
369 if (strpos($newurl, '/') === 0) {
370 $newurl = $old_location_info["scheme"] . "://" . $old_location_info["host"] . $newurl;
373 if (filter_var($newurl, FILTER_VALIDATE_URL)) {
375 logger('post_url: redirect ' . $url . ' to ' . $newurl);
376 return post_url($newurl, $params, $headers, $redirects, $timeout);
380 $a->set_curl_code($http_code);
382 $body = substr($s, strlen($header));
384 $a->set_curl_headers($header);
388 $a->save_timestamp($stamp1, 'network');
390 logger('post_url: end ' . $url, LOGGER_DATA);
395 // Generic XML return
396 // Outputs a basic dfrn XML status structure to STDOUT, with a <status> variable
397 // of $st and an optional text <message> of $message and terminates the current process.
399 function xml_status($st, $message = '')
401 $result = ['status' => $st];
403 if ($message != '') {
404 $result['message'] = $message;
408 logger('xml_status returning non_zero: ' . $st . " message=" . $message);
411 header("Content-type: text/xml");
413 $xmldata = ["result" => $result];
415 echo XML::fromArray($xmldata, $xml);
421 * @brief Send HTTP status header and exit.
423 * @param integer $val HTTP status result value
424 * @param array $description optional message
425 * 'title' => header title
426 * 'description' => optional message
430 * @brief Send HTTP status header and exit.
432 * @param integer $val HTTP status result value
433 * @param array $description optional message
434 * 'title' => header title
435 * 'description' => optional message
437 function http_status_exit($val, $description = [])
442 if (!isset($description["title"])) {
443 $description["title"] = $err." ".$val;
446 if ($val >= 200 && $val < 300)
449 logger('http_status_exit ' . $val);
450 header($_SERVER["SERVER_PROTOCOL"] . ' ' . $val . ' ' . $err);
452 if (isset($description["title"])) {
453 $tpl = get_markup_template('http_status.tpl');
457 '$title' => $description["title"],
458 '$description' => $description["description"]]
466 * @brief Check URL to se if ts's real
468 * Take a URL from the wild, prepend http:// if necessary
469 * and check DNS to see if it's real (or check if is a valid IP address)
471 * @param string $url The URL to be validated
472 * @return string|boolean The actual working URL, false else
474 function validate_url($url)
476 if (Config::get('system', 'disable_url_validation')) {
480 // no naked subdomains (allow localhost for tests)
481 if (strpos($url, '.') === false && strpos($url, '/localhost/') === false) {
485 if (substr($url, 0, 4) != 'http') {
486 $url = 'http://' . $url;
489 /// @TODO Really suppress function outcomes? Why not find them + debug them?
490 $h = @parse_url($url);
492 if ((is_array($h)) && (@dns_get_record($h['host'], DNS_A + DNS_CNAME + DNS_PTR) || filter_var($h['host'], FILTER_VALIDATE_IP) )) {
500 * @brief Checks that email is an actual resolvable internet address
502 * @param string $addr The email address
503 * @return boolean True if it's a valid email address, false if it's not
505 function validate_email($addr)
507 if (Config::get('system', 'disable_email_validation')) {
511 if (! strpos($addr, '@')) {
515 $h = substr($addr, strpos($addr, '@') + 1);
517 if (($h) && (dns_get_record($h, DNS_A + DNS_CNAME + DNS_PTR + DNS_MX) || filter_var($h, FILTER_VALIDATE_IP) )) {
524 * @brief Check if URL is allowed
526 * Check $url against our list of allowed sites,
527 * wildcards allowed. If allowed_sites is unset return true;
529 * @param string $url URL which get tested
530 * @return boolean True if url is allowed otherwise return false
532 function allowed_url($url)
534 $h = @parse_url($url);
540 $str_allowed = Config::get('system', 'allowed_sites');
541 if (! $str_allowed) {
547 $host = strtolower($h['host']);
549 // always allow our own site
550 if ($host == strtolower($_SERVER['SERVER_NAME'])) {
554 $fnmatch = function_exists('fnmatch');
555 $allowed = explode(',', $str_allowed);
557 if (count($allowed)) {
558 foreach ($allowed as $a) {
559 $pat = strtolower(trim($a));
560 if (($fnmatch && fnmatch($pat, $host)) || ($pat == $host)) {
570 * Checks if the provided url domain is on the domain blocklist.
571 * Returns true if it is or malformed URL, false if not.
573 * @param string $url The url to check the domain from
577 function blocked_url($url)
579 $h = @parse_url($url);
585 $domain_blocklist = Config::get('system', 'blocklist', []);
586 if (! $domain_blocklist) {
590 $host = strtolower($h['host']);
592 foreach ($domain_blocklist as $domain_block) {
593 if (strtolower($domain_block['domain']) == $host) {
602 * @brief Check if email address is allowed to register here.
604 * Compare against our list (wildcards allowed).
606 * @param string $email email address
607 * @return boolean False if not allowed, true if allowed
608 * or if allowed list is not configured
610 function allowed_email($email)
612 $domain = strtolower(substr($email, strpos($email, '@') + 1));
617 $str_allowed = Config::get('system', 'allowed_email', '');
618 if (!x($str_allowed)) {
622 $allowed = explode(',', $str_allowed);
624 return allowed_domain($domain, $allowed);
628 * Checks for the existence of a domain in a domain list
630 * @brief Checks for the existence of a domain in a domain list
631 * @param string $domain
632 * @param array $domain_list
635 function allowed_domain($domain, array $domain_list)
639 foreach ($domain_list as $item) {
640 $pat = strtolower(trim($item));
641 if (fnmatch($pat, $domain) || ($pat == $domain)) {
650 function avatar_img($email)
652 $avatar['size'] = 175;
653 $avatar['email'] = $email;
655 $avatar['success'] = false;
657 Addon::callHooks('avatar_lookup', $avatar);
659 if (! $avatar['success']) {
660 $avatar['url'] = System::baseUrl() . '/images/person-175.jpg';
663 logger('Avatar: ' . $avatar['email'] . ' ' . $avatar['url'], LOGGER_DEBUG);
664 return $avatar['url'];
668 function parse_xml_string($s, $strict = true)
670 // the "strict" parameter is deactivated
672 /// @todo Move this function to the xml class
673 libxml_use_internal_errors(true);
675 $x = @simplexml_load_string($s);
677 logger('libxml: parse: error: ' . $s, LOGGER_DATA);
678 foreach (libxml_get_errors() as $err) {
679 logger('libxml: parse: ' . $err->code." at ".$err->line.":".$err->column." : ".$err->message, LOGGER_DATA);
681 libxml_clear_errors();
686 function scale_external_images($srctext, $include_link = true, $scale_replace = false)
688 // Suppress "view full size"
689 if (intval(Config::get('system', 'no_view_full_size'))) {
690 $include_link = false;
693 // Picture addresses can contain special characters
694 $s = htmlspecialchars_decode($srctext);
697 $c = preg_match_all('/\[img.*?\](.*?)\[\/img\]/ism', $s, $matches, PREG_SET_ORDER);
699 foreach ($matches as $mtch) {
700 logger('scale_external_image: ' . $mtch[1]);
702 $hostname = str_replace('www.', '', substr(System::baseUrl(), strpos(System::baseUrl(), '://') + 3));
703 if (stristr($mtch[1], $hostname)) {
707 // $scale_replace, if passed, is an array of two elements. The
708 // first is the name of the full-size image. The second is the
709 // name of a remote, scaled-down version of the full size image.
710 // This allows Friendica to display the smaller remote image if
711 // one exists, while still linking to the full-size image
712 if ($scale_replace) {
713 $scaled = str_replace($scale_replace[0], $scale_replace[1], $mtch[1]);
717 $i = fetch_url($scaled);
722 // guess mimetype from headers or filename
723 $type = Image::guessType($mtch[1], true);
726 $Image = new Image($i, $type);
727 if ($Image->isValid()) {
728 $orig_width = $Image->getWidth();
729 $orig_height = $Image->getHeight();
731 if ($orig_width > 640 || $orig_height > 640) {
732 $Image->scaleDown(640);
733 $new_width = $Image->getWidth();
734 $new_height = $Image->getHeight();
735 logger('scale_external_images: ' . $orig_width . '->' . $new_width . 'w ' . $orig_height . '->' . $new_height . 'h' . ' match: ' . $mtch[0], LOGGER_DEBUG);
738 '[img=' . $new_width . 'x' . $new_height. ']' . $scaled . '[/img]'
739 . "\n" . (($include_link)
740 ? '[url=' . $mtch[1] . ']' . t('view full size') . '[/url]' . "\n"
744 logger('scale_external_images: new string: ' . $s, LOGGER_DEBUG);
751 // replace the special char encoding
752 $s = htmlspecialchars($s, ENT_NOQUOTES, 'UTF-8');
757 function fix_contact_ssl_policy(&$contact, $new_policy)
759 $ssl_changed = false;
760 if ((intval($new_policy) == SSL_POLICY_SELFSIGN || $new_policy === 'self') && strstr($contact['url'], 'https:')) {
762 $contact['url'] = str_replace('https:', 'http:', $contact['url']);
763 $contact['request'] = str_replace('https:', 'http:', $contact['request']);
764 $contact['notify'] = str_replace('https:', 'http:', $contact['notify']);
765 $contact['poll'] = str_replace('https:', 'http:', $contact['poll']);
766 $contact['confirm'] = str_replace('https:', 'http:', $contact['confirm']);
767 $contact['poco'] = str_replace('https:', 'http:', $contact['poco']);
770 if ((intval($new_policy) == SSL_POLICY_FULL || $new_policy === 'full') && strstr($contact['url'], 'http:')) {
772 $contact['url'] = str_replace('http:', 'https:', $contact['url']);
773 $contact['request'] = str_replace('http:', 'https:', $contact['request']);
774 $contact['notify'] = str_replace('http:', 'https:', $contact['notify']);
775 $contact['poll'] = str_replace('http:', 'https:', $contact['poll']);
776 $contact['confirm'] = str_replace('http:', 'https:', $contact['confirm']);
777 $contact['poco'] = str_replace('http:', 'https:', $contact['poco']);
781 $fields = ['url' => $contact['url'], 'request' => $contact['request'],
782 'notify' => $contact['notify'], 'poll' => $contact['poll'],
783 'confirm' => $contact['confirm'], 'poco' => $contact['poco']];
784 dba::update('contact', $fields, ['id' => $contact['id']]);
789 * @brief Remove Google Analytics and other tracking platforms params from URL
791 * @param string $url Any user-submitted URL that may contain tracking params
792 * @return string The same URL stripped of tracking parameters
794 function strip_tracking_query_params($url)
796 $urldata = parse_url($url);
797 if (is_string($urldata["query"])) {
798 $query = $urldata["query"];
799 parse_str($query, $querydata);
801 if (is_array($querydata)) {
802 foreach ($querydata as $param => $value) {
806 "utm_source", "utm_medium", "utm_term", "utm_content", "utm_campaign",
807 "wt_mc", "pk_campaign", "pk_kwd", "mc_cid", "mc_eid",
808 "fb_action_ids", "fb_action_types", "fb_ref",
810 "woo_campaign", "woo_source", "woo_medium", "woo_content", "woo_term"]
813 $pair = $param . "=" . urlencode($value);
814 $url = str_replace($pair, "", $url);
816 // Second try: if the url isn't encoded completely
817 $pair = $param . "=" . str_replace(" ", "+", $value);
818 $url = str_replace($pair, "", $url);
820 // Third try: Maybey the url isn't encoded at all
821 $pair = $param . "=" . $value;
822 $url = str_replace($pair, "", $url);
824 $url = str_replace(["?&", "&&"], ["?", ""], $url);
829 if (substr($url, -1, 1) == "?") {
830 $url = substr($url, 0, -1);
838 * @brief Returns the original URL of the provided URL
840 * This function strips tracking query params and follows redirections, either
841 * through HTTP code or meta refresh tags. Stops after 10 redirections.
843 * @todo Remove the $fetchbody parameter that generates an extraneous HEAD request
845 * @see ParseUrl::getSiteinfo
847 * @param string $url A user-submitted URL
848 * @param int $depth The current redirection recursion level (internal)
849 * @param bool $fetchbody Wether to fetch the body or not after the HEAD requests
850 * @return string A canonical URL
852 function original_url($url, $depth = 1, $fetchbody = false)
856 $url = strip_tracking_query_params($url);
862 $url = trim($url, "'");
864 $stamp1 = microtime(true);
867 curl_setopt($ch, CURLOPT_URL, $url);
868 curl_setopt($ch, CURLOPT_HEADER, 1);
869 curl_setopt($ch, CURLOPT_NOBODY, 1);
870 curl_setopt($ch, CURLOPT_TIMEOUT, 10);
871 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
872 curl_setopt($ch, CURLOPT_USERAGENT, $a->get_useragent());
875 $curl_info = @curl_getinfo($ch);
876 $http_code = $curl_info['http_code'];
879 $a->save_timestamp($stamp1, "network");
884 if ((($curl_info['http_code'] == "301") || ($curl_info['http_code'] == "302"))
885 && (($curl_info['redirect_url'] != "") || ($curl_info['location'] != ""))
887 if ($curl_info['redirect_url'] != "") {
888 return(original_url($curl_info['redirect_url'], ++$depth, $fetchbody));
890 return(original_url($curl_info['location'], ++$depth, $fetchbody));
894 // Check for redirects in the meta elements of the body if there are no redirects in the header.
896 return(original_url($url, ++$depth, true));
899 // if the file is too large then exit
900 if ($curl_info["download_content_length"] > 1000000) {
904 // if it isn't a HTML file then exit
905 if (($curl_info["content_type"] != "") && !strstr(strtolower($curl_info["content_type"]), "html")) {
909 $stamp1 = microtime(true);
912 curl_setopt($ch, CURLOPT_URL, $url);
913 curl_setopt($ch, CURLOPT_HEADER, 0);
914 curl_setopt($ch, CURLOPT_NOBODY, 0);
915 curl_setopt($ch, CURLOPT_TIMEOUT, 10);
916 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
917 curl_setopt($ch, CURLOPT_USERAGENT, $a->get_useragent());
919 $body = curl_exec($ch);
922 $a->save_timestamp($stamp1, "network");
924 if (trim($body) == "") {
928 // Check for redirect in meta elements
929 $doc = new DOMDocument();
930 @$doc->loadHTML($body);
932 $xpath = new DomXPath($doc);
934 $list = $xpath->query("//meta[@content]");
935 foreach ($list as $node) {
937 if ($node->attributes->length) {
938 foreach ($node->attributes as $attribute) {
939 $attr[$attribute->name] = $attribute->value;
943 if (@$attr["http-equiv"] == 'refresh') {
944 $path = $attr["content"];
945 $pathinfo = explode(";", $path);
946 foreach ($pathinfo as $value) {
947 if (substr(strtolower($value), 0, 4) == "url=") {
948 return(original_url(substr($value, 4), ++$depth));
957 function short_link($url)
959 require_once 'library/slinky.php';
960 $slinky = new Slinky($url);
961 $yourls_url = Config::get('yourls', 'url1');
963 $yourls_username = Config::get('yourls', 'username1');
964 $yourls_password = Config::get('yourls', 'password1');
965 $yourls_ssl = Config::get('yourls', 'ssl1');
966 $yourls = new Slinky_YourLS();
967 $yourls->set('username', $yourls_username);
968 $yourls->set('password', $yourls_password);
969 $yourls->set('ssl', $yourls_ssl);
970 $yourls->set('yourls-url', $yourls_url);
971 $slinky->set_cascade([$yourls, new Slinky_Ur1ca(), new Slinky_TinyURL()]);
973 // setup a cascade of shortening services
974 // try to get a short link from these services
975 // in the order ur1.ca, tinyurl
976 $slinky->set_cascade([new Slinky_Ur1ca(), new Slinky_TinyURL()]);
978 return $slinky->short();
982 * @brief Encodes content to json
984 * This function encodes an array to json format
985 * and adds an application/json HTTP header to the output.
986 * After finishing the process is getting killed.
988 * @param array $x The input content
990 function json_return_and_die($x)
992 header("content-type: application/json");
993 echo json_encode($x);
998 * @brief Find the matching part between two url
1000 * @param string $url1
1001 * @param string $url2
1002 * @return string The matching part
1004 function matching_url($url1, $url2)
1006 if (($url1 == "") || ($url2 == "")) {
1010 $url1 = normalise_link($url1);
1011 $url2 = normalise_link($url2);
1013 $parts1 = parse_url($url1);
1014 $parts2 = parse_url($url2);
1016 if (!isset($parts1["host"]) || !isset($parts2["host"])) {
1020 if ($parts1["scheme"] != $parts2["scheme"]) {
1024 if ($parts1["host"] != $parts2["host"]) {
1028 if ($parts1["port"] != $parts2["port"]) {
1032 $match = $parts1["scheme"]."://".$parts1["host"];
1034 if ($parts1["port"]) {
1035 $match .= ":".$parts1["port"];
1038 $pathparts1 = explode("/", $parts1["path"]);
1039 $pathparts2 = explode("/", $parts2["path"]);
1044 $path1 = $pathparts1[$i];
1045 $path2 = $pathparts2[$i];
1047 if ($path1 == $path2) {
1048 $path .= $path1."/";
1050 } while (($path1 == $path2) && ($i++ <= count($pathparts1)));
1054 return normalise_link($match);
1058 * @brief Glue url parts together
1060 * @param array $parsed URL parts
1062 * @return string The glued URL
1064 function unParseUrl($parsed)
1066 $get = function ($key) use ($parsed) {
1067 return isset($parsed[$key]) ? $parsed[$key] : null;
1070 $pass = $get('pass');
1071 $user = $get('user');
1072 $userinfo = $pass !== null ? "$user:$pass" : $user;
1073 $port = $get('port');
1074 $scheme = $get('scheme');
1075 $query = $get('query');
1076 $fragment = $get('fragment');
1077 $authority = ($userinfo !== null ? $userinfo."@" : '') .
1079 ($port ? ":$port" : '');
1081 return (strlen($scheme) ? $scheme.":" : '') .
1082 (strlen($authority) ? "//".$authority : '') .
1084 (strlen($query) ? "?".$query : '') .
1085 (strlen($fragment) ? "#".$fragment : '');