3 * @copyright Copyright (C) 2020, Friendica
5 * @license GNU AGPL version 3 or any later version
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as
9 * published by the Free Software Foundation, either version 3 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
22 namespace Friendica\Network;
26 use Friendica\Core\Hook;
27 use Friendica\Core\Logger;
28 use Friendica\Core\Protocol;
29 use Friendica\Core\System;
30 use Friendica\Database\DBA;
32 use Friendica\Model\Contact;
33 use Friendica\Model\GServer;
34 use Friendica\Model\Profile;
35 use Friendica\Model\User;
36 use Friendica\Protocol\ActivityNamespace;
37 use Friendica\Protocol\ActivityPub;
38 use Friendica\Protocol\Email;
39 use Friendica\Protocol\Feed;
40 use Friendica\Util\Crypto;
41 use Friendica\Util\DateTimeFormat;
42 use Friendica\Util\Network;
43 use Friendica\Util\Strings;
44 use Friendica\Util\XML;
47 * This class contain functions for probing URL
51 const WEBFINGER = '/.well-known/webfinger?resource={uri}';
53 private static $baseurl;
54 private static $istimeout;
57 * Remove stuff from an URI that doesn't belong there
60 * @return string Cleaned URI
62 public static function cleanURI(string $URI)
64 // At first remove leading and trailing junk
65 $URI = trim($URI, "@#?:/ \t\n\r\0\x0B");
67 $parts = parse_url($URI);
69 if (empty($parts['scheme'])) {
73 // Remove the URL fragment, since these shouldn't be part of any profile URL
74 unset($parts['fragment']);
76 $URI = Network::unparseURL($parts);
82 * Rearrange the array so that it always has the same order
84 * @param array $data Unordered data
86 * @return array Ordered data
88 private static function rearrangeData($data)
90 $fields = ["name", "nick", "guid", "url", "addr", "alias", "photo", "account-type",
91 "community", "keywords", "location", "about", "hide",
92 "batch", "notify", "poll", "request", "confirm", "subscribe", "poco",
93 "following", "followers", "inbox", "outbox", "sharedinbox",
94 "priority", "network", "pubkey", "manually-approve", "baseurl", "gsid"];
96 $numeric_fields = ["gsid", "hide", "account-type", "manually-approve"];
99 foreach ($fields as $field) {
100 if (isset($data[$field])) {
101 if (in_array($field, $numeric_fields)) {
102 $newdata[$field] = (int)$data[$field];
104 $newdata[$field] = $data[$field];
106 } elseif (!in_array($field, $numeric_fields)) {
107 $newdata[$field] = "";
109 $newdata[$field] = null;
113 // We don't use the "priority" field anymore and replace it with a dummy.
114 $newdata["priority"] = 0;
120 * Check if the hostname belongs to the own server
122 * @param string $host The hostname that is to be checked
124 * @return bool Does the testes hostname belongs to the own server?
126 private static function ownHost($host)
128 $own_host = DI::baseUrl()->getHostname();
130 $parts = parse_url($host);
132 if (!isset($parts['scheme'])) {
133 $parts = parse_url('http://'.$host);
136 if (!isset($parts['host'])) {
139 return $parts['host'] == $own_host;
143 * Probes for webfinger path via "host-meta"
145 * We have to check if the servers in the future still will offer this.
146 * It seems as if it was dropped from the standard.
148 * @param string $host The host part of an url
150 * @return array with template and type of the webfinger template for JSON or XML
151 * @throws HTTPException\InternalServerErrorException
153 private static function hostMeta($host)
155 // Reset the static variable
158 // Handles the case when the hostname contains the scheme
159 if (!parse_url($host, PHP_URL_SCHEME)) {
160 $ssl_url = "https://" . $host . "/.well-known/host-meta";
161 $url = "http://" . $host . "/.well-known/host-meta";
163 $ssl_url = $host . "/.well-known/host-meta";
167 $xrd_timeout = DI::config()->get('system', 'xrd_timeout', 20);
169 Logger::info('Probing', ['host' => $host, 'ssl_url' => $ssl_url, 'url' => $url, 'callstack' => System::callstack(20)]);
172 $curlResult = DI::httpRequest()->get($ssl_url, false, ['timeout' => $xrd_timeout, 'accept_content' => 'application/xrd+xml']);
173 $ssl_connection_error = ($curlResult->getErrorNumber() == CURLE_COULDNT_CONNECT) || ($curlResult->getReturnCode() == 0);
174 if ($curlResult->isSuccess()) {
175 $xml = $curlResult->getBody();
176 $xrd = XML::parseString($xml, true);
178 $host_url = 'https://' . $host;
182 } elseif ($curlResult->isTimeout()) {
183 Logger::info('Probing timeout', ['url' => $ssl_url]);
184 self::$istimeout = true;
188 if (!is_object($xrd) && !empty($url)) {
189 $curlResult = DI::httpRequest()->get($url, false, ['timeout' => $xrd_timeout, 'accept_content' => 'application/xrd+xml']);
190 $connection_error = ($curlResult->getErrorNumber() == CURLE_COULDNT_CONNECT) || ($curlResult->getReturnCode() == 0);
191 if ($curlResult->isTimeout()) {
192 Logger::info('Probing timeout', ['url' => $url]);
193 self::$istimeout = true;
195 } elseif ($connection_error && $ssl_connection_error) {
196 self::$istimeout = true;
200 $xml = $curlResult->getBody();
201 $xrd = XML::parseString($xml, true);
202 $host_url = 'http://'.$host;
204 if (!is_object($xrd)) {
205 Logger::info('No xrd object found', ['host' => $host]);
209 $links = XML::elementToArray($xrd);
210 if (!isset($links["xrd"]["link"])) {
211 Logger::info('No xrd data found', ['host' => $host]);
217 foreach ($links["xrd"]["link"] as $value => $link) {
218 if (!empty($link["@attributes"])) {
219 $attributes = $link["@attributes"];
220 } elseif ($value == "@attributes") {
226 if (!empty($attributes["rel"]) && $attributes["rel"] == "lrdd" && !empty($attributes["template"])) {
227 $type = (empty($attributes["type"]) ? '' : $attributes["type"]);
229 $lrdd[$type] = $attributes["template"];
233 self::$baseurl = $host_url;
235 Logger::info('Probing successful', ['host' => $host]);
241 * Perform Webfinger lookup and return DFRN data
243 * Given an email style address, perform webfinger lookup and
244 * return the resulting DFRN profile URL, or if no DFRN profile URL
245 * is located, returns an OStatus subscription template (prefixed
246 * with the string 'stat:' to identify it as on OStatus template).
247 * If this isn't an email style address just return $webbie.
248 * Return an empty string if email-style addresses but webfinger fails,
249 * or if the resultant personal XRD doesn't contain a supported
250 * subscription/friend-request attribute.
252 * amended 7/9/2011 to return an hcard which could save potentially loading
253 * a lengthy content page to scrape dfrn attributes
255 * @param string $webbie Address that should be probed
256 * @param string $hcard_url Link to the hcard - is returned by reference
258 * @return string profile link
259 * @throws HTTPException\InternalServerErrorException
261 public static function webfingerDfrn($webbie, &$hcard_url)
265 $links = self::lrdd($webbie);
266 Logger::debug('Result', ['url' => $webbie, 'links' => $links]);
267 if (!empty($links) && is_array($links)) {
268 foreach ($links as $link) {
269 if ($link['@attributes']['rel'] === ActivityNamespace::DFRN) {
270 $profile_link = $link['@attributes']['href'];
272 if (($link['@attributes']['rel'] === ActivityNamespace::OSTATUSSUB) && ($profile_link == "")) {
273 $profile_link = 'stat:'.$link['@attributes']['template'];
275 if ($link['@attributes']['rel'] === 'http://microformats.org/profile/hcard') {
276 $hcard_url = $link['@attributes']['href'];
280 return $profile_link;
284 * Check an URI for LRDD data
286 * @param string $uri Address that should be probed
288 * @return array uri data
289 * @throws HTTPException\InternalServerErrorException
291 public static function lrdd(string $uri)
293 $data = self::getWebfingerArray($uri);
297 $webfinger = $data['webfinger'];
299 if (empty($webfinger["links"])) {
300 Logger::info('No webfinger links found', ['uri' => $uri]);
306 foreach ($webfinger["links"] as $link) {
307 $data[] = ["@attributes" => $link];
310 if (!empty($webfinger["aliases"]) && is_array($webfinger["aliases"])) {
311 foreach ($webfinger["aliases"] as $alias) {
312 $data[] = ["@attributes" =>
322 * Fetch information (protocol endpoints and user information) about a given uri
324 * @param string $uri Address that should be probed
325 * @param string $network Test for this specific network
326 * @param integer $uid User ID for the probe (only used for mails)
327 * @param boolean $cache Use cached values?
329 * @return array uri data
330 * @throws HTTPException\InternalServerErrorException
331 * @throws \ImagickException
333 public static function uri($uri, $network = '', $uid = -1)
335 // Local profiles aren't probed via network
336 if (empty($network) && strpos($uri, DI::baseUrl()->getHostname())) {
337 $data = self::localProbe($uri);
347 if (empty($network) || ($network == Protocol::ACTIVITYPUB)) {
348 $ap_profile = ActivityPub::probeProfile($uri);
353 self::$istimeout = false;
355 if ($network != Protocol::ACTIVITYPUB) {
356 $data = self::detect($uri, $network, $uid, $ap_profile);
357 if (!is_array($data)) {
360 if (empty($data) || (!empty($ap_profile) && empty($network) && (($data['network'] ?? '') != Protocol::DFRN))) {
362 } elseif (!empty($ap_profile)) {
363 $ap_profile['batch'] = '';
364 $data = array_merge($ap_profile, $data);
370 if (!isset($data['url'])) {
374 if (empty($data['photo'])) {
375 $data['photo'] = DI::baseUrl() . Contact::DEFAULT_AVATAR_PHOTO;
378 if (empty($data['name'])) {
379 if (!empty($data['nick'])) {
380 $data['name'] = $data['nick'];
383 if (empty($data['name'])) {
384 $data['name'] = $data['url'];
388 if (empty($data['nick'])) {
389 $data['nick'] = strtolower($data['name']);
391 if (strpos($data['nick'], ' ')) {
392 $data['nick'] = trim(substr($data['nick'], 0, strpos($data['nick'], ' ')));
396 if (!empty($data['baseurl']) && empty($data['gsid'])) {
397 $data['gsid'] = GServer::getID($data['baseurl']);
400 if (empty($data['network'])) {
401 $data['network'] = Protocol::PHANTOM;
404 // Ensure that local connections always are DFRN
405 if (($network == '') && ($data['network'] != Protocol::PHANTOM) && (self::ownHost($data['baseurl'] ?? '') || self::ownHost($data['url']))) {
406 $data['network'] = Protocol::DFRN;
409 if (!isset($data['hide']) && in_array($data['network'], Protocol::FEDERATED)) {
410 $data['hide'] = self::getHideStatus($data['url']);
413 return self::rearrangeData($data);
418 * Fetches the "hide" status from the profile
420 * @param string $url URL of the profile
422 * @return boolean "hide" status
424 private static function getHideStatus($url)
426 $curlResult = DI::httpRequest()->get($url);
427 if (!$curlResult->isSuccess()) {
431 // If the file is too large then exit
432 if (($curlResult->getInfo()['download_content_length'] ?? 0) > 1000000) {
436 // If it isn't a HTML file then exit
437 if (($curlResult->getContentType() != '') && !strstr(strtolower($curlResult->getContentType()), 'html')) {
441 $body = $curlResult->getBody();
443 $doc = new DOMDocument();
444 @$doc->loadHTML($body);
446 $xpath = new DOMXPath($doc);
448 $list = $xpath->query('//meta[@name]');
449 foreach ($list as $node) {
451 if ($node->attributes->length) {
452 foreach ($node->attributes as $attribute) {
453 $meta_tag[$attribute->name] = $attribute->value;
457 if (empty($meta_tag['content'])) {
461 $content = strtolower(trim($meta_tag['content']));
463 switch (strtolower(trim($meta_tag['name']))) {
464 case 'dfrn-global-visibility':
465 if ($content == 'false') {
470 if (strpos($content, 'noindex') !== false) {
481 * Fetch the "subscribe" and add it to the result
483 * @param array $result
484 * @param array $webfinger
485 * @return array result
487 private static function getSubscribeLink(array $result, array $webfinger)
489 if (empty($webfinger['links'])) {
493 foreach ($webfinger['links'] as $link) {
494 if (!empty($link['template']) && ($link['rel'] === ActivityNamespace::OSTATUSSUB)) {
495 $result['subscribe'] = $link['template'];
503 * Get webfinger data from a given URI
506 * @return array Webfinger array
508 private static function getWebfingerArray(string $uri)
510 $parts = parse_url($uri);
512 if (!empty($parts['scheme']) && !empty($parts['host'])) {
513 $host = $parts['host'];
514 if (!empty($parts['port'])) {
515 $host .= ':'.$parts['port'];
518 $baseurl = $parts['scheme'] . '://' . $host;
523 $path_parts = explode("/", trim($parts['path'] ?? '', "/"));
524 if (!empty($path_parts)) {
525 $nick = ltrim(end($path_parts), '@');
526 // When the last part of the URI is numeric then it is most likely an ID and not a nick name
527 if (!is_numeric($nick)) {
528 $addr = $nick."@".$host;
534 $webfinger = self::getWebfinger($parts['scheme'] . '://' . $host . self::WEBFINGER, 'application/jrd+json', $uri, $addr);
535 if (empty($webfinger)) {
536 $lrdd = self::hostMeta($host);
539 if (empty($webfinger) && empty($lrdd)) {
540 while (empty($lrdd) && empty($webfinger) && (sizeof($path_parts) > 1)) {
541 $host .= "/".array_shift($path_parts);
542 $baseurl = $parts['scheme'] . '://' . $host;
545 $addr = $nick."@".$host;
548 $webfinger = self::getWebfinger($parts['scheme'] . '://' . $host . self::WEBFINGER, 'application/jrd+json', $uri, $addr);
549 if (empty($webfinger)) {
550 $lrdd = self::hostMeta($host);
554 if (empty($lrdd) && empty($webfinger)) {
558 } elseif (strstr($uri, '@')) {
559 // Remove "acct:" from the URI
560 $uri = str_replace('acct:', '', $uri);
562 $host = substr($uri, strpos($uri, '@') + 1);
563 $nick = substr($uri, 0, strpos($uri, '@'));
566 $webfinger = self::getWebfinger('https://' . $host . self::WEBFINGER, 'application/jrd+json', $uri, $addr);
567 if (self::$istimeout) {
571 if (empty($webfinger)) {
572 $webfinger = self::getWebfinger('http://' . $host . self::WEBFINGER, 'application/jrd+json', $uri, $addr);
573 if (self::$istimeout) {
577 $baseurl = 'https://' . $host;
580 if (empty($webfinger)) {
581 $lrdd = self::hostMeta($host);
582 if (self::$istimeout) {
585 $baseurl = self::$baseurl;
587 $baseurl = 'http://' . $host;
590 Logger::info('URI was not detectable', ['uri' => $uri]);
594 if (empty($webfinger)) {
595 foreach ($lrdd as $type => $template) {
600 $webfinger = self::getWebfinger($template, $type, $uri, $addr);
604 if (empty($webfinger)) {
608 if ($webfinger['detected'] == $addr) {
609 $webfinger['nick'] = $nick;
610 $webfinger['addr'] = $addr;
613 $webfinger['baseurl'] = $baseurl;
619 * Perform network request for webfinger data
621 * @param string $template
622 * @param string $type
624 * @param string $addr
625 * @return array webfinger results
627 private static function getWebfinger(string $template, string $type, string $uri, string $addr)
629 // First try the address because this is the primary purpose of webfinger
632 $path = str_replace('{uri}', urlencode("acct:" . $addr), $template);
633 $webfinger = self::webfinger($path, $type);
634 if (self::$istimeout) {
640 if (empty($webfinger) && $uri != $addr) {
642 $path = str_replace('{uri}', urlencode($uri), $template);
643 $webfinger = self::webfinger($path, $type);
644 if (self::$istimeout) {
649 if (empty($webfinger)) {
653 return ['webfinger' => $webfinger, 'detected' => $detected];
657 * Fetch information (protocol endpoints and user information) about a given uri
659 * This function is only called by the "uri" function that adds caching and rearranging of data.
661 * @param string $uri Address that should be probed
662 * @param string $network Test for this specific network
663 * @param integer $uid User ID for the probe (only used for mails)
664 * @param array $ap_profile Previously probed AP profile
666 * @return array uri data
667 * @throws HTTPException\InternalServerErrorException
669 private static function detect(string $uri, string $network, int $uid, array $ap_profile)
673 'network' => $network,
678 Hook::callAll('probe_detect', $hookData);
680 if ($hookData['result']) {
681 if (!is_array($hookData['result'])) {
684 return $hookData['result'];
688 $parts = parse_url($uri);
690 if (!empty($parts['scheme']) && !empty($parts['host'])) {
691 if (in_array($parts['host'], ['twitter.com', 'mobile.twitter.com'])) {
692 return self::twitter($uri);
694 } elseif (strstr($uri, '@')) {
695 // If the URI starts with "mailto:" then jump directly to the mail detection
696 if (strpos($uri, 'mailto:') !== false) {
697 $uri = str_replace('mailto:', '', $uri);
698 return self::mail($uri, $uid);
701 if ($network == Protocol::MAIL) {
702 return self::mail($uri, $uid);
705 if (Strings::endsWith($uri, '@twitter.com')
706 || Strings::endsWith($uri, '@mobile.twitter.com')
708 return self::twitter($uri);
711 Logger::info('URI was not detectable', ['uri' => $uri]);
715 Logger::info('Probing start', ['uri' => $uri]);
717 if (!empty($ap_profile['addr']) && ($ap_profile['addr'] != $uri)) {
718 $data = self::getWebfingerArray($ap_profile['addr']);
722 $data = self::getWebfingerArray($uri);
726 if (!empty($parts['scheme'])) {
727 return self::feed($uri);
728 } elseif (!empty($uid)) {
729 return self::mail($uri, $uid);
735 $webfinger = $data['webfinger'];
736 $nick = $data['nick'] ?? '';
737 $addr = $data['addr'] ?? '';
738 $baseurl = $data['baseurl'] ?? '';
742 if (in_array($network, ["", Protocol::DFRN])) {
743 $result = self::dfrn($webfinger);
745 if ((!$result && ($network == "")) || ($network == Protocol::DIASPORA)) {
746 $result = self::diaspora($webfinger);
748 if ((!$result && ($network == "")) || ($network == Protocol::OSTATUS)) {
749 $result = self::ostatus($webfinger);
751 if (in_array($network, ['', Protocol::ZOT])) {
752 $result = self::zot($webfinger, $result, $baseurl);
754 if ((!$result && ($network == "")) || ($network == Protocol::PUMPIO)) {
755 $result = self::pumpio($webfinger, $addr);
757 if (empty($result['network']) && empty($ap_profile['network']) || ($network == Protocol::FEED)) {
758 $result = self::feed($uri);
760 // We overwrite the detected nick with our try if the previois routines hadn't detected it.
761 // Additionally it is overwritten when the nickname doesn't make sense (contains spaces).
762 if ((empty($result["nick"]) || (strstr($result["nick"], " "))) && ($nick != "")) {
763 $result["nick"] = $nick;
766 if (empty($result["addr"]) && ($addr != "")) {
767 $result["addr"] = $addr;
771 $result = self::getSubscribeLink($result, $webfinger);
773 if (empty($result["network"])) {
774 $result["network"] = Protocol::PHANTOM;
777 if (empty($result['baseurl']) && !empty($baseurl)) {
778 $result['baseurl'] = $baseurl;
781 if (empty($result["url"])) {
782 $result["url"] = $uri;
785 Logger::info('Probing done', ['uri' => $uri, 'network' => $result["network"]]);
791 * Check for Zot contact
793 * @param array $webfinger Webfinger data
794 * @param array $data previously probed data
796 * @return array Zot data
797 * @throws HTTPException\InternalServerErrorException
799 private static function zot($webfinger, $data, $baseurl)
801 if (!empty($webfinger["aliases"]) && is_array($webfinger["aliases"])) {
802 foreach ($webfinger["aliases"] as $alias) {
803 if (substr($alias, 0, 5) == 'acct:') {
804 $data["addr"] = substr($alias, 5);
809 if (!empty($webfinger["subject"]) && (substr($webfinger["subject"], 0, 5) == "acct:")) {
810 $data["addr"] = substr($webfinger["subject"], 5);
814 foreach ($webfinger['links'] as $link) {
815 if (($link['rel'] == 'http://purl.org/zot/protocol') && !empty($link['href'])) {
816 $zot_url = $link['href'];
820 if (empty($zot_url) && !empty($data['addr']) && !empty($baseurl)) {
821 $condition = ['nurl' => Strings::normaliseLink($baseurl), 'platform' => ['hubzilla']];
822 if (!DBA::exists('gserver', $condition)) {
825 $zot_url = $baseurl . '/.well-known/zot-info?address=' . $data['addr'];
828 if (empty($zot_url)) {
832 $data = self::pollZot($zot_url, $data);
834 if (!empty($data['url']) && !empty($webfinger['aliases']) && is_array($webfinger['aliases'])) {
835 foreach ($webfinger['aliases'] as $alias) {
836 if (!strstr($alias, '@') && Strings::normaliseLink($alias) != Strings::normaliseLink($data['url'])) {
837 $data['alias'] = $alias;
845 public static function pollZot($url, $data)
847 $curlResult = DI::httpRequest()->get($url);
848 if ($curlResult->isTimeout()) {
851 $content = $curlResult->getBody();
856 $json = json_decode($content, true);
857 if (!is_array($json)) {
861 if (empty($data['network'])) {
862 if (!empty($json['protocols']) && in_array('zot', $json['protocols'])) {
863 $data['network'] = Protocol::ZOT;
864 } elseif (!isset($json['protocols'])) {
865 $data['network'] = Protocol::ZOT;
869 if (!empty($json['guid']) && empty($data['guid'])) {
870 $data['guid'] = $json['guid'];
872 if (!empty($json['key']) && empty($data['pubkey'])) {
873 $data['pubkey'] = $json['key'];
875 if (!empty($json['name'])) {
876 $data['name'] = $json['name'];
878 if (!empty($json['photo'])) {
879 $data['photo'] = $json['photo'];
880 if (!empty($json['photo_updated'])) {
881 $data['photo'] .= '?rev=' . urlencode($json['photo_updated']);
884 if (!empty($json['address'])) {
885 $data['addr'] = $json['address'];
887 if (!empty($json['url'])) {
888 $data['url'] = $json['url'];
890 if (!empty($json['connections_url'])) {
891 $data['poco'] = $json['connections_url'];
893 if (isset($json['searchable'])) {
894 $data['hide'] = !$json['searchable'];
896 if (!empty($json['public_forum'])) {
897 $data['community'] = $json['public_forum'];
898 $data['account-type'] = User::PAGE_FLAGS_COMMUNITY;
901 if (!empty($json['profile'])) {
902 $profile = $json['profile'];
903 if (!empty($profile['description'])) {
904 $data['about'] = $profile['description'];
906 if (!empty($profile['keywords'])) {
907 $keywords = implode(', ', $profile['keywords']);
908 if (!empty($keywords)) {
909 $data['keywords'] = $keywords;
914 if (!empty($profile['region'])) {
915 $loc['region'] = $profile['region'];
917 if (!empty($profile['country'])) {
918 $loc['country-name'] = $profile['country'];
920 $location = Profile::formatLocation($loc);
921 if (!empty($location)) {
922 $data['location'] = $location;
930 * Perform a webfinger request.
932 * For details see RFC 7033: <https://tools.ietf.org/html/rfc7033>
934 * @param string $url Address that should be probed
935 * @param string $type type
937 * @return array webfinger data
938 * @throws HTTPException\InternalServerErrorException
940 public static function webfinger($url, $type)
942 $xrd_timeout = DI::config()->get('system', 'xrd_timeout', 20);
944 $curlResult = DI::httpRequest()->get($url, false, ['timeout' => $xrd_timeout, 'accept_content' => $type]);
945 if ($curlResult->isTimeout()) {
946 self::$istimeout = true;
949 $data = $curlResult->getBody();
951 $webfinger = json_decode($data, true);
952 if (!empty($webfinger)) {
953 if (!isset($webfinger["links"])) {
954 Logger::info('No json webfinger links', ['url' => $url]);
960 // If it is not JSON, maybe it is XML
961 $xrd = XML::parseString($data, true);
962 if (!is_object($xrd)) {
963 Logger::info('No webfinger data retrievable', ['url' => $url]);
967 $xrd_arr = XML::elementToArray($xrd);
968 if (!isset($xrd_arr["xrd"]["link"])) {
969 Logger::info('No XML webfinger links', ['url' => $url]);
975 if (!empty($xrd_arr["xrd"]["subject"])) {
976 $webfinger["subject"] = $xrd_arr["xrd"]["subject"];
979 if (!empty($xrd_arr["xrd"]["alias"])) {
980 $webfinger["aliases"] = $xrd_arr["xrd"]["alias"];
983 $webfinger["links"] = [];
985 foreach ($xrd_arr["xrd"]["link"] as $value => $data) {
986 if (!empty($data["@attributes"])) {
987 $attributes = $data["@attributes"];
988 } elseif ($value == "@attributes") {
994 $webfinger["links"][] = $attributes;
1000 * Poll the Friendica specific noscrape page.
1002 * "noscrape" is a faster alternative to fetch the data from the hcard.
1003 * This functionality was originally created for the directory.
1005 * @param string $noscrape_url Link to the noscrape page
1006 * @param array $data The already fetched data
1008 * @return array noscrape data
1009 * @throws HTTPException\InternalServerErrorException
1011 private static function pollNoscrape($noscrape_url, $data)
1013 $curlResult = DI::httpRequest()->get($noscrape_url);
1014 if ($curlResult->isTimeout()) {
1015 self::$istimeout = true;
1018 $content = $curlResult->getBody();
1020 Logger::info('Empty body', ['url' => $noscrape_url]);
1024 $json = json_decode($content, true);
1025 if (!is_array($json)) {
1026 Logger::info('No json data', ['url' => $noscrape_url]);
1030 if (!empty($json["fn"])) {
1031 $data["name"] = $json["fn"];
1034 if (!empty($json["addr"])) {
1035 $data["addr"] = $json["addr"];
1038 if (!empty($json["nick"])) {
1039 $data["nick"] = $json["nick"];
1042 if (!empty($json["guid"])) {
1043 $data["guid"] = $json["guid"];
1046 if (!empty($json["comm"])) {
1047 $data["community"] = $json["comm"];
1050 if (!empty($json["tags"])) {
1051 $keywords = implode(", ", $json["tags"]);
1052 if ($keywords != "") {
1053 $data["keywords"] = $keywords;
1057 $location = Profile::formatLocation($json);
1059 $data["location"] = $location;
1062 if (!empty($json["about"])) {
1063 $data["about"] = $json["about"];
1066 if (!empty($json["key"])) {
1067 $data["pubkey"] = $json["key"];
1070 if (!empty($json["photo"])) {
1071 $data["photo"] = $json["photo"];
1074 if (!empty($json["dfrn-request"])) {
1075 $data["request"] = $json["dfrn-request"];
1078 if (!empty($json["dfrn-confirm"])) {
1079 $data["confirm"] = $json["dfrn-confirm"];
1082 if (!empty($json["dfrn-notify"])) {
1083 $data["notify"] = $json["dfrn-notify"];
1086 if (!empty($json["dfrn-poll"])) {
1087 $data["poll"] = $json["dfrn-poll"];
1090 if (isset($json["hide"])) {
1091 $data["hide"] = (bool)$json["hide"];
1093 $data["hide"] = false;
1100 * Check for valid DFRN data
1102 * @param array $data DFRN data
1104 * @return int Number of errors
1106 public static function validDfrn($data)
1109 if (!isset($data['key'])) {
1112 if (!isset($data['dfrn-request'])) {
1115 if (!isset($data['dfrn-confirm'])) {
1118 if (!isset($data['dfrn-notify'])) {
1121 if (!isset($data['dfrn-poll'])) {
1128 * Fetch data from a DFRN profile page and via "noscrape"
1130 * @param string $profile_link Link to the profile page
1132 * @return array profile data
1133 * @throws HTTPException\InternalServerErrorException
1134 * @throws \ImagickException
1136 public static function profile($profile_link)
1140 Logger::info('Check profile', ['link' => $profile_link]);
1142 // Fetch data via noscrape - this is faster
1143 $noscrape_url = str_replace(["/hcard/", "/profile/"], "/noscrape/", $profile_link);
1144 $data = self::pollNoscrape($noscrape_url, $data);
1146 if (!isset($data["notify"])
1147 || !isset($data["confirm"])
1148 || !isset($data["request"])
1149 || !isset($data["poll"])
1150 || !isset($data["name"])
1151 || !isset($data["photo"])
1153 $data = self::pollHcard($profile_link, $data, true);
1158 if (empty($data["addr"]) || empty($data["nick"])) {
1159 $probe_data = self::uri($profile_link);
1160 $data["addr"] = ($data["addr"] ?? '') ?: $probe_data["addr"];
1161 $data["nick"] = ($data["nick"] ?? '') ?: $probe_data["nick"];
1164 $prof_data["addr"] = $data["addr"];
1165 $prof_data["nick"] = $data["nick"];
1166 $prof_data["dfrn-request"] = $data['request'] ?? null;
1167 $prof_data["dfrn-confirm"] = $data['confirm'] ?? null;
1168 $prof_data["dfrn-notify"] = $data['notify'] ?? null;
1169 $prof_data["dfrn-poll"] = $data['poll'] ?? null;
1170 $prof_data["photo"] = $data['photo'] ?? null;
1171 $prof_data["fn"] = $data['name'] ?? null;
1172 $prof_data["key"] = $data['pubkey'] ?? null;
1174 Logger::debug('Result', ['link' => $profile_link, 'data' => $prof_data]);
1180 * Check for DFRN contact
1182 * @param array $webfinger Webfinger data
1184 * @return array DFRN data
1185 * @throws HTTPException\InternalServerErrorException
1187 private static function dfrn($webfinger)
1191 // The array is reversed to take into account the order of preference for same-rel links
1192 // See: https://tools.ietf.org/html/rfc7033#section-4.4.4
1193 foreach (array_reverse($webfinger["links"]) as $link) {
1194 if (($link["rel"] == ActivityNamespace::DFRN) && !empty($link["href"])) {
1195 $data["network"] = Protocol::DFRN;
1196 } elseif (($link["rel"] == ActivityNamespace::FEED) && !empty($link["href"])) {
1197 $data["poll"] = $link["href"];
1198 } elseif (($link["rel"] == "http://webfinger.net/rel/profile-page") && (($link["type"] ?? "") == "text/html") && !empty($link["href"])) {
1199 $data["url"] = $link["href"];
1200 } elseif (($link["rel"] == "http://microformats.org/profile/hcard") && !empty($link["href"])) {
1201 $hcard_url = $link["href"];
1202 } elseif (($link["rel"] == ActivityNamespace::POCO) && !empty($link["href"])) {
1203 $data["poco"] = $link["href"];
1204 } elseif (($link["rel"] == "http://webfinger.net/rel/avatar") && !empty($link["href"])) {
1205 $data["photo"] = $link["href"];
1206 } elseif (($link["rel"] == "http://joindiaspora.com/seed_location") && !empty($link["href"])) {
1207 $data["baseurl"] = trim($link["href"], '/');
1208 } elseif (($link["rel"] == "http://joindiaspora.com/guid") && !empty($link["href"])) {
1209 $data["guid"] = $link["href"];
1210 } elseif (($link["rel"] == "diaspora-public-key") && !empty($link["href"])) {
1211 $data["pubkey"] = base64_decode($link["href"]);
1213 //if (strstr($data["pubkey"], 'RSA ') || ($link["type"] == "RSA"))
1214 if (strstr($data["pubkey"], 'RSA ')) {
1215 $data["pubkey"] = Crypto::rsaToPem($data["pubkey"]);
1220 if (!empty($webfinger["aliases"]) && is_array($webfinger["aliases"])) {
1221 foreach ($webfinger["aliases"] as $alias) {
1222 if (empty($data["url"]) && !strstr($alias, "@")) {
1223 $data["url"] = $alias;
1224 } elseif (!strstr($alias, "@") && Strings::normaliseLink($alias) != Strings::normaliseLink($data["url"])) {
1225 $data["alias"] = $alias;
1226 } elseif (substr($alias, 0, 5) == 'acct:') {
1227 $data["addr"] = substr($alias, 5);
1232 if (!empty($webfinger["subject"]) && (substr($webfinger["subject"], 0, 5) == "acct:")) {
1233 $data["addr"] = substr($webfinger["subject"], 5);
1236 if (!isset($data["network"]) || ($hcard_url == "")) {
1240 // Fetch data via noscrape - this is faster
1241 $noscrape_url = str_replace("/hcard/", "/noscrape/", $hcard_url);
1242 $data = self::pollNoscrape($noscrape_url, $data);
1244 if (isset($data["notify"])
1245 && isset($data["confirm"])
1246 && isset($data["request"])
1247 && isset($data["poll"])
1248 && isset($data["name"])
1249 && isset($data["photo"])
1254 $data = self::pollHcard($hcard_url, $data, true);
1260 * Poll the hcard page (Diaspora and Friendica specific)
1262 * @param string $hcard_url Link to the hcard page
1263 * @param array $data The already fetched data
1264 * @param boolean $dfrn Poll DFRN specific data
1266 * @return array hcard data
1267 * @throws HTTPException\InternalServerErrorException
1269 private static function pollHcard($hcard_url, $data, $dfrn = false)
1271 $curlResult = DI::httpRequest()->get($hcard_url);
1272 if ($curlResult->isTimeout()) {
1273 self::$istimeout = true;
1276 $content = $curlResult->getBody();
1281 $doc = new DOMDocument();
1282 if (!@$doc->loadHTML($content)) {
1286 $xpath = new DomXPath($doc);
1288 $vcards = $xpath->query("//div[contains(concat(' ', @class, ' '), ' vcard ')]");
1289 if (!is_object($vcards)) {
1293 if (!isset($data["baseurl"])) {
1294 $data["baseurl"] = "";
1297 if ($vcards->length > 0) {
1298 $vcard = $vcards->item(0);
1300 // We have to discard the guid from the hcard in favour of the guid from lrdd
1301 // Reason: Hubzilla doesn't use the value "uid" in the hcard like Diaspora does.
1302 $search = $xpath->query("//*[contains(concat(' ', @class, ' '), ' uid ')]", $vcard); // */
1303 if (($search->length > 0) && empty($data["guid"])) {
1304 $data["guid"] = $search->item(0)->nodeValue;
1307 $search = $xpath->query("//*[contains(concat(' ', @class, ' '), ' nickname ')]", $vcard); // */
1308 if ($search->length > 0) {
1309 $data["nick"] = $search->item(0)->nodeValue;
1312 $search = $xpath->query("//*[contains(concat(' ', @class, ' '), ' fn ')]", $vcard); // */
1313 if ($search->length > 0) {
1314 $data["name"] = $search->item(0)->nodeValue;
1317 $search = $xpath->query("//*[contains(concat(' ', @class, ' '), ' searchable ')]", $vcard); // */
1318 if ($search->length > 0) {
1319 $data["searchable"] = $search->item(0)->nodeValue;
1322 $search = $xpath->query("//*[contains(concat(' ', @class, ' '), ' key ')]", $vcard); // */
1323 if ($search->length > 0) {
1324 $data["pubkey"] = $search->item(0)->nodeValue;
1325 if (strstr($data["pubkey"], 'RSA ')) {
1326 $data["pubkey"] = Crypto::rsaToPem($data["pubkey"]);
1330 $search = $xpath->query("//*[@id='pod_location']", $vcard); // */
1331 if ($search->length > 0) {
1332 $data["baseurl"] = trim($search->item(0)->nodeValue, "/");
1337 if (!empty($vcard)) {
1338 $photos = $xpath->query("//*[contains(concat(' ', @class, ' '), ' photo ') or contains(concat(' ', @class, ' '), ' avatar ')]", $vcard); // */
1339 foreach ($photos as $photo) {
1341 foreach ($photo->attributes as $attribute) {
1342 $attr[$attribute->name] = trim($attribute->value);
1345 if (isset($attr["src"]) && isset($attr["width"])) {
1346 $avatar[$attr["width"]] = $attr["src"];
1349 // We don't have a width. So we just take everything that we got.
1350 // This is a Hubzilla workaround which doesn't send a width.
1351 if ((sizeof($avatar) == 0) && !empty($attr["src"])) {
1352 $avatar[] = $attr["src"];
1357 if (sizeof($avatar)) {
1359 $data["photo"] = self::fixAvatar(array_pop($avatar), $data["baseurl"]);
1363 // Poll DFRN specific data
1364 $search = $xpath->query("//link[contains(concat(' ', @rel), ' dfrn-')]");
1365 if ($search->length > 0) {
1366 foreach ($search as $link) {
1367 //$data["request"] = $search->item(0)->nodeValue;
1369 foreach ($link->attributes as $attribute) {
1370 $attr[$attribute->name] = trim($attribute->value);
1373 $data[substr($attr["rel"], 5)] = $attr["href"];
1377 // Older Friendica versions had used the "uid" field differently than newer versions
1378 if (!empty($data["nick"]) && !empty($data["guid"]) && ($data["nick"] == $data["guid"])) {
1379 unset($data["guid"]);
1388 * Check for Diaspora contact
1390 * @param array $webfinger Webfinger data
1392 * @return array Diaspora data
1393 * @throws HTTPException\InternalServerErrorException
1395 private static function diaspora($webfinger)
1400 // The array is reversed to take into account the order of preference for same-rel links
1401 // See: https://tools.ietf.org/html/rfc7033#section-4.4.4
1402 foreach (array_reverse($webfinger["links"]) as $link) {
1403 if (($link["rel"] == "http://microformats.org/profile/hcard") && !empty($link["href"])) {
1404 $hcard_url = $link["href"];
1405 } elseif (($link["rel"] == "http://joindiaspora.com/seed_location") && !empty($link["href"])) {
1406 $data["baseurl"] = trim($link["href"], '/');
1407 } elseif (($link["rel"] == "http://joindiaspora.com/guid") && !empty($link["href"])) {
1408 $data["guid"] = $link["href"];
1409 } elseif (($link["rel"] == "http://webfinger.net/rel/profile-page") && (($link["type"] ?? "") == "text/html") && !empty($link["href"])) {
1410 $data["url"] = $link["href"];
1411 } elseif (($link["rel"] == ActivityNamespace::FEED) && !empty($link["href"])) {
1412 $data["poll"] = $link["href"];
1413 } elseif (($link["rel"] == ActivityNamespace::POCO) && !empty($link["href"])) {
1414 $data["poco"] = $link["href"];
1415 } elseif (($link["rel"] == "salmon") && !empty($link["href"])) {
1416 $data["notify"] = $link["href"];
1417 } elseif (($link["rel"] == "diaspora-public-key") && !empty($link["href"])) {
1418 $data["pubkey"] = base64_decode($link["href"]);
1420 //if (strstr($data["pubkey"], 'RSA ') || ($link["type"] == "RSA"))
1421 if (strstr($data["pubkey"], 'RSA ')) {
1422 $data["pubkey"] = Crypto::rsaToPem($data["pubkey"]);
1427 if (empty($data["url"]) || empty($hcard_url)) {
1431 if (!empty($webfinger["aliases"]) && is_array($webfinger["aliases"])) {
1432 foreach ($webfinger["aliases"] as $alias) {
1433 if (Strings::normaliseLink($alias) != Strings::normaliseLink($data["url"]) && ! strstr($alias, "@")) {
1434 $data["alias"] = $alias;
1435 } elseif (substr($alias, 0, 5) == 'acct:') {
1436 $data["addr"] = substr($alias, 5);
1441 if (!empty($webfinger["subject"]) && (substr($webfinger["subject"], 0, 5) == 'acct:')) {
1442 $data["addr"] = substr($webfinger["subject"], 5);
1445 // Fetch further information from the hcard
1446 $data = self::pollHcard($hcard_url, $data);
1452 if (!empty($data["url"])
1453 && !empty($data["guid"])
1454 && !empty($data["baseurl"])
1455 && !empty($data["pubkey"])
1456 && !empty($hcard_url)
1458 $data["network"] = Protocol::DIASPORA;
1459 $data["manually-approve"] = false;
1461 // The Diaspora handle must always be lowercase
1462 if (!empty($data["addr"])) {
1463 $data["addr"] = strtolower($data["addr"]);
1466 // We have to overwrite the detected value for "notify" since Hubzilla doesn't send it
1467 $data["notify"] = $data["baseurl"] . "/receive/users/" . $data["guid"];
1468 $data["batch"] = $data["baseurl"] . "/receive/public";
1477 * Check for OStatus contact
1479 * @param array $webfinger Webfinger data
1480 * @param bool $short Short detection mode
1482 * @return array|bool OStatus data or "false" on error or "true" on short mode
1483 * @throws HTTPException\InternalServerErrorException
1485 private static function ostatus($webfinger, $short = false)
1489 if (!empty($webfinger["aliases"]) && is_array($webfinger["aliases"])) {
1490 foreach ($webfinger["aliases"] as $alias) {
1491 if (strstr($alias, "@") && !strstr(Strings::normaliseLink($alias), "http://")) {
1492 $data["addr"] = str_replace('acct:', '', $alias);
1497 if (!empty($webfinger["subject"]) && strstr($webfinger["subject"], "@")
1498 && !strstr(Strings::normaliseLink($webfinger["subject"]), "http://")
1500 $data["addr"] = str_replace('acct:', '', $webfinger["subject"]);
1503 if (!empty($webfinger["links"])) {
1504 // The array is reversed to take into account the order of preference for same-rel links
1505 // See: https://tools.ietf.org/html/rfc7033#section-4.4.4
1506 foreach (array_reverse($webfinger["links"]) as $link) {
1507 if (($link["rel"] == "http://webfinger.net/rel/profile-page")
1508 && (($link["type"] ?? "") == "text/html")
1509 && ($link["href"] != "")
1511 $data["url"] = $data["alias"] = $link["href"];
1512 } elseif (($link["rel"] == "salmon") && !empty($link["href"])) {
1513 $data["notify"] = $link["href"];
1514 } elseif (($link["rel"] == ActivityNamespace::FEED) && !empty($link["href"])) {
1515 $data["poll"] = $link["href"];
1516 } elseif (($link["rel"] == "magic-public-key") && !empty($link["href"])) {
1517 $pubkey = $link["href"];
1519 if (substr($pubkey, 0, 5) === 'data:') {
1520 if (strstr($pubkey, ',')) {
1521 $pubkey = substr($pubkey, strpos($pubkey, ',') + 1);
1523 $pubkey = substr($pubkey, 5);
1525 } elseif (Strings::normaliseLink($pubkey) == 'http://') {
1526 $curlResult = DI::httpRequest()->get($pubkey);
1527 if ($curlResult->isTimeout()) {
1528 self::$istimeout = true;
1529 return $short ? false : [];
1531 $pubkey = $curlResult->getBody();
1534 $key = explode(".", $pubkey);
1536 if (sizeof($key) >= 3) {
1537 $m = Strings::base64UrlDecode($key[1]);
1538 $e = Strings::base64UrlDecode($key[2]);
1539 $data["pubkey"] = Crypto::meToPem($m, $e);
1545 if (isset($data["notify"]) && isset($data["pubkey"])
1546 && isset($data["poll"])
1547 && isset($data["url"])
1549 $data["network"] = Protocol::OSTATUS;
1550 $data["manually-approve"] = false;
1552 return $short ? false : [];
1559 // Fetch all additional data from the feed
1560 $curlResult = DI::httpRequest()->get($data["poll"]);
1561 if ($curlResult->isTimeout()) {
1562 self::$istimeout = true;
1565 $feed = $curlResult->getBody();
1566 $feed_data = Feed::import($feed);
1571 if (!empty($feed_data["header"]["author-name"])) {
1572 $data["name"] = $feed_data["header"]["author-name"];
1574 if (!empty($feed_data["header"]["author-nick"])) {
1575 $data["nick"] = $feed_data["header"]["author-nick"];
1577 if (!empty($feed_data["header"]["author-avatar"])) {
1578 $data["photo"] = self::fixAvatar($feed_data["header"]["author-avatar"], $data["url"]);
1580 if (!empty($feed_data["header"]["author-id"])) {
1581 $data["alias"] = $feed_data["header"]["author-id"];
1583 if (!empty($feed_data["header"]["author-location"])) {
1584 $data["location"] = $feed_data["header"]["author-location"];
1586 if (!empty($feed_data["header"]["author-about"])) {
1587 $data["about"] = $feed_data["header"]["author-about"];
1589 // OStatus has serious issues when the the url doesn't fit (ssl vs. non ssl)
1590 // So we take the value that we just fetched, although the other one worked as well
1591 if (!empty($feed_data["header"]["author-link"])) {
1592 $data["url"] = $feed_data["header"]["author-link"];
1595 if ($data["url"] == $data["alias"]) {
1596 $data["alias"] = '';
1599 /// @todo Fetch location and "about" from the feed as well
1604 * Fetch data from a pump.io profile page
1606 * @param string $profile_link Link to the profile page
1608 * @return array profile data
1610 private static function pumpioProfileData($profile_link)
1612 $curlResult = DI::httpRequest()->get($profile_link);
1613 if (!$curlResult->isSuccess()) {
1617 $doc = new DOMDocument();
1618 if (!@$doc->loadHTML($curlResult->getBody())) {
1622 $xpath = new DomXPath($doc);
1626 $data["name"] = $xpath->query("//span[contains(@class, 'p-name')]")->item(0)->nodeValue;
1628 if ($data["name"] == '') {
1629 // This is ugly - but pump.io doesn't seem to know a better way for it
1630 $data["name"] = trim($xpath->query("//h1[@class='media-header']")->item(0)->nodeValue);
1631 $pos = strpos($data["name"], chr(10));
1633 $data["name"] = trim(substr($data["name"], 0, $pos));
1637 $data["location"] = XML::getFirstNodeValue($xpath, "//p[contains(@class, 'p-locality')]");
1639 if ($data["location"] == '') {
1640 $data["location"] = XML::getFirstNodeValue($xpath, "//p[contains(@class, 'location')]");
1643 $data["about"] = XML::getFirstNodeValue($xpath, "//p[contains(@class, 'p-note')]");
1645 if ($data["about"] == '') {
1646 $data["about"] = XML::getFirstNodeValue($xpath, "//p[contains(@class, 'summary')]");
1649 $avatar = $xpath->query("//img[contains(@class, 'u-photo')]")->item(0);
1651 $avatar = $xpath->query("//img[@class='img-rounded media-object']")->item(0);
1654 foreach ($avatar->attributes as $attribute) {
1655 if ($attribute->name == "src") {
1656 $data["photo"] = trim($attribute->value);
1665 * Check for pump.io contact
1667 * @param array $webfinger Webfinger data
1668 * @param string $addr
1669 * @return array pump.io data
1671 private static function pumpio($webfinger, $addr)
1674 // The array is reversed to take into account the order of preference for same-rel links
1675 // See: https://tools.ietf.org/html/rfc7033#section-4.4.4
1676 foreach (array_reverse($webfinger["links"]) as $link) {
1677 if (($link["rel"] == "http://webfinger.net/rel/profile-page")
1678 && (($link["type"] ?? "") == "text/html")
1679 && ($link["href"] != "")
1681 $data["url"] = $link["href"];
1682 } elseif (($link["rel"] == "activity-inbox") && ($link["href"] != "")) {
1683 $data["notify"] = $link["href"];
1684 } elseif (($link["rel"] == "activity-outbox") && ($link["href"] != "")) {
1685 $data["poll"] = $link["href"];
1686 } elseif (($link["rel"] == "dialback") && ($link["href"] != "")) {
1687 $data["dialback"] = $link["href"];
1690 if (isset($data["poll"]) && isset($data["notify"])
1691 && isset($data["dialback"])
1692 && isset($data["url"])
1694 // by now we use these fields only for the network type detection
1695 // So we unset all data that isn't used at the moment
1696 unset($data["dialback"]);
1698 $data["network"] = Protocol::PUMPIO;
1703 $profile_data = self::pumpioProfileData($data["url"]);
1705 if (!$profile_data) {
1709 $data = array_merge($data, $profile_data);
1711 if (($addr != '') && ($data['name'] != '')) {
1712 $name = trim(str_replace($addr, '', $data['name']));
1714 $data['name'] = $name;
1722 * Check for twitter contact
1724 * @param string $uri
1726 * @return array twitter data
1728 private static function twitter($uri)
1730 if (preg_match('=([^@]+)@(?:mobile\.)?twitter\.com$=i', $uri, $matches)) {
1731 $nick = $matches[1];
1732 } elseif (preg_match('=^https?://(?:mobile\.)?twitter\.com/(.+)=i', $uri, $matches)) {
1733 $nick = $matches[1];
1739 $data['url'] = 'https://twitter.com/' . $nick;
1740 $data['addr'] = $nick . '@twitter.com';
1741 $data['nick'] = $data['name'] = $nick;
1742 $data['network'] = Protocol::TWITTER;
1743 $data['baseurl'] = 'https://twitter.com';
1749 * Checks HTML page for RSS feed link
1751 * @param string $url Page link
1752 * @param string $body Page body string
1753 * @return string|false Feed link or false if body was invalid HTML document
1755 public static function getFeedLink(string $url, string $body)
1757 $doc = new DOMDocument();
1758 if (!@$doc->loadHTML($body)) {
1762 $xpath = new DOMXPath($doc);
1764 $feedUrl = $xpath->evaluate('string(/html/head/link[@type="application/rss+xml" and @rel="alternate"]/@href)');
1766 $feedUrl = $feedUrl ? self::ensureAbsoluteLinkFromHTMLDoc($feedUrl, $url, $xpath) : '';
1772 * Return an absolute URL in the context of a HTML document retrieved from the provided URL.
1774 * Loosely based on RFC 1808
1776 * @see https://tools.ietf.org/html/rfc1808
1778 * @param string $href The potential relative href found in the HTML document
1779 * @param string $base The HTML document URL
1780 * @param DOMXPath $xpath The HTML document XPath
1783 private static function ensureAbsoluteLinkFromHTMLDoc(string $href, string $base, DOMXPath $xpath)
1785 if (filter_var($href, FILTER_VALIDATE_URL)) {
1789 $base = $xpath->evaluate('string(/html/head/base/@href)') ?: $base;
1791 $baseParts = parse_url($base);
1792 if (empty($baseParts['host'])) {
1796 // Naked domain case (scheme://basehost)
1797 $path = $baseParts['path'] ?? '/';
1799 // Remove the filename part of the path if it exists (/base/path/file)
1800 $path = implode('/', array_slice(explode('/', $path), 0, -1));
1802 $hrefParts = parse_url($href);
1804 // Root path case (/path) including relative scheme case (//host/path)
1805 if ($hrefParts['path'] && $hrefParts['path'][0] == '/') {
1806 $path = $hrefParts['path'];
1808 $path = $path . '/' . $hrefParts['path'];
1810 // Resolve arbitrary relative path
1811 // Lifted from https://www.php.net/manual/en/function.realpath.php#84012
1812 $parts = array_filter(explode('/', $path), 'strlen');
1813 $absolutes = array();
1814 foreach ($parts as $part) {
1815 if ('.' == $part) continue;
1816 if ('..' == $part) {
1817 array_pop($absolutes);
1819 $absolutes[] = $part;
1823 $path = '/' . implode('/', $absolutes);
1826 // Relative scheme case (//host/path)
1827 $baseParts['host'] = $hrefParts['host'] ?? $baseParts['host'];
1828 $baseParts['path'] = $path;
1829 unset($baseParts['query']);
1830 unset($baseParts['fragment']);
1832 return Network::unparseURL($baseParts);
1836 * Check for feed contact
1838 * @param string $url Profile link
1839 * @param boolean $probe Do a probe if the page contains a feed link
1841 * @return array feed data
1842 * @throws HTTPException\InternalServerErrorException
1844 private static function feed($url, $probe = true)
1846 $curlResult = DI::httpRequest()->get($url);
1847 if ($curlResult->isTimeout()) {
1848 self::$istimeout = true;
1851 $feed = $curlResult->getBody();
1852 $feed_data = Feed::import($feed);
1859 $feed_url = self::getFeedLink($url, $feed);
1865 return self::feed($feed_url, false);
1868 if (!empty($feed_data["header"]["author-name"])) {
1869 $data["name"] = $feed_data["header"]["author-name"];
1872 if (!empty($feed_data["header"]["author-nick"])) {
1873 $data["nick"] = $feed_data["header"]["author-nick"];
1876 if (!empty($feed_data["header"]["author-avatar"])) {
1877 $data["photo"] = $feed_data["header"]["author-avatar"];
1880 if (!empty($feed_data["header"]["author-id"])) {
1881 $data["alias"] = $feed_data["header"]["author-id"];
1884 $data["url"] = $url;
1885 $data["poll"] = $url;
1887 $data["network"] = Protocol::FEED;
1893 * Check for mail contact
1895 * @param string $uri Profile link
1896 * @param integer $uid User ID
1898 * @return array mail data
1899 * @throws \Exception
1901 private static function mail($uri, $uid)
1903 if (!Network::isEmailDomainValid($uri)) {
1911 $user = DBA::selectFirst('user', ['prvkey'], ['uid' => $uid]);
1913 $condition = ["`uid` = ? AND `server` != ''", $uid];
1914 $fields = ['pass', 'user', 'server', 'port', 'ssltype', 'mailbox'];
1915 $mailacct = DBA::selectFirst('mailacct', $fields, $condition);
1917 if (!DBA::isResult($user) || !DBA::isResult($mailacct)) {
1921 $mailbox = Email::constructMailboxName($mailacct);
1923 openssl_private_decrypt(hex2bin($mailacct['pass']), $password, $user['prvkey']);
1924 $mbox = Email::connect($mailbox, $mailacct['user'], $password);
1929 $msgs = Email::poll($mbox, $uri);
1930 Logger::info('Messages found', ['uri' => $uri, 'count' => count($msgs)]);
1932 if (!count($msgs)) {
1936 $phost = substr($uri, strpos($uri, '@') + 1);
1939 $data["addr"] = $uri;
1940 $data["network"] = Protocol::MAIL;
1941 $data["name"] = substr($uri, 0, strpos($uri, '@'));
1942 $data["nick"] = $data["name"];
1943 $data["photo"] = Network::lookupAvatarByEmail($uri);
1944 $data["url"] = 'mailto:'.$uri;
1945 $data["notify"] = 'smtp ' . Strings::getRandomHex();
1946 $data["poll"] = 'email ' . Strings::getRandomHex();
1948 $x = Email::messageMeta($mbox, $msgs[0]);
1949 if (stristr($x[0]->from, $uri)) {
1950 $adr = imap_rfc822_parse_adrlist($x[0]->from, '');
1951 } elseif (stristr($x[0]->to, $uri)) {
1952 $adr = imap_rfc822_parse_adrlist($x[0]->to, '');
1955 foreach ($adr as $feadr) {
1956 if ((strcasecmp($feadr->mailbox, $data["name"]) == 0)
1957 &&(strcasecmp($feadr->host, $phost) == 0)
1958 && (strlen($feadr->personal))
1960 $personal = imap_mime_header_decode($feadr->personal);
1962 foreach ($personal as $perspart) {
1963 if ($perspart->charset != "default") {
1964 $data["name"] .= iconv($perspart->charset, 'UTF-8//IGNORE', $perspart->text);
1966 $data["name"] .= $perspart->text;
1970 $data["name"] = Strings::escapeTags($data["name"]);
1974 if (!empty($mbox)) {
1981 * Mix two paths together to possibly fix missing parts
1983 * @param string $avatar Path to the avatar
1984 * @param string $base Another path that is hopefully complete
1986 * @return string fixed avatar path
1987 * @throws \Exception
1989 public static function fixAvatar($avatar, $base)
1991 $base_parts = parse_url($base);
1993 // Remove all parts that could create a problem
1994 unset($base_parts['path']);
1995 unset($base_parts['query']);
1996 unset($base_parts['fragment']);
1998 $avatar_parts = parse_url($avatar);
2001 $parts = array_merge($base_parts, $avatar_parts);
2003 // And put them together again
2004 $scheme = isset($parts['scheme']) ? $parts['scheme'] . '://' : '';
2005 $host = isset($parts['host']) ? $parts['host'] : '';
2006 $port = isset($parts['port']) ? ':' . $parts['port'] : '';
2007 $path = isset($parts['path']) ? $parts['path'] : '';
2008 $query = isset($parts['query']) ? '?' . $parts['query'] : '';
2009 $fragment = isset($parts['fragment']) ? '#' . $parts['fragment'] : '';
2011 $fixed = $scheme.$host.$port.$path.$query.$fragment;
2013 Logger::debug('Avatar fixed', ['base' => $base, 'avatar' => $avatar, 'fixed' => $fixed]);
2019 * Fetch the last date that the contact had posted something (publically)
2021 * @param string $data probing result
2022 * @return string last activity
2024 public static function getLastUpdate(array $data)
2026 $uid = User::getIdForURL($data['url']);
2028 $contact = Contact::selectFirst(['url', 'last-item'], ['self' => true, 'uid' => $uid]);
2029 if (!empty($contact['last-item'])) {
2030 return $contact['last-item'];
2034 if ($lastUpdate = self::updateFromNoScrape($data)) {
2038 if (!empty($data['outbox'])) {
2039 return self::updateFromOutbox($data['outbox'], $data);
2040 } elseif (!empty($data['poll']) && ($data['network'] == Protocol::ACTIVITYPUB)) {
2041 return self::updateFromOutbox($data['poll'], $data);
2042 } elseif (!empty($data['poll'])) {
2043 return self::updateFromFeed($data);
2050 * Fetch the last activity date from the "noscrape" endpoint
2052 * @param array $data Probing result
2053 * @return string last activity
2055 * @return bool 'true' if update was successful or the server was unreachable
2057 private static function updateFromNoScrape(array $data)
2059 if (empty($data['baseurl'])) {
2063 // Check the 'noscrape' endpoint when it is a Friendica server
2064 $gserver = DBA::selectFirst('gserver', ['noscrape'], ["`nurl` = ? AND `noscrape` != ''",
2065 Strings::normaliseLink($data['baseurl'])]);
2066 if (!DBA::isResult($gserver)) {
2070 $curlResult = DI::httpRequest()->get($gserver['noscrape'] . '/' . $data['nick']);
2072 if ($curlResult->isSuccess() && !empty($curlResult->getBody())) {
2073 $noscrape = json_decode($curlResult->getBody(), true);
2074 if (!empty($noscrape) && !empty($noscrape['updated'])) {
2075 return DateTimeFormat::utc($noscrape['updated'], DateTimeFormat::MYSQL);
2083 * Fetch the last activity date from an ActivityPub Outbox
2085 * @param string $feed
2086 * @param array $data Probing result
2087 * @return string last activity
2088 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2090 private static function updateFromOutbox(string $feed, array $data)
2092 $outbox = ActivityPub::fetchContent($feed);
2093 if (empty($outbox)) {
2097 if (!empty($outbox['orderedItems'])) {
2098 $items = $outbox['orderedItems'];
2099 } elseif (!empty($outbox['first']['orderedItems'])) {
2100 $items = $outbox['first']['orderedItems'];
2101 } elseif (!empty($outbox['first']['href']) && ($outbox['first']['href'] != $feed)) {
2102 return self::updateFromOutbox($outbox['first']['href'], $data);
2103 } elseif (!empty($outbox['first'])) {
2104 if (is_string($outbox['first']) && ($outbox['first'] != $feed)) {
2105 return self::updateFromOutbox($outbox['first'], $data);
2107 Logger::warning('Unexpected data', ['outbox' => $outbox]);
2115 foreach ($items as $activity) {
2116 if (!empty($activity['published'])) {
2117 $published = DateTimeFormat::utc($activity['published']);
2118 } elseif (!empty($activity['object']['published'])) {
2119 $published = DateTimeFormat::utc($activity['object']['published']);
2124 if ($last_updated < $published) {
2125 $last_updated = $published;
2129 if (!empty($last_updated)) {
2130 return $last_updated;
2137 * Fetch the last activity date from an XML feed
2139 * @param array $data Probing result
2140 * @return string last activity
2142 private static function updateFromFeed(array $data)
2144 // Search for the newest entry in the feed
2145 $curlResult = DI::httpRequest()->get($data['poll']);
2146 if (!$curlResult->isSuccess()) {
2150 $doc = new DOMDocument();
2151 @$doc->loadXML($curlResult->getBody());
2153 $xpath = new DOMXPath($doc);
2154 $xpath->registerNamespace('atom', 'http://www.w3.org/2005/Atom');
2156 $entries = $xpath->query('/atom:feed/atom:entry');
2160 foreach ($entries as $entry) {
2161 $published_item = $xpath->query('atom:published/text()', $entry)->item(0);
2162 $updated_item = $xpath->query('atom:updated/text()' , $entry)->item(0);
2163 $published = !empty($published_item->nodeValue) ? DateTimeFormat::utc($published_item->nodeValue) : null;
2164 $updated = !empty($updated_item->nodeValue) ? DateTimeFormat::utc($updated_item->nodeValue) : null;
2166 if (empty($published) || empty($updated)) {
2167 Logger::notice('Invalid entry for XPath.', ['entry' => $entry, 'url' => $data['url']]);
2171 if ($last_updated < $published) {
2172 $last_updated = $published;
2175 if ($last_updated < $updated) {
2176 $last_updated = $updated;
2180 if (!empty($last_updated)) {
2181 return $last_updated;
2188 * Probe data from local profiles without network traffic
2190 * @param string $url
2191 * @return array probed data
2193 private static function localProbe(string $url)
2195 $uid = User::getIdForURL($url);
2200 $profile = User::getOwnerDataById($uid);
2201 if (empty($profile)) {
2205 $approfile = ActivityPub\Transmitter::getProfile($uid);
2206 if (empty($approfile)) {
2210 if (empty($profile['gsid'])) {
2211 $profile['gsid'] = GServer::getID($approfile['generator']['url']);
2214 $data = ['name' => $profile['name'], 'nick' => $profile['nick'], 'guid' => $approfile['diaspora:guid'] ?? '',
2215 'url' => $profile['url'], 'addr' => $profile['addr'], 'alias' => $profile['alias'],
2216 'photo' => $profile['photo'], 'account-type' => $profile['contact-type'],
2217 'community' => ($profile['contact-type'] == User::ACCOUNT_TYPE_COMMUNITY),
2218 'keywords' => $profile['keywords'], 'location' => $profile['location'], 'about' => $profile['about'],
2219 'hide' => !$profile['net-publish'], 'batch' => '', 'notify' => $profile['notify'],
2220 'poll' => $profile['poll'], 'request' => $profile['request'], 'confirm' => $profile['confirm'],
2221 'subscribe' => $approfile['generator']['url'] . '/follow?url={uri}', 'poco' => $profile['poco'],
2222 'following' => $approfile['following'], 'followers' => $approfile['followers'],
2223 'inbox' => $approfile['inbox'], 'outbox' => $approfile['outbox'],
2224 'sharedinbox' => $approfile['endpoints']['sharedInbox'], 'network' => Protocol::DFRN,
2225 'pubkey' => $profile['upubkey'], 'baseurl' => $approfile['generator']['url'], 'gsid' => $profile['gsid'],
2226 'manually-approve' => in_array($profile['page-flags'], [User::PAGE_FLAGS_NORMAL, User::PAGE_FLAGS_PRVGROUP])];
2227 return self::rearrangeData($data);