]> git.mxchange.org Git - friendica.git/blob - include/items.php
da5a18cad8bf1ce057735a27d7989b4a509e09b2
[friendica.git] / include / items.php
1 <?php
2
3 require_once('include/bbcode.php');
4 require_once('include/oembed.php');
5 require_once('include/salmon.php');
6 require_once('include/crypto.php');
7
8 function get_feed_for(&$a, $dfrn_id, $owner_nick, $last_update, $direction = 0) {
9
10         // default permissions - anonymous user
11
12         if(! strlen($owner_nick))
13                 killme();
14
15         $public_feed = (($dfrn_id) ? false : true);
16         $starred = false;
17         $converse = false;
18
19         if($public_feed && $a->argc > 2) {
20                 for($x = 2; $x < $a->argc; $x++) {
21                         if($a->argv[$x] == 'converse')
22                                 $converse = true;
23                         if($a->argv[$x] == 'starred')
24                                 $starred = true;
25                 }
26         }
27
28
29         $sql_extra = " AND `allow_cid` = '' AND `allow_gid` = '' AND `deny_cid`  = '' AND `deny_gid`  = '' ";
30
31         $r = q("SELECT `contact`.*, `user`.`uid` AS `user_uid`, `user`.`nickname`, `user`.`timezone`
32                 FROM `contact` LEFT JOIN `user` ON `user`.`uid` = `contact`.`uid`
33                 WHERE `contact`.`self` = 1 AND `user`.`nickname` = '%s' LIMIT 1",
34                 dbesc($owner_nick)
35         );
36
37         if(! count($r))
38                 killme();
39
40         $owner = $r[0];
41         $owner_id = $owner['user_uid'];
42         $owner_nick = $owner['nickname'];
43
44         $birthday = feed_birthday($owner_id,$owner['timezone']);
45
46         if(! $public_feed) {
47
48                 $sql_extra = '';
49                 switch($direction) {
50                         case (-1):
51                                 $sql_extra = sprintf(" AND `issued-id` = '%s' ", dbesc($dfrn_id));
52                                 $my_id = $dfrn_id;
53                                 break;
54                         case 0:
55                                 $sql_extra = sprintf(" AND `issued-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id));
56                                 $my_id = '1:' . $dfrn_id;
57                                 break;
58                         case 1:
59                                 $sql_extra = sprintf(" AND `dfrn-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id));
60                                 $my_id = '0:' . $dfrn_id;
61                                 break;
62                         default:
63                                 return false;
64                                 break; // NOTREACHED
65                 }
66
67                 $r = q("SELECT * FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `contact`.`uid` = %d $sql_extra LIMIT 1",
68                         intval($owner_id)
69                 );
70
71                 if(! count($r))
72                         killme();
73
74                 $contact = $r[0];
75                 $groups = init_groups_visitor($contact['id']);
76
77                 if(count($groups)) {
78                         for($x = 0; $x < count($groups); $x ++) 
79                                 $groups[$x] = '<' . intval($groups[$x]) . '>' ;
80                         $gs = implode('|', $groups);
81                 }
82                 else
83                         $gs = '<<>>' ; // Impossible to match 
84
85                 $sql_extra = sprintf(" 
86                         AND ( `allow_cid` = '' OR     `allow_cid` REGEXP '<%d>' ) 
87                         AND ( `deny_cid`  = '' OR NOT `deny_cid`  REGEXP '<%d>' ) 
88                         AND ( `allow_gid` = '' OR     `allow_gid` REGEXP '%s' )
89                         AND ( `deny_gid`  = '' OR NOT `deny_gid`  REGEXP '%s') 
90                 ",
91                         intval($contact['id']),
92                         intval($contact['id']),
93                         dbesc($gs),
94                         dbesc($gs)
95                 );
96         }
97
98         if($public_feed)
99                 $sort = 'DESC';
100         else
101                 $sort = 'ASC';
102
103         if(! strlen($last_update))
104                 $last_update = 'now -30 days';
105
106         if($public_feed) {
107                 if(! $converse)
108                         $sql_extra .= " AND `contact`.`self` = 1 ";
109         }
110
111         $check_date = datetime_convert('UTC','UTC',$last_update,'Y-m-d H:i:s');
112
113         $r = q("SELECT `item`.*, `item`.`id` AS `item_id`, 
114                 `contact`.`name`, `contact`.`photo`, `contact`.`url`, 
115                 `contact`.`name-date`, `contact`.`uri-date`, `contact`.`avatar-date`,
116                 `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`, 
117                 `contact`.`id` AS `contact-id`, `contact`.`uid` AS `contact-uid`,
118                 `sign`.`signed_text`, `sign`.`signature`, `sign`.`signer`
119                 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
120                 LEFT JOIN `sign` ON `sign`.`iid` = `item`.`id`
121                 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`parent` != 0 
122                 AND `item`.`wall` = 1 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
123                 AND ( `item`.`edited` > '%s' OR `item`.`changed` > '%s' )
124                 $sql_extra
125                 ORDER BY `parent` %s, `created` ASC LIMIT 0, 300",
126                 intval($owner_id),
127                 dbesc($check_date),
128                 dbesc($check_date),
129                 dbesc($sort)
130         );
131
132         // Will check further below if this actually returned results.
133         // We will provide an empty feed if that is the case.
134
135         $items = $r;
136
137         $feed_template = get_markup_template(($dfrn_id) ? 'atom_feed_dfrn.tpl' : 'atom_feed.tpl');
138
139         $atom = '';
140
141         $hubxml = feed_hublinks();
142
143         $salmon = feed_salmonlinks($owner_nick);
144
145         $atom .= replace_macros($feed_template, array(
146                 '$version'      => xmlify(FRIENDIKA_VERSION),
147                 '$feed_id'      => xmlify($a->get_baseurl() . '/profile/' . $owner_nick),
148                 '$feed_title'   => xmlify($owner['name']),
149                 '$feed_updated' => xmlify(datetime_convert('UTC', 'UTC', 'now' , ATOM_TIME)) ,
150                 '$hub'          => $hubxml,
151                 '$salmon'       => $salmon,
152                 '$name'         => xmlify($owner['name']),
153                 '$profile_page' => xmlify($owner['url']),
154                 '$photo'        => xmlify($owner['photo']),
155                 '$thumb'        => xmlify($owner['thumb']),
156                 '$picdate'      => xmlify(datetime_convert('UTC','UTC',$owner['avatar-date'] . '+00:00' , ATOM_TIME)) ,
157                 '$uridate'      => xmlify(datetime_convert('UTC','UTC',$owner['uri-date']    . '+00:00' , ATOM_TIME)) ,
158                 '$namdate'      => xmlify(datetime_convert('UTC','UTC',$owner['name-date']   . '+00:00' , ATOM_TIME)) , 
159                 '$birthday'     => ((strlen($birthday)) ? '<dfrn:birthday>' . xmlify($birthday) . '</dfrn:birthday>' : '')
160         ));
161
162         call_hooks('atom_feed', $atom);
163
164         if(! count($items)) {
165
166                 call_hooks('atom_feed_end', $atom);
167
168                 $atom .= '</feed>' . "\r\n";
169                 return $atom;
170         }
171
172         foreach($items as $item) {
173
174                 // public feeds get html, our own nodes use bbcode
175
176                 if($public_feed) {
177                         $type = 'html';
178                         // catch any email that's in a public conversation and make sure it doesn't leak
179                         if($item['private'])
180                                 continue;
181                 }
182                 else {
183                         $type = 'text';
184                 }
185
186                 $atom .= atom_entry($item,$type,null,$owner,true);
187         }
188
189         call_hooks('atom_feed_end', $atom);
190
191         $atom .= '</feed>' . "\r\n";
192
193         return $atom;
194 }
195
196
197 function construct_verb($item) {
198         if($item['verb'])
199                 return $item['verb'];
200         return ACTIVITY_POST;
201 }
202
203 function construct_activity_object($item) {
204
205         if($item['object']) {
206                 $o = '<as:object>' . "\r\n";
207                 $r = parse_xml_string($item['object'],false);
208
209
210                 if(! $r)
211                         return '';
212                 if($r->type)
213                         $o .= '<as:object-type>' . xmlify($r->type) . '</as:object-type>' . "\r\n";
214                 if($r->id)
215                         $o .= '<id>' . xmlify($r->id) . '</id>' . "\r\n";
216                 if($r->title)
217                         $o .= '<title>' . xmlify($r->title) . '</title>' . "\r\n";
218                 if($r->link) {
219                         if(substr($r->link,0,1) === '<') {
220                                 // patch up some facebook "like" activity objects that got stored incorrectly
221                                 // for a couple of months prior to 9-Jun-2011 and generated bad XML.
222                                 // we can probably remove this hack here and in the following function in a few months time.
223                                 if(strstr($r->link,'&') && (! strstr($r->link,'&amp;')))
224                                         $r->link = str_replace('&','&amp;', $r->link);
225                                 $r->link = preg_replace('/\<link(.*?)\"\>/','<link$1"/>',$r->link);
226                                 $o .= $r->link;
227                         }                                       
228                         else
229                                 $o .= '<link rel="alternate" type="text/html" href="' . xmlify($r->link) . '" />' . "\r\n";
230                 }
231                 if($r->content)
232                         $o .= '<content type="html" >' . xmlify(bbcode($r->content)) . '</content>' . "\r\n";
233                 $o .= '</as:object>' . "\r\n";
234                 return $o;
235         }
236
237         return '';
238
239
240 function construct_activity_target($item) {
241
242         if($item['target']) {
243                 $o = '<as:target>' . "\r\n";
244                 $r = parse_xml_string($item['target'],false);
245                 if(! $r)
246                         return '';
247                 if($r->type)
248                         $o .= '<as:object-type>' . xmlify($r->type) . '</as:object-type>' . "\r\n";
249                 if($r->id)
250                         $o .= '<id>' . xmlify($r->id) . '</id>' . "\r\n";
251                 if($r->title)
252                         $o .= '<title>' . xmlify($r->title) . '</title>' . "\r\n";
253                 if($r->link) {
254                         if(substr($r->link,0,1) === '<') {
255                                 if(strstr($r->link,'&') && (! strstr($r->link,'&amp;')))
256                                         $r->link = str_replace('&','&amp;', $r->link);
257                                 $r->link = preg_replace('/\<link(.*?)\"\>/','<link$1"/>',$r->link);
258                                 $o .= $r->link;
259                         }                                       
260                         else
261                                 $o .= '<link rel="alternate" type="text/html" href="' . xmlify($r->link) . '" />' . "\r\n";
262                 }
263                 if($r->content)
264                         $o .= '<content type="html" >' . xmlify(bbcode($r->content)) . '</content>' . "\r\n";
265                 $o .= '</as:target>' . "\r\n";
266                 return $o;
267         }
268
269         return '';
270
271
272
273
274
275 function get_atom_elements($feed,$item) {
276
277         require_once('library/HTMLPurifier.auto.php');
278         require_once('include/html2bbcode.php');
279
280         $best_photo = array();
281
282         $res = array();
283
284         $author = $item->get_author();
285         if($author) { 
286                 $res['author-name'] = unxmlify($author->get_name());
287                 $res['author-link'] = unxmlify($author->get_link());
288         }
289         else {
290                 $res['author-name'] = unxmlify($feed->get_title());
291                 $res['author-link'] = unxmlify($feed->get_permalink());
292         }
293         $res['uri'] = unxmlify($item->get_id());
294         $res['title'] = unxmlify($item->get_title());
295         $res['body'] = unxmlify($item->get_content());
296         $res['plink'] = unxmlify($item->get_link(0));
297
298         // look for a photo. We should check media size and find the best one,
299         // but for now let's just find any author photo
300
301         $rawauthor = $item->get_item_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'author');
302
303         if($rawauthor && $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) {
304                 $base = $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
305                 foreach($base as $link) {
306                         if(! $res['author-avatar']) {
307                                 if($link['attribs']['']['rel'] === 'photo' || $link['attribs']['']['rel'] === 'avatar')
308                                         $res['author-avatar'] = unxmlify($link['attribs']['']['href']);
309                         }
310                 }
311         }                       
312
313         $rawactor = $item->get_item_tags(NAMESPACE_ACTIVITY, 'actor');
314
315         if($rawactor && activity_match($rawactor[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'],ACTIVITY_OBJ_PERSON)) {
316                 $base = $rawactor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
317                 if($base && count($base)) {
318                         foreach($base as $link) {
319                                 if($link['attribs']['']['rel'] === 'alternate' && (! $res['author-link']))
320                                         $res['author-link'] = unxmlify($link['attribs']['']['href']);
321                                 if(! $res['author-avatar']) {
322                                         if($link['attribs']['']['rel'] === 'avatar' || $link['attribs']['']['rel'] === 'photo')
323                                                 $res['author-avatar'] = unxmlify($link['attribs']['']['href']);
324                                 }
325                         }
326                 }
327         }
328
329         // No photo/profile-link on the item - look at the feed level
330
331         if((! (x($res,'author-link'))) || (! (x($res,'author-avatar')))) {
332                 $rawauthor = $feed->get_feed_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'author');
333                 if($rawauthor && $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) {
334                         $base = $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
335                         foreach($base as $link) {
336                                 if($link['attribs']['']['rel'] === 'alternate' && (! $res['author-link']))
337                                         $res['author-link'] = unxmlify($link['attribs']['']['href']);
338                                 if(! $res['author-avatar']) {
339                                         if($link['attribs']['']['rel'] === 'photo' || $link['attribs']['']['rel'] === 'avatar')
340                                                 $res['author-avatar'] = unxmlify($link['attribs']['']['href']);
341                                 }
342                         }
343                 }                       
344
345                 $rawactor = $feed->get_feed_tags(NAMESPACE_ACTIVITY, 'subject');
346
347                 if($rawactor && activity_match($rawactor[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'],ACTIVITY_OBJ_PERSON)) {
348                         $base = $rawactor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
349
350                         if($base && count($base)) {
351                                 foreach($base as $link) {
352                                         if($link['attribs']['']['rel'] === 'alternate' && (! $res['author-link']))
353                                                 $res['author-link'] = unxmlify($link['attribs']['']['href']);
354                                         if(! (x($res,'author-avatar'))) {
355                                                 if($link['attribs']['']['rel'] === 'avatar' || $link['attribs']['']['rel'] === 'photo')
356                                                         $res['author-avatar'] = unxmlify($link['attribs']['']['href']);
357                                         }
358                                 }
359                         }
360                 }
361         }
362
363         $apps = $item->get_item_tags(NAMESPACE_STATUSNET,'notice_info');
364         if($apps && $apps[0]['attribs']['']['source']) {
365                 $res['app'] = strip_tags(unxmlify($apps[0]['attribs']['']['source']));
366                 if($res['app'] === 'web')
367                         $res['app'] = 'OStatus';
368         }                  
369
370         // base64 encoded json structure representing Diaspora signature
371
372         $dsig = $item->get_item_tags(NAMESPACE_DFRN,'diaspora_signature');
373         if($dsig) {
374                 $res['dsprsig'] = unxmlify($dsig[0]['data']);
375         }
376
377         $dguid = $item->get_item_tags(NAMESPACE_DFRN,'diaspora_guid');
378         if($dguid)
379                 $res['guid'] = unxmlify($dguid[0]['data']);
380
381         $bm = $item->get_item_tags(NAMESPACE_DFRN,'bookmark');
382         if($bm)
383                 $res['bookmark'] = ((unxmlify($bm[0]['data']) === 'true') ? 1 : 0);
384
385
386         /**
387          * If there's a copy of the body content which is guaranteed to have survived mangling in transit, use it.
388          */
389
390         $have_real_body = false;
391
392         $rawenv = $item->get_item_tags(NAMESPACE_DFRN, 'env');
393         if($rawenv) {
394                 $have_real_body = true;
395                 $res['body'] = $rawenv[0]['data'];
396                 $res['body'] = str_replace(array(' ',"\t","\r","\n"), array('','','',''),$res['body']);
397                 // make sure nobody is trying to sneak some html tags by us
398                 $res['body'] = notags(base64url_decode($res['body']));
399         }
400
401         $maxlen = get_max_import_size();
402         if($maxlen && (strlen($res['body']) > $maxlen))
403                 $res['body'] = substr($res['body'],0, $maxlen);
404
405         // It isn't certain at this point whether our content is plaintext or html and we'd be foolish to trust 
406         // the content type. Our own network only emits text normally, though it might have been converted to 
407         // html if we used a pubsubhubbub transport. But if we see even one html tag in our text, we will
408         // have to assume it is all html and needs to be purified.
409
410         // It doesn't matter all that much security wise - because before this content is used anywhere, we are 
411         // going to escape any tags we find regardless, but this lets us import a limited subset of html from 
412         // the wild, by sanitising it and converting supported tags to bbcode before we rip out any remaining 
413         // html.
414
415         if((strpos($res['body'],'<') !== false) || (strpos($res['body'],'>') !== false)) {
416
417                 $res['body'] = preg_replace('#<object[^>]+>.+?' . 'http://www.youtube.com/((?:v|cp)/[A-Za-z0-9\-_=]+).+?</object>#s',
418                         '[youtube]$1[/youtube]', $res['body']);
419
420                 $res['body'] = preg_replace('#<iframe[^>].+?' . 'http://www.youtube.com/embed/([A-Za-z0-9\-_=]+).+?</iframe>#s',
421                         '[youtube]$1[/youtube]', $res['body']);
422
423                 $res['body'] = oembed_html2bbcode($res['body']);
424
425                 $config = HTMLPurifier_Config::createDefault();
426                 $config->set('Cache.DefinitionImpl', null);
427
428                 // we shouldn't need a whitelist, because the bbcode converter
429                 // will strip out any unsupported tags.
430                 // $config->set('HTML.Allowed', 'p,b,a[href],i'); 
431
432                 $purifier = new HTMLPurifier($config);
433                 $res['body'] = $purifier->purify($res['body']);
434
435                 $res['body'] = html2bbcode($res['body']);
436         }
437
438         $allow = $item->get_item_tags(NAMESPACE_DFRN,'comment-allow');
439         if($allow && $allow[0]['data'] == 1)
440                 $res['last-child'] = 1;
441         else
442                 $res['last-child'] = 0;
443
444         $private = $item->get_item_tags(NAMESPACE_DFRN,'private');
445         if($private && $private[0]['data'] == 1)
446                 $res['private'] = 1;
447         else
448                 $res['private'] = 0;
449
450         $extid = $item->get_item_tags(NAMESPACE_DFRN,'extid');
451         if($extid && $extid[0]['data'])
452                 $res['extid'] = $extid[0]['data'];
453
454         $rawlocation = $item->get_item_tags(NAMESPACE_DFRN, 'location');
455         if($rawlocation)
456                 $res['location'] = unxmlify($rawlocation[0]['data']);
457
458
459         $rawcreated = $item->get_item_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'published');
460         if($rawcreated)
461                 $res['created'] = unxmlify($rawcreated[0]['data']);
462
463
464         $rawedited = $item->get_item_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'updated');
465         if($rawedited)
466                 $res['edited'] = unxmlify($rawedited[0]['data']);
467
468         if((x($res,'edited')) && (! (x($res,'created'))))
469                 $res['created'] = $res['edited']; 
470
471         if(! $res['created'])
472                 $res['created'] = $item->get_date('c');
473
474         if(! $res['edited'])
475                 $res['edited'] = $item->get_date('c');
476
477
478         // Disallow time travelling posts
479
480         $d1 = strtotime($res['created']);
481         $d2 = strtotime($res['edited']);
482         $d3 = strtotime('now');
483
484         if($d1 > $d3)
485                 $res['created'] = datetime_convert();
486         if($d2 > $d3)
487                 $res['edited'] = datetime_convert();
488
489         $rawowner = $item->get_item_tags(NAMESPACE_DFRN, 'owner');
490         if($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['name'][0]['data'])
491                 $res['owner-name'] = unxmlify($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['name'][0]['data']);
492         elseif($rawowner[0]['child'][NAMESPACE_DFRN]['name'][0]['data'])
493                 $res['owner-name'] = unxmlify($rawowner[0]['child'][NAMESPACE_DFRN]['name'][0]['data']);
494         if($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]['data'])
495                 $res['owner-link'] = unxmlify($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]['data']);
496         elseif($rawowner[0]['child'][NAMESPACE_DFRN]['uri'][0]['data'])
497                 $res['owner-link'] = unxmlify($rawowner[0]['child'][NAMESPACE_DFRN]['uri'][0]['data']);
498
499         if($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) {
500                 $base = $rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
501
502                 foreach($base as $link) {
503                         if(! $res['owner-avatar']) {
504                                 if($link['attribs']['']['rel'] === 'photo' || $link['attribs']['']['rel'] === 'avatar')                 
505                                         $res['owner-avatar'] = unxmlify($link['attribs']['']['href']);
506                         }
507                 }
508         }
509
510         $rawgeo = $item->get_item_tags(NAMESPACE_GEORSS,'point');
511         if($rawgeo)
512                 $res['coord'] = unxmlify($rawgeo[0]['data']);
513
514
515         $rawverb = $item->get_item_tags(NAMESPACE_ACTIVITY, 'verb');
516
517         // select between supported verbs
518
519         if($rawverb) {
520                 $res['verb'] = unxmlify($rawverb[0]['data']);
521         }
522
523         // translate OStatus unfollow to activity streams if it happened to get selected
524                 
525         if((x($res,'verb')) && ($res['verb'] === 'http://ostatus.org/schema/1.0/unfollow'))
526                 $res['verb'] = ACTIVITY_UNFOLLOW;
527
528         $cats = $item->get_categories();
529         if($cats) {
530                 $tag_arr = array();
531                 foreach($cats as $cat) {
532                         $term = $cat->get_term();
533                         if(! $term)
534                                 $term = $cat->get_label();
535                         $scheme = $cat->get_scheme();
536                         if($scheme && $term && stristr($scheme,'X-DFRN:'))
537                                 $tag_arr[] = substr($scheme,7,1) . '[url=' . unxmlify(substr($scheme,9)) . ']' . unxmlify($term) . '[/url]';
538                         elseif($term)
539                                 $tag_arr[] = notags(trim($term));
540                 }
541                 $res['tag'] =  implode(',', $tag_arr);
542         }
543
544         $attach = $item->get_enclosures();
545         if($attach) {
546                 $att_arr = array();
547                 foreach($attach as $att) {
548                         $len   = intval($att->get_length());
549                         $link  = str_replace(array(',','"'),array('%2D','%22'),notags(trim(unxmlify($att->get_link()))));
550                         $title = str_replace(array(',','"'),array('%2D','%22'),notags(trim(unxmlify($att->get_title()))));
551                         $type  = str_replace(array(',','"'),array('%2D','%22'),notags(trim(unxmlify($att->get_type()))));
552                         if(strpos($type,';'))
553                                 $type = substr($type,0,strpos($type,';'));
554                         if((! $link) || (strpos($link,'http') !== 0))
555                                 continue;
556
557                         if(! $title)
558                                 $title = ' ';
559                         if(! $type)
560                                 $type = 'application/octet-stream';
561
562                         $att_arr[] = '[attach]href="' . $link . '" length="' . $len . '" type="' . $type . '" title="' . $title . '"[/attach]'; 
563                 }
564                 $res['attach'] = implode(',', $att_arr);
565         }
566
567         $rawobj = $item->get_item_tags(NAMESPACE_ACTIVITY, 'object');
568
569         if($rawobj) {
570                 $res['object'] = '<object>' . "\n";
571                 if($rawobj[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data']) {
572                         $res['object-type'] = $rawobj[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'];
573                         $res['object'] .= '<type>' . $rawobj[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'] . '</type>' . "\n";
574                 }       
575                 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'])
576                         $res['object'] .= '<id>' . $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'] . '</id>' . "\n";
577                 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'])
578                         $res['object'] .= '<link>' . encode_rel_links($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) . '</link>' . "\n";
579                 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'])
580                         $res['object'] .= '<title>' . $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'] . '</title>' . "\n";
581                 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data']) {
582                         $body = $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data'];
583                         if(! $body)
584                                 $body = $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['summary'][0]['data'];
585                         // preserve a copy of the original body content in case we later need to parse out any microformat information, e.g. events
586                         $res['object'] .= '<orig>' . xmlify($body) . '</orig>' . "\n";
587                         if((strpos($body,'<') !== false) || (strpos($body,'>') !== false)) {
588
589                                 $body = preg_replace('#<object[^>]+>.+?' . 'http://www.youtube.com/((?:v|cp)/[A-Za-z0-9\-_=]+).+?</object>#s',
590                                         '[youtube]$1[/youtube]', $body);
591
592                 $res['body'] = preg_replace('#<iframe[^>].+?' . 'http://www.youtube.com/embed/([A-Za-z0-9\-_=]+).+?</iframe>#s',
593                         '[youtube]$1[/youtube]', $res['body']);
594
595
596                                 $config = HTMLPurifier_Config::createDefault();
597                                 $config->set('Cache.DefinitionImpl', null);
598
599                                 $purifier = new HTMLPurifier($config);
600                                 $body = $purifier->purify($body);
601                                 $body = html2bbcode($body);
602                         }
603
604                         $res['object'] .= '<content>' . $body . '</content>' . "\n";
605                 }
606
607                 $res['object'] .= '</object>' . "\n";
608         }
609
610         $rawobj = $item->get_item_tags(NAMESPACE_ACTIVITY, 'target');
611
612         if($rawobj) {
613                 $res['target'] = '<target>' . "\n";
614                 if($rawobj[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data']) {
615                         $res['target'] .= '<type>' . $rawobj[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'] . '</type>' . "\n";
616                 }       
617                 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'])
618                         $res['target'] .= '<id>' . $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'] . '</id>' . "\n";
619
620                 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'])
621                         $res['target'] .= '<link>' . encode_rel_links($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) . '</link>' . "\n";
622                 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'])
623                         $res['target'] .= '<title>' . $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'] . '</title>' . "\n";
624                 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data']) {
625                         $body = $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data'];
626                         if(! $body)
627                                 $body = $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['summary'][0]['data'];
628                         // preserve a copy of the original body content in case we later need to parse out any microformat information, e.g. events
629                         $res['object'] .= '<orig>' . xmlify($body) . '</orig>' . "\n";
630                         if((strpos($body,'<') !== false) || (strpos($body,'>') !== false)) {
631
632                                 $body = preg_replace('#<object[^>]+>.+?' . 'http://www.youtube.com/((?:v|cp)/[A-Za-z0-9\-_=]+).+?</object>#s',
633                                         '[youtube]$1[/youtube]', $body);
634
635                 $res['body'] = preg_replace('#<iframe[^>].+?' . 'http://www.youtube.com/embed/([A-Za-z0-9\-_=]+).+?</iframe>#s',
636                         '[youtube]$1[/youtube]', $res['body']);
637
638                                 $config = HTMLPurifier_Config::createDefault();
639                                 $config->set('Cache.DefinitionImpl', null);
640
641                                 $purifier = new HTMLPurifier($config);
642                                 $body = $purifier->purify($body);
643                                 $body = html2bbcode($body);
644                         }
645
646                         $res['target'] .= '<content>' . $body . '</content>' . "\n";
647                 }
648
649                 $res['target'] .= '</target>' . "\n";
650         }
651
652         $arr = array('feed' => $feed, 'item' => $item, 'result' => $res);
653
654         call_hooks('parse_atom', $arr);
655
656         return $res;
657 }
658
659 function encode_rel_links($links) {
660         $o = '';
661         if(! ((is_array($links)) && (count($links))))
662                 return $o;
663         foreach($links as $link) {
664                 $o .= '<link ';
665                 if($link['attribs']['']['rel'])
666                         $o .= 'rel="' . $link['attribs']['']['rel'] . '" ';
667                 if($link['attribs']['']['type'])
668                         $o .= 'type="' . $link['attribs']['']['type'] . '" ';
669                 if($link['attribs']['']['href'])
670                         $o .= 'href="' . $link['attribs']['']['href'] . '" ';
671                 if( (x($link['attribs'],NAMESPACE_MEDIA)) && $link['attribs'][NAMESPACE_MEDIA]['width'])
672                         $o .= 'media:width="' . $link['attribs'][NAMESPACE_MEDIA]['width'] . '" ';
673                 if( (x($link['attribs'],NAMESPACE_MEDIA)) && $link['attribs'][NAMESPACE_MEDIA]['height'])
674                         $o .= 'media:height="' . $link['attribs'][NAMESPACE_MEDIA]['height'] . '" ';
675                 $o .= ' />' . "\n" ;
676         }
677         return xmlify($o);
678 }
679
680 function item_store($arr,$force_parent = false) {
681
682         // If a Diaspora signature structure was passed in, pull it out of the 
683         // item array and set it aside for later storage.
684
685         $dsprsig = null;
686         if(x($arr,'dsprsig')) {
687                 $dsprsig = json_decode(base64_decode($arr['dsprsig']));
688                 unset($arr['dsprsig']);
689         }
690
691         if($arr['gravity'])
692                 $arr['gravity'] = intval($arr['gravity']);
693         elseif($arr['parent-uri'] == $arr['uri'])
694                 $arr['gravity'] = 0;
695         elseif(activity_match($arr['verb'],ACTIVITY_POST))
696                 $arr['gravity'] = 6;
697         else      
698                 $arr['gravity'] = 6;   // extensible catchall
699
700         if(! x($arr,'type'))
701                 $arr['type']      = 'remote';
702
703         // Shouldn't happen but we want to make absolutely sure it doesn't leak from a plugin.
704
705         if((strpos($arr['body'],'<') !== false) || (strpos($arr['body'],'>') !== false)) 
706                 $arr['body'] = strip_tags($arr['body']);
707
708
709         $arr['wall']          = ((x($arr,'wall'))          ? intval($arr['wall'])                : 0);
710         $arr['uri']           = ((x($arr,'uri'))           ? notags(trim($arr['uri']))           : random_string());
711         $arr['extid']         = ((x($arr,'extid'))         ? notags(trim($arr['extid']))         : '');
712         $arr['author-name']   = ((x($arr,'author-name'))   ? notags(trim($arr['author-name']))   : '');
713         $arr['author-link']   = ((x($arr,'author-link'))   ? notags(trim($arr['author-link']))   : '');
714         $arr['author-avatar'] = ((x($arr,'author-avatar')) ? notags(trim($arr['author-avatar'])) : '');
715         $arr['owner-name']    = ((x($arr,'owner-name'))    ? notags(trim($arr['owner-name']))    : '');
716         $arr['owner-link']    = ((x($arr,'owner-link'))    ? notags(trim($arr['owner-link']))    : '');
717         $arr['owner-avatar']  = ((x($arr,'owner-avatar'))  ? notags(trim($arr['owner-avatar']))  : '');
718         $arr['created']       = ((x($arr,'created') !== false) ? datetime_convert('UTC','UTC',$arr['created']) : datetime_convert());
719         $arr['edited']        = ((x($arr,'edited')  !== false) ? datetime_convert('UTC','UTC',$arr['edited'])  : datetime_convert());
720         $arr['commented']     = datetime_convert();
721         $arr['received']      = datetime_convert();
722         $arr['changed']       = datetime_convert();
723         $arr['title']         = ((x($arr,'title'))         ? notags(trim($arr['title']))         : '');
724         $arr['location']      = ((x($arr,'location'))      ? notags(trim($arr['location']))      : '');
725         $arr['coord']         = ((x($arr,'coord'))         ? notags(trim($arr['coord']))         : '');
726         $arr['last-child']    = ((x($arr,'last-child'))    ? intval($arr['last-child'])          : 0 );
727         $arr['visible']       = ((x($arr,'visible') !== false) ? intval($arr['visible'])         : 1 );
728         $arr['deleted']       = 0;
729         $arr['parent-uri']    = ((x($arr,'parent-uri'))    ? notags(trim($arr['parent-uri']))    : '');
730         $arr['verb']          = ((x($arr,'verb'))          ? notags(trim($arr['verb']))          : '');
731         $arr['object-type']   = ((x($arr,'object-type'))   ? notags(trim($arr['object-type']))   : '');
732         $arr['object']        = ((x($arr,'object'))        ? trim($arr['object'])                : '');
733         $arr['target-type']   = ((x($arr,'target-type'))   ? notags(trim($arr['target-type']))   : '');
734         $arr['target']        = ((x($arr,'target'))        ? trim($arr['target'])                : '');
735         $arr['plink']         = ((x($arr,'plink'))         ? notags(trim($arr['plink']))         : '');
736         $arr['allow_cid']     = ((x($arr,'allow_cid'))     ? trim($arr['allow_cid'])             : '');
737         $arr['allow_gid']     = ((x($arr,'allow_gid'))     ? trim($arr['allow_gid'])             : '');
738         $arr['deny_cid']      = ((x($arr,'deny_cid'))      ? trim($arr['deny_cid'])              : '');
739         $arr['deny_gid']      = ((x($arr,'deny_gid'))      ? trim($arr['deny_gid'])              : '');
740         $arr['private']       = ((x($arr,'private'))       ? intval($arr['private'])             : 0 );
741         $arr['bookmark']      = ((x($arr,'bookmark'))      ? intval($arr['bookmark'])            : 0 );
742         $arr['body']          = ((x($arr,'body'))          ? trim($arr['body'])                  : '');
743         $arr['tag']           = ((x($arr,'tag'))           ? notags(trim($arr['tag']))           : '');
744         $arr['attach']        = ((x($arr,'attach'))        ? notags(trim($arr['attach']))        : '');
745         $arr['app']           = ((x($arr,'app'))           ? notags(trim($arr['app']))           : '');
746         $arr['guid']          = ((x($arr,'guid'))          ? notags(trim($arr['guid']))          : get_guid());
747
748         if($arr['parent-uri'] === $arr['uri']) {
749                 $parent_id = 0;
750                 $allow_cid = $arr['allow_cid'];
751                 $allow_gid = $arr['allow_gid'];
752                 $deny_cid  = $arr['deny_cid'];
753                 $deny_gid  = $arr['deny_gid'];
754         }
755         else { 
756
757                 // find the parent and snarf the item id and ACL's
758                 // and anything else we need to inherit
759
760                 $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
761                         dbesc($arr['parent-uri']),
762                         intval($arr['uid'])
763                 );
764
765                 if(count($r)) {
766
767                         // is the new message multi-level threaded?
768                         // even though we don't support it now, preserve the info
769                         // and re-attach to the conversation parent.
770
771                         if($r[0]['uri'] != $r[0]['parent-uri']) {
772                                 $arr['thr-parent'] = $arr['parent-uri'];
773                                 $arr['parent-uri'] = $r[0]['parent-uri'];
774                                 $z = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `parent-uri` = '%s' AND `uid` = %d LIMIT 1",
775                                         dbesc($r[0]['parent-uri']),
776                                         dbesc($r[0]['parent-uri']),
777                                         intval($arr['uid'])
778                                 );
779                                 if($z && count($z))
780                                         $r = $z;
781                         }
782
783                         $parent_id      = $r[0]['id'];
784                         $parent_deleted = $r[0]['deleted'];
785                         $allow_cid      = $r[0]['allow_cid'];
786                         $allow_gid      = $r[0]['allow_gid'];
787                         $deny_cid       = $r[0]['deny_cid'];
788                         $deny_gid       = $r[0]['deny_gid'];
789                         $arr['wall']    = $r[0]['wall'];
790                 }
791                 else {
792
793                         // Allow one to see reply tweets from status.net even when
794                         // we don't have or can't see the original post.
795
796                         if($force_parent) {
797                                 logger('item_store: $force_parent=true, reply converted to top-level post.');
798                                 $parent_id = 0;
799                                 $arr['thr-parent'] = $arr['parent-uri'];
800                                 $arr['parent-uri'] = $arr['uri'];
801                                 $arr['gravity'] = 0;
802                         }
803                         else {
804                                 logger('item_store: item parent was not found - ignoring item');
805                                 return 0;
806                         }
807                 }
808         }
809
810
811         call_hooks('post_remote',$arr);
812
813         dbesc_array($arr);
814
815         logger('item_store: ' . print_r($arr,true), LOGGER_DATA);
816
817         $r = dbq("INSERT INTO `item` (`" 
818                         . implode("`, `", array_keys($arr)) 
819                         . "`) VALUES ('" 
820                         . implode("', '", array_values($arr)) 
821                         . "')" );
822
823         // find the item we just created
824
825         $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
826                 $arr['uri'],           // already dbesc'd
827                 intval($arr['uid'])
828         );
829         if(! count($r)) {
830                 // This is not good, but perhaps we encountered a rare race/cache condition, so back off and try again. 
831                 sleep(3);
832                 $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
833                         $arr['uri'],           // already dbesc'd
834                         intval($arr['uid'])
835                 );
836         }
837
838         if(count($r)) {
839                 $current_post = $r[0]['id'];
840                 logger('item_store: created item ' . $current_post);
841         }
842         else {
843                 logger('item_store: could not locate created item');
844                 return 0;
845         }
846
847         if((! $parent_id) || ($arr['parent-uri'] === $arr['uri']))      
848                 $parent_id = $current_post;
849
850         if(strlen($allow_cid) || strlen($allow_gid) || strlen($deny_cid) || strlen($deny_gid))
851                 $private = 1;
852         else
853                 $private = $arr['private']; 
854
855         // Set parent id - and also make sure to inherit the parent's ACL's.
856
857         $r = q("UPDATE `item` SET `parent` = %d, `allow_cid` = '%s', `allow_gid` = '%s',
858                 `deny_cid` = '%s', `deny_gid` = '%s', `private` = %d, `deleted` = %d WHERE `id` = %d LIMIT 1",
859                 intval($parent_id),
860                 dbesc($allow_cid),
861                 dbesc($allow_gid),
862                 dbesc($deny_cid),
863                 dbesc($deny_gid),
864                 intval($private),
865                 intval($parent_deleted),
866                 intval($current_post)
867         );
868
869         // update the commented timestamp on the parent
870
871         q("UPDATE `item` set `commented` = '%s', `changed` = '%s' WHERE `id` = %d LIMIT 1",
872                 dbesc(datetime_convert()),
873                 dbesc(datetime_convert()),
874                 intval($parent_id)
875         );
876
877         if($dsprsig) {
878                 q("insert into sign (`iid`,`signed_text`,`signature`,`signer`) values (%d,'%s','%s','%s') ",
879                         intval($current_post),
880                         dbesc($dsprsig->signed_text),
881                         dbesc($dsprsig->signature),
882                         dbesc($dsprsig->signer)
883                 );
884         }
885
886
887         /**
888          * If this is now the last-child, force all _other_ children of this parent to *not* be last-child
889          */
890
891         if($arr['last-child']) {
892                 $r = q("UPDATE `item` SET `last-child` = 0 WHERE `parent-uri` = '%s' AND `uid` = %d AND `id` != %d",
893                         dbesc($arr['uri']),
894                         intval($arr['uid']),
895                         intval($current_post)
896                 );
897         }
898
899         return $current_post;
900 }
901
902 function get_item_contact($item,$contacts) {
903         if(! count($contacts) || (! is_array($item)))
904                 return false;
905         foreach($contacts as $contact) {
906                 if($contact['id'] == $item['contact-id']) {
907                         return $contact;
908                         break; // NOTREACHED
909                 }
910         }
911         return false;
912 }
913
914
915 function dfrn_deliver($owner,$contact,$atom, $dissolve = false) {
916
917         $a = get_app();
918
919         if((! strlen($contact['issued-id'])) && (! $contact['duplex']) && (! ($owner['page-flags'] == PAGE_COMMUNITY)))
920                 return 3;
921
922         $idtosend = $orig_id = (($contact['dfrn-id']) ? $contact['dfrn-id'] : $contact['issued-id']);
923
924         if($contact['duplex'] && $contact['dfrn-id'])
925                 $idtosend = '0:' . $orig_id;
926         if($contact['duplex'] && $contact['issued-id'])
927                 $idtosend = '1:' . $orig_id;            
928
929         $rino = ((function_exists('mcrypt_encrypt')) ? 1 : 0);
930
931         $rino_enable = get_config('system','rino_encrypt');
932
933         if(! $rino_enable)
934                 $rino = 0;
935
936         $url = $contact['notify'] . '&dfrn_id=' . $idtosend . '&dfrn_version=' . DFRN_PROTOCOL_VERSION . (($rino) ? '&rino=1' : '');
937
938         logger('dfrn_deliver: ' . $url);
939
940         $xml = fetch_url($url);
941
942         $curl_stat = $a->get_curl_code();
943         if(! $curl_stat)
944                 return(-1); // timed out
945
946         logger('dfrn_deliver: ' . $xml, LOGGER_DATA);
947
948         if(! $xml)
949                 return 3;
950
951         if(strpos($xml,'<?xml') === false) {
952                 logger('dfrn_deliver: no valid XML returned');
953                 logger('dfrn_deliver: returned XML: ' . $xml, LOGGER_DATA);
954                 return 3;
955         }
956
957         $res = parse_xml_string($xml);
958
959         if((intval($res->status) != 0) || (! strlen($res->challenge)) || (! strlen($res->dfrn_id)))
960                 return (($res->status) ? $res->status : 3);
961
962         $postvars     = array();
963         $sent_dfrn_id = hex2bin((string) $res->dfrn_id);
964         $challenge    = hex2bin((string) $res->challenge);
965         $dfrn_version = (float) (($res->dfrn_version) ? $res->dfrn_version : 2.0);
966         $rino_allowed = ((intval($res->rino) === 1) ? 1 : 0);
967
968         $final_dfrn_id = '';
969
970
971         if(($contact['duplex'] && strlen($contact['pubkey'])) || ($owner['page-flags'] == PAGE_COMMUNITY)) {
972                 openssl_public_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['pubkey']);
973                 openssl_public_decrypt($challenge,$postvars['challenge'],$contact['pubkey']);
974         }
975         else {
976                 openssl_private_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['prvkey']);
977                 openssl_private_decrypt($challenge,$postvars['challenge'],$contact['prvkey']);
978         }
979
980         $final_dfrn_id = substr($final_dfrn_id, 0, strpos($final_dfrn_id, '.'));
981
982         if(strpos($final_dfrn_id,':') == 1)
983                 $final_dfrn_id = substr($final_dfrn_id,2);
984
985         if($final_dfrn_id != $orig_id) {
986                 logger('dfrn_deliver: wrong dfrn_id.');
987                 // did not decode properly - cannot trust this site 
988                 return 3;
989         }
990
991         $postvars['dfrn_id']      = $idtosend;
992         $postvars['dfrn_version'] = DFRN_PROTOCOL_VERSION;
993         if($dissolve)
994                 $postvars['dissolve'] = '1';
995
996
997         if((($contact['rel']) && ($contact['rel'] != CONTACT_IS_SHARING) && (! $contact['blocked'])) || ($owner['page-flags'] == PAGE_COMMUNITY)) {
998                 $postvars['data'] = $atom;
999                 $postvars['perm'] = 'rw';
1000         }
1001         else {
1002                 $postvars['data'] = str_replace('<dfrn:comment-allow>1','<dfrn:comment-allow>0',$atom);
1003                 $postvars['perm'] = 'r';
1004         }
1005
1006         if($rino && $rino_allowed && (! $dissolve)) {
1007                 $key = substr(random_string(),0,16);
1008                 $data = bin2hex(aes_encrypt($postvars['data'],$key));
1009                 $postvars['data'] = $data;
1010                 logger('rino: sent key = ' . $key, LOGGER_DEBUG);       
1011
1012
1013                 if($dfrn_version >= 2.1) {      
1014                         if(($contact['duplex'] && strlen($contact['pubkey'])) || ($owner['page-flags'] == PAGE_COMMUNITY)) {
1015                                 openssl_public_encrypt($key,$postvars['key'],$contact['pubkey']);
1016                         }
1017                         else {
1018                                 openssl_private_encrypt($key,$postvars['key'],$contact['prvkey']);
1019                         }
1020                 }
1021                 else {
1022                         if(($contact['duplex'] && strlen($contact['prvkey'])) || ($owner['page-flags'] == PAGE_COMMUNITY)) {
1023                                 openssl_private_encrypt($key,$postvars['key'],$contact['prvkey']);
1024                         }
1025                         else {
1026                                 openssl_public_encrypt($key,$postvars['key'],$contact['pubkey']);
1027                         }
1028                 }
1029
1030                 logger('md5 rawkey ' . md5($postvars['key']));
1031
1032                 $postvars['key'] = bin2hex($postvars['key']);
1033         }
1034
1035         logger('dfrn_deliver: ' . "SENDING: " . print_r($postvars,true), LOGGER_DATA);
1036
1037         $xml = post_url($contact['notify'],$postvars);
1038
1039         logger('dfrn_deliver: ' . "RECEIVED: " . $xml, LOGGER_DATA);
1040
1041         $curl_stat = $a->get_curl_code();
1042         if((! $curl_stat) || (! strlen($xml)))
1043                 return(-1); // timed out
1044
1045         if(strpos($xml,'<?xml') === false) {
1046                 logger('dfrn_deliver: phase 2: no valid XML returned');
1047                 logger('dfrn_deliver: phase 2: returned XML: ' . $xml, LOGGER_DATA);
1048                 return 3;
1049         }
1050
1051         $res = parse_xml_string($xml);
1052
1053         return $res->status; 
1054 }
1055
1056
1057 /**
1058  *
1059  * consume_feed - process atom feed and update anything/everything we might need to update
1060  *
1061  * $xml = the (atom) feed to consume - RSS isn't as fully supported but may work for simple feeds.
1062  *
1063  * $importer = the contact_record (joined to user_record) of the local user who owns this relationship.
1064  *             It is this person's stuff that is going to be updated.
1065  * $contact =  the person who is sending us stuff. If not set, we MAY be processing a "follow" activity
1066  *             from an external network and MAY create an appropriate contact record. Otherwise, we MUST 
1067  *             have a contact record.
1068  * $hub = should we find a hub declation in the feed, pass it back to our calling process, who might (or 
1069  *        might not) try and subscribe to it.
1070  *
1071  */
1072
1073 function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $secure_feed = false) {
1074
1075         require_once('library/simplepie/simplepie.inc');
1076
1077         if(! strlen($xml)) {
1078                 logger('consume_feed: empty input');
1079                 return;
1080         }
1081                 
1082         $feed = new SimplePie();
1083         $feed->set_raw_data($xml);
1084         if($datedir)
1085                 $feed->enable_order_by_date(true);
1086         else
1087                 $feed->enable_order_by_date(false);
1088         $feed->init();
1089
1090         if($feed->error())
1091                 logger('consume_feed: Error parsing XML: ' . $feed->error());
1092
1093         $permalink = $feed->get_permalink();
1094
1095         // Check at the feed level for updated contact name and/or photo
1096
1097         $name_updated  = '';
1098         $new_name = '';
1099         $photo_timestamp = '';
1100         $photo_url = '';
1101         $birthday = '';
1102
1103         $hubs = $feed->get_links('hub');
1104
1105         if(count($hubs))
1106                 $hub = implode(',', $hubs);
1107
1108         $rawtags = $feed->get_feed_tags( NAMESPACE_DFRN, 'owner');
1109         if(! $rawtags)
1110                 $rawtags = $feed->get_feed_tags( SIMPLEPIE_NAMESPACE_ATOM_10, 'author');
1111         if($rawtags) {
1112                 $elems = $rawtags[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10];
1113                 if($elems['name'][0]['attribs'][NAMESPACE_DFRN]['updated']) {
1114                         $name_updated = $elems['name'][0]['attribs'][NAMESPACE_DFRN]['updated'];
1115                         $new_name = $elems['name'][0]['data'];
1116                 } 
1117                 if((x($elems,'link')) && ($elems['link'][0]['attribs']['']['rel'] === 'photo') && ($elems['link'][0]['attribs'][NAMESPACE_DFRN]['updated'])) {
1118                         $photo_timestamp = datetime_convert('UTC','UTC',$elems['link'][0]['attribs'][NAMESPACE_DFRN]['updated']);
1119                         $photo_url = $elems['link'][0]['attribs']['']['href'];
1120                 }
1121
1122                 if((x($rawtags[0]['child'], NAMESPACE_DFRN)) && (x($rawtags[0]['child'][NAMESPACE_DFRN],'birthday'))) {
1123                         $birthday = datetime_convert('UTC','UTC', $rawtags[0]['child'][NAMESPACE_DFRN]['birthday'][0]['data']);
1124                 }
1125         }
1126
1127         if((is_array($contact)) && ($photo_timestamp) && (strlen($photo_url)) && ($photo_timestamp > $contact['avatar-date'])) {
1128                 logger('consume_feed: Updating photo for ' . $contact['name']);
1129                 require_once("Photo.php");
1130                 $photo_failure = false;
1131                 $have_photo = false;
1132
1133                 $r = q("SELECT `resource-id` FROM `photo` WHERE `contact-id` = %d AND `uid` = %d LIMIT 1",
1134                         intval($contact['id']),
1135                         intval($contact['uid'])
1136                 );
1137                 if(count($r)) {
1138                         $resource_id = $r[0]['resource-id'];
1139                         $have_photo = true;
1140                 }
1141                 else {
1142                         $resource_id = photo_new_resource();
1143                 }
1144                         
1145                 $img_str = fetch_url($photo_url,true);
1146                 $img = new Photo($img_str);
1147                 if($img->is_valid()) {
1148                         if($have_photo) {
1149                                 q("DELETE FROM `photo` WHERE `resource-id` = '%s' AND `contact-id` = %d AND `uid` = %d",
1150                                         dbesc($resource_id),
1151                                         intval($contact['id']),
1152                                         intval($contact['uid'])
1153                                 );
1154                         }
1155                                 
1156                         $img->scaleImageSquare(175);
1157                                 
1158                         $hash = $resource_id;
1159                         $r = $img->store($contact['uid'], $contact['id'], $hash, basename($photo_url), 'Contact Photos', 4);
1160                                 
1161                         $img->scaleImage(80);
1162                         $r = $img->store($contact['uid'], $contact['id'], $hash, basename($photo_url), 'Contact Photos', 5);
1163
1164                         $img->scaleImage(48);
1165                         $r = $img->store($contact['uid'], $contact['id'], $hash, basename($photo_url), 'Contact Photos', 6);
1166
1167                         $a = get_app();
1168
1169                         q("UPDATE `contact` SET `avatar-date` = '%s', `photo` = '%s', `thumb` = '%s', `micro` = '%s'  
1170                                 WHERE `uid` = %d AND `id` = %d LIMIT 1",
1171                                 dbesc(datetime_convert()),
1172                                 dbesc($a->get_baseurl() . '/photo/' . $hash . '-4.jpg'),
1173                                 dbesc($a->get_baseurl() . '/photo/' . $hash . '-5.jpg'),
1174                                 dbesc($a->get_baseurl() . '/photo/' . $hash . '-6.jpg'),
1175                                 intval($contact['uid']),
1176                                 intval($contact['id'])
1177                         );
1178                 }
1179         }
1180
1181         if((is_array($contact)) && ($name_updated) && (strlen($new_name)) && ($name_updated > $contact['name-date'])) {
1182                 q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s' WHERE `uid` = %d AND `id` = %d LIMIT 1",
1183                         dbesc(notags(trim($new_name))),
1184                         dbesc(datetime_convert()),
1185                         intval($contact['uid']),
1186                         intval($contact['id'])
1187                 );
1188         }
1189
1190         if(strlen($birthday)) {
1191                 if(substr($birthday,0,4) != $contact['bdyear']) {
1192                         logger('consume_feed: updating birthday: ' . $birthday);
1193
1194                         /**
1195                          *
1196                          * Add new birthday event for this person
1197                          *
1198                          * $bdtext is just a readable placeholder in case the event is shared
1199                          * with others. We will replace it during presentation to our $importer
1200                          * to contain a sparkle link and perhaps a photo. 
1201                          *
1202                          */
1203                          
1204                         $bdtext = t('Birthday:') . ' [url=' . $contact['url'] . ']' . $contact['name'] . '[/url]' ;
1205
1206
1207                         $r = q("INSERT INTO `event` (`uid`,`cid`,`created`,`edited`,`start`,`finish`,`desc`,`type`)
1208                                 VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s' ) ",
1209                                 intval($contact['uid']),
1210                                 intval($contact['id']),
1211                                 dbesc(datetime_convert()),
1212                                 dbesc(datetime_convert()),
1213                                 dbesc(datetime_convert('UTC','UTC', $birthday)),
1214                                 dbesc(datetime_convert('UTC','UTC', $birthday . ' + 1 day ')),
1215                                 dbesc($bdtext),
1216                                 dbesc('birthday')
1217                         );
1218                         
1219
1220                         // update bdyear
1221
1222                         q("UPDATE `contact` SET `bdyear` = '%s' WHERE `uid` = %d AND `id` = %d LIMIT 1",
1223                                 dbesc(substr($birthday,0,4)),
1224                                 intval($contact['uid']),
1225                                 intval($contact['id'])
1226                         );
1227
1228                         // This function is called twice without reloading the contact
1229                         // Make sure we only create one event. This is why &$contact 
1230                         // is a reference var in this function
1231
1232                         $contact['bdyear'] = substr($birthday,0,4);
1233                 }
1234
1235         }
1236
1237
1238         // process any deleted entries
1239
1240         $del_entries = $feed->get_feed_tags(NAMESPACE_TOMB, 'deleted-entry');
1241         if(is_array($del_entries) && count($del_entries)) {
1242                 foreach($del_entries as $dentry) {
1243                         $deleted = false;
1244                         if(isset($dentry['attribs']['']['ref'])) {
1245                                 $uri = $dentry['attribs']['']['ref'];
1246                                 $deleted = true;
1247                                 if(isset($dentry['attribs']['']['when'])) {
1248                                         $when = $dentry['attribs']['']['when'];
1249                                         $when = datetime_convert('UTC','UTC', $when, 'Y-m-d H:i:s');
1250                                 }
1251                                 else
1252                                         $when = datetime_convert('UTC','UTC','now','Y-m-d H:i:s');
1253                         }
1254                         if($deleted && is_array($contact)) {
1255                                 $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d AND `contact-id` = %d LIMIT 1",
1256                                         dbesc($uri),
1257                                         intval($importer['uid']),
1258                                         intval($contact['id'])
1259                                 );
1260                                 if(count($r)) {
1261                                         $item = $r[0];
1262
1263                                         if(! $item['deleted'])
1264                                                 logger('consume_feed: deleting item ' . $item['id'] . ' uri=' . $item['uri'], LOGGER_DEBUG);
1265
1266                                         if($item['uri'] == $item['parent-uri']) {
1267                                                 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s',
1268                                                         `body` = '', `title` = ''
1269                                                         WHERE `parent-uri` = '%s' AND `uid` = %d",
1270                                                         dbesc($when),
1271                                                         dbesc(datetime_convert()),
1272                                                         dbesc($item['uri']),
1273                                                         intval($importer['uid'])
1274                                                 );
1275                                         }
1276                                         else {
1277                                                 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s',
1278                                                         `body` = '', `title` = '' 
1279                                                         WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1280                                                         dbesc($when),
1281                                                         dbesc(datetime_convert()),
1282                                                         dbesc($uri),
1283                                                         intval($importer['uid'])
1284                                                 );
1285                                                 if($item['last-child']) {
1286                                                         // ensure that last-child is set in case the comment that had it just got wiped.
1287                                                         q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d ",
1288                                                                 dbesc(datetime_convert()),
1289                                                                 dbesc($item['parent-uri']),
1290                                                                 intval($item['uid'])
1291                                                         );
1292                                                         // who is the last child now? 
1293                                                         $r = q("SELECT `id` FROM `item` WHERE `parent-uri` = '%s' AND `type` != 'activity' AND `deleted` = 0 AND `uid` = %d 
1294                                                                 ORDER BY `created` DESC LIMIT 1",
1295                                                                         dbesc($item['parent-uri']),
1296                                                                         intval($importer['uid'])
1297                                                         );
1298                                                         if(count($r)) {
1299                                                                 q("UPDATE `item` SET `last-child` = 1 WHERE `id` = %d LIMIT 1",
1300                                                                         intval($r[0]['id'])
1301                                                                 );
1302                                                         }
1303                                                 }       
1304                                         }
1305                                 }       
1306                         }
1307                 }
1308         }
1309
1310         // Now process the feed
1311
1312         if($feed->get_item_quantity()) {                
1313
1314                 logger('consume_feed: feed item count = ' . $feed->get_item_quantity());
1315
1316         // in inverse date order
1317                 if ($datedir)
1318                         $items = array_reverse($feed->get_items());
1319                 else
1320                         $items = $feed->get_items();
1321
1322
1323                 foreach($items as $item) {
1324
1325                         $is_reply = false;              
1326                         $item_id = $item->get_id();
1327                         $rawthread = $item->get_item_tags( NAMESPACE_THREAD,'in-reply-to');
1328                         if(isset($rawthread[0]['attribs']['']['ref'])) {
1329                                 $is_reply = true;
1330                                 $parent_uri = $rawthread[0]['attribs']['']['ref'];
1331                         }
1332
1333                         if(($is_reply) && is_array($contact)) {
1334
1335                                 // Have we seen it? If not, import it.
1336         
1337                                 $item_id  = $item->get_id();
1338                                 $datarray = get_atom_elements($feed,$item);
1339
1340                                 if(! x($datarray,'author-name'))
1341                                         $datarray['author-name'] = $contact['name'];
1342                                 if(! x($datarray,'author-link'))
1343                                         $datarray['author-link'] = $contact['url'];
1344                                 if(! x($datarray,'author-avatar'))
1345                                         $datarray['author-avatar'] = $contact['thumb'];
1346
1347
1348                                 $r = q("SELECT `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1349                                         dbesc($item_id),
1350                                         intval($importer['uid'])
1351                                 );
1352
1353                                 // Update content if 'updated' changes
1354
1355                                 if(count($r)) {
1356                                         if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) {  
1357                                                 $r = q("UPDATE `item` SET `body` = '%s', `edited` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1358                                                         dbesc($datarray['body']),
1359                                                         dbesc(datetime_convert('UTC','UTC',$datarray['edited'])),
1360                                                         dbesc($item_id),
1361                                                         intval($importer['uid'])
1362                                                 );
1363                                         }
1364
1365                                         // update last-child if it changes
1366
1367                                         $allow = $item->get_item_tags( NAMESPACE_DFRN, 'comment-allow');
1368                                         if(($allow) && ($allow[0]['data'] != $r[0]['last-child'])) {
1369                                                 $r = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d",
1370                                                         dbesc(datetime_convert()),
1371                                                         dbesc($parent_uri),
1372                                                         intval($importer['uid'])
1373                                                 );
1374                                                 $r = q("UPDATE `item` SET `last-child` = %d , `changed` = '%s'  WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1375                                                         intval($allow[0]['data']),
1376                                                         dbesc(datetime_convert()),
1377                                                         dbesc($item_id),
1378                                                         intval($importer['uid'])
1379                                                 );
1380                                         }
1381                                         continue;
1382                                 }
1383
1384                                 $force_parent = false;
1385                                 if($contact['network'] === 'stat') {
1386                                         $force_parent = true;
1387                                         if(strlen($datarray['title']))
1388                                                 unset($datarray['title']);
1389                                         $r = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d",
1390                                                 dbesc(datetime_convert()),
1391                                                 dbesc($parent_uri),
1392                                                 intval($importer['uid'])
1393                                         );
1394                                         $datarray['last-child'] = 1;
1395                                 }
1396
1397                                 if(($contact['network'] === 'feed') || (! strlen($contact['notify']))) {
1398                                         // one way feed - no remote comment ability
1399                                         $datarray['last-child'] = 0;
1400                                 }
1401                                 $datarray['parent-uri'] = $parent_uri;
1402                                 $datarray['uid'] = $importer['uid'];
1403                                 $datarray['contact-id'] = $contact['id'];
1404                                 if((activity_match($datarray['verb'],ACTIVITY_LIKE)) || (activity_match($datarray['verb'],ACTIVITY_DISLIKE))) {
1405                                         $datarray['type'] = 'activity';
1406                                         $datarray['gravity'] = GRAVITY_LIKE;
1407                                 }
1408
1409                                 $r = item_store($datarray,$force_parent);
1410                                 continue;
1411                         }
1412
1413                         else {
1414
1415                                 // Head post of a conversation. Have we seen it? If not, import it.
1416
1417                                 $item_id  = $item->get_id();
1418
1419                                 $datarray = get_atom_elements($feed,$item);
1420
1421                                 if(is_array($contact)) {
1422                                         if(! x($datarray,'author-name'))
1423                                                 $datarray['author-name'] = $contact['name'];
1424                                         if(! x($datarray,'author-link'))
1425                                                 $datarray['author-link'] = $contact['url'];
1426                                         if(! x($datarray,'author-avatar'))
1427                                                 $datarray['author-avatar'] = $contact['thumb'];
1428                                 }
1429
1430                                 if((x($datarray,'object-type')) && ($datarray['object-type'] === ACTIVITY_OBJ_EVENT)) {
1431                                         $ev = bbtoevent($datarray['body']);
1432                                         if(x($ev,'desc') && x($ev,'start')) {
1433                                                 $ev['uid'] = $importer['uid'];
1434                                                 $ev['uri'] = $item_id;
1435                                                 $ev['edited'] = $datarray['edited'];
1436                                                 $ev['private'] = $datarray['private'];
1437
1438                                                 if(is_array($contact))
1439                                                         $ev['cid'] = $contact['id'];
1440                                                 $r = q("SELECT * FROM `event` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1441                                                         dbesc($item_id),
1442                                                         intval($importer['uid'])
1443                                                 );
1444                                                 if(count($r))
1445                                                         $ev['id'] = $r[0]['id'];
1446                                                 $xyz = event_store($ev);
1447                                                 continue;
1448                                         }
1449                                 }
1450
1451                                 $r = q("SELECT `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1452                                         dbesc($item_id),
1453                                         intval($importer['uid'])
1454                                 );
1455
1456                                 // Update content if 'updated' changes
1457
1458                                 if(count($r)) {
1459                                         if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) {  
1460                                                 $r = q("UPDATE `item` SET `body` = '%s', `edited` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1461                                                         dbesc($datarray['body']),
1462                                                         dbesc(datetime_convert('UTC','UTC',$datarray['edited'])),
1463                                                         dbesc($item_id),
1464                                                         intval($importer['uid'])
1465                                                 );
1466                                         }
1467
1468                                         // update last-child if it changes
1469
1470                                         $allow = $item->get_item_tags( NAMESPACE_DFRN, 'comment-allow');
1471                                         if($allow && $allow[0]['data'] != $r[0]['last-child']) {
1472                                                 $r = q("UPDATE `item` SET `last-child` = %d , `changed` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1473                                                         intval($allow[0]['data']),
1474                                                         dbesc(datetime_convert()),
1475                                                         dbesc($item_id),
1476                                                         intval($importer['uid'])
1477                                                 );
1478                                         }
1479                                         continue;
1480                                 }
1481
1482                                 if(activity_match($datarray['verb'],ACTIVITY_FOLLOW)) {
1483                                         logger('consume-feed: New follower');
1484                                         new_follower($importer,$contact,$datarray,$item);
1485                                         return;
1486                                 }
1487                                 if(activity_match($datarray['verb'],ACTIVITY_UNFOLLOW))  {
1488                                         lose_follower($importer,$contact,$datarray,$item);
1489                                         return;
1490                                 }
1491                                 if(! is_array($contact))
1492                                         return;
1493
1494                                 if($contact['network'] === 'stat' || stristr($permalink,'twitter.com')) {
1495                                         if(strlen($datarray['title']))
1496                                                 unset($datarray['title']);
1497                                         $datarray['last-child'] = 1;
1498                                 }
1499
1500                                 if(($contact['network'] === 'feed') || (! strlen($contact['notify']))) {
1501                                         // one way feed - no remote comment ability
1502                                         $datarray['last-child'] = 0;
1503                                 }
1504
1505                                 // This is my contact on another system, but it's really me.
1506                                 // Turn this into a wall post.
1507
1508                                 if($contact['remote_self'])
1509                                         $datarray['wall'] = 1;
1510
1511                                 $datarray['parent-uri'] = $item_id;
1512                                 $datarray['uid'] = $importer['uid'];
1513                                 $datarray['contact-id'] = $contact['id'];
1514                                 $r = item_store($datarray);
1515                                 continue;
1516
1517                         }
1518                 }
1519         }
1520 }
1521
1522 function new_follower($importer,$contact,$datarray,$item) {
1523         $url = notags(trim($datarray['author-link']));
1524         $name = notags(trim($datarray['author-name']));
1525         $photo = notags(trim($datarray['author-avatar']));
1526
1527         $rawtag = $item->get_item_tags(NAMESPACE_ACTIVITY,'actor');
1528         if($rawtag && $rawtag[0]['child'][NAMESPACE_POCO]['preferredUsername'][0]['data'])
1529                 $nick = $rawtag[0]['child'][NAMESPACE_POCO]['preferredUsername'][0]['data'];
1530
1531         if(is_array($contact)) {
1532                 if($contact['network'] == 'stat' && $contact['rel'] == CONTACT_IS_SHARING) {
1533                         $r = q("UPDATE `contact` SET `rel` = %d WHERE `id` = %d AND `uid` = %d LIMIT 1",
1534                                 intval(CONTACT_IS_FRIEND),
1535                                 intval($contact['id']),
1536                                 intval($importer['uid'])
1537                         );
1538                 }
1539
1540                 // send email notification to owner?
1541         }
1542         else {
1543         
1544                 // create contact record
1545
1546                 $r = q("INSERT INTO `contact` ( `uid`, `created`, `url`, `name`, `nick`, `photo`, `network`, `rel`, 
1547                         `blocked`, `readonly`, `pending`, `writable` )
1548                         VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', %d, 0, 0, 1, 1 ) ",
1549                         intval($importer['uid']),
1550                         dbesc(datetime_convert()),
1551                         dbesc($url),
1552                         dbesc($name),
1553                         dbesc($nick),
1554                         dbesc($photo),
1555                         dbesc('stat'),
1556                         intval(CONTACT_IS_FOLLOWER)
1557                 );
1558                 $r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `url` = '%s' AND `pending` = 1 AND `rel` = %d LIMIT 1",
1559                                 intval($importer['uid']),
1560                                 dbesc($url),
1561                                 intval(CONTACT_IS_FOLLOWER)
1562                 );
1563                 if(count($r))
1564                                 $contact_record = $r[0];
1565
1566                 // create notification  
1567                 $hash = random_string();
1568
1569                 if(is_array($contact_record)) {
1570                         $ret = q("INSERT INTO `intro` ( `uid`, `contact-id`, `blocked`, `knowyou`, `hash`, `datetime`)
1571                                 VALUES ( %d, %d, 0, 0, '%s', '%s' )",
1572                                 intval($importer['uid']),
1573                                 intval($contact_record['id']),
1574                                 dbesc($hash),
1575                                 dbesc(datetime_convert())
1576                         );
1577                 }
1578                 $r = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
1579                         intval($importer['uid'])
1580                 );
1581                 $a = get_app();
1582                 if(count($r)) {
1583                         if(($r[0]['notify-flags'] & NOTIFY_INTRO) && ($r[0]['page-flags'] == PAGE_NORMAL)) {
1584                                 $email_tpl = get_intltext_template('follow_notify_eml.tpl');
1585                                 $email = replace_macros($email_tpl, array(
1586                                         '$requestor' => ((strlen($name)) ? $name : t('[Name Withheld]')),
1587                                         '$url' => $url,
1588                                         '$myname' => $r[0]['username'],
1589                                         '$siteurl' => $a->get_baseurl(),
1590                                         '$sitename' => $a->config['sitename']
1591                                 ));
1592                                 $res = mail($r[0]['email'], 
1593                                         t("You have a new follower at ") . $a->config['sitename'],
1594                                         $email,
1595                                         'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] . "\n"
1596                                         . 'Content-type: text/plain; charset=UTF-8' . "\n"
1597                                         . 'Content-transfer-encoding: 8bit' );
1598                         
1599                         }
1600                 }
1601         }
1602 }
1603
1604 function lose_follower($importer,$contact,$datarray,$item) {
1605
1606         if(($contact['rel'] == CONTACT_IS_FRIEND) || ($contact['rel'] == CONTACT_IS_SHARING)) {
1607                 q("UPDATE `contact` SET `rel` = %d WHERE `id` = %d LIMIT 1",
1608                         intval(CONTACT_IS_SHARING),
1609                         intval($contact['id'])
1610                 );
1611         }
1612         else {
1613                 contact_remove($contact['id']);
1614         }
1615 }
1616
1617
1618 function subscribe_to_hub($url,$importer,$contact,$submode = 'subscribe') {
1619
1620         if(is_array($importer)) {
1621                 $r = q("SELECT `nickname` FROM `user` WHERE `uid` = %d LIMIT 1",
1622                         intval($importer['uid'])
1623                 );
1624         }
1625
1626         // Diaspora has different message-ids in feeds than they do 
1627         // through the direct Diaspora protocol. If we try and use
1628         // the feed, we'll get duplicates. So don't.
1629
1630         if((! count($r)) || $contact['network'] === NETWORK_DIASPORA)
1631                 return;
1632
1633         $push_url = get_config('system','url') . '/pubsub/' . $r[0]['nickname'] . '/' . $contact['id'];
1634
1635         // Use a single verify token, even if multiple hubs
1636
1637         $verify_token = ((strlen($contact['hub-verify'])) ? $contact['hub-verify'] : random_string());
1638
1639         $params= 'hub.mode=' . $hubmode . '&hub.callback=' . urlencode($push_url) . '&hub.topic=' . urlencode($contact['poll']) . '&hub.verify=async&hub.verify_token=' . $verify_token;
1640
1641         logger('subscribe_to_hub: subscribing ' . $contact['name'] . ' to hub ' . $url . ' with verifier ' . $verify_token);
1642
1643         if(! strlen($contact['hub-verify'])) {
1644                 $r = q("UPDATE `contact` SET `hub-verify` = '%s' WHERE `id` = %d LIMIT 1",
1645                         dbesc($verify_token),
1646                         intval($contact['id'])
1647                 );
1648         }
1649
1650         post_url($url,$params);                 
1651         return;
1652
1653 }
1654
1655
1656 function atom_author($tag,$name,$uri,$h,$w,$photo) {
1657         $o = '';
1658         if(! $tag)
1659                 return $o;
1660         $name = xmlify($name);
1661         $uri = xmlify($uri);
1662         $h = intval($h);
1663         $w = intval($w);
1664         $photo = xmlify($photo);
1665
1666
1667         $o .= "<$tag>\r\n";
1668         $o .= "<name>$name</name>\r\n";
1669         $o .= "<uri>$uri</uri>\r\n";
1670         $o .= '<link rel="photo"  type="image/jpeg" media:width="' . $w . '" media:height="' . $h . '" href="' . $photo . '" />' . "\r\n";
1671         $o .= '<link rel="avatar" type="image/jpeg" media:width="' . $w . '" media:height="' . $h . '" href="' . $photo . '" />' . "\r\n";
1672
1673         call_hooks('atom_author', $o);
1674
1675         $o .= "</$tag>\r\n";
1676         return $o;
1677 }
1678
1679 function atom_entry($item,$type,$author,$owner,$comment = false) {
1680
1681         $a = get_app();
1682
1683         if($item['deleted'])
1684                 return '<at:deleted-entry ref="' . xmlify($item['uri']) . '" when="' . xmlify(datetime_convert('UTC','UTC',$item['edited'] . '+00:00',ATOM_TIME)) . '" />' . "\r\n";
1685
1686
1687         if($item['allow_cid'] || $item['allow_gid'] || $item['deny_cid'] || $item['deny_gid'])
1688                 $body = fix_private_photos($item['body'],$owner['uid']);
1689         else
1690                 $body = $item['body'];
1691
1692
1693         $o = "\r\n\r\n<entry>\r\n";
1694
1695         if(is_array($author))
1696                 $o .= atom_author('author',$author['name'],$author['url'],80,80,$author['thumb']);
1697         else
1698                 $o .= atom_author('author',(($item['author-name']) ? $item['author-name'] : $item['name']),(($item['author-link']) ? $item['author-link'] : $item['url']),80,80,(($item['author-avatar']) ? $item['author-avatar'] : $item['thumb']));
1699         if(strlen($item['owner-name']))
1700                 $o .= atom_author('dfrn:owner',$item['owner-name'],$item['owner-link'],80,80,$item['owner-avatar']);
1701
1702         if($item['parent'] != $item['id'])
1703                 $o .= '<thr:in-reply-to ref="' . xmlify($item['parent-uri']) . '" type="text/html" href="' .  xmlify($a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id']) . '" />' . "\r\n";
1704
1705         $o .= '<id>' . xmlify($item['uri']) . '</id>' . "\r\n";
1706         $o .= '<title>' . xmlify($item['title']) . '</title>' . "\r\n";
1707         $o .= '<published>' . xmlify(datetime_convert('UTC','UTC',$item['created'] . '+00:00',ATOM_TIME)) . '</published>' . "\r\n";
1708         $o .= '<updated>' . xmlify(datetime_convert('UTC','UTC',$item['edited'] . '+00:00',ATOM_TIME)) . '</updated>' . "\r\n";
1709         $o .= '<dfrn:env>' . base64url_encode($body, true) . '</dfrn:env>' . "\r\n";
1710         $o .= '<content type="' . $type . '" >' . xmlify((($type === 'html') ? bbcode($body) : $body)) . '</content>' . "\r\n";
1711         $o .= '<link rel="alternate" type="text/html" href="' . xmlify($a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id']) . '" />' . "\r\n";
1712         if($comment)
1713                 $o .= '<dfrn:comment-allow>' . intval($item['last-child']) . '</dfrn:comment-allow>' . "\r\n";
1714
1715         if($item['location']) {
1716                 $o .= '<dfrn:location>' . xmlify($item['location']) . '</dfrn:location>' . "\r\n";
1717                 $o .= '<poco:address><poco:formatted>' . xmlify($item['location']) . '</poco:formatted></poco:address>' . "\r\n";
1718         }
1719
1720         if($item['coord'])
1721                 $o .= '<georss:point>' . xmlify($item['coord']) . '</georss:point>' . "\r\n";
1722
1723         if(($item['private']) || strlen($item['allow_cid']) || strlen($item['allow_gid']) || strlen($item['deny_cid']) || strlen($item['deny_gid']))
1724                 $o .= '<dfrn:private>1</dfrn:private>' . "\r\n";
1725
1726         if($item['extid'])
1727                 $o .= '<dfrn:extid>' . xmlify($item['extid']) . '</dfrn:extid>' . "\r\n";
1728         if($item['bookmark'])
1729                 $o .= '<dfrn:bookmark>true</dfrn:bookmark>' . "\r\n";
1730
1731         if($item['app'])
1732                 $o .= '<statusnet:notice_info local_id="' . $item['id'] . '" source="' . xmlify($item['app']) . '" ></statusnet:notice_info>' . "\r\n";
1733
1734         if($item['guid'])
1735                 $o .= '<dfrn:diaspora_guid>' . $item['guid'] . '</dfrn:diaspora_guid>' . "\r\n";
1736
1737         if($item['signed_text']) {
1738                 $sign = base64_encode(json_encode(array('signed_text' => $item['signed_text'],'signature' => $item['signature'],'signer' => $item['signer'])));
1739                 $o .= '<dfrn:diaspora_signature>' . xmlify($sign) . '</dfrn:diaspora_signature>' . "\r\n";
1740         }
1741
1742         $verb = construct_verb($item);
1743         $o .= '<as:verb>' . xmlify($verb) . '</as:verb>' . "\r\n";
1744         $actobj = construct_activity_object($item);
1745         if(strlen($actobj))
1746                 $o .= $actobj;
1747         $actarg = construct_activity_target($item);
1748         if(strlen($actarg))
1749                 $o .= $actarg;
1750
1751         $tags = item_getfeedtags($item);
1752         if(count($tags)) {
1753                 foreach($tags as $t) {
1754                         $o .= '<category scheme="X-DFRN:' . xmlify($t[0]) . ':' . xmlify($t[1]) . '" term="' . xmlify($t[2]) . '" />' . "\r\n";
1755                 }
1756         }
1757
1758         $o .= item_getfeedattach($item);
1759
1760         $mentioned = get_mentions($item);
1761         if($mentioned)
1762                 $o .= $mentioned;
1763         
1764         call_hooks('atom_entry', $o);
1765
1766         $o .= '</entry>' . "\r\n";
1767         
1768         return $o;
1769 }
1770
1771 function fix_private_photos($s,$uid) {
1772         $a = get_app();
1773         logger('fix_private_photos');
1774
1775         if(preg_match("/\[img\](.*?)\[\/img\]/is",$s,$matches)) {
1776                 $image = $matches[1];
1777                 logger('fix_private_photos: found photo ' . $image);
1778                 if(stristr($image ,$a->get_baseurl() . '/photo/')) {
1779                         $i = basename($image);
1780                         $i = str_replace('.jpg','',$i);
1781                         $x = strpos($i,'-');
1782                         if($x) {
1783                                 $res = substr($i,$x+1);
1784                                 $i = substr($i,0,$x);
1785                                 $r = q("SELECT * FROM `photo` WHERE `resource-id` = '%s' AND `scale` = %d AND `uid` = %d",
1786                                         dbesc($i),
1787                                         intval($res),
1788                                         intval($uid)
1789                                 );
1790                                 if(count($r)) {
1791                                         logger('replacing photo');
1792                                         $s = str_replace($image, 'data:image/jpg;base64,' . base64_encode($r[0]['data']), $s);
1793                                 }
1794                         }
1795                         logger('fix_private_photos: replaced: ' . $s, LOGGER_DATA);
1796                 }       
1797         }
1798         return($s);
1799 }
1800
1801
1802
1803 function item_getfeedtags($item) {
1804         $ret = array();
1805         $matches = false;
1806         $cnt = preg_match_all('|\#\[url\=(.*?)\](.*?)\[\/url\]|',$item['tag'],$matches);
1807         if($cnt) {
1808                 for($x = 0; $x < count($matches); $x ++) {
1809                         if($matches[1][$x])
1810                                 $ret[] = array('#',$matches[1][$x], $matches[2][$x]);
1811                 }
1812         }
1813         $matches = false; 
1814         $cnt = preg_match_all('|\@\[url\=(.*?)\](.*?)\[\/url\]|',$item['tag'],$matches);
1815         if($cnt) {
1816                 for($x = 0; $x < count($matches); $x ++) {
1817                         if($matches[1][$x])
1818                                 $ret[] = array('#',$matches[1][$x], $matches[2][$x]);
1819                 }
1820         } 
1821         return $ret;
1822 }
1823
1824 function item_getfeedattach($item) {
1825         $ret = '';
1826         $arr = explode(',',$item['attach']);
1827         if(count($arr)) {
1828                 foreach($arr as $r) {
1829                         $matches = false;
1830                         $cnt = preg_match('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"\[\/attach\]|',$r,$matches);
1831                         if($cnt) {
1832                                 $ret .= '<link rel="enclosure" href="' . xmlify($matches[1]) . '" type="' . xmlify($matches[3]) . '" ';
1833                                 if(intval($matches[2]))
1834                                         $ret .= 'length="' . intval($matches[2]) . '" ';
1835                                 if($matches[4] !== ' ')
1836                                         $ret .= 'title="' . xmlify(trim($matches[4])) . '" ';
1837                                 $ret .= ' />' . "\r\n";
1838                         }
1839                 }
1840         }
1841         return $ret;
1842 }
1843
1844
1845         
1846 function item_expire($uid,$days) {
1847
1848         if((! $uid) || (! $days))
1849                 return;
1850
1851         $r = q("SELECT * FROM `item` 
1852                 WHERE `uid` = %d 
1853                 AND `created` < UTC_TIMESTAMP() - INTERVAL %d DAY 
1854                 AND `id` = `parent` 
1855                 AND `deleted` = 0",
1856                 intval($uid),
1857                 intval($days)
1858         );
1859
1860         if(! count($r))
1861                 return;
1862  
1863         logger('expire: # items=' . count($r) );
1864
1865         foreach($r as $item) {
1866
1867                 // Only expire posts, not photos and photo comments
1868
1869                 if(strlen($item['resource-id']))
1870                         continue;
1871
1872                 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s' WHERE `id` = %d LIMIT 1",
1873                         dbesc(datetime_convert()),
1874                         dbesc(datetime_convert()),
1875                         intval($item['id'])
1876                 );
1877
1878                 // kill the kids
1879
1880                 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d ",
1881                         dbesc(datetime_convert()),
1882                         dbesc(datetime_convert()),
1883                         dbesc($item['parent-uri']),
1884                         intval($item['uid'])
1885                 );
1886
1887         }
1888
1889         proc_run('php',"include/notifier.php","expire","$uid");
1890
1891 }
1892
1893
1894 function drop_items($items) {
1895         $uid = 0;
1896
1897         if(count($items)) {
1898                 foreach($items as $item) {
1899                         $owner = drop_item($item,false);
1900                         if($owner && ! $uid)
1901                                 $uid = $owner;
1902                 }
1903         }
1904
1905         // multiple threads may have been deleted, send an expire notification
1906
1907         if($uid)
1908                 proc_run('php',"include/notifier.php","expire","$uid");
1909 }
1910
1911
1912 function drop_item($id,$interactive = true) {
1913
1914         $a = get_app();
1915
1916         // locate item to be deleted
1917
1918         $r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1",
1919                 intval($id)
1920         );
1921
1922         if(! count($r)) {
1923                 if(! $interactive)
1924                         return 0;
1925                 notice( t('Item not found.') . EOL);
1926                 goaway($a->get_baseurl() . '/' . $_SESSION['return_url']);
1927         }
1928
1929         $item = $r[0];
1930
1931         $owner = $item['uid'];
1932
1933         // check if logged in user is either the author or owner of this item
1934
1935         if((local_user() == $item['uid']) || (remote_user() == $item['contact-id'])) {
1936
1937                 // delete the item
1938
1939                 $r = q("UPDATE `item` SET `deleted` = 1, `body` = '', `edited` = '%s', `changed` = '%s' WHERE `id` = %d LIMIT 1",
1940                         dbesc(datetime_convert()),
1941                         dbesc(datetime_convert()),
1942                         intval($item['id'])
1943                 );
1944
1945                 // If item is a link to a photo resource, nuke all the associated photos 
1946                 // (visitors will not have photo resources)
1947                 // This only applies to photos uploaded from the photos page. Photos inserted into a post do not
1948                 // generate a resource-id and therefore aren't intimately linked to the item. 
1949
1950                 if(strlen($item['resource-id'])) {
1951                         q("DELETE FROM `photo` WHERE `resource-id` = '%s' AND `uid` = %d ",
1952                                 dbesc($item['resource-id']),
1953                                 intval($item['uid'])
1954                         );
1955                         // ignore the result
1956                 }
1957
1958                 // If item is a link to an event, nuke the event record.
1959
1960                 if(intval($item['event-id'])) {
1961                         q("DELETE FROM `event` WHERE `id` = %d AND `uid` = %d LIMIT 1",
1962                                 intval($item['event-id']),
1963                                 intval($item['uid'])
1964                         );
1965                         // ignore the result
1966                 }
1967
1968
1969                 // If it's the parent of a comment thread, kill all the kids
1970
1971                 if($item['uri'] == $item['parent-uri']) {
1972                         $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s', `body` = '' 
1973                                 WHERE `parent-uri` = '%s' AND `uid` = %d ",
1974                                 dbesc(datetime_convert()),
1975                                 dbesc(datetime_convert()),
1976                                 dbesc($item['parent-uri']),
1977                                 intval($item['uid'])
1978                         );
1979                         // ignore the result
1980                 }
1981                 else {
1982                         // ensure that last-child is set in case the comment that had it just got wiped.
1983                         q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d ",
1984                                 dbesc(datetime_convert()),
1985                                 dbesc($item['parent-uri']),
1986                                 intval($item['uid'])
1987                         );
1988                         // who is the last child now? 
1989                         $r = q("SELECT `id` FROM `item` WHERE `parent-uri` = '%s' AND `type` != 'activity' AND `deleted` = 0 AND `uid` = %d ORDER BY `edited` DESC LIMIT 1",
1990                                 dbesc($item['parent-uri']),
1991                                 intval($item['uid'])
1992                         );
1993                         if(count($r)) {
1994                                 q("UPDATE `item` SET `last-child` = 1 WHERE `id` = %d LIMIT 1",
1995                                         intval($r[0]['id'])
1996                                 );
1997                         }       
1998                 }
1999                 $drop_id = intval($item['id']);
2000                         
2001                 // send the notification upstream/downstream as the case may be
2002
2003                 if(! $interactive)
2004                         return $owner;
2005
2006                 proc_run('php',"include/notifier.php","drop","$drop_id");
2007                 goaway($a->get_baseurl() . '/' . $_SESSION['return_url']);
2008                 //NOTREACHED
2009         }
2010         else {
2011                 if(! $interactive)
2012                         return 0;
2013                 notice( t('Permission denied.') . EOL);
2014                 goaway($a->get_baseurl() . '/' . $_SESSION['return_url']);
2015                 //NOTREACHED
2016         }
2017         
2018 }