3 * @file include/Probe.php
4 * @brief Functions for probing URL
8 use \Friendica\Core\Config;
9 use \Friendica\Core\PConfig;
11 require_once("include/feed.php");
12 require_once('include/email.php');
13 require_once('include/network.php');
16 * @brief This class contain functions for probing URL
22 * @brief Rearrange the array so that it always has the same order
24 * @param array $data Unordered data
26 * @return array Ordered data
28 private function rearrange_data($data) {
29 $fields = array("name", "nick", "guid", "url", "addr", "alias",
30 "photo", "community", "keywords", "location", "about",
31 "batch", "notify", "poll", "request", "confirm", "poco",
32 "priority", "network", "pubkey", "baseurl");
35 foreach ($fields AS $field)
36 if (isset($data[$field]))
37 $newdata[$field] = $data[$field];
39 $newdata[$field] = "";
41 // We don't use the "priority" field anymore and replace it with a dummy.
42 $newdata["priority"] = 0;
48 * @brief Probes for XRD data
51 * 'lrdd' => Link to LRDD endpoint
52 * 'lrdd-xml' => Link to LRDD endpoint in XML format
53 * 'lrdd-json' => Link to LRDD endpoint in JSON format
55 private function xrd($host) {
57 $ssl_url = "https://".$host."/.well-known/host-meta";
58 $url = "http://".$host."/.well-known/host-meta";
60 $xrd_timeout = Config::get('system','xrd_timeout', 20);
63 $xml = fetch_url($ssl_url, false, $redirects, $xrd_timeout, "application/xrd+xml");
64 $xrd = parse_xml_string($xml, false);
66 if (!is_object($xrd)) {
67 $xml = fetch_url($url, false, $redirects, $xrd_timeout, "application/xrd+xml");
68 $xrd = parse_xml_string($xml, false);
73 $links = xml::element_to_array($xrd);
74 if (!isset($links["xrd"]["link"]))
79 foreach ($links["xrd"]["link"] AS $value => $link) {
80 if (isset($link["@attributes"]))
81 $attributes = $link["@attributes"];
82 elseif ($value == "@attributes")
87 if (($attributes["rel"] == "lrdd") AND
88 ($attributes["type"] == "application/xrd+xml"))
89 $xrd_data["lrdd-xml"] = $attributes["template"];
90 elseif (($attributes["rel"] == "lrdd") AND
91 ($attributes["type"] == "application/json"))
92 $xrd_data["lrdd-json"] = $attributes["template"];
93 elseif ($attributes["rel"] == "lrdd")
94 $xrd_data["lrdd"] = $attributes["template"];
100 * @brief Perform Webfinger lookup and return DFRN data
102 * Given an email style address, perform webfinger lookup and
103 * return the resulting DFRN profile URL, or if no DFRN profile URL
104 * is located, returns an OStatus subscription template (prefixed
105 * with the string 'stat:' to identify it as on OStatus template).
106 * If this isn't an email style address just return $webbie.
107 * Return an empty string if email-style addresses but webfinger fails,
108 * or if the resultant personal XRD doesn't contain a supported
109 * subscription/friend-request attribute.
111 * amended 7/9/2011 to return an hcard which could save potentially loading
112 * a lengthy content page to scrape dfrn attributes
114 * @param string $webbie Address that should be probed
115 * @param string $hcard Link to the hcard - is returned by reference
117 * @return string profile link
120 public static function webfinger_dfrn($webbie, &$hcard) {
124 $links = self::lrdd($webbie);
125 logger('webfinger_dfrn: '.$webbie.':'.print_r($links,true), LOGGER_DATA);
127 foreach ($links as $link) {
128 if ($link['@attributes']['rel'] === NAMESPACE_DFRN)
129 $profile_link = $link['@attributes']['href'];
130 if (($link['@attributes']['rel'] === NAMESPACE_OSTATUSSUB) AND ($profile_link == ""))
131 $profile_link = 'stat:'.$link['@attributes']['template'];
132 if ($link['@attributes']['rel'] === 'http://microformats.org/profile/hcard')
133 $hcard = $link['@attributes']['href'];
136 return $profile_link;
140 * @brief Check an URI for LRDD data
142 * this is a replacement for the "lrdd" function in include/network.php.
143 * It isn't used in this class and has some redundancies in the code.
144 * When time comes we can check the existing calls for "lrdd" if we can rework them.
146 * @param string $uri Address that should be probed
148 * @return array uri data
150 public static function lrdd($uri) {
152 $lrdd = self::xrd($uri);
155 $parts = @parse_url($uri);
159 $host = $parts["host"];
161 $path_parts = explode("/", trim($parts["path"], "/"));
164 $lrdd = self::xrd($host);
165 $host .= "/".array_shift($path_parts);
166 } while (!$lrdd AND (sizeof($path_parts) > 0));
172 foreach ($lrdd AS $key => $link) {
176 if (!in_array($key, array("lrdd", "lrdd-xml", "lrdd-json")))
179 $path = str_replace('{uri}', urlencode($uri), $link);
180 $webfinger = self::webfinger($path);
182 if (!$webfinger AND (strstr($uri, "@"))) {
183 $path = str_replace('{uri}', urlencode("acct:".$uri), $link);
184 $webfinger = self::webfinger($path);
188 if (!is_array($webfinger["links"]))
193 foreach ($webfinger["links"] AS $link)
194 $data[] = array("@attributes" => $link);
196 if (is_array($webfinger["aliases"]))
197 foreach ($webfinger["aliases"] AS $alias)
198 $data[] = array("@attributes" =>
199 array("rel" => "alias",
206 * @brief Fetch information (protocol endpoints and user information) about a given uri
208 * @param string $uri Address that should be probed
209 * @param string $network Test for this specific network
210 * @param integer $uid User ID for the probe (only used for mails)
211 * @param boolean $cache Use cached values?
213 * @return array uri data
215 public static function uri($uri, $network = "", $uid = 0, $cache = true) {
218 $result = Cache::get("probe_url:".$network.":".$uri);
219 if (!is_null($result)) {
227 $data = self::detect($uri, $network, $uid);
229 if (!isset($data["url"]))
232 if ($data["photo"] != "")
233 $data["baseurl"] = matching_url(normalise_link($data["baseurl"]), normalise_link($data["photo"]));
235 $data["photo"] = App::get_baseurl().'/images/person-175.jpg';
237 if (!isset($data["name"]) OR ($data["name"] == "")) {
238 if (isset($data["nick"]))
239 $data["name"] = $data["nick"];
241 if ($data["name"] == "")
242 $data["name"] = $data["url"];
245 if (!isset($data["nick"]) OR ($data["nick"] == "")) {
246 $data["nick"] = strtolower($data["name"]);
248 if (strpos($data['nick'], ' '))
249 $data['nick'] = trim(substr($data['nick'], 0, strpos($data['nick'], ' ')));
252 if (!isset($data["network"]))
253 $data["network"] = NETWORK_PHANTOM;
255 $data = self::rearrange_data($data);
257 // Only store into the cache if the value seems to be valid
258 if (!in_array($data['network'], array(NETWORK_PHANTOM, NETWORK_MAIL))) {
259 Cache::set("probe_url:".$network.":".$uri, $data, CACHE_DAY);
261 /// @todo temporary fix - we need a real contact update function that updates only changing fields
262 /// The biggest problem is the avatar picture that could have a reduced image size.
263 /// It should only be updated if the existing picture isn't existing anymore.
264 if (($data['network'] != NETWORK_FEED) AND ($mode == PROBE_NORMAL) AND
265 $data["name"] AND $data["nick"] AND $data["url"] AND $data["addr"] AND $data["poll"])
266 q("UPDATE `contact` SET `name` = '%s', `nick` = '%s', `url` = '%s', `addr` = '%s',
267 `notify` = '%s', `poll` = '%s', `alias` = '%s', `success_update` = '%s'
268 WHERE `nurl` = '%s' AND NOT `self` AND `uid` = 0",
269 dbesc($data["name"]),
270 dbesc($data["nick"]),
272 dbesc($data["addr"]),
273 dbesc($data["notify"]),
274 dbesc($data["poll"]),
275 dbesc($data["alias"]),
276 dbesc(datetime_convert()),
277 dbesc(normalise_link($data['url']))
284 * @brief Fetch information (protocol endpoints and user information) about a given uri
286 * This function is only called by the "uri" function that adds caching and rearranging of data.
288 * @param string $uri Address that should be probed
289 * @param string $network Test for this specific network
290 * @param integer $uid User ID for the probe (only used for mails)
292 * @return array uri data
294 private function detect($uri, $network, $uid) {
295 if (strstr($uri, '@')) {
296 // If the URI starts with "mailto:" then jump directly to the mail detection
297 if (strpos($url,'mailto:') !== false) {
298 $uri = str_replace('mailto:', '', $url);
299 return self::mail($uri, $uid);
302 if ($network == NETWORK_MAIL)
303 return self::mail($uri, $uid);
305 // Remove "acct:" from the URI
306 $uri = str_replace('acct:', '', $uri);
308 $host = substr($uri,strpos($uri, '@') + 1);
309 $nick = substr($uri,0, strpos($uri, '@'));
311 if (strpos($uri, '@twitter.com'))
312 return array("network" => NETWORK_TWITTER);
314 $lrdd = self::xrd($host);
317 return self::mail($uri, $uid);
321 $parts = parse_url($uri);
322 if (!isset($parts["scheme"]) OR
323 !isset($parts["host"]) OR
324 !isset($parts["path"]))
328 $host = $parts["host"];
330 if ($host == 'twitter.com')
331 return array("network" => NETWORK_TWITTER);
333 $lrdd = self::xrd($host);
335 $path_parts = explode("/", trim($parts["path"], "/"));
337 while (!$lrdd AND (sizeof($path_parts) > 1)) {
338 $host .= "/".array_shift($path_parts);
339 $lrdd = self::xrd($host);
342 return self::feed($uri);
344 $nick = array_pop($path_parts);
345 $addr = $nick."@".$host;
349 /// @todo Do we need the prefix "acct:" or "acct://"?
351 foreach ($lrdd AS $key => $link) {
355 if (!in_array($key, array("lrdd", "lrdd-xml", "lrdd-json")))
358 // Try webfinger with the address (user@domain.tld)
359 $path = str_replace('{uri}', urlencode($addr), $link);
360 $webfinger = self::webfinger($path);
362 // Mastodon needs to have it with "acct:"
364 $path = str_replace('{uri}', urlencode("acct:".$addr), $link);
365 $webfinger = self::webfinger($path);
368 // If webfinger wasn't successful then try it with the URL - possibly in the format https://...
369 if (!$webfinger AND ($uri != $addr)) {
370 $path = str_replace('{uri}', urlencode($uri), $link);
371 $webfinger = self::webfinger($path);
373 // Since the detection with the address wasn't successful, we delete it.
382 return self::feed($uri);
386 logger("Probing ".$uri, LOGGER_DEBUG);
388 if (in_array($network, array("", NETWORK_DFRN)))
389 $result = self::dfrn($webfinger);
390 if ((!$result AND ($network == "")) OR ($network == NETWORK_DIASPORA))
391 $result = self::diaspora($webfinger);
392 if ((!$result AND ($network == "")) OR ($network == NETWORK_OSTATUS))
393 $result = self::ostatus($webfinger);
394 if ((!$result AND ($network == "")) OR ($network == NETWORK_PUMPIO))
395 $result = self::pumpio($webfinger);
396 if ((!$result AND ($network == "")) OR ($network == NETWORK_FEED))
397 $result = self::feed($uri);
399 // We overwrite the detected nick with our try if the previois routines hadn't detected it.
400 // Additionally it is overwritten when the nickname doesn't make sense (contains spaces).
401 if ((!isset($result["nick"]) OR ($result["nick"] == "") OR (strstr($result["nick"], " "))) AND ($nick != ""))
402 $result["nick"] = $nick;
404 if ((!isset($result["addr"]) OR ($result["addr"] == "")) AND ($addr != ""))
405 $result["addr"] = $addr;
408 logger($uri." is ".$result["network"], LOGGER_DEBUG);
410 if (!isset($result["baseurl"]) OR ($result["baseurl"] == "")) {
411 $pos = strpos($result["url"], $host);
413 $result["baseurl"] = substr($result["url"], 0, $pos).$host;
420 * @brief Perform a webfinger request.
422 * For details see RFC 7033: <https://tools.ietf.org/html/rfc7033>
424 * @param string $url Address that should be probed
426 * @return array webfinger data
428 private function webfinger($url) {
430 $xrd_timeout = Config::get('system','xrd_timeout', 20);
433 $data = fetch_url($url, false, $redirects, $xrd_timeout, "application/xrd+xml");
434 $xrd = parse_xml_string($data, false);
436 if (!is_object($xrd)) {
437 // If it is not XML, maybe it is JSON
438 $webfinger = json_decode($data, true);
440 if (!isset($webfinger["links"]))
446 $xrd_arr = xml::element_to_array($xrd);
447 if (!isset($xrd_arr["xrd"]["link"]))
450 $webfinger = array();
452 if (isset($xrd_arr["xrd"]["subject"]))
453 $webfinger["subject"] = $xrd_arr["xrd"]["subject"];
455 if (isset($xrd_arr["xrd"]["alias"]))
456 $webfinger["aliases"] = $xrd_arr["xrd"]["alias"];
458 $webfinger["links"] = array();
460 foreach ($xrd_arr["xrd"]["link"] AS $value => $data) {
461 if (isset($data["@attributes"]))
462 $attributes = $data["@attributes"];
463 elseif ($value == "@attributes")
468 $webfinger["links"][] = $attributes;
474 * @brief Poll the Friendica specific noscrape page.
476 * "noscrape" is a faster alternative to fetch the data from the hcard.
477 * This functionality was originally created for the directory.
479 * @param string $noscrape Link to the noscrape page
480 * @param array $data The already fetched data
482 * @return array noscrape data
484 private function poll_noscrape($noscrape, $data) {
485 $content = fetch_url($noscrape);
489 $json = json_decode($content, true);
490 if (!is_array($json))
493 if (isset($json["fn"]))
494 $data["name"] = $json["fn"];
496 if (isset($json["addr"]))
497 $data["addr"] = $json["addr"];
499 if (isset($json["nick"]))
500 $data["nick"] = $json["nick"];
502 if (isset($json["comm"]))
503 $data["community"] = $json["comm"];
505 if (isset($json["tags"])) {
506 $keywords = implode(" ", $json["tags"]);
508 $data["keywords"] = $keywords;
511 $location = formatted_location($json);
513 $data["location"] = $location;
515 if (isset($json["about"]))
516 $data["about"] = $json["about"];
518 if (isset($json["key"]))
519 $data["pubkey"] = $json["key"];
521 if (isset($json["photo"]))
522 $data["photo"] = $json["photo"];
524 if (isset($json["dfrn-request"]))
525 $data["request"] = $json["dfrn-request"];
527 if (isset($json["dfrn-confirm"]))
528 $data["confirm"] = $json["dfrn-confirm"];
530 if (isset($json["dfrn-notify"]))
531 $data["notify"] = $json["dfrn-notify"];
533 if (isset($json["dfrn-poll"]))
534 $data["poll"] = $json["dfrn-poll"];
540 * @brief Check for valid DFRN data
542 * @param array $data DFRN data
544 * @return int Number of errors
546 public static function valid_dfrn($data) {
548 if(!isset($data['key']))
550 if(!isset($data['dfrn-request']))
552 if(!isset($data['dfrn-confirm']))
554 if(!isset($data['dfrn-notify']))
556 if(!isset($data['dfrn-poll']))
562 * @brief Fetch data from a DFRN profile page and via "noscrape"
564 * @param string $profile Link to the profile page
566 * @return array profile data
568 public static function profile($profile) {
572 // Fetch data via noscrape - this is faster
573 $noscrape = str_replace(array("/hcard/", "/profile/"), "/noscrape/", $profile);
574 $data = self::poll_noscrape($noscrape, $data);
576 if (!isset($data["notify"]) OR !isset($data["confirm"]) OR
577 !isset($data["request"]) OR !isset($data["poll"]) OR
578 !isset($data["poco"]) OR !isset($data["name"]) OR
579 !isset($data["photo"]))
580 $data = self::poll_hcard($profile, $data, true);
582 $prof_data = array();
583 $prof_data["addr"] = $data["addr"];
584 $prof_data["nick"] = $data["nick"];
585 $prof_data["dfrn-request"] = $data["request"];
586 $prof_data["dfrn-confirm"] = $data["confirm"];
587 $prof_data["dfrn-notify"] = $data["notify"];
588 $prof_data["dfrn-poll"] = $data["poll"];
589 $prof_data["dfrn-poco"] = $data["poco"];
590 $prof_data["photo"] = $data["photo"];
591 $prof_data["fn"] = $data["name"];
592 $prof_data["key"] = $data["pubkey"];
598 * @brief Check for DFRN contact
600 * @param array $webfinger Webfinger data
602 * @return array DFRN data
604 private function dfrn($webfinger) {
608 foreach ($webfinger["links"] AS $link) {
609 if (($link["rel"] == NAMESPACE_DFRN) AND ($link["href"] != ""))
610 $data["network"] = NETWORK_DFRN;
611 elseif (($link["rel"] == NAMESPACE_FEED) AND ($link["href"] != ""))
612 $data["poll"] = $link["href"];
613 elseif (($link["rel"] == "http://webfinger.net/rel/profile-page") AND
614 ($link["type"] == "text/html") AND ($link["href"] != ""))
615 $data["url"] = $link["href"];
616 elseif (($link["rel"] == "http://microformats.org/profile/hcard") AND ($link["href"] != ""))
617 $hcard = $link["href"];
618 elseif (($link["rel"] == NAMESPACE_POCO) AND ($link["href"] != ""))
619 $data["poco"] = $link["href"];
620 elseif (($link["rel"] == "http://webfinger.net/rel/avatar") AND ($link["href"] != ""))
621 $data["photo"] = $link["href"];
623 elseif (($link["rel"] == "http://joindiaspora.com/seed_location") AND ($link["href"] != ""))
624 $data["baseurl"] = trim($link["href"], '/');
625 elseif (($link["rel"] == "http://joindiaspora.com/guid") AND ($link["href"] != ""))
626 $data["guid"] = $link["href"];
627 elseif (($link["rel"] == "diaspora-public-key") AND ($link["href"] != "")) {
628 $data["pubkey"] = base64_decode($link["href"]);
630 //if (strstr($data["pubkey"], 'RSA ') OR ($link["type"] == "RSA"))
631 if (strstr($data["pubkey"], 'RSA '))
632 $data["pubkey"] = rsatopem($data["pubkey"]);
636 if (!isset($data["network"]) OR ($hcard == ""))
639 // Fetch data via noscrape - this is faster
640 $noscrape = str_replace("/hcard/", "/noscrape/", $hcard);
641 $data = self::poll_noscrape($noscrape, $data);
643 if (isset($data["notify"]) AND isset($data["confirm"]) AND isset($data["request"]) AND
644 isset($data["poll"]) AND isset($data["name"]) AND isset($data["photo"]))
647 $data = self::poll_hcard($hcard, $data, true);
653 * @brief Poll the hcard page (Diaspora and Friendica specific)
655 * @param string $hcard Link to the hcard page
656 * @param array $data The already fetched data
657 * @param boolean $dfrn Poll DFRN specific data
659 * @return array hcard data
661 private function poll_hcard($hcard, $data, $dfrn = false) {
663 $content = fetch_url($hcard);
667 $doc = new DOMDocument();
668 if (!@$doc->loadHTML($content))
671 $xpath = new DomXPath($doc);
673 $vcards = $xpath->query("//div[contains(concat(' ', @class, ' '), ' vcard ')]");
674 if (!is_object($vcards))
677 if ($vcards->length > 0) {
678 $vcard = $vcards->item(0);
680 // We have to discard the guid from the hcard in favour of the guid from lrdd
681 // Reason: Hubzilla doesn't use the value "uid" in the hcard like Diaspora does.
682 $search = $xpath->query("//*[contains(concat(' ', @class, ' '), ' uid ')]", $vcard); // */
683 if (($search->length > 0) AND ($data["guid"] == ""))
684 $data["guid"] = $search->item(0)->nodeValue;
686 $search = $xpath->query("//*[contains(concat(' ', @class, ' '), ' nickname ')]", $vcard); // */
687 if ($search->length > 0)
688 $data["nick"] = $search->item(0)->nodeValue;
690 $search = $xpath->query("//*[contains(concat(' ', @class, ' '), ' fn ')]", $vcard); // */
691 if ($search->length > 0)
692 $data["name"] = $search->item(0)->nodeValue;
694 $search = $xpath->query("//*[contains(concat(' ', @class, ' '), ' searchable ')]", $vcard); // */
695 if ($search->length > 0)
696 $data["searchable"] = $search->item(0)->nodeValue;
698 $search = $xpath->query("//*[contains(concat(' ', @class, ' '), ' key ')]", $vcard); // */
699 if ($search->length > 0) {
700 $data["pubkey"] = $search->item(0)->nodeValue;
701 if (strstr($data["pubkey"], 'RSA '))
702 $data["pubkey"] = rsatopem($data["pubkey"]);
705 $search = $xpath->query("//*[@id='pod_location']", $vcard); // */
706 if ($search->length > 0)
707 $data["baseurl"] = trim($search->item(0)->nodeValue, "/");
711 $photos = $xpath->query("//*[contains(concat(' ', @class, ' '), ' photo ') or contains(concat(' ', @class, ' '), ' avatar ')]", $vcard); // */
712 foreach ($photos AS $photo) {
714 foreach ($photo->attributes as $attribute)
715 $attr[$attribute->name] = trim($attribute->value);
717 if (isset($attr["src"]) AND isset($attr["width"]))
718 $avatar[$attr["width"]] = $attr["src"];
721 if (sizeof($avatar)) {
723 $data["photo"] = array_pop($avatar);
727 // Poll DFRN specific data
728 $search = $xpath->query("//link[contains(concat(' ', @rel), ' dfrn-')]");
729 if ($search->length > 0) {
730 foreach ($search AS $link) {
731 //$data["request"] = $search->item(0)->nodeValue;
733 foreach ($link->attributes as $attribute)
734 $attr[$attribute->name] = trim($attribute->value);
736 $data[substr($attr["rel"], 5)] = $attr["href"];
740 // Older Friendica versions had used the "uid" field differently than newer versions
741 if ($data["nick"] == $data["guid"])
742 unset($data["guid"]);
750 * @brief Check for Diaspora contact
752 * @param array $webfinger Webfinger data
754 * @return array Diaspora data
756 private function diaspora($webfinger) {
760 foreach ($webfinger["links"] AS $link) {
761 if (($link["rel"] == "http://microformats.org/profile/hcard") AND ($link["href"] != ""))
762 $hcard = $link["href"];
763 elseif (($link["rel"] == "http://joindiaspora.com/seed_location") AND ($link["href"] != ""))
764 $data["baseurl"] = trim($link["href"], '/');
765 elseif (($link["rel"] == "http://joindiaspora.com/guid") AND ($link["href"] != ""))
766 $data["guid"] = $link["href"];
767 elseif (($link["rel"] == "http://webfinger.net/rel/profile-page") AND
768 ($link["type"] == "text/html") AND ($link["href"] != ""))
769 $data["url"] = $link["href"];
770 elseif (($link["rel"] == NAMESPACE_FEED) AND ($link["href"] != ""))
771 $data["poll"] = $link["href"];
772 elseif (($link["rel"] == NAMESPACE_POCO) AND ($link["href"] != ""))
773 $data["poco"] = $link["href"];
774 elseif (($link["rel"] == "salmon") AND ($link["href"] != ""))
775 $data["notify"] = $link["href"];
776 elseif (($link["rel"] == "diaspora-public-key") AND ($link["href"] != "")) {
777 $data["pubkey"] = base64_decode($link["href"]);
779 //if (strstr($data["pubkey"], 'RSA ') OR ($link["type"] == "RSA"))
780 if (strstr($data["pubkey"], 'RSA '))
781 $data["pubkey"] = rsatopem($data["pubkey"]);
785 if (!isset($data["url"]) OR ($hcard == ""))
788 if (is_array($webfinger["aliases"]))
789 foreach ($webfinger["aliases"] AS $alias)
790 if (normalise_link($alias) != normalise_link($data["url"]) AND !strstr($alias, "@"))
791 $data["alias"] = $alias;
793 // Fetch further information from the hcard
794 $data = self::poll_hcard($hcard, $data);
799 if (isset($data["url"]) AND isset($data["guid"]) AND isset($data["baseurl"]) AND
800 isset($data["pubkey"]) AND ($hcard != "")) {
801 $data["network"] = NETWORK_DIASPORA;
803 // The Diaspora handle must always be lowercase
804 $data["addr"] = strtolower($data["addr"]);
806 // We have to overwrite the detected value for "notify" since Hubzilla doesn't send it
807 $data["notify"] = $data["baseurl"]."/receive/users/".$data["guid"];
808 $data["batch"] = $data["baseurl"]."/receive/public";
816 * @brief Check for OStatus contact
818 * @param array $webfinger Webfinger data
820 * @return array OStatus data
822 private function ostatus($webfinger) {
825 if (is_array($webfinger["aliases"]))
826 foreach($webfinger["aliases"] AS $alias)
827 if (strstr($alias, "@"))
828 $data["addr"] = str_replace('acct:', '', $alias);
830 if (is_string($webfinger["subject"]) AND strstr($webfinger["subject"], "@"))
831 $data["addr"] = str_replace('acct:', '', $webfinger["subject"]);
834 foreach ($webfinger["links"] AS $link) {
835 if (($link["rel"] == "http://webfinger.net/rel/profile-page") AND
836 ($link["type"] == "text/html") AND ($link["href"] != ""))
837 $data["url"] = $link["href"];
838 elseif (($link["rel"] == "salmon") AND ($link["href"] != ""))
839 $data["notify"] = $link["href"];
840 elseif (($link["rel"] == NAMESPACE_FEED) AND ($link["href"] != ""))
841 $data["poll"] = $link["href"];
842 elseif (($link["rel"] == "magic-public-key") AND ($link["href"] != "")) {
843 $pubkey = $link["href"];
845 if (substr($pubkey, 0, 5) === 'data:') {
846 if (strstr($pubkey, ','))
847 $pubkey = substr($pubkey, strpos($pubkey, ',') + 1);
849 $pubkey = substr($pubkey, 5);
850 } elseif (normalise_link($pubkey) == 'http://')
851 $pubkey = fetch_url($pubkey);
853 $key = explode(".", $pubkey);
855 if (sizeof($key) >= 3) {
856 $m = base64url_decode($key[1]);
857 $e = base64url_decode($key[2]);
858 $data["pubkey"] = metopem($m,$e);
864 if (isset($data["notify"]) AND isset($data["pubkey"]) AND
865 isset($data["poll"]) AND isset($data["url"])) {
866 $data["network"] = NETWORK_OSTATUS;
870 // Fetch all additional data from the feed
871 $feed = fetch_url($data["poll"]);
872 $feed_data = feed_import($feed,$dummy1,$dummy2, $dummy3, true);
876 if ($feed_data["header"]["author-name"] != "")
877 $data["name"] = $feed_data["header"]["author-name"];
879 if ($feed_data["header"]["author-nick"] != "")
880 $data["nick"] = $feed_data["header"]["author-nick"];
882 if ($feed_data["header"]["author-avatar"] != "")
883 $data["photo"] = $feed_data["header"]["author-avatar"];
885 if ($feed_data["header"]["author-id"] != "")
886 $data["alias"] = $feed_data["header"]["author-id"];
888 if ($feed_data["header"]["author-location"] != "")
889 $data["location"] = $feed_data["header"]["author-location"];
891 if ($feed_data["header"]["author-about"] != "")
892 $data["about"] = $feed_data["header"]["author-about"];
894 // OStatus has serious issues when the the url doesn't fit (ssl vs. non ssl)
895 // So we take the value that we just fetched, although the other one worked as well
896 if ($feed_data["header"]["author-link"] != "")
897 $data["url"] = $feed_data["header"]["author-link"];
899 /// @todo Fetch location and "about" from the feed as well
904 * @brief Fetch data from a pump.io profile page
906 * @param string $profile Link to the profile page
908 * @return array profile data
910 private function pumpio_profile_data($profile) {
912 $doc = new DOMDocument();
913 if (!@$doc->loadHTMLFile($profile))
916 $xpath = new DomXPath($doc);
920 // This is ugly - but pump.io doesn't seem to know a better way for it
921 $data["name"] = trim($xpath->query("//h1[@class='media-header']")->item(0)->nodeValue);
922 $pos = strpos($data["name"], chr(10));
924 $data["name"] = trim(substr($data["name"], 0, $pos));
926 $avatar = $xpath->query("//img[@class='img-rounded media-object']")->item(0);
928 foreach ($avatar->attributes as $attribute)
929 if ($attribute->name == "src")
930 $data["photo"] = trim($attribute->value);
932 $data["location"] = $xpath->query("//p[@class='location']")->item(0)->nodeValue;
933 $data["about"] = $xpath->query("//p[@class='summary']")->item(0)->nodeValue;
939 * @brief Check for pump.io contact
941 * @param array $webfinger Webfinger data
943 * @return array pump.io data
945 private function pumpio($webfinger) {
948 foreach ($webfinger["links"] AS $link) {
949 if (($link["rel"] == "http://webfinger.net/rel/profile-page") AND
950 ($link["type"] == "text/html") AND ($link["href"] != ""))
951 $data["url"] = $link["href"];
952 elseif (($link["rel"] == "activity-inbox") AND ($link["href"] != ""))
953 $data["notify"] = $link["href"];
954 elseif (($link["rel"] == "activity-outbox") AND ($link["href"] != ""))
955 $data["poll"] = $link["href"];
956 elseif (($link["rel"] == "dialback") AND ($link["href"] != ""))
957 $data["dialback"] = $link["href"];
959 if (isset($data["poll"]) AND isset($data["notify"]) AND
960 isset($data["dialback"]) AND isset($data["url"])) {
962 // by now we use these fields only for the network type detection
963 // So we unset all data that isn't used at the moment
964 unset($data["dialback"]);
966 $data["network"] = NETWORK_PUMPIO;
970 $profile_data = self::pumpio_profile_data($data["url"]);
975 $data = array_merge($data, $profile_data);
981 * @brief Check page for feed link
983 * @param string $url Page link
985 * @return string feed link
987 private function get_feed_link($url) {
988 $doc = new DOMDocument();
990 if (!@$doc->loadHTMLFile($url))
993 $xpath = new DomXPath($doc);
995 //$feeds = $xpath->query("/html/head/link[@type='application/rss+xml']");
996 $feeds = $xpath->query("/html/head/link[@type='application/rss+xml' and @rel='alternate']");
997 if (!is_object($feeds))
1000 if ($feeds->length == 0)
1005 foreach ($feeds AS $feed) {
1007 foreach ($feed->attributes as $attribute)
1008 $attr[$attribute->name] = trim($attribute->value);
1010 if ($feed_url == "")
1011 $feed_url = $attr["href"];
1018 * @brief Check for feed contact
1020 * @param string $url Profile link
1021 * @param boolean $probe Do a probe if the page contains a feed link
1023 * @return array feed data
1025 private function feed($url, $probe = true) {
1026 $feed = fetch_url($url);
1027 $feed_data = feed_import($feed, $dummy1, $dummy2, $dummy3, true);
1033 $feed_url = self::get_feed_link($url);
1038 return self::feed($feed_url, false);
1041 if ($feed_data["header"]["author-name"] != "")
1042 $data["name"] = $feed_data["header"]["author-name"];
1044 if ($feed_data["header"]["author-nick"] != "")
1045 $data["nick"] = $feed_data["header"]["author-nick"];
1047 if ($feed_data["header"]["author-avatar"] != "")
1048 $data["photo"] = $feed_data["header"]["author-avatar"];
1050 if ($feed_data["header"]["author-id"] != "")
1051 $data["alias"] = $feed_data["header"]["author-id"];
1053 $data["url"] = $url;
1054 $data["poll"] = $url;
1056 if ($feed_data["header"]["author-link"] != "")
1057 $data["baseurl"] = $feed_data["header"]["author-link"];
1059 $data["baseurl"] = $data["url"];
1061 $data["network"] = NETWORK_FEED;
1067 * @brief Check for mail contact
1069 * @param string $uri Profile link
1070 * @param integer $uid User ID
1072 * @return array mail data
1074 private function mail($uri, $uid) {
1076 if (!validate_email($uri))
1079 $x = q("SELECT `prvkey` FROM `user` WHERE `uid` = %d LIMIT 1", intval($uid));
1081 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d AND `server` != '' LIMIT 1", intval($uid));
1083 if(count($x) && count($r)) {
1084 $mailbox = construct_mailbox_name($r[0]);
1086 openssl_private_decrypt(hex2bin($r[0]['pass']), $password,$x[0]['prvkey']);
1087 $mbox = email_connect($mailbox,$r[0]['user'], $password);
1092 $msgs = email_poll($mbox, $uri);
1093 logger('searching '.$uri.', '.count($msgs).' messages found.', LOGGER_DEBUG);
1100 $data["addr"] = $uri;
1101 $data["network"] = NETWORK_MAIL;
1102 $data["name"] = substr($uri, 0, strpos($uri,'@'));
1103 $data["nick"] = $data["name"];
1104 $data["photo"] = avatar_img($uri);
1106 $phost = substr($uri, strpos($uri,'@') + 1);
1107 $data["url"] = 'http://'.$phost."/".$data["nick"];
1108 $data["notify"] = 'smtp '.random_string();
1109 $data["poll"] = 'email '.random_string();
1111 $x = email_msg_meta($mbox, $msgs[0]);
1112 if(stristr($x[0]->from, $uri))
1113 $adr = imap_rfc822_parse_adrlist($x[0]->from, '');
1114 elseif(stristr($x[0]->to, $uri))
1115 $adr = imap_rfc822_parse_adrlist($x[0]->to, '');
1117 foreach($adr as $feadr) {
1118 if((strcasecmp($feadr->mailbox, $data["name"]) == 0)
1119 &&(strcasecmp($feadr->host, $phost) == 0)
1120 && (strlen($feadr->personal))) {
1122 $personal = imap_mime_header_decode($feadr->personal);
1124 foreach($personal as $perspart)
1125 if ($perspart->charset != "default")
1126 $data["name"] .= iconv($perspart->charset, 'UTF-8//IGNORE', $perspart->text);
1128 $data["name"] .= $perspart->text;
1130 $data["name"] = notags($data["name"]);