]> git.mxchange.org Git - friendica.git/blob - include/Scrape.php
Merge branch 'pull'
[friendica.git] / include / Scrape.php
1 <?php
2
3 require_once('library/HTML5/Parser.php');
4 require_once('include/crypto.php');
5
6 if(! function_exists('scrape_dfrn')) {
7 function scrape_dfrn($url) {
8
9         $a = get_app();
10
11         $ret = array();
12
13         logger('scrape_dfrn: url=' . $url);
14
15         $s = fetch_url($url);
16
17         if(! $s) 
18                 return $ret;
19
20         $headers = $a->get_curl_headers();
21         logger('scrape_dfrn: headers=' . $headers, LOGGER_DEBUG);
22
23
24         $lines = explode("\n",$headers);
25         if(count($lines)) {
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'))))
29                                 return ret;
30                 }
31         }
32
33         try {
34                 $dom = HTML5_Parser::parse($s);
35         } catch (DOMException $e) {
36                 logger('scrape_dfrn: parse error: ' . $e);
37         }
38
39         if(! $dom)
40                 return $ret;
41
42         $items = $dom->getElementsByTagName('link');
43
44         // get DFRN link elements
45
46         foreach($items as $item) {
47                 $x = $item->getAttribute('rel');
48                 if(($x === 'alternate') && ($item->getAttribute('type') === 'application/atom+xml'))
49                         $ret['feed_atom'] = $item->getAttribute('href');
50                 if(substr($x,0,5) == "dfrn-") {
51                         $ret[$x] = $item->getAttribute('href');
52                 }
53                 if($x === 'lrdd') {
54                         $decoded = urldecode($item->getAttribute('href'));
55                         if(preg_match('/acct:([^@]*)@/',$decoded,$matches))
56                                 $ret['nick'] = $matches[1];
57                 }
58         }
59
60         // Pull out hCard profile elements
61
62         $largest_photo = 0;
63
64         $items = $dom->getElementsByTagName('*');
65         foreach($items as $item) {
66                 if(attribute_contains($item->getAttribute('class'), 'vcard')) {
67                         $level2 = $item->getElementsByTagName('*');
68                         foreach($level2 as $x) {
69                                 if(attribute_contains($x->getAttribute('class'),'fn')) {
70                                         $ret['fn'] = $x->textContent;
71                                 }
72                                 if((attribute_contains($x->getAttribute('class'),'photo'))
73                                         || (attribute_contains($x->getAttribute('class'),'avatar'))) {
74                                         $size = intval($x->getAttribute('width'));
75                                         // dfrn prefers 175, so if we find this, we set largest_size so it can't be topped.
76                                         if(($size > $largest_photo) || ($size == 175) || (! $largest_photo)) {
77                                                 $ret['photo'] = $x->getAttribute('src');
78                                                 $largest_photo = (($size == 175) ? 9999 : $size);
79                                         }
80                                 }
81                                 if(attribute_contains($x->getAttribute('class'),'key')) {
82                                         $ret['key'] = $x->textContent;
83                                 }
84                         }
85                 }
86         }
87
88         return $ret;
89 }}
90
91
92
93
94
95
96 if(! function_exists('validate_dfrn')) {
97 function validate_dfrn($a) {
98         $errors = 0;
99         if(! x($a,'key'))
100                 $errors ++;
101         if(! x($a,'dfrn-request'))
102                 $errors ++;
103         if(! x($a,'dfrn-confirm'))
104                 $errors ++;
105         if(! x($a,'dfrn-notify'))
106                 $errors ++;
107         if(! x($a,'dfrn-poll'))
108                 $errors ++;
109         return $errors;
110 }}
111
112 if(! function_exists('scrape_meta')) {
113 function scrape_meta($url) {
114
115         $a = get_app();
116
117         $ret = array();
118
119         logger('scrape_meta: url=' . $url);
120
121         $s = fetch_url($url);
122
123         if(! $s) 
124                 return $ret;
125
126         $headers = $a->get_curl_headers();
127         logger('scrape_meta: headers=' . $headers, LOGGER_DEBUG);
128
129         $lines = explode("\n",$headers);
130         if(count($lines)) {
131                 foreach($lines as $line) {                              
132                         // don't try and run feeds through the html5 parser
133                         if(stristr($line,'content-type:') && ((stristr($line,'application/atom+xml')) || (stristr($line,'application/rss+xml'))))
134                                 return ret;
135                 }
136         }
137
138         try {
139                 $dom = HTML5_Parser::parse($s);
140         } catch (DOMException $e) {
141                 logger('scrape_meta: parse error: ' . $e);
142         }
143
144         if(! $dom)
145                 return $ret;
146
147         $items = $dom->getElementsByTagName('meta');
148
149         // get DFRN link elements
150
151         foreach($items as $item) {
152                 $x = $item->getAttribute('name');
153                 if(substr($x,0,5) == "dfrn-")
154                         $ret[$x] = $item->getAttribute('content');
155         }
156
157         return $ret;
158 }}
159
160
161 if(! function_exists('scrape_vcard')) {
162 function scrape_vcard($url) {
163
164         $a = get_app();
165
166         $ret = array();
167
168         logger('scrape_vcard: url=' . $url);
169
170         $s = fetch_url($url);
171
172         if(! $s) 
173                 return $ret;
174
175         $headers = $a->get_curl_headers();
176         $lines = explode("\n",$headers);
177         if(count($lines)) {
178                 foreach($lines as $line) {                              
179                         // don't try and run feeds through the html5 parser
180                         if(stristr($line,'content-type:') && ((stristr($line,'application/atom+xml')) || (stristr($line,'application/rss+xml'))))
181                                 return ret;
182                 }
183         }
184
185         try {
186                 $dom = HTML5_Parser::parse($s);
187         } catch (DOMException $e) {
188                 logger('scrape_vcard: parse error: ' . $e);
189         }
190
191         if(! $dom)
192                 return $ret;
193
194         // Pull out hCard profile elements
195
196         $largest_photo = 0;
197
198         $items = $dom->getElementsByTagName('*');
199         foreach($items as $item) {
200                 if(attribute_contains($item->getAttribute('class'), 'vcard')) {
201                         $level2 = $item->getElementsByTagName('*');
202                         foreach($level2 as $x) {
203                                 if(attribute_contains($x->getAttribute('class'),'fn'))
204                                         $ret['fn'] = $x->textContent;
205                                 if((attribute_contains($x->getAttribute('class'),'photo'))
206                                         || (attribute_contains($x->getAttribute('class'),'avatar'))) {
207                                         $size = intval($x->getAttribute('width'));
208                                         if(($size > $largest_photo) || (! $largest_photo)) {
209                                                 $ret['photo'] = $x->getAttribute('src');
210                                                 $largest_photo = $size;
211                                         }
212                                 }
213                                 if((attribute_contains($x->getAttribute('class'),'nickname'))
214                                         || (attribute_contains($x->getAttribute('class'),'uid'))) {
215                                         $ret['nick'] = $x->textContent;
216                                 }
217                         }
218                 }
219         }
220
221         return $ret;
222 }}
223
224
225 if(! function_exists('scrape_feed')) {
226 function scrape_feed($url) {
227
228         $a = get_app();
229
230         $ret = array();
231         $s = fetch_url($url);
232
233         $headers = $a->get_curl_headers();
234         $code = $a->get_curl_code();
235
236         logger('scrape_feed: returns: ' . $code . ' headers=' . $headers, LOGGER_DEBUG);
237
238         if(! $s) {
239                 logger('scrape_feed: no data returned for ' . $url); 
240                 return $ret;
241         }
242
243
244         $lines = explode("\n",$headers);
245         if(count($lines)) {
246                 foreach($lines as $line) {                              
247                         if(stristr($line,'content-type:')) {
248                                 if(stristr($line,'application/atom+xml') || stristr($s,'<feed')) {
249                                         $ret['feed_atom'] = $url;
250                                         return $ret;
251                                 }
252                                 if(stristr($line,'application/rss+xml') || stristr($s,'<rss')) {
253                                         $ret['feed_rss'] = $url;
254                                         return $ret;
255                                 }
256                         }
257                 }
258         }
259
260         try {
261                 $dom = HTML5_Parser::parse($s);
262         } catch (DOMException $e) {
263                 logger('scrape_feed: parse error: ' . $e);
264         }
265
266         if(! $dom) {
267                 logger('scrape_feed: failed to parse.');
268                 return $ret;
269         }
270
271
272         $head = $dom->getElementsByTagName('base');
273         if($head) {
274                 foreach($head as $head0) {
275                         $basename = $head0->getAttribute('href');
276                         break;
277                 }
278         }
279         if(! $basename)
280                 $basename = substr($url,0,strrpos($url,'/')) . '/';
281
282         $items = $dom->getElementsByTagName('link');
283
284         // get Atom/RSS link elements, take the first one of either.
285
286         if($items) {
287                 foreach($items as $item) {
288                         $x = $item->getAttribute('rel');
289                         if(($x === 'alternate') && ($item->getAttribute('type') === 'application/atom+xml')) {
290                                 if(! x($ret,'feed_atom'))
291                                         $ret['feed_atom'] = $item->getAttribute('href');
292                         }
293                         if(($x === 'alternate') && ($item->getAttribute('type') === 'application/rss+xml')) {
294                                 if(! x($ret,'feed_rss'))
295                                         $ret['feed_rss'] = $item->getAttribute('href');
296                         }
297                 }       
298         }
299
300         // Drupal and perhaps others only provide relative URL's. Turn them into absolute.
301
302         if(x($ret,'feed_atom') && (! strstr($ret['feed_atom'],'://')))
303                 $ret['feed_atom'] = $basename . $ret['feed_atom'];
304         if(x($ret,'feed_rss') && (! strstr($ret['feed_rss'],'://')))
305                 $ret['feed_rss'] = $basename . $ret['feed_rss'];
306
307         return $ret;
308 }}
309
310
311 /**
312  *
313  * Probe a network address to discover what kind of protocols we need to communicate with it.
314  *
315  * Warning: this function is a bit touchy and there are some subtle dependencies within the logic flow.
316  * Edit with care.
317  *
318  */
319
320 /**
321  *
322  * PROBE_DIASPORA has a bias towards returning Diaspora information
323  * while PROBE_NORMAL has a bias towards dfrn/zot - in the case where
324  * an address (such as a Friendica address) supports more than one type
325  * of network. 
326  *
327  */
328
329
330 define ( 'PROBE_NORMAL',   0);
331 define ( 'PROBE_DIASPORA', 1);
332
333 function probe_url($url, $mode = PROBE_NORMAL) {
334         require_once('include/email.php');
335
336         $result = array();
337
338         if(! $url)
339                 return $result;
340
341         $network = null;
342         $diaspora = false;
343         $diaspora_base = '';
344         $diaspora_guid = '';    
345         $diaspora_key = '';
346         $has_lrdd = false;
347         $email_conversant = false;
348
349         $twitter = ((strpos($url,'twitter.com') !== false) ? true : false);
350
351         $at_addr = ((strpos($url,'@') !== false) ? true : false);
352
353         if(! $twitter) {
354
355                 if(strpos($url,'mailto:') !== false && $at_addr) {
356                         $url = str_replace('mailto:','',$url);
357                         $links = array();
358                 }
359                 else
360                         $links = lrdd($url);
361
362                 if(count($links)) {
363                         $has_lrdd = true;
364
365                         logger('probe_url: found lrdd links: ' . print_r($links,true), LOGGER_DATA);
366                         foreach($links as $link) {
367                                 if($link['@attributes']['rel'] === NAMESPACE_ZOT)
368                                         $zot = unamp($link['@attributes']['href']);
369                                 if($link['@attributes']['rel'] === NAMESPACE_DFRN)
370                                         $dfrn = unamp($link['@attributes']['href']);
371                                 if($link['@attributes']['rel'] === 'salmon')
372                                         $notify = unamp($link['@attributes']['href']);
373                                 if($link['@attributes']['rel'] === NAMESPACE_FEED)
374                                         $poll = unamp($link['@attributes']['href']);
375                                 if($link['@attributes']['rel'] === 'http://microformats.org/profile/hcard')
376                                         $hcard = unamp($link['@attributes']['href']);
377                                 if($link['@attributes']['rel'] === 'http://webfinger.net/rel/profile-page')
378                                         $profile = unamp($link['@attributes']['href']);
379                                 if($link['@attributes']['rel'] === 'http://portablecontacts.net/spec/1.0')
380                                         $poco = unamp($link['@attributes']['href']);
381                                 if($link['@attributes']['rel'] === 'http://joindiaspora.com/seed_location') {
382                                         $diaspora_base = unamp($link['@attributes']['href']);
383                                         $diaspora = true;
384                                 }
385                                 if($link['@attributes']['rel'] === 'http://joindiaspora.com/guid') {
386                                         $diaspora_guid = unamp($link['@attributes']['href']);
387                                         $diaspora = true;
388                                 }
389                                 if($link['@attributes']['rel'] === 'diaspora-public-key') {
390                                         $diaspora_key = base64_decode(unamp($link['@attributes']['href']));
391                                         $pubkey = rsatopem($diaspora_key);
392                                         $diaspora = true;
393                                 }
394                         }
395
396                         // Status.Net can have more than one profile URL. We need to match the profile URL
397                         // to a contact on incoming messages to prevent spam, and we won't know which one
398                         // to match. So in case of two, one of them is stored as an alias. Only store URL's
399                         // and not webfinger user@host aliases. If they've got more than two non-email style
400                         // aliases, let's hope we're lucky and get one that matches the feed author-uri because 
401                         // otherwise we're screwed.
402
403                         foreach($links as $link) {
404                                 if($link['@attributes']['rel'] === 'alias') {
405                                         if(strpos($link['@attributes']['href'],'@') === false) {
406                                                 if(isset($profile)) {
407                                                         if($link['@attributes']['href'] !== $profile)
408                                                                 $alias = unamp($link['@attributes']['href']);
409                                                 }
410                                                 else
411                                                         $profile = unamp($link['@attributes']['href']);
412                                         }
413                                 }
414                         }
415                 }
416                 elseif($mode == PROBE_NORMAL) {
417
418                         // Check email
419
420                         $orig_url = $url;
421                         if((strpos($orig_url,'@')) && validate_email($orig_url)) {
422                                 $x = q("SELECT `prvkey` FROM `user` WHERE `uid` = %d LIMIT 1",
423                                         intval(local_user())
424                                 );
425                                 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d AND `server` != '' LIMIT 1",
426                                         intval(local_user())
427                                 );
428                                 if(count($x) && count($r)) {
429                                     $mailbox = construct_mailbox_name($r[0]);
430                                         $password = '';
431                                         openssl_private_decrypt(hex2bin($r[0]['pass']),$password,$x[0]['prvkey']);
432                                         $mbox = email_connect($mailbox,$r[0]['user'],$password);
433                                         unset($password);
434                                 }
435                                 if($mbox) {
436                                         $msgs = email_poll($mbox,$orig_url);
437                                         if(count($msgs)) {
438                                                 $addr = $orig_url;
439                                                 $network = NETWORK_MAIL;
440                                                 $name = substr($url,0,strpos($url,'@'));
441                                                 $phost = substr($url,strpos($url,'@')+1);
442                                                 $profile = 'http://' . $phost;
443                                                 // fix nick character range
444                                                 $vcard = array('fn' => $name, 'nick' => $name, 'photo' => gravatar_img($url));
445                                                 $notify = 'smtp ' . random_string();
446                                                 $poll = 'email ' . random_string();
447                                                 $priority = 0;
448                                                 $x = email_msg_meta($mbox,$msgs[0]);
449                                                 if(stristr($x->from,$orig_url))
450                                                         $adr = imap_rfc822_parse_adrlist($x->from,'');
451                                                 elseif(stristr($x->to,$orig_url))
452                                                         $adr = imap_rfc822_parse_adrlist($x->to,'');
453                                                 if(isset($adr)) {
454                                                         foreach($adr as $feadr) {
455                                                                 if((strcasecmp($feadr->mailbox,$name) == 0) 
456                                                                         &&(strcasecmp($feadr->host,$phost) == 0) 
457                                                                         && (strlen($feadr->personal))) {
458                                                                         $vcard['fn'] = notags($feadr->personal);
459                                                                 }
460                                                         }
461                                                 }
462                                         }
463                                         imap_close($mbox);
464                                 }
465                         }
466                 }
467         }       
468
469         if($mode == PROBE_NORMAL) {
470                 if(strlen($zot)) {
471                         $s = fetch_url($zot);
472                         if($s) {
473                                 $j = json_decode($s);
474                                 if($j) {
475                                         $network = NETWORK_ZOT;
476                                         $vcard   = array(
477                                                 'fn'    => $j->fullname, 
478                                                 'nick'  => $j->nickname, 
479                                                 'photo' => $j->photo
480                                         );
481                                         $profile  = $j->url;
482                                         $notify   = $j->post;
483                                         $pubkey   = $j->pubkey;
484                                         $poll     = 'N/A';
485                                 }
486                         }
487                 }
488
489                 if(strlen($dfrn)) {
490                         $ret = scrape_dfrn(($hcard) ? $hcard : $dfrn);
491                         if(is_array($ret) && x($ret,'dfrn-request')) {
492                                 $network = NETWORK_DFRN;
493                                 $request = $ret['dfrn-request'];
494                                 $confirm = $ret['dfrn-confirm'];
495                                 $notify  = $ret['dfrn-notify'];
496                                 $poll    = $ret['dfrn-poll'];
497
498                                 $vcard = array();
499                                 $vcard['fn'] = $ret['fn'];
500                                 $vcard['nick'] = $ret['nick'];
501                                 $vcard['photo'] = $ret['photo'];
502                         }
503                 }
504         }
505
506         if($diaspora && $diaspora_base && $diaspora_guid) {
507                 if($mode == PROBE_DIASPORA || ! $notify) {
508                         $notify = $diaspora_base . 'receive/users/' . $diaspora_guid;
509                         $batch  = $diaspora_base . 'receive/public' ;
510                 }
511                 if(strpos($url,'@'))
512                         $addr = str_replace('acct:', '', $url);
513         }                       
514
515         if($network !== NETWORK_ZOT && $network !== NETWORK_DFRN && $network !== NETWORK_MAIL) {
516                 if($diaspora)
517                         $network = NETWORK_DIASPORA;
518                 elseif($has_lrdd)
519                         $network  = NETWORK_OSTATUS;
520                 $priority = 0;
521
522                 if($hcard && ! $vcard) {
523                         $vcard = scrape_vcard($hcard);
524
525                         // Google doesn't use absolute url in profile photos
526         
527                         if((x($vcard,'photo')) && substr($vcard['photo'],0,1) == '/') {
528                                 $h = @parse_url($hcard);
529                                 if($h)
530                                         $vcard['photo'] = $h['scheme'] . '://' . $h['host'] . $vcard['photo'];
531                         }
532                 
533                         logger('probe_url: scrape_vcard: ' . print_r($vcard,true), LOGGER_DATA);
534                 }
535
536                 if($twitter) {          
537                         logger('twitter: setup');
538                         $tid = basename($url);
539                         $tapi = 'https://api.twitter.com/1/statuses/user_timeline.rss';
540                         if(intval($tid))
541                                 $poll = $tapi . '?user_id=' . $tid;
542                         else
543                                 $poll = $tapi . '?screen_name=' . $tid;
544                         $profile = 'http://twitter.com/#!/' . $tid;
545                         $vcard['photo'] = 'https://api.twitter.com/1/users/profile_image/' . $tid;
546                         $vcard['nick'] = $tid;
547                         $vcard['fn'] = $tid . '@twitter';
548                 }
549
550                 if(! x($vcard,'fn'))
551                         if(x($vcard,'nick'))
552                                 $vcard['fn'] = $vcard['nick'];
553
554                 $check_feed = false;
555
556                 if($twitter || ! $poll)
557                         $check_feed = true;
558                 if((! isset($vcard)) || (! x($vcard,'fn')) || (! $profile))
559                         $check_feed = true;
560                 if(($at_addr) && (! count($links)))
561                         $check_feed = false;
562
563                 if($check_feed) {
564
565                         $feedret = scrape_feed(($poll) ? $poll : $url);
566                         logger('probe_url: scrape_feed ' . (($poll)? $poll : $url) . ' returns: ' . print_r($feedret,true), LOGGER_DATA);
567                         if(count($feedret) && ($feedret['feed_atom'] || $feedret['feed_rss'])) {
568                                 $poll = ((x($feedret,'feed_atom')) ? unamp($feedret['feed_atom']) : unamp($feedret['feed_rss']));
569                                 if(! x($vcard)) 
570                                         $vcard = array();
571                         }
572
573                         if(x($feedret,'photo') && (! x($vcard,'photo')))
574                                 $vcard['photo'] = $feedret['photo'];
575                         require_once('library/simplepie/simplepie.inc');
576                     $feed = new SimplePie();
577                         $xml = fetch_url($poll);
578
579                         logger('probe_url: fetch feed: ' . $poll . ' returns: ' . $xml, LOGGER_DATA);
580                         $a = get_app();
581
582                         logger('probe_url: scrape_feed: headers: ' . $a->get_curl_headers(), $LOGGER_DATA);
583
584                         $feed->set_raw_data($xml);
585
586                     $feed->init();
587                         if($feed->error())
588                                 logger('probe_url: scrape_feed: Error parsing XML: ' . $feed->error());
589
590
591                         if(! x($vcard,'photo'))
592                                 $vcard['photo'] = $feed->get_image_url();
593                         $author = $feed->get_author();
594
595                         if($author) {                   
596                                 $vcard['fn'] = unxmlify(trim($author->get_name()));
597                                 if(! $vcard['fn'])
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()));
604                                 if(! $vcard['photo']) {
605                                         $rawtags = $feed->get_feed_tags( SIMPLEPIE_NAMESPACE_ATOM_10, 'author');
606                                 if($rawtags) {
607                                                 $elems = $rawtags[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10];
608                                                 if((x($elems,'link')) && ($elems['link'][0]['attribs']['']['rel'] === 'photo'))
609                                                         $vcard['photo'] = $elems['link'][0]['attribs']['']['href'];
610                                 }
611                                 }
612                         }
613                         else {
614                                 $item = $feed->get_item(0);
615                                 if($item) {
616                                         $author = $item->get_author();
617                                         if($author) {                   
618                                                 $vcard['fn'] = trim(unxmlify($author->get_name()));
619                                                 if(! $vcard['fn'])
620                                                         $vcard['fn'] = trim(unxmlify($author->get_email()));
621                                                 if(strpos($vcard['fn'],'@') !== false)
622                                                         $vcard['fn'] = substr($vcard['fn'],0,strpos($vcard['fn'],'@'));
623                                                 $email = unxmlify($author->get_email());
624                                                 if(! $profile && $author->get_link())
625                                                         $profile = trim(unxmlify($author->get_link()));
626                                         }
627                                         if(! $vcard['photo']) {
628                                                 $rawmedia = $item->get_item_tags('http://search.yahoo.com/mrss/','thumbnail');
629                                                 if($rawmedia && $rawmedia[0]['attribs']['']['url'])
630                                                         $vcard['photo'] = unxmlify($rawmedia[0]['attribs']['']['url']);
631                                         }
632                                         if(! $vcard['photo']) {
633                                                 $rawtags = $item->get_item_tags( SIMPLEPIE_NAMESPACE_ATOM_10, 'author');
634                                         if($rawtags) {
635                                                         $elems = $rawtags[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10];
636                                                         if((x($elems,'link')) && ($elems['link'][0]['attribs']['']['rel'] === 'photo'))
637                                                                 $vcard['photo'] = $elems['link'][0]['attribs']['']['href'];
638                                         }
639                                         }
640                                 }
641                         }
642
643                         if((! $vcard['photo']) && strlen($email))
644                                 $vcard['photo'] = gravatar_img($email);
645                         if($poll === $profile)
646                                 $lnk = $feed->get_permalink();
647                         if(isset($lnk) && strlen($lnk))
648                                 $profile = $lnk;        
649
650                         if(! (x($vcard,'fn')))
651                                 $vcard['fn'] = notags($feed->get_title());
652                         if(! (x($vcard,'fn')))
653                                 $vcard['fn'] = notags($feed->get_description());
654
655                         if(strpos($vcard['fn'],'Twitter / ') !== false) {
656                                 $vcard['fn'] = substr($vcard['fn'],strpos($vcard['fn'],'/')+1);
657                                 $vcard['fn'] = trim($vcard['fn']);
658                         }
659                         if(! x($vcard,'nick')) {
660                                 $vcard['nick'] = strtolower(notags(unxmlify($vcard['fn'])));
661                                 if(strpos($vcard['nick'],' '))
662                                         $vcard['nick'] = trim(substr($vcard['nick'],0,strpos($vcard['nick'],' ')));
663                         }
664                         if(! $network)
665                                 $network = NETWORK_FEED;
666                         if(! $priority)
667                                 $priority = 2;
668                 }
669         }
670
671         if(! x($vcard,'photo')) {
672                 $a = get_app();
673                 $vcard['photo'] = $a->get_baseurl() . '/images/default-profile.jpg' ; 
674         }
675
676         if(! $profile)
677                 $profile = $url;
678
679         // No human could be associated with this link, use the URL as the contact name
680
681         if(($network === NETWORK_FEED) && ($poll) && (! x($vcard,'fn')))
682                 $vcard['fn'] = $url;
683
684         $vcard['fn'] = notags($vcard['fn']);
685         $vcard['nick'] = str_replace(' ','',notags($vcard['nick']));
686                 
687         $result['name'] = $vcard['fn'];
688         $result['nick'] = $vcard['nick'];
689         $result['url'] = $profile;
690         $result['addr'] = $addr;
691         $result['batch'] = $batch;
692         $result['notify'] = $notify;
693         $result['poll'] = $poll;
694         $result['request'] = $request;
695         $result['confirm'] = $confirm;
696         $result['poco'] = $poco;
697         $result['photo'] = $vcard['photo'];
698         $result['priority'] = $priority;
699         $result['network'] = $network;
700         $result['alias'] = $alias;
701         $result['pubkey'] = $pubkey;
702
703         logger('probe_url: ' . print_r($result,true), LOGGER_DEBUG);
704
705         return $result;
706 }