3 require_once('library/HTML5/Parser.php');
4 require_once('include/crypto.php');
6 if(! function_exists('scrape_dfrn')) {
7 function scrape_dfrn($url) {
13 logger('scrape_dfrn: url=' . $url);
20 $headers = $a->get_curl_headers();
21 logger('scrape_dfrn: headers=' . $headers, LOGGER_DEBUG);
24 $lines = explode("\n",$headers);
26 foreach($lines as $line) {
27 // don't try and run feeds through the html5 parser
28 if(stristr($line,'content-type:') && ((stristr($line,'application/atom+xml')) || (stristr($line,'application/rss+xml'))))
34 $dom = HTML5_Parser::parse($s);
39 $items = $dom->getElementsByTagName('link');
41 // get DFRN link elements
43 foreach($items as $item) {
44 $x = $item->getAttribute('rel');
45 if(($x === 'alternate') && ($item->getAttribute('type') === 'application/atom+xml'))
46 $ret['feed_atom'] = $item->getAttribute('href');
47 if(substr($x,0,5) == "dfrn-") {
48 $ret[$x] = $item->getAttribute('href');
51 $decoded = urldecode($item->getAttribute('href'));
52 if(preg_match('/acct:([^@]*)@/',$decoded,$matches))
53 $ret['nick'] = $matches[1];
57 // Pull out hCard profile elements
61 $items = $dom->getElementsByTagName('*');
62 foreach($items as $item) {
63 if(attribute_contains($item->getAttribute('class'), 'vcard')) {
64 $level2 = $item->getElementsByTagName('*');
65 foreach($level2 as $x) {
66 if(attribute_contains($x->getAttribute('class'),'fn')) {
67 $ret['fn'] = $x->textContent;
69 if((attribute_contains($x->getAttribute('class'),'photo'))
70 || (attribute_contains($x->getAttribute('class'),'avatar'))) {
71 $size = intval($x->getAttribute('width'));
72 // dfrn prefers 175, so if we find this, we set largest_size so it can't be topped.
73 if(($size > $largest_photo) || ($size == 175) || (! $largest_photo)) {
74 $ret['photo'] = $x->getAttribute('src');
75 $largest_photo = (($size == 175) ? 9999 : $size);
78 if(attribute_contains($x->getAttribute('class'),'key')) {
79 $ret['key'] = $x->textContent;
93 if(! function_exists('validate_dfrn')) {
94 function validate_dfrn($a) {
98 if(! x($a,'dfrn-request'))
100 if(! x($a,'dfrn-confirm'))
102 if(! x($a,'dfrn-notify'))
104 if(! x($a,'dfrn-poll'))
109 if(! function_exists('scrape_meta')) {
110 function scrape_meta($url) {
116 logger('scrape_meta: url=' . $url);
118 $s = fetch_url($url);
123 $headers = $a->get_curl_headers();
124 logger('scrape_meta: headers=' . $headers, LOGGER_DEBUG);
126 $lines = explode("\n",$headers);
128 foreach($lines as $line) {
129 // don't try and run feeds through the html5 parser
130 if(stristr($line,'content-type:') && ((stristr($line,'application/atom+xml')) || (stristr($line,'application/rss+xml'))))
137 $dom = HTML5_Parser::parse($s);
142 $items = $dom->getElementsByTagName('meta');
144 // get DFRN link elements
146 foreach($items as $item) {
147 $x = $item->getAttribute('name');
148 if(substr($x,0,5) == "dfrn-")
149 $ret[$x] = $item->getAttribute('content');
156 if(! function_exists('scrape_vcard')) {
157 function scrape_vcard($url) {
163 logger('scrape_vcard: url=' . $url);
165 $s = fetch_url($url);
170 $headers = $a->get_curl_headers();
171 $lines = explode("\n",$headers);
173 foreach($lines as $line) {
174 // don't try and run feeds through the html5 parser
175 if(stristr($line,'content-type:') && ((stristr($line,'application/atom+xml')) || (stristr($line,'application/rss+xml'))))
180 $dom = HTML5_Parser::parse($s);
185 // Pull out hCard profile elements
189 $items = $dom->getElementsByTagName('*');
190 foreach($items as $item) {
191 if(attribute_contains($item->getAttribute('class'), 'vcard')) {
192 $level2 = $item->getElementsByTagName('*');
193 foreach($level2 as $x) {
194 if(attribute_contains($x->getAttribute('class'),'fn'))
195 $ret['fn'] = $x->textContent;
196 if((attribute_contains($x->getAttribute('class'),'photo'))
197 || (attribute_contains($x->getAttribute('class'),'avatar'))) {
198 $size = intval($x->getAttribute('width'));
199 if(($size > $largest_photo) || (! $largest_photo)) {
200 $ret['photo'] = $x->getAttribute('src');
201 $largest_photo = $size;
204 if((attribute_contains($x->getAttribute('class'),'nickname'))
205 || (attribute_contains($x->getAttribute('class'),'uid'))) {
206 $ret['nick'] = $x->textContent;
216 if(! function_exists('scrape_feed')) {
217 function scrape_feed($url) {
222 $s = fetch_url($url);
227 $headers = $a->get_curl_headers();
228 logger('scrape_feed: headers=' . $headers, LOGGER_DEBUG);
230 $lines = explode("\n",$headers);
232 foreach($lines as $line) {
233 if(stristr($line,'content-type:')) {
234 if(stristr($line,'application/atom+xml') || stristr($s,'<feed')) {
235 $ret['feed_atom'] = $url;
238 if(stristr($line,'application/rss+xml') || stristr($s,'<rss')) {
239 $ret['feed_rss'] = $url;
246 $dom = HTML5_Parser::parse($s);
252 $head = $dom->getElementsByTagName('base');
254 foreach($head as $head0) {
255 $basename = $head0->getAttribute('href');
260 $basename = substr($url,0,strrpos($url,'/')) . '/';
262 $items = $dom->getElementsByTagName('link');
264 // get Atom/RSS link elements, take the first one of either.
267 foreach($items as $item) {
268 $x = $item->getAttribute('rel');
269 if(($x === 'alternate') && ($item->getAttribute('type') === 'application/atom+xml')) {
270 if(! x($ret,'feed_atom'))
271 $ret['feed_atom'] = $item->getAttribute('href');
273 if(($x === 'alternate') && ($item->getAttribute('type') === 'application/rss+xml')) {
274 if(! x($ret,'feed_rss'))
275 $ret['feed_rss'] = $item->getAttribute('href');
280 // Drupal and perhaps others only provide relative URL's. Turn them into absolute.
282 if(x($ret,'feed_atom') && (! strstr($ret['feed_atom'],'://')))
283 $ret['feed_atom'] = $basename . $ret['feed_atom'];
284 if(x($ret,'feed_rss') && (! strstr($ret['feed_rss'],'://')))
285 $ret['feed_rss'] = $basename . $ret['feed_rss'];
293 * Probe a network address to discover what kind of protocols we need to communicate with it.
295 * Warning: this function is a bit touchy and there are some subtle dependencies within the logic flow.
302 * PROBE_DIASPORA has a bias towards returning Diaspora information
303 * while PROBE_NORMAL has a bias towards dfrn/zot - in the case where
304 * an address (such as a Friendika address) supports more than one type
310 define ( 'PROBE_NORMAL', 0);
311 define ( 'PROBE_DIASPORA', 1);
313 function probe_url($url, $mode = PROBE_NORMAL) {
314 require_once('include/email.php');
327 $email_conversant = false;
329 $twitter = ((strpos($url,'twitter.com') !== false) ? true : false);
331 $at_addr = ((strpos($url,'@') !== false) ? true : false);
335 if(strpos($url,'mailto:') !== false && $at_addr) {
336 $url = str_replace('mailto:','',$url);
345 logger('probe_url: found lrdd links: ' . print_r($links,true), LOGGER_DATA);
346 foreach($links as $link) {
347 if($link['@attributes']['rel'] === NAMESPACE_ZOT)
348 $zot = unamp($link['@attributes']['href']);
349 if($link['@attributes']['rel'] === NAMESPACE_DFRN)
350 $dfrn = unamp($link['@attributes']['href']);
351 if($link['@attributes']['rel'] === 'salmon')
352 $notify = unamp($link['@attributes']['href']);
353 if($link['@attributes']['rel'] === NAMESPACE_FEED)
354 $poll = unamp($link['@attributes']['href']);
355 if($link['@attributes']['rel'] === 'http://microformats.org/profile/hcard')
356 $hcard = unamp($link['@attributes']['href']);
357 if($link['@attributes']['rel'] === 'http://webfinger.net/rel/profile-page')
358 $profile = unamp($link['@attributes']['href']);
359 if($link['@attributes']['rel'] === 'http://joindiaspora.com/seed_location') {
360 $diaspora_base = unamp($link['@attributes']['href']);
363 if($link['@attributes']['rel'] === 'http://joindiaspora.com/guid') {
364 $diaspora_guid = unamp($link['@attributes']['href']);
367 if($link['@attributes']['rel'] === 'diaspora-public-key') {
368 $diaspora_key = base64_decode(unamp($link['@attributes']['href']));
369 $pubkey = rsatopem($diaspora_key);
374 // Status.Net can have more than one profile URL. We need to match the profile URL
375 // to a contact on incoming messages to prevent spam, and we won't know which one
376 // to match. So in case of two, one of them is stored as an alias. Only store URL's
377 // and not webfinger user@host aliases. If they've got more than two non-email style
378 // aliases, let's hope we're lucky and get one that matches the feed author-uri because
379 // otherwise we're screwed.
381 foreach($links as $link) {
382 if($link['@attributes']['rel'] === 'alias') {
383 if(strpos($link['@attributes']['href'],'@') === false) {
384 if(isset($profile)) {
385 if($link['@attributes']['href'] !== $profile)
386 $alias = unamp($link['@attributes']['href']);
389 $profile = unamp($link['@attributes']['href']);
394 elseif($mode == PROBE_NORMAL) {
399 if((strpos($orig_url,'@')) && validate_email($orig_url)) {
400 $x = q("SELECT `prvkey` FROM `user` WHERE `uid` = %d LIMIT 1",
403 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d AND `server` != '' LIMIT 1",
406 if(count($x) && count($r)) {
407 $mailbox = construct_mailbox_name($r[0]);
409 openssl_private_decrypt(hex2bin($r[0]['pass']),$password,$x[0]['prvkey']);
410 $mbox = email_connect($mailbox,$r[0]['user'],$password);
414 $msgs = email_poll($mbox,$orig_url);
417 $network = NETWORK_MAIL;
418 $name = substr($url,0,strpos($url,'@'));
419 $phost = substr($url,strpos($url,'@')+1);
420 $profile = 'http://' . $phost;
421 // fix nick character range
422 $vcard = array('fn' => $name, 'nick' => $name, 'photo' => gravatar_img($url));
423 $notify = 'smtp ' . random_string();
424 $poll = 'email ' . random_string();
426 $x = email_msg_meta($mbox,$msgs[0]);
427 if(stristr($x->from,$orig_url))
428 $adr = imap_rfc822_parse_adrlist($x->from,'');
429 elseif(stristr($x->to,$orig_url))
430 $adr = imap_rfc822_parse_adrlist($x->to,'');
432 foreach($adr as $feadr) {
433 if((strcasecmp($feadr->mailbox,$name) == 0)
434 &&(strcasecmp($feadr->host,$phost) == 0)
435 && (strlen($feadr->personal))) {
436 $vcard['fn'] = notags($feadr->personal);
447 if($mode == PROBE_NORMAL) {
449 $s = fetch_url($zot);
451 $j = json_decode($s);
453 $network = NETWORK_ZOT;
455 'fn' => $j->fullname,
456 'nick' => $j->nickname,
461 $pubkey = $j->pubkey;
468 $ret = scrape_dfrn(($hcard) ? $hcard : $dfrn);
469 if(is_array($ret) && x($ret,'dfrn-request')) {
470 $network = NETWORK_DFRN;
471 $request = $ret['dfrn-request'];
472 $confirm = $ret['dfrn-confirm'];
473 $notify = $ret['dfrn-notify'];
474 $poll = $ret['dfrn-poll'];
477 $vcard['fn'] = $ret['fn'];
478 $vcard['nick'] = $ret['nick'];
479 $vcard['photo'] = $ret['photo'];
484 if($diaspora && $diaspora_base && $diaspora_guid) {
485 if($mode == PROBE_DIASPORA || ! $notify) {
486 $notify = $diaspora_base . 'receive/users/' . $diaspora_guid;
487 $batch = $diaspora_base . 'receive/public' ;
490 $addr = str_replace('acct:', '', $url);
493 if($network !== NETWORK_ZOT && $network !== NETWORK_DFRN && $network !== NETWORK_MAIL) {
495 $network = NETWORK_DIASPORA;
497 $network = NETWORK_OSTATUS;
500 if($hcard && ! $vcard) {
501 $vcard = scrape_vcard($hcard);
503 // Google doesn't use absolute url in profile photos
505 if((x($vcard,'photo')) && substr($vcard['photo'],0,1) == '/') {
506 $h = @parse_url($hcard);
508 $vcard['photo'] = $h['scheme'] . '://' . $h['host'] . $vcard['photo'];
511 logger('probe_url: scrape_vcard: ' . print_r($vcard,true), LOGGER_DATA);
515 logger('twitter: setup');
516 $tid = basename($url);
517 $tapi = 'https://api.twitter.com/1/statuses/user_timeline.rss';
519 $poll = $tapi . '?user_id=' . $tid;
521 $poll = $tapi . '?screen_name=' . $tid;
522 $profile = 'http://twitter.com/#!/' . $tid;
523 $vcard['photo'] = 'https://api.twitter.com/1/users/profile_image/' . $tid;
524 $vcard['nick'] = $tid;
525 $vcard['fn'] = $tid . '@twitter';
530 $vcard['fn'] = $vcard['nick'];
534 if($twitter || ! $poll)
536 if((! isset($vcard)) || (! x($vcard,'fn')) || (! $profile))
538 if(($at_addr) && (! count($links)))
543 $feedret = scrape_feed(($poll) ? $poll : $url);
544 logger('probe_url: scrape_feed returns: ' . print_r($feedret,true), LOGGER_DATA);
545 if(count($feedret) && ($feedret['feed_atom'] || $feedret['feed_rss'])) {
546 $poll = ((x($feedret,'feed_atom')) ? unamp($feedret['feed_atom']) : unamp($feedret['feed_rss']));
551 if(x($feedret,'photo') && (! x($vcard,'photo')))
552 $vcard['photo'] = $feedret['photo'];
553 require_once('library/simplepie/simplepie.inc');
554 $feed = new SimplePie();
555 $xml = fetch_url($poll);
557 logger('probe_url: fetch feed: ' . $poll . ' returns: ' . $xml, LOGGER_DATA);
560 logger('probe_url: scrape_feed: headers: ' . $a->get_curl_headers(), $LOGGER_DATA);
562 $feed->set_raw_data($xml);
566 logger('probe_url: scrape_feed: Error parsing XML: ' . $feed->error());
569 if(! x($vcard,'photo'))
570 $vcard['photo'] = $feed->get_image_url();
571 $author = $feed->get_author();
574 $vcard['fn'] = unxmlify(trim($author->get_name()));
576 $vcard['fn'] = trim(unxmlify($author->get_email()));
577 if(strpos($vcard['fn'],'@') !== false)
578 $vcard['fn'] = substr($vcard['fn'],0,strpos($vcard['fn'],'@'));
579 $email = unxmlify($author->get_email());
580 if(! $profile && $author->get_link())
581 $profile = trim(unxmlify($author->get_link()));
582 if(! $vcard['photo']) {
583 $rawtags = $feed->get_feed_tags( SIMPLEPIE_NAMESPACE_ATOM_10, 'author');
585 $elems = $rawtags[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10];
586 if((x($elems,'link')) && ($elems['link'][0]['attribs']['']['rel'] === 'photo'))
587 $vcard['photo'] = $elems['link'][0]['attribs']['']['href'];
592 $item = $feed->get_item(0);
594 $author = $item->get_author();
596 $vcard['fn'] = trim(unxmlify($author->get_name()));
598 $vcard['fn'] = trim(unxmlify($author->get_email()));
599 if(strpos($vcard['fn'],'@') !== false)
600 $vcard['fn'] = substr($vcard['fn'],0,strpos($vcard['fn'],'@'));
601 $email = unxmlify($author->get_email());
602 if(! $profile && $author->get_link())
603 $profile = trim(unxmlify($author->get_link()));
605 if(! $vcard['photo']) {
606 $rawmedia = $item->get_item_tags('http://search.yahoo.com/mrss/','thumbnail');
607 if($rawmedia && $rawmedia[0]['attribs']['']['url'])
608 $vcard['photo'] = unxmlify($rawmedia[0]['attribs']['']['url']);
610 if(! $vcard['photo']) {
611 $rawtags = $item->get_item_tags( SIMPLEPIE_NAMESPACE_ATOM_10, 'author');
613 $elems = $rawtags[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10];
614 if((x($elems,'link')) && ($elems['link'][0]['attribs']['']['rel'] === 'photo'))
615 $vcard['photo'] = $elems['link'][0]['attribs']['']['href'];
621 if((! $vcard['photo']) && strlen($email))
622 $vcard['photo'] = gravatar_img($email);
623 if($poll === $profile)
624 $lnk = $feed->get_permalink();
625 if(isset($lnk) && strlen($lnk))
628 if(! (x($vcard,'fn')))
629 $vcard['fn'] = notags($feed->get_title());
630 if(! (x($vcard,'fn')))
631 $vcard['fn'] = notags($feed->get_description());
633 if(strpos($vcard['fn'],'Twitter / ') !== false) {
634 $vcard['fn'] = substr($vcard['fn'],strpos($vcard['fn'],'/')+1);
635 $vcard['fn'] = trim($vcard['fn']);
637 if(! x($vcard,'nick')) {
638 $vcard['nick'] = strtolower(notags(unxmlify($vcard['fn'])));
639 if(strpos($vcard['nick'],' '))
640 $vcard['nick'] = trim(substr($vcard['nick'],0,strpos($vcard['nick'],' ')));
643 $network = NETWORK_FEED;
649 if(! x($vcard,'photo')) {
651 $vcard['photo'] = $a->get_baseurl() . '/images/default-profile.jpg' ;
657 // No human could be associated with this link, use the URL as the contact name
659 if(($network === NETWORK_FEED) && ($poll) && (! x($vcard,'fn')))
662 $vcard['fn'] = notags($vcard['fn']);
663 $vcard['nick'] = str_replace(' ','',notags($vcard['nick']));
665 $result['name'] = $vcard['fn'];
666 $result['nick'] = $vcard['nick'];
667 $result['url'] = $profile;
668 $result['addr'] = $addr;
669 $result['batch'] = $batch;
670 $result['notify'] = $notify;
671 $result['poll'] = $poll;
672 $result['request'] = $request;
673 $result['confirm'] = $confirm;
674 $result['photo'] = $vcard['photo'];
675 $result['priority'] = $priority;
676 $result['network'] = $network;
677 $result['alias'] = $alias;
678 $result['pubkey'] = $pubkey;
680 logger('probe_url: ' . print_r($result,true), LOGGER_DEBUG);