3 require_once('library/HTML5/Parser.php');
4 require_once('include/crypto.php');
6 if(! function_exists('scrape_dfrn')) {
7 function scrape_dfrn($url, $dont_probe = false) {
13 logger('scrape_dfrn: url=' . $url);
21 $probe = probe_url($url);
23 if (isset($probe["addr"]))
24 $ret["addr"] = $probe["addr"];
27 $headers = $a->get_curl_headers();
28 logger('scrape_dfrn: headers=' . $headers, LOGGER_DEBUG);
31 $lines = explode("\n",$headers);
33 foreach($lines as $line) {
34 // don't try and run feeds through the html5 parser
35 if(stristr($line,'content-type:') && ((stristr($line,'application/atom+xml')) || (stristr($line,'application/rss+xml'))))
41 $dom = HTML5_Parser::parse($s);
42 } catch (DOMException $e) {
43 logger('scrape_dfrn: parse error: ' . $e);
49 $items = $dom->getElementsByTagName('link');
51 // get DFRN link elements
53 foreach($items as $item) {
54 $x = $item->getAttribute('rel');
55 if(($x === 'alternate') && ($item->getAttribute('type') === 'application/atom+xml'))
56 $ret['feed_atom'] = $item->getAttribute('href');
57 if(substr($x,0,5) == "dfrn-") {
58 $ret[$x] = $item->getAttribute('href');
61 $decoded = urldecode($item->getAttribute('href'));
62 if(preg_match('/acct:([^@]*)@/',$decoded,$matches))
63 $ret['nick'] = $matches[1];
67 // Pull out hCard profile elements
71 $items = $dom->getElementsByTagName('*');
72 foreach($items as $item) {
73 if(attribute_contains($item->getAttribute('class'), 'vcard')) {
74 $level2 = $item->getElementsByTagName('*');
75 foreach($level2 as $x) {
76 if(attribute_contains($x->getAttribute('class'),'fn')) {
77 $ret['fn'] = $x->textContent;
79 if((attribute_contains($x->getAttribute('class'),'photo'))
80 || (attribute_contains($x->getAttribute('class'),'avatar'))) {
81 $size = intval($x->getAttribute('width'));
82 // dfrn prefers 175, so if we find this, we set largest_size so it can't be topped.
83 if(($size > $largest_photo) || ($size == 175) || (! $largest_photo)) {
84 $ret['photo'] = $x->getAttribute('src');
85 $largest_photo = (($size == 175) ? 9999 : $size);
88 if(attribute_contains($x->getAttribute('class'),'key')) {
89 $ret['key'] = $x->textContent;
103 if(! function_exists('validate_dfrn')) {
104 function validate_dfrn($a) {
108 if(! x($a,'dfrn-request'))
110 if(! x($a,'dfrn-confirm'))
112 if(! x($a,'dfrn-notify'))
114 if(! x($a,'dfrn-poll'))
119 if(! function_exists('scrape_meta')) {
120 function scrape_meta($url) {
126 logger('scrape_meta: url=' . $url);
128 $s = fetch_url($url);
133 $headers = $a->get_curl_headers();
134 logger('scrape_meta: headers=' . $headers, LOGGER_DEBUG);
136 $lines = explode("\n",$headers);
138 foreach($lines as $line) {
139 // don't try and run feeds through the html5 parser
140 if(stristr($line,'content-type:') && ((stristr($line,'application/atom+xml')) || (stristr($line,'application/rss+xml'))))
146 $dom = HTML5_Parser::parse($s);
147 } catch (DOMException $e) {
148 logger('scrape_meta: parse error: ' . $e);
154 $items = $dom->getElementsByTagName('meta');
156 // get DFRN link elements
158 foreach($items as $item) {
159 $x = $item->getAttribute('name');
160 if(substr($x,0,5) == "dfrn-")
161 $ret[$x] = $item->getAttribute('content');
168 if(! function_exists('scrape_vcard')) {
169 function scrape_vcard($url) {
175 logger('scrape_vcard: url=' . $url);
177 $s = fetch_url($url);
182 $headers = $a->get_curl_headers();
183 $lines = explode("\n",$headers);
185 foreach($lines as $line) {
186 // don't try and run feeds through the html5 parser
187 if(stristr($line,'content-type:') && ((stristr($line,'application/atom+xml')) || (stristr($line,'application/rss+xml'))))
193 $dom = HTML5_Parser::parse($s);
194 } catch (DOMException $e) {
195 logger('scrape_vcard: parse error: ' . $e);
201 // Pull out hCard profile elements
205 $items = $dom->getElementsByTagName('*');
206 foreach($items as $item) {
207 if(attribute_contains($item->getAttribute('class'), 'vcard')) {
208 $level2 = $item->getElementsByTagName('*');
209 foreach($level2 as $x) {
210 if(attribute_contains($x->getAttribute('class'),'fn'))
211 $ret['fn'] = $x->textContent;
212 if((attribute_contains($x->getAttribute('class'),'photo'))
213 || (attribute_contains($x->getAttribute('class'),'avatar'))) {
214 $size = intval($x->getAttribute('width'));
215 if(($size > $largest_photo) || (! $largest_photo)) {
216 $ret['photo'] = $x->getAttribute('src');
217 $largest_photo = $size;
220 if((attribute_contains($x->getAttribute('class'),'nickname'))
221 || (attribute_contains($x->getAttribute('class'),'uid'))) {
222 $ret['nick'] = $x->textContent;
232 if(! function_exists('scrape_feed')) {
233 function scrape_feed($url) {
238 $cookiejar = tempnam(get_temppath(), 'cookiejar-scrape-feed-');
239 $s = fetch_url($url, false, $redirects, 0, Null, $cookiejar);
242 $headers = $a->get_curl_headers();
243 $code = $a->get_curl_code();
245 logger('scrape_feed: returns: ' . $code . ' headers=' . $headers, LOGGER_DEBUG);
248 logger('scrape_feed: no data returned for ' . $url);
253 $lines = explode("\n",$headers);
255 foreach($lines as $line) {
256 if(stristr($line,'content-type:')) {
257 if(stristr($line,'application/atom+xml') || stristr($s,'<feed')) {
258 $ret['feed_atom'] = $url;
261 if(stristr($line,'application/rss+xml') || stristr($s,'<rss')) {
262 $ret['feed_rss'] = $url;
267 // perhaps an RSS version 1 feed with a generic or incorrect content-type?
268 if(stristr($s,'</item>')) {
269 $ret['feed_rss'] = $url;
274 $basename = implode('/', array_slice(explode('/',$url),0,3)) . '/';
276 $doc = new DOMDocument();
278 $xpath = new DomXPath($doc);
280 $base = $xpath->query("//base");
281 foreach ($base as $node) {
284 if ($node->attributes->length)
285 foreach ($node->attributes as $attribute)
286 $attr[$attribute->name] = $attribute->value;
288 if ($attr["href"] != "")
289 $basename = $attr["href"] ;
292 $list = $xpath->query("//link");
293 foreach ($list as $node) {
296 if ($node->attributes->length)
297 foreach ($node->attributes as $attribute)
298 $attr[$attribute->name] = $attribute->value;
300 if (($attr["rel"] == "alternate") AND ($attr["type"] == "application/atom+xml"))
301 $ret["feed_atom"] = $attr["href"];
303 if (($attr["rel"] == "alternate") AND ($attr["type"] == "application/rss+xml"))
304 $ret["feed_rss"] = $attr["href"];
307 // Drupal and perhaps others only provide relative URLs. Turn them into absolute.
309 if(x($ret,'feed_atom') && (! strstr($ret['feed_atom'],'://')))
310 $ret['feed_atom'] = $basename . $ret['feed_atom'];
311 if(x($ret,'feed_rss') && (! strstr($ret['feed_rss'],'://')))
312 $ret['feed_rss'] = $basename . $ret['feed_rss'];
320 * Probe a network address to discover what kind of protocols we need to communicate with it.
322 * Warning: this function is a bit touchy and there are some subtle dependencies within the logic flow.
329 * PROBE_DIASPORA has a bias towards returning Diaspora information
330 * while PROBE_NORMAL has a bias towards dfrn/zot - in the case where
331 * an address (such as a Friendica address) supports more than one type
337 define ( 'PROBE_NORMAL', 0);
338 define ( 'PROBE_DIASPORA', 1);
340 function probe_url($url, $mode = PROBE_NORMAL, $level = 1) {
341 require_once('include/email.php');
348 $result = Cache::get("probe_url:".$mode.":".$url);
349 if (!is_null($result)) {
350 $result = unserialize($result);
360 $email_conversant = false;
361 $connectornetworks = false;
364 if (strpos($url,'twitter.com')) {
365 $connectornetworks = true;
366 $network = NETWORK_TWITTER;
369 // Twitter is deactivated since twitter closed its old API
370 //$twitter = ((strpos($url,'twitter.com') !== false) ? true : false);
371 $lastfm = ((strpos($url,'last.fm/user') !== false) ? true : false);
373 $at_addr = ((strpos($url,'@') !== false) ? true : false);
375 if((!$appnet) && (!$lastfm) && !$connectornetworks) {
377 if(strpos($url,'mailto:') !== false && $at_addr) {
378 $url = str_replace('mailto:','',$url);
387 logger('probe_url: found lrdd links: ' . print_r($links,true), LOGGER_DATA);
388 foreach($links as $link) {
389 if($link['@attributes']['rel'] === NAMESPACE_ZOT)
390 $zot = unamp($link['@attributes']['href']);
391 if($link['@attributes']['rel'] === NAMESPACE_DFRN)
392 $dfrn = unamp($link['@attributes']['href']);
393 if($link['@attributes']['rel'] === 'salmon')
394 $notify = unamp($link['@attributes']['href']);
395 if($link['@attributes']['rel'] === NAMESPACE_FEED)
396 $poll = unamp($link['@attributes']['href']);
397 if($link['@attributes']['rel'] === 'http://microformats.org/profile/hcard')
398 $hcard = unamp($link['@attributes']['href']);
399 if($link['@attributes']['rel'] === 'http://webfinger.net/rel/profile-page')
400 $profile = unamp($link['@attributes']['href']);
401 if($link['@attributes']['rel'] === 'http://portablecontacts.net/spec/1.0')
402 $poco = unamp($link['@attributes']['href']);
403 if($link['@attributes']['rel'] === 'http://joindiaspora.com/seed_location') {
404 $diaspora_base = unamp($link['@attributes']['href']);
407 if($link['@attributes']['rel'] === 'http://joindiaspora.com/guid') {
408 $diaspora_guid = unamp($link['@attributes']['href']);
411 if($link['@attributes']['rel'] === 'diaspora-public-key') {
412 $diaspora_key = base64_decode(unamp($link['@attributes']['href']));
413 if(strstr($diaspora_key,'RSA '))
414 $pubkey = rsatopem($diaspora_key);
416 $pubkey = $diaspora_key;
419 if(($link['@attributes']['rel'] === 'http://ostatus.org/schema/1.0/subscribe') AND ($mode == PROBE_NORMAL)) {
424 // Status.Net can have more than one profile URL. We need to match the profile URL
425 // to a contact on incoming messages to prevent spam, and we won't know which one
426 // to match. So in case of two, one of them is stored as an alias. Only store URL's
427 // and not webfinger user@host aliases. If they've got more than two non-email style
428 // aliases, let's hope we're lucky and get one that matches the feed author-uri because
429 // otherwise we're screwed.
431 foreach($links as $link) {
432 if($link['@attributes']['rel'] === 'alias') {
433 if(strpos($link['@attributes']['href'],'@') === false) {
434 if(isset($profile)) {
435 if($link['@attributes']['href'] !== $profile)
436 $alias = unamp($link['@attributes']['href']);
439 $profile = unamp($link['@attributes']['href']);
444 // If the profile is different from the url then the url is abviously an alias
445 if (($alias == "") AND ($profile != "") AND !$at_addr AND (normalise_link($profile) != normalise_link($url)))
448 elseif($mode == PROBE_NORMAL) {
453 if((strpos($orig_url,'@')) && validate_email($orig_url)) {
454 $x = q("SELECT `prvkey` FROM `user` WHERE `uid` = %d LIMIT 1",
457 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d AND `server` != '' LIMIT 1",
460 if(count($x) && count($r)) {
461 $mailbox = construct_mailbox_name($r[0]);
463 openssl_private_decrypt(hex2bin($r[0]['pass']),$password,$x[0]['prvkey']);
464 $mbox = email_connect($mailbox,$r[0]['user'],$password);
466 logger('probe_url: email_connect failed.');
470 $msgs = email_poll($mbox,$orig_url);
471 logger('probe_url: searching ' . $orig_url . ', ' . count($msgs) . ' messages found.', LOGGER_DEBUG);
474 $network = NETWORK_MAIL;
475 $name = substr($url,0,strpos($url,'@'));
476 $phost = substr($url,strpos($url,'@')+1);
477 $profile = 'http://' . $phost;
478 // fix nick character range
479 $vcard = array('fn' => $name, 'nick' => $name, 'photo' => avatar_img($url));
480 $notify = 'smtp ' . random_string();
481 $poll = 'email ' . random_string();
483 $x = email_msg_meta($mbox,$msgs[0]);
484 if(stristr($x[0]->from,$orig_url))
485 $adr = imap_rfc822_parse_adrlist($x[0]->from,'');
486 elseif(stristr($x[0]->to,$orig_url))
487 $adr = imap_rfc822_parse_adrlist($x[0]->to,'');
489 foreach($adr as $feadr) {
490 if((strcasecmp($feadr->mailbox,$name) == 0)
491 &&(strcasecmp($feadr->host,$phost) == 0)
492 && (strlen($feadr->personal))) {
494 $personal = imap_mime_header_decode($feadr->personal);
496 foreach($personal as $perspart)
497 if ($perspart->charset != "default")
498 $vcard['fn'] .= iconv($perspart->charset, 'UTF-8//IGNORE', $perspart->text);
500 $vcard['fn'] .= $perspart->text;
502 $vcard['fn'] = notags($vcard['fn']);
513 if($mode == PROBE_NORMAL) {
516 $s = fetch_url($zot);
518 $j = json_decode($s);
520 $network = NETWORK_ZOT;
522 'fn' => $j->fullname,
523 'nick' => $j->nickname,
528 $pubkey = $j->pubkey;
536 $ret = scrape_dfrn(($hcard) ? $hcard : $dfrn, true);
537 if(is_array($ret) && x($ret,'dfrn-request')) {
538 $network = NETWORK_DFRN;
539 $request = $ret['dfrn-request'];
540 $confirm = $ret['dfrn-confirm'];
541 $notify = $ret['dfrn-notify'];
542 $poll = $ret['dfrn-poll'];
545 $vcard['fn'] = $ret['fn'];
546 $vcard['nick'] = $ret['nick'];
547 $vcard['photo'] = $ret['photo'];
552 // Scrape the public key from the hcard.
553 // Diaspora will remove it from the webfinger somewhere in the future.
554 if (($hcard != "") AND ($pubkey == "")) {
555 $ret = scrape_dfrn(($hcard) ? $hcard : $dfrn, true);
556 if (isset($ret["key"])) {
557 $hcard_key = $ret["key"];
558 if(strstr($hcard_key,'RSA '))
559 $pubkey = rsatopem($hcard_key);
561 $pubkey = $hcard_key;
564 if($diaspora && $diaspora_base && $diaspora_guid) {
565 $diaspora_notify = $diaspora_base.'receive/users/'.$diaspora_guid;
567 if($mode == PROBE_DIASPORA || ! $notify || ($notify == $diaspora_notify)) {
568 $notify = $diaspora_notify;
569 $batch = $diaspora_base . 'receive/public' ;
572 $addr = str_replace('acct:', '', $url);
575 if($network !== NETWORK_ZOT && $network !== NETWORK_DFRN && $network !== NETWORK_MAIL) {
577 $network = NETWORK_DIASPORA;
578 elseif($has_lrdd AND ($notify))
579 $network = NETWORK_OSTATUS;
582 $addr = str_replace('acct:', '', $url);
586 if($hcard && ! $vcard) {
587 $vcard = scrape_vcard($hcard);
589 // Google doesn't use absolute url in profile photos
591 if((x($vcard,'photo')) && substr($vcard['photo'],0,1) == '/') {
592 $h = @parse_url($hcard);
594 $vcard['photo'] = $h['scheme'] . '://' . $h['host'] . $vcard['photo'];
597 logger('probe_url: scrape_vcard: ' . print_r($vcard,true), LOGGER_DATA);
600 if($diaspora && $addr) {
601 // Diaspora returns the name as the nick. As the nick will never be updated,
602 // let's use the Diaspora nickname (the first part of the handle) as the nick instead
603 $addr_parts = explode('@', $addr);
604 $vcard['nick'] = $addr_parts[0];
608 logger('twitter: setup');
609 $tid = basename($url);
610 $tapi = 'https://api.twitter.com/1/statuses/user_timeline.rss';
612 $poll = $tapi . '?user_id=' . $tid;
614 $poll = $tapi . '?screen_name=' . $tid;
615 $profile = 'http://twitter.com/#!/' . $tid;
616 //$vcard['photo'] = 'https://api.twitter.com/1/users/profile_image/' . $tid;
617 $vcard['photo'] = 'https://api.twitter.com/1/users/profile_image?screen_name=' . $tid . '&size=bigger';
618 $vcard['nick'] = $tid;
624 $poll = str_replace(array('www.','last.fm/'),array('','ws.audioscrobbler.com/1.0/'),$url) . '/recenttracks.rss';
625 $vcard['nick'] = basename($url);
626 $vcard['fn'] = $vcard['nick'] . t(' on Last.fm');
627 $network = NETWORK_FEED;
632 $vcard['fn'] = $vcard['nick'];
636 if(stristr($url,'tumblr.com') && (! stristr($url,'/rss'))) {
637 $poll = $url . '/rss';
639 // Will leave it to others to figure out how to grab the avatar, which is on the $url page in the open graph meta links
642 if($appnet || ! $poll)
644 if((! isset($vcard)) || (! x($vcard,'fn')) || (! $profile))
646 if(($at_addr) && (! count($links)))
649 if ($connectornetworks)
654 $feedret = scrape_feed(($poll) ? $poll : $url);
656 logger('probe_url: scrape_feed ' . (($poll)? $poll : $url) . ' returns: ' . print_r($feedret,true), LOGGER_DATA);
657 if(count($feedret) && ($feedret['feed_atom'] || $feedret['feed_rss'])) {
658 $poll = ((x($feedret,'feed_atom')) ? unamp($feedret['feed_atom']) : unamp($feedret['feed_rss']));
663 if(x($feedret,'photo') && (! x($vcard,'photo')))
664 $vcard['photo'] = $feedret['photo'];
665 require_once('library/simplepie/simplepie.inc');
666 $feed = new SimplePie();
667 $cookiejar = tempnam(get_temppath(), 'cookiejar-scrape-feed-');
668 $xml = fetch_url($poll, false, $redirects, 0, Null, $cookiejar);
671 logger('probe_url: fetch feed: ' . $poll . ' returns: ' . $xml, LOGGER_DATA);
674 logger('probe_url: scrape_feed: headers: ' . $a->get_curl_headers(), LOGGER_DATA);
676 // Don't try and parse an empty string
677 $feed->set_raw_data(($xml) ? $xml : '<?xml version="1.0" encoding="utf-8" ?><xml></xml>');
681 logger('probe_url: scrape_feed: Error parsing XML: ' . $feed->error());
682 $network = NETWORK_PHANTOM;
685 if(! x($vcard,'photo'))
686 $vcard['photo'] = $feed->get_image_url();
687 $author = $feed->get_author();
690 $vcard['fn'] = unxmlify(trim($author->get_name()));
692 $vcard['fn'] = trim(unxmlify($author->get_email()));
693 if(strpos($vcard['fn'],'@') !== false)
694 $vcard['fn'] = substr($vcard['fn'],0,strpos($vcard['fn'],'@'));
696 $email = unxmlify($author->get_email());
697 if(! $profile && $author->get_link())
698 $profile = trim(unxmlify($author->get_link()));
699 if(! $vcard['photo']) {
700 $rawtags = $feed->get_feed_tags( SIMPLEPIE_NAMESPACE_ATOM_10, 'author');
702 $elems = $rawtags[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10];
703 if((x($elems,'link')) && ($elems['link'][0]['attribs']['']['rel'] === 'photo'))
704 $vcard['photo'] = $elems['link'][0]['attribs']['']['href'];
707 // Fetch fullname via poco:displayName
708 $pocotags = $feed->get_feed_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'author');
710 $elems = $pocotags[0]['child']['http://portablecontacts.net/spec/1.0'];
711 if (isset($elems["displayName"]))
712 $vcard['fn'] = $elems["displayName"][0]["data"];
713 if (isset($elems["preferredUsername"]))
714 $vcard['nick'] = $elems["preferredUsername"][0]["data"];
718 $item = $feed->get_item(0);
720 $author = $item->get_author();
722 $vcard['fn'] = trim(unxmlify($author->get_name()));
724 $vcard['fn'] = trim(unxmlify($author->get_email()));
725 if(strpos($vcard['fn'],'@') !== false)
726 $vcard['fn'] = substr($vcard['fn'],0,strpos($vcard['fn'],'@'));
727 $email = unxmlify($author->get_email());
728 if(! $profile && $author->get_link())
729 $profile = trim(unxmlify($author->get_link()));
731 if(! $vcard['photo']) {
732 $rawmedia = $item->get_item_tags('http://search.yahoo.com/mrss/','thumbnail');
733 if($rawmedia && $rawmedia[0]['attribs']['']['url'])
734 $vcard['photo'] = unxmlify($rawmedia[0]['attribs']['']['url']);
736 if(! $vcard['photo']) {
737 $rawtags = $item->get_item_tags( SIMPLEPIE_NAMESPACE_ATOM_10, 'author');
739 $elems = $rawtags[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10];
740 if((x($elems,'link')) && ($elems['link'][0]['attribs']['']['rel'] === 'photo'))
741 $vcard['photo'] = $elems['link'][0]['attribs']['']['href'];
747 // Workaround for misconfigured Friendica servers
748 if (($network == "") AND (strstr($url, "/profile/"))) {
749 $noscrape = str_replace("/profile/", "/noscrape/", $url);
750 $noscrapejson = fetch_url($noscrape);
753 $network = NETWORK_DFRN;
755 $poco = str_replace("/profile/", "/poco/", $url);
757 $noscrapedata = json_decode($noscrapejson, true);
759 if (isset($noscrapedata["addr"]))
760 $addr = $noscrapedata["addr"];
762 if (isset($noscrapedata["fn"]))
763 $vcard["fn"] = $noscrapedata["fn"];
765 if (isset($noscrapedata["key"]))
766 $pubkey = $noscrapedata["key"];
768 if (isset($noscrapedata["photo"]))
769 $vcard["photo"] = $noscrapedata["photo"];
771 if (isset($noscrapedata["dfrn-request"]))
772 $request = $noscrapedata["dfrn-request"];
774 if (isset($noscrapedata["dfrn-confirm"]))
775 $confirm = $noscrapedata["dfrn-confirm"];
777 if (isset($noscrapedata["dfrn-notify"]))
778 $notify = $noscrapedata["dfrn-notify"];
780 if (isset($noscrapedata["dfrn-poll"]))
781 $poll = $noscrapedata["dfrn-poll"];
786 if((! $vcard['photo']) && strlen($email))
787 $vcard['photo'] = avatar_img($email);
788 if($poll === $profile)
789 $lnk = $feed->get_permalink();
790 if(isset($lnk) && strlen($lnk))
794 $network = NETWORK_FEED;
795 // If it is a feed, don't take the author name as feed name
798 if(! (x($vcard,'fn')))
799 $vcard['fn'] = notags($feed->get_title());
800 if(! (x($vcard,'fn')))
801 $vcard['fn'] = notags($feed->get_description());
803 if(strpos($vcard['fn'],'Twitter / ') !== false) {
804 $vcard['fn'] = substr($vcard['fn'],strpos($vcard['fn'],'/')+1);
805 $vcard['fn'] = trim($vcard['fn']);
807 if(! x($vcard,'nick')) {
808 $vcard['nick'] = strtolower(notags(unxmlify($vcard['fn'])));
809 if(strpos($vcard['nick'],' '))
810 $vcard['nick'] = trim(substr($vcard['nick'],0,strpos($vcard['nick'],' ')));
817 if(! x($vcard,'photo')) {
819 $vcard['photo'] = $a->get_baseurl() . '/images/person-175.jpg' ;
825 // No human could be associated with this link, use the URL as the contact name
827 if(($network === NETWORK_FEED) && ($poll) && (! x($vcard,'fn')))
830 if (($notify != "") AND ($poll != "")) {
831 $baseurl = matching(normalise_link($notify), normalise_link($poll));
833 $baseurl2 = matching($baseurl, normalise_link($profile));
835 $baseurl = $baseurl2;
838 if (($baseurl == "") AND ($notify != ""))
839 $baseurl = matching(normalise_link($profile), normalise_link($notify));
841 if (($baseurl == "") AND ($poll != ""))
842 $baseurl = matching(normalise_link($profile), normalise_link($poll));
844 $baseurl = rtrim($baseurl, "/");
846 if(strpos($url,'@') AND ($addr == "") AND ($network == NETWORK_DFRN))
847 $addr = str_replace('acct:', '', $url);
849 $vcard['fn'] = notags($vcard['fn']);
850 $vcard['nick'] = str_replace(' ','',notags($vcard['nick']));
852 $result['name'] = $vcard['fn'];
853 $result['nick'] = $vcard['nick'];
854 $result['url'] = $profile;
855 $result['addr'] = $addr;
856 $result['batch'] = $batch;
857 $result['notify'] = $notify;
858 $result['poll'] = $poll;
859 $result['request'] = $request;
860 $result['confirm'] = $confirm;
861 $result['poco'] = $poco;
862 $result['photo'] = $vcard['photo'];
863 $result['priority'] = $priority;
864 $result['network'] = $network;
865 $result['alias'] = $alias;
866 $result['pubkey'] = $pubkey;
867 $result['baseurl'] = $baseurl;
869 logger('probe_url: ' . print_r($result,true), LOGGER_DEBUG);
872 // Trying if it maybe a diaspora account
873 if (($result['network'] == NETWORK_FEED) OR ($result['addr'] == "")) {
874 require_once('include/bbcode.php');
875 $address = GetProfileUsername($url, "", true);
876 $result2 = probe_url($address, $mode, ++$level);
877 if ($result2['network'] != "")
881 // Maybe it's some non standard GNU Social installation (Single user, subfolder or no uri rewrite)
882 if (($result['network'] == NETWORK_FEED) AND ($result['baseurl'] != "") AND ($result['nick'] != "")) {
883 $addr = $result['nick'].'@'.str_replace("http://", "", $result['baseurl']);
884 $result2 = probe_url($addr, $mode, ++$level);
885 if (($result2['network'] != "") AND ($result2['network'] != NETWORK_FEED))
890 // Only store into the cache if the value seems to be valid
891 if ($result['network'] != NETWORK_PHANTOM)
892 Cache::set("probe_url:".$mode.":".$url,serialize($result), CACHE_DAY);
897 function matching($part1, $part2) {
898 $len = min(strlen($part1), strlen($part2));
903 while (($i <= $len) AND $matching) {
904 if (substr($part1, $i, 1) == substr($part2, $i, 1))
905 $match .= substr($part1, $i, 1);