]> git.mxchange.org Git - friendica.git/blob - include/items.php
91ed6762cfcc5d475bae4153c15cb26556c78caa
[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
11         $sitefeed    = ((strlen($owner_nick)) ? false : true); // not yet implemented, need to rewrite huge chunks of following logic
12         $public_feed = (($dfrn_id) ? false : true);
13         $starred     = false;   // not yet implemented, possible security issues
14         $converse    = false;
15
16         if($public_feed && $a->argc > 2) {
17                 for($x = 2; $x < $a->argc; $x++) {
18                         if($a->argv[$x] == 'converse')
19                                 $converse = true;
20                         if($a->argv[$x] == 'starred')
21                                 $starred = true;
22                         if($a->argv[$x] === 'category' && $a->argc > ($x + 1) && strlen($a->argv[$x+1]))
23                                 $category = $a->argv[$x+1];
24                 }
25         }
26
27         
28
29         // default permissions - anonymous user
30
31         $sql_extra = " AND `allow_cid` = '' AND `allow_gid` = '' AND `deny_cid`  = '' AND `deny_gid`  = '' ";
32
33         $r = q("SELECT `contact`.*, `user`.`uid` AS `user_uid`, `user`.`nickname`, `user`.`timezone`, `user`.`page-flags`
34                 FROM `contact` LEFT JOIN `user` ON `user`.`uid` = `contact`.`uid`
35                 WHERE `contact`.`self` = 1 AND `user`.`nickname` = '%s' LIMIT 1",
36                 dbesc($owner_nick)
37         );
38
39         if(! count($r))
40                 killme();
41
42         $owner = $r[0];
43         $owner_id = $owner['user_uid'];
44         $owner_nick = $owner['nickname'];
45
46         $birthday = feed_birthday($owner_id,$owner['timezone']);
47
48         if(! $public_feed) {
49
50                 $sql_extra = '';
51                 switch($direction) {
52                         case (-1):
53                                 $sql_extra = sprintf(" AND `issued-id` = '%s' ", dbesc($dfrn_id));
54                                 $my_id = $dfrn_id;
55                                 break;
56                         case 0:
57                                 $sql_extra = sprintf(" AND `issued-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id));
58                                 $my_id = '1:' . $dfrn_id;
59                                 break;
60                         case 1:
61                                 $sql_extra = sprintf(" AND `dfrn-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id));
62                                 $my_id = '0:' . $dfrn_id;
63                                 break;
64                         default:
65                                 return false;
66                                 break; // NOTREACHED
67                 }
68
69                 $r = q("SELECT * FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `contact`.`uid` = %d $sql_extra LIMIT 1",
70                         intval($owner_id)
71                 );
72
73                 if(! count($r))
74                         killme();
75
76                 $contact = $r[0];
77                 $groups = init_groups_visitor($contact['id']);
78
79                 if(count($groups)) {
80                         for($x = 0; $x < count($groups); $x ++) 
81                                 $groups[$x] = '<' . intval($groups[$x]) . '>' ;
82                         $gs = implode('|', $groups);
83                 }
84                 else
85                         $gs = '<<>>' ; // Impossible to match 
86
87                 $sql_extra = sprintf(" 
88                         AND ( `allow_cid` = '' OR     `allow_cid` REGEXP '<%d>' ) 
89                         AND ( `deny_cid`  = '' OR NOT `deny_cid`  REGEXP '<%d>' ) 
90                         AND ( `allow_gid` = '' OR     `allow_gid` REGEXP '%s' )
91                         AND ( `deny_gid`  = '' OR NOT `deny_gid`  REGEXP '%s') 
92                 ",
93                         intval($contact['id']),
94                         intval($contact['id']),
95                         dbesc($gs),
96                         dbesc($gs)
97                 );
98         }
99
100         if($public_feed)
101                 $sort = 'DESC';
102         else
103                 $sort = 'ASC';
104
105         if(! strlen($last_update))
106                 $last_update = 'now -30 days';
107
108         if(isset($category)) {
109                 $sql_extra .= file_tag_file_query('item',$category,'category');
110         }
111
112         if($public_feed) {
113                 if(! $converse)
114                         $sql_extra .= " AND `contact`.`self` = 1 ";
115         }
116
117         $check_date = datetime_convert('UTC','UTC',$last_update,'Y-m-d H:i:s');
118
119         $r = q("SELECT `item`.*, `item`.`id` AS `item_id`, 
120                 `contact`.`name`, `contact`.`network`, `contact`.`photo`, `contact`.`url`, 
121                 `contact`.`name-date`, `contact`.`uri-date`, `contact`.`avatar-date`,
122                 `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`, 
123                 `contact`.`id` AS `contact-id`, `contact`.`uid` AS `contact-uid`,
124                 `sign`.`signed_text`, `sign`.`signature`, `sign`.`signer`
125                 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
126                 LEFT JOIN `sign` ON `sign`.`iid` = `item`.`id`
127                 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 and `item`.`moderated` = 0 AND `item`.`parent` != 0 
128                 AND `item`.`wall` = 1 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
129                 AND ( `item`.`edited` > '%s' OR `item`.`changed` > '%s' )
130                 $sql_extra
131                 ORDER BY `parent` %s, `created` ASC LIMIT 0, 300",
132                 intval($owner_id),
133                 dbesc($check_date),
134                 dbesc($check_date),
135                 dbesc($sort)
136         );
137
138         // Will check further below if this actually returned results.
139         // We will provide an empty feed if that is the case.
140
141         $items = $r;
142
143         $feed_template = get_markup_template(($dfrn_id) ? 'atom_feed_dfrn.tpl' : 'atom_feed.tpl');
144
145         $atom = '';
146
147         $hubxml = feed_hublinks();
148
149         $salmon = feed_salmonlinks($owner_nick);
150
151         $atom .= replace_macros($feed_template, array(
152                 '$version'      => xmlify(FRIENDICA_VERSION),
153                 '$feed_id'      => xmlify($a->get_baseurl() . '/profile/' . $owner_nick),
154                 '$feed_title'   => xmlify($owner['name']),
155                 '$feed_updated' => xmlify(datetime_convert('UTC', 'UTC', 'now' , ATOM_TIME)) ,
156                 '$hub'          => $hubxml,
157                 '$salmon'       => $salmon,
158                 '$name'         => xmlify($owner['name']),
159                 '$profile_page' => xmlify($owner['url']),
160                 '$photo'        => xmlify($owner['photo']),
161                 '$thumb'        => xmlify($owner['thumb']),
162                 '$picdate'      => xmlify(datetime_convert('UTC','UTC',$owner['avatar-date'] . '+00:00' , ATOM_TIME)) ,
163                 '$uridate'      => xmlify(datetime_convert('UTC','UTC',$owner['uri-date']    . '+00:00' , ATOM_TIME)) ,
164                 '$namdate'      => xmlify(datetime_convert('UTC','UTC',$owner['name-date']   . '+00:00' , ATOM_TIME)) , 
165                 '$birthday'     => ((strlen($birthday)) ? '<dfrn:birthday>' . xmlify($birthday) . '</dfrn:birthday>' : ''),
166                 '$community'    => (($owner['page-flags'] == PAGE_COMMUNITY) ? '<dfrn:community>1</dfrn:community>' : '')
167         ));
168
169         call_hooks('atom_feed', $atom);
170
171         if(! count($items)) {
172
173                 call_hooks('atom_feed_end', $atom);
174
175                 $atom .= '</feed>' . "\r\n";
176                 return $atom;
177         }
178
179         foreach($items as $item) {
180
181                 // prevent private email from leaking.
182                 if($item['network'] === NETWORK_MAIL)
183                         continue;
184
185                 // public feeds get html, our own nodes use bbcode
186
187                 if($public_feed) {
188                         $type = 'html';
189                         // catch any email that's in a public conversation and make sure it doesn't leak
190                         if($item['private'])
191                                 continue;
192                 }
193                 else {
194                         $type = 'text';
195                 }
196
197                 $atom .= atom_entry($item,$type,null,$owner,true);
198         }
199
200         call_hooks('atom_feed_end', $atom);
201
202         $atom .= '</feed>' . "\r\n";
203
204         return $atom;
205 }
206
207
208 function construct_verb($item) {
209         if($item['verb'])
210                 return $item['verb'];
211         return ACTIVITY_POST;
212 }
213
214 function construct_activity_object($item) {
215
216         if($item['object']) {
217                 $o = '<as:object>' . "\r\n";
218                 $r = parse_xml_string($item['object'],false);
219
220
221                 if(! $r)
222                         return '';
223                 if($r->type)
224                         $o .= '<as:object-type>' . xmlify($r->type) . '</as:object-type>' . "\r\n";
225                 if($r->id)
226                         $o .= '<id>' . xmlify($r->id) . '</id>' . "\r\n";
227                 if($r->title)
228                         $o .= '<title>' . xmlify($r->title) . '</title>' . "\r\n";
229                 if($r->link) {
230                         if(substr($r->link,0,1) === '<') {
231                                 // patch up some facebook "like" activity objects that got stored incorrectly
232                                 // for a couple of months prior to 9-Jun-2011 and generated bad XML.
233                                 // we can probably remove this hack here and in the following function in a few months time.
234                                 if(strstr($r->link,'&') && (! strstr($r->link,'&amp;')))
235                                         $r->link = str_replace('&','&amp;', $r->link);
236                                 $r->link = preg_replace('/\<link(.*?)\"\>/','<link$1"/>',$r->link);
237                                 $o .= $r->link;
238                         }                                       
239                         else
240                                 $o .= '<link rel="alternate" type="text/html" href="' . xmlify($r->link) . '" />' . "\r\n";
241                 }
242                 if($r->content)
243                         $o .= '<content type="html" >' . xmlify(bbcode($r->content)) . '</content>' . "\r\n";
244                 $o .= '</as:object>' . "\r\n";
245                 return $o;
246         }
247
248         return '';
249
250
251 function construct_activity_target($item) {
252
253         if($item['target']) {
254                 $o = '<as:target>' . "\r\n";
255                 $r = parse_xml_string($item['target'],false);
256                 if(! $r)
257                         return '';
258                 if($r->type)
259                         $o .= '<as:object-type>' . xmlify($r->type) . '</as:object-type>' . "\r\n";
260                 if($r->id)
261                         $o .= '<id>' . xmlify($r->id) . '</id>' . "\r\n";
262                 if($r->title)
263                         $o .= '<title>' . xmlify($r->title) . '</title>' . "\r\n";
264                 if($r->link) {
265                         if(substr($r->link,0,1) === '<') {
266                                 if(strstr($r->link,'&') && (! strstr($r->link,'&amp;')))
267                                         $r->link = str_replace('&','&amp;', $r->link);
268                                 $r->link = preg_replace('/\<link(.*?)\"\>/','<link$1"/>',$r->link);
269                                 $o .= $r->link;
270                         }                                       
271                         else
272                                 $o .= '<link rel="alternate" type="text/html" href="' . xmlify($r->link) . '" />' . "\r\n";
273                 }
274                 if($r->content)
275                         $o .= '<content type="html" >' . xmlify(bbcode($r->content)) . '</content>' . "\r\n";
276                 $o .= '</as:target>' . "\r\n";
277                 return $o;
278         }
279
280         return '';
281
282
283
284
285
286 function get_atom_elements($feed,$item) {
287
288         require_once('library/HTMLPurifier.auto.php');
289         require_once('include/html2bbcode.php');
290
291         $best_photo = array();
292
293         $res = array();
294
295         $author = $item->get_author();
296         if($author) { 
297                 $res['author-name'] = unxmlify($author->get_name());
298                 $res['author-link'] = unxmlify($author->get_link());
299         }
300         else {
301                 $res['author-name'] = unxmlify($feed->get_title());
302                 $res['author-link'] = unxmlify($feed->get_permalink());
303         }
304         $res['uri'] = unxmlify($item->get_id());
305         $res['title'] = unxmlify($item->get_title());
306         $res['body'] = unxmlify($item->get_content());
307         $res['plink'] = unxmlify($item->get_link(0));
308
309         if($res['plink'])
310                 $base_url = implode('/', array_slice(explode('/',$res['plink']),0,3));
311         else
312                 $base_url = '';
313
314         // look for a photo. We should check media size and find the best one,
315         // but for now let's just find any author photo
316
317         $rawauthor = $item->get_item_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'author');
318
319         if($rawauthor && $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) {
320                 $base = $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
321                 foreach($base as $link) {
322                         if(!x($res, 'author-avatar') || !$res['author-avatar']) {
323                                 if($link['attribs']['']['rel'] === 'photo' || $link['attribs']['']['rel'] === 'avatar')
324                                         $res['author-avatar'] = unxmlify($link['attribs']['']['href']);
325                         }
326                 }
327         }                       
328
329         $rawactor = $item->get_item_tags(NAMESPACE_ACTIVITY, 'actor');
330
331         if($rawactor && activity_match($rawactor[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'],ACTIVITY_OBJ_PERSON)) {
332                 $base = $rawactor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
333                 if($base && count($base)) {
334                         foreach($base as $link) {
335                                 if($link['attribs']['']['rel'] === 'alternate' && (! $res['author-link']))
336                                         $res['author-link'] = unxmlify($link['attribs']['']['href']);
337                                 if(!x($res, 'author-avatar') || !$res['author-avatar']) {
338                                         if($link['attribs']['']['rel'] === 'avatar' || $link['attribs']['']['rel'] === 'photo')
339                                                 $res['author-avatar'] = unxmlify($link['attribs']['']['href']);
340                                 }
341                         }
342                 }
343         }
344
345         // No photo/profile-link on the item - look at the feed level
346
347         if((! (x($res,'author-link'))) || (! (x($res,'author-avatar')))) {
348                 $rawauthor = $feed->get_feed_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'author');
349                 if($rawauthor && $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) {
350                         $base = $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
351                         foreach($base as $link) {
352                                 if($link['attribs']['']['rel'] === 'alternate' && (! $res['author-link']))
353                                         $res['author-link'] = unxmlify($link['attribs']['']['href']);
354                                 if(! $res['author-avatar']) {
355                                         if($link['attribs']['']['rel'] === 'photo' || $link['attribs']['']['rel'] === 'avatar')
356                                                 $res['author-avatar'] = unxmlify($link['attribs']['']['href']);
357                                 }
358                         }
359                 }                       
360
361                 $rawactor = $feed->get_feed_tags(NAMESPACE_ACTIVITY, 'subject');
362
363                 if($rawactor && activity_match($rawactor[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'],ACTIVITY_OBJ_PERSON)) {
364                         $base = $rawactor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
365
366                         if($base && count($base)) {
367                                 foreach($base as $link) {
368                                         if($link['attribs']['']['rel'] === 'alternate' && (! $res['author-link']))
369                                                 $res['author-link'] = unxmlify($link['attribs']['']['href']);
370                                         if(! (x($res,'author-avatar'))) {
371                                                 if($link['attribs']['']['rel'] === 'avatar' || $link['attribs']['']['rel'] === 'photo')
372                                                         $res['author-avatar'] = unxmlify($link['attribs']['']['href']);
373                                         }
374                                 }
375                         }
376                 }
377         }
378
379         $apps = $item->get_item_tags(NAMESPACE_STATUSNET,'notice_info');
380         if($apps && $apps[0]['attribs']['']['source']) {
381                 $res['app'] = strip_tags(unxmlify($apps[0]['attribs']['']['source']));
382                 if($res['app'] === 'web')
383                         $res['app'] = 'OStatus';
384         }                  
385
386         // base64 encoded json structure representing Diaspora signature
387
388         $dsig = $item->get_item_tags(NAMESPACE_DFRN,'diaspora_signature');
389         if($dsig) {
390                 $res['dsprsig'] = unxmlify($dsig[0]['data']);
391         }
392
393         $dguid = $item->get_item_tags(NAMESPACE_DFRN,'diaspora_guid');
394         if($dguid)
395                 $res['guid'] = unxmlify($dguid[0]['data']);
396
397         $bm = $item->get_item_tags(NAMESPACE_DFRN,'bookmark');
398         if($bm)
399                 $res['bookmark'] = ((unxmlify($bm[0]['data']) === 'true') ? 1 : 0);
400
401
402         /**
403          * If there's a copy of the body content which is guaranteed to have survived mangling in transit, use it.
404          */
405
406         $have_real_body = false;
407
408         $rawenv = $item->get_item_tags(NAMESPACE_DFRN, 'env');
409         if($rawenv) {
410                 $have_real_body = true;
411                 $res['body'] = $rawenv[0]['data'];
412                 $res['body'] = str_replace(array(' ',"\t","\r","\n"), array('','','',''),$res['body']);
413                 // make sure nobody is trying to sneak some html tags by us
414                 $res['body'] = notags(base64url_decode($res['body']));
415         }
416
417         $maxlen = get_max_import_size();
418         if($maxlen && (strlen($res['body']) > $maxlen))
419                 $res['body'] = substr($res['body'],0, $maxlen);
420
421         // It isn't certain at this point whether our content is plaintext or html and we'd be foolish to trust 
422         // the content type. Our own network only emits text normally, though it might have been converted to 
423         // html if we used a pubsubhubbub transport. But if we see even one html tag in our text, we will
424         // have to assume it is all html and needs to be purified.
425
426         // It doesn't matter all that much security wise - because before this content is used anywhere, we are 
427         // going to escape any tags we find regardless, but this lets us import a limited subset of html from 
428         // the wild, by sanitising it and converting supported tags to bbcode before we rip out any remaining 
429         // html.
430
431         if((strpos($res['body'],'<') !== false) && (strpos($res['body'],'>') !== false)) {
432
433                 $res['body'] = reltoabs($res['body'],$base_url);
434
435                 $res['body'] = html2bb_video($res['body']);
436
437                 $res['body'] = oembed_html2bbcode($res['body']);
438
439                 $config = HTMLPurifier_Config::createDefault();
440                 $config->set('Cache.DefinitionImpl', null);
441
442                 // we shouldn't need a whitelist, because the bbcode converter
443                 // will strip out any unsupported tags.
444
445                 $purifier = new HTMLPurifier($config);
446                 $res['body'] = $purifier->purify($res['body']);
447
448                 $res['body'] = @html2bbcode($res['body']);
449
450
451         }
452         elseif(! $have_real_body) {
453
454                 // it's not one of our messages and it has no tags
455                 // so it's probably just text. We'll escape it just to be safe.
456
457                 $res['body'] = escape_tags($res['body']);
458         }
459
460         // this tag is obsolete but we keep it for really old sites
461
462         $allow = $item->get_item_tags(NAMESPACE_DFRN,'comment-allow');
463         if($allow && $allow[0]['data'] == 1)
464                 $res['last-child'] = 1;
465         else
466                 $res['last-child'] = 0;
467
468         $private = $item->get_item_tags(NAMESPACE_DFRN,'private');
469         if($private && $private[0]['data'] == 1)
470                 $res['private'] = 1;
471         else
472                 $res['private'] = 0;
473
474         $extid = $item->get_item_tags(NAMESPACE_DFRN,'extid');
475         if($extid && $extid[0]['data'])
476                 $res['extid'] = $extid[0]['data'];
477
478         $rawlocation = $item->get_item_tags(NAMESPACE_DFRN, 'location');
479         if($rawlocation)
480                 $res['location'] = unxmlify($rawlocation[0]['data']);
481
482
483         $rawcreated = $item->get_item_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'published');
484         if($rawcreated)
485                 $res['created'] = unxmlify($rawcreated[0]['data']);
486
487
488         $rawedited = $item->get_item_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'updated');
489         if($rawedited)
490                 $res['edited'] = unxmlify($rawedited[0]['data']);
491
492         if((x($res,'edited')) && (! (x($res,'created'))))
493                 $res['created'] = $res['edited']; 
494
495         if(! $res['created'])
496                 $res['created'] = $item->get_date('c');
497
498         if(! $res['edited'])
499                 $res['edited'] = $item->get_date('c');
500
501
502         // Disallow time travelling posts
503
504         $d1 = strtotime($res['created']);
505         $d2 = strtotime($res['edited']);
506         $d3 = strtotime('now');
507
508         if($d1 > $d3)
509                 $res['created'] = datetime_convert();
510         if($d2 > $d3)
511                 $res['edited'] = datetime_convert();
512
513         $rawowner = $item->get_item_tags(NAMESPACE_DFRN, 'owner');
514         if($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['name'][0]['data'])
515                 $res['owner-name'] = unxmlify($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['name'][0]['data']);
516         elseif($rawowner[0]['child'][NAMESPACE_DFRN]['name'][0]['data'])
517                 $res['owner-name'] = unxmlify($rawowner[0]['child'][NAMESPACE_DFRN]['name'][0]['data']);
518         if($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]['data'])
519                 $res['owner-link'] = unxmlify($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]['data']);
520         elseif($rawowner[0]['child'][NAMESPACE_DFRN]['uri'][0]['data'])
521                 $res['owner-link'] = unxmlify($rawowner[0]['child'][NAMESPACE_DFRN]['uri'][0]['data']);
522
523         if($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) {
524                 $base = $rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
525
526                 foreach($base as $link) {
527                         if(!x($res, 'owner-avatar') || !$res['owner-avatar']) {
528                                 if($link['attribs']['']['rel'] === 'photo' || $link['attribs']['']['rel'] === 'avatar')                 
529                                         $res['owner-avatar'] = unxmlify($link['attribs']['']['href']);
530                         }
531                 }
532         }
533
534         $rawgeo = $item->get_item_tags(NAMESPACE_GEORSS,'point');
535         if($rawgeo)
536                 $res['coord'] = unxmlify($rawgeo[0]['data']);
537
538
539         $rawverb = $item->get_item_tags(NAMESPACE_ACTIVITY, 'verb');
540
541         // select between supported verbs
542
543         if($rawverb) {
544                 $res['verb'] = unxmlify($rawverb[0]['data']);
545         }
546
547         // translate OStatus unfollow to activity streams if it happened to get selected
548                 
549         if((x($res,'verb')) && ($res['verb'] === 'http://ostatus.org/schema/1.0/unfollow'))
550                 $res['verb'] = ACTIVITY_UNFOLLOW;
551
552         $cats = $item->get_categories();
553         if($cats) {
554                 $tag_arr = array();
555                 foreach($cats as $cat) {
556                         $term = $cat->get_term();
557                         if(! $term)
558                                 $term = $cat->get_label();
559                         $scheme = $cat->get_scheme();
560                         if($scheme && $term && stristr($scheme,'X-DFRN:'))
561                                 $tag_arr[] = substr($scheme,7,1) . '[url=' . unxmlify(substr($scheme,9)) . ']' . unxmlify($term) . '[/url]';
562                         elseif($term)
563                                 $tag_arr[] = notags(trim($term));
564                 }
565                 $res['tag'] =  implode(',', $tag_arr);
566         }
567
568         $attach = $item->get_enclosures();
569         if($attach) {
570                 $att_arr = array();
571                 foreach($attach as $att) {
572                         $len   = intval($att->get_length());
573                         $link  = str_replace(array(',','"'),array('%2D','%22'),notags(trim(unxmlify($att->get_link()))));
574                         $title = str_replace(array(',','"'),array('%2D','%22'),notags(trim(unxmlify($att->get_title()))));
575                         $type  = str_replace(array(',','"'),array('%2D','%22'),notags(trim(unxmlify($att->get_type()))));
576                         if(strpos($type,';'))
577                                 $type = substr($type,0,strpos($type,';'));
578                         if((! $link) || (strpos($link,'http') !== 0))
579                                 continue;
580
581                         if(! $title)
582                                 $title = ' ';
583                         if(! $type)
584                                 $type = 'application/octet-stream';
585
586                         $att_arr[] = '[attach]href="' . $link . '" length="' . $len . '" type="' . $type . '" title="' . $title . '"[/attach]'; 
587                 }
588                 $res['attach'] = implode(',', $att_arr);
589         }
590
591         $rawobj = $item->get_item_tags(NAMESPACE_ACTIVITY, 'object');
592
593         if($rawobj) {
594                 $res['object'] = '<object>' . "\n";
595                 $child = $rawobj[0]['child'];
596                 if($child[NAMESPACE_ACTIVITY]['object-type'][0]['data']) {
597                         $res['object-type'] = $child[NAMESPACE_ACTIVITY]['object-type'][0]['data'];
598                         $res['object'] .= '<type>' . $child[NAMESPACE_ACTIVITY]['object-type'][0]['data'] . '</type>' . "\n";
599                 }       
600                 if(x($child[SIMPLEPIE_NAMESPACE_ATOM_10], 'id') && $child[SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'])
601                         $res['object'] .= '<id>' . $child[SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'] . '</id>' . "\n";
602                 if(x($child[SIMPLEPIE_NAMESPACE_ATOM_10], 'link') && $child[SIMPLEPIE_NAMESPACE_ATOM_10]['link'])
603                         $res['object'] .= '<link>' . encode_rel_links($child[SIMPLEPIE_NAMESPACE_ATOM_10]['link']) . '</link>' . "\n";
604                 if(x($child[SIMPLEPIE_NAMESPACE_ATOM_10], 'title') && $child[SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'])
605                         $res['object'] .= '<title>' . $child[SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'] . '</title>' . "\n";
606                 if(x($child[SIMPLEPIE_NAMESPACE_ATOM_10], 'content') && $child[SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data']) {
607                         $body = $child[SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data'];
608                         if(! $body)
609                                 $body = $child[SIMPLEPIE_NAMESPACE_ATOM_10]['summary'][0]['data'];
610                         // preserve a copy of the original body content in case we later need to parse out any microformat information, e.g. events
611                         $res['object'] .= '<orig>' . xmlify($body) . '</orig>' . "\n";
612                         if((strpos($body,'<') !== false) || (strpos($body,'>') !== false)) {
613
614                                 $body = html2bb_video($body);
615
616                                 $config = HTMLPurifier_Config::createDefault();
617                                 $config->set('Cache.DefinitionImpl', null);
618
619                                 $purifier = new HTMLPurifier($config);
620                                 $body = $purifier->purify($body);
621                                 $body = html2bbcode($body);
622                         }
623
624                         $res['object'] .= '<content>' . $body . '</content>' . "\n";
625                 }
626
627                 $res['object'] .= '</object>' . "\n";
628         }
629
630         $rawobj = $item->get_item_tags(NAMESPACE_ACTIVITY, 'target');
631
632         if($rawobj) {
633                 $res['target'] = '<target>' . "\n";
634                 $child = $rawobj[0]['child'];
635                 if($child[NAMESPACE_ACTIVITY]['object-type'][0]['data']) {
636                         $res['target'] .= '<type>' . $child[NAMESPACE_ACTIVITY]['object-type'][0]['data'] . '</type>' . "\n";
637                 }       
638                 if(x($child[SIMPLEPIE_NAMESPACE_ATOM_10], 'id') && $child[SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'])
639                         $res['target'] .= '<id>' . $child[SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'] . '</id>' . "\n";
640                 if(x($child[SIMPLEPIE_NAMESPACE_ATOM_10], 'link') && $child[SIMPLEPIE_NAMESPACE_ATOM_10]['link'])
641                         $res['target'] .= '<link>' . encode_rel_links($child[SIMPLEPIE_NAMESPACE_ATOM_10]['link']) . '</link>' . "\n";
642                 if(x($child[SIMPLEPIE_NAMESPACE_ATOM_10], 'data') && $child[SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'])
643                         $res['target'] .= '<title>' . $child[SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'] . '</title>' . "\n";
644                 if(x($child[SIMPLEPIE_NAMESPACE_ATOM_10], 'data') && $child[SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data']) {
645                         $body = $child[SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data'];
646                         if(! $body)
647                                 $body = $child[SIMPLEPIE_NAMESPACE_ATOM_10]['summary'][0]['data'];
648                         // preserve a copy of the original body content in case we later need to parse out any microformat information, e.g. events
649                         $res['target'] .= '<orig>' . xmlify($body) . '</orig>' . "\n";
650                         if((strpos($body,'<') !== false) || (strpos($body,'>') !== false)) {
651
652                                 $body = html2bb_video($body);
653
654                                 $config = HTMLPurifier_Config::createDefault();
655                                 $config->set('Cache.DefinitionImpl', null);
656
657                                 $purifier = new HTMLPurifier($config);
658                                 $body = $purifier->purify($body);
659                                 $body = html2bbcode($body);
660                         }
661
662                         $res['target'] .= '<content>' . $body . '</content>' . "\n";
663                 }
664
665                 $res['target'] .= '</target>' . "\n";
666         }
667
668         $arr = array('feed' => $feed, 'item' => $item, 'result' => $res);
669
670         call_hooks('parse_atom', $arr);
671
672         return $res;
673 }
674
675 function encode_rel_links($links) {
676         $o = '';
677         if(! ((is_array($links)) && (count($links))))
678                 return $o;
679         foreach($links as $link) {
680                 $o .= '<link ';
681                 if($link['attribs']['']['rel'])
682                         $o .= 'rel="' . $link['attribs']['']['rel'] . '" ';
683                 if($link['attribs']['']['type'])
684                         $o .= 'type="' . $link['attribs']['']['type'] . '" ';
685                 if($link['attribs']['']['href'])
686                         $o .= 'href="' . $link['attribs']['']['href'] . '" ';
687                 if( (x($link['attribs'],NAMESPACE_MEDIA)) && $link['attribs'][NAMESPACE_MEDIA]['width'])
688                         $o .= 'media:width="' . $link['attribs'][NAMESPACE_MEDIA]['width'] . '" ';
689                 if( (x($link['attribs'],NAMESPACE_MEDIA)) && $link['attribs'][NAMESPACE_MEDIA]['height'])
690                         $o .= 'media:height="' . $link['attribs'][NAMESPACE_MEDIA]['height'] . '" ';
691                 $o .= ' />' . "\n" ;
692         }
693         return xmlify($o);
694 }
695
696
697
698 function item_store($arr,$force_parent = false) {
699
700         // If a Diaspora signature structure was passed in, pull it out of the 
701         // item array and set it aside for later storage.
702
703         $dsprsig = null;
704         if(x($arr,'dsprsig')) {
705                 $dsprsig = json_decode(base64_decode($arr['dsprsig']));
706                 unset($arr['dsprsig']);
707         }
708
709         if(x($arr, 'gravity'))
710                 $arr['gravity'] = intval($arr['gravity']);
711         elseif($arr['parent-uri'] === $arr['uri'])
712                 $arr['gravity'] = 0;
713         elseif(activity_match($arr['verb'],ACTIVITY_POST))
714                 $arr['gravity'] = 6;
715         else      
716                 $arr['gravity'] = 6;   // extensible catchall
717
718         if(! x($arr,'type'))
719                 $arr['type']      = 'remote';
720
721         // Shouldn't happen but we want to make absolutely sure it doesn't leak from a plugin.
722
723         if((strpos($arr['body'],'<') !== false) || (strpos($arr['body'],'>') !== false)) 
724                 $arr['body'] = strip_tags($arr['body']);
725
726
727         $arr['wall']          = ((x($arr,'wall'))          ? intval($arr['wall'])                : 0);
728         $arr['uri']           = ((x($arr,'uri'))           ? notags(trim($arr['uri']))           : random_string());
729         $arr['extid']         = ((x($arr,'extid'))         ? notags(trim($arr['extid']))         : '');
730         $arr['author-name']   = ((x($arr,'author-name'))   ? notags(trim($arr['author-name']))   : '');
731         $arr['author-link']   = ((x($arr,'author-link'))   ? notags(trim($arr['author-link']))   : '');
732         $arr['author-avatar'] = ((x($arr,'author-avatar')) ? notags(trim($arr['author-avatar'])) : '');
733         $arr['owner-name']    = ((x($arr,'owner-name'))    ? notags(trim($arr['owner-name']))    : '');
734         $arr['owner-link']    = ((x($arr,'owner-link'))    ? notags(trim($arr['owner-link']))    : '');
735         $arr['owner-avatar']  = ((x($arr,'owner-avatar'))  ? notags(trim($arr['owner-avatar']))  : '');
736         $arr['created']       = ((x($arr,'created') !== false) ? datetime_convert('UTC','UTC',$arr['created']) : datetime_convert());
737         $arr['edited']        = ((x($arr,'edited')  !== false) ? datetime_convert('UTC','UTC',$arr['edited'])  : datetime_convert());
738         $arr['commented']     = datetime_convert();
739         $arr['received']      = datetime_convert();
740         $arr['changed']       = datetime_convert();
741         $arr['title']         = ((x($arr,'title'))         ? notags(trim($arr['title']))         : '');
742         $arr['location']      = ((x($arr,'location'))      ? notags(trim($arr['location']))      : '');
743         $arr['coord']         = ((x($arr,'coord'))         ? notags(trim($arr['coord']))         : '');
744         $arr['last-child']    = ((x($arr,'last-child'))    ? intval($arr['last-child'])          : 0 );
745         $arr['visible']       = ((x($arr,'visible') !== false) ? intval($arr['visible'])         : 1 );
746         $arr['deleted']       = 0;
747         $arr['parent-uri']    = ((x($arr,'parent-uri'))    ? notags(trim($arr['parent-uri']))    : '');
748         $arr['verb']          = ((x($arr,'verb'))          ? notags(trim($arr['verb']))          : '');
749         $arr['object-type']   = ((x($arr,'object-type'))   ? notags(trim($arr['object-type']))   : '');
750         $arr['object']        = ((x($arr,'object'))        ? trim($arr['object'])                : '');
751         $arr['target-type']   = ((x($arr,'target-type'))   ? notags(trim($arr['target-type']))   : '');
752         $arr['target']        = ((x($arr,'target'))        ? trim($arr['target'])                : '');
753         $arr['plink']         = ((x($arr,'plink'))         ? notags(trim($arr['plink']))         : '');
754         $arr['allow_cid']     = ((x($arr,'allow_cid'))     ? trim($arr['allow_cid'])             : '');
755         $arr['allow_gid']     = ((x($arr,'allow_gid'))     ? trim($arr['allow_gid'])             : '');
756         $arr['deny_cid']      = ((x($arr,'deny_cid'))      ? trim($arr['deny_cid'])              : '');
757         $arr['deny_gid']      = ((x($arr,'deny_gid'))      ? trim($arr['deny_gid'])              : '');
758         $arr['private']       = ((x($arr,'private'))       ? intval($arr['private'])             : 0 );
759         $arr['bookmark']      = ((x($arr,'bookmark'))      ? intval($arr['bookmark'])            : 0 );
760         $arr['body']          = ((x($arr,'body'))          ? trim($arr['body'])                  : '');
761         $arr['tag']           = ((x($arr,'tag'))           ? notags(trim($arr['tag']))           : '');
762         $arr['attach']        = ((x($arr,'attach'))        ? notags(trim($arr['attach']))        : '');
763         $arr['app']           = ((x($arr,'app'))           ? notags(trim($arr['app']))           : '');
764         $arr['origin']        = ((x($arr,'origin'))        ? intval($arr['origin'])              : 0 );
765         $arr['guid']          = ((x($arr,'guid'))          ? notags(trim($arr['guid']))          : get_guid());
766
767         if($arr['parent-uri'] === $arr['uri']) {
768                 $parent_id = 0;
769                 $parent_deleted = 0;
770                 $allow_cid = $arr['allow_cid'];
771                 $allow_gid = $arr['allow_gid'];
772                 $deny_cid  = $arr['deny_cid'];
773                 $deny_gid  = $arr['deny_gid'];
774         }
775         else { 
776
777                 // find the parent and snarf the item id and ACL's
778                 // and anything else we need to inherit
779
780                 $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d ORDER BY `id` ASC LIMIT 1",
781                         dbesc($arr['parent-uri']),
782                         intval($arr['uid'])
783                 );
784
785                 if(count($r)) {
786
787                         // is the new message multi-level threaded?
788                         // even though we don't support it now, preserve the info
789                         // and re-attach to the conversation parent.
790
791                         if($r[0]['uri'] != $r[0]['parent-uri']) {
792                                 $arr['thr-parent'] = $arr['parent-uri'];
793                                 $arr['parent-uri'] = $r[0]['parent-uri'];
794                                 $z = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `parent-uri` = '%s' AND `uid` = %d 
795                                         ORDER BY `id` ASC LIMIT 1",
796                                         dbesc($r[0]['parent-uri']),
797                                         dbesc($r[0]['parent-uri']),
798                                         intval($arr['uid'])
799                                 );
800                                 if($z && count($z))
801                                         $r = $z;
802                         }
803
804                         $parent_id      = $r[0]['id'];
805                         $parent_deleted = $r[0]['deleted'];
806                         $allow_cid      = $r[0]['allow_cid'];
807                         $allow_gid      = $r[0]['allow_gid'];
808                         $deny_cid       = $r[0]['deny_cid'];
809                         $deny_gid       = $r[0]['deny_gid'];
810                         $arr['wall']    = $r[0]['wall'];
811
812                         // if the parent is private, force privacy for the entire conversation
813                         // This differs from the above settings as it subtly allows comments from 
814                         // email correspondents to be private even if the overall thread is not. 
815
816                         if($r[0]['private'])
817                                 $arr['private'] = 1;
818
819                         // Edge case. We host a public forum that was originally posted to privately.
820                         // The original author commented, but as this is a comment, the permissions
821                         // weren't fixed up so it will still show the comment as private unless we fix it here. 
822
823                         if((intval($r[0]['forum_mode']) == 1) && (! $r[0]['private']))
824                                 $arr['private'] = 0;
825                 }
826                 else {
827
828                         // Allow one to see reply tweets from status.net even when
829                         // we don't have or can't see the original post.
830
831                         if($force_parent) {
832                                 logger('item_store: $force_parent=true, reply converted to top-level post.');
833                                 $parent_id = 0;
834                                 $arr['thr-parent'] = $arr['parent-uri'];
835                                 $arr['parent-uri'] = $arr['uri'];
836                                 $arr['gravity'] = 0;
837                         }
838                         else {
839                                 logger('item_store: item parent was not found - ignoring item');
840                                 return 0;
841                         }
842                         
843                         $parent_deleted = 0;
844                 }
845         }
846
847         $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
848                 dbesc($arr['uri']),
849                 intval($arr['uid'])
850         );
851         if($r && count($r)) {
852                 logger('item-store: duplicate item ignored. ' . print_r($arr,true));
853                 return 0;
854         }
855
856         call_hooks('post_remote',$arr);
857
858         if(x($arr,'cancel')) {
859                 logger('item_store: post cancelled by plugin.');
860                 return 0;
861         }
862
863         dbesc_array($arr);
864
865         logger('item_store: ' . print_r($arr,true), LOGGER_DATA);
866
867         $r = dbq("INSERT INTO `item` (`" 
868                         . implode("`, `", array_keys($arr)) 
869                         . "`) VALUES ('" 
870                         . implode("', '", array_values($arr)) 
871                         . "')" );
872
873         // find the item we just created
874
875         $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = %d ORDER BY `id` ASC ",
876                 $arr['uri'],           // already dbesc'd
877                 intval($arr['uid'])
878         );
879
880         if(count($r)) {
881                 $current_post = $r[0]['id'];
882                 logger('item_store: created item ' . $current_post);
883         }
884         else {
885                 logger('item_store: could not locate created item');
886                 return 0;
887         }
888         if(count($r) > 1) {
889                 logger('item_store: duplicated post occurred. Removing duplicates.');
890                 q("DELETE FROM `item` WHERE `uri` = '%s' AND `uid` = %d AND `id` != %d ",
891                         $arr['uri'],
892                         intval($arr['uid']),
893                         intval($current_post)
894                 );
895         }
896
897         if((! $parent_id) || ($arr['parent-uri'] === $arr['uri']))      
898                 $parent_id = $current_post;
899
900         if(strlen($allow_cid) || strlen($allow_gid) || strlen($deny_cid) || strlen($deny_gid))
901                 $private = 1;
902         else
903                 $private = $arr['private']; 
904
905         // Set parent id - and also make sure to inherit the parent's ACL's.
906
907         $r = q("UPDATE `item` SET `parent` = %d, `allow_cid` = '%s', `allow_gid` = '%s',
908                 `deny_cid` = '%s', `deny_gid` = '%s', `private` = %d, `deleted` = %d WHERE `id` = %d LIMIT 1",
909                 intval($parent_id),
910                 dbesc($allow_cid),
911                 dbesc($allow_gid),
912                 dbesc($deny_cid),
913                 dbesc($deny_gid),
914                 intval($private),
915                 intval($parent_deleted),
916                 intval($current_post)
917         );
918
919         $arr['id'] = $current_post;
920         $arr['parent'] = $parent_id;
921         $arr['allow_cid'] = $allow_cid;
922         $arr['allow_gid'] = $allow_gid;
923         $arr['deny_cid'] = $deny_cid;
924         $arr['deny_gid'] = $deny_gid;
925         $arr['private'] = $private;
926         $arr['deleted'] = $parent_deleted;
927         call_hooks('post_remote_end',$arr);
928
929         // update the commented timestamp on the parent
930
931         q("UPDATE `item` set `commented` = '%s', `changed` = '%s' WHERE `id` = %d LIMIT 1",
932                 dbesc(datetime_convert()),
933                 dbesc(datetime_convert()),
934                 intval($parent_id)
935         );
936
937         if($dsprsig) {
938                 q("insert into sign (`iid`,`signed_text`,`signature`,`signer`) values (%d,'%s','%s','%s') ",
939                         intval($current_post),
940                         dbesc($dsprsig->signed_text),
941                         dbesc($dsprsig->signature),
942                         dbesc($dsprsig->signer)
943                 );
944         }
945
946
947         /**
948          * If this is now the last-child, force all _other_ children of this parent to *not* be last-child
949          */
950
951         if($arr['last-child']) {
952                 $r = q("UPDATE `item` SET `last-child` = 0 WHERE `parent-uri` = '%s' AND `uid` = %d AND `id` != %d",
953                         dbesc($arr['uri']),
954                         intval($arr['uid']),
955                         intval($current_post)
956                 );
957         }
958
959         tag_deliver($arr['uid'],$current_post);
960
961         return $current_post;
962 }
963
964 function get_item_contact($item,$contacts) {
965         if(! count($contacts) || (! is_array($item)))
966                 return false;
967         foreach($contacts as $contact) {
968                 if($contact['id'] == $item['contact-id']) {
969                         return $contact;
970                         break; // NOTREACHED
971                 }
972         }
973         return false;
974 }
975
976
977 function tag_deliver($uid,$item_id) {
978
979         // look for mention tags and setup a second delivery chain for forum/community posts if appropriate
980
981         $a = get_app();
982
983         $mention = false;
984
985         $u = q("select * from user where uid = %d limit 1",
986                 intval($uid)
987         );
988         if(! count($u))
989                 return;
990
991         $community_page = (($u[0]['page-flags'] == PAGE_COMMUNITY) ? true : false);
992         $prvgroup = (($u[0]['page-flags'] == PAGE_PRVGROUP) ? true : false);
993
994
995         $i = q("select * from item where id = %d and uid = %d limit 1",
996                 intval($item_id),
997                 intval($uid)
998         );
999         if(! count($i))
1000                 return;
1001
1002         $item = $i[0];
1003
1004         $link = normalise_link($a->get_baseurl() . '/profile/' . $u[0]['nickname']);
1005
1006         // Diaspora uses their own hardwired link URL in @-tags
1007         // instead of the one we supply with webfinger
1008
1009         $dlink = normalise_link($a->get_baseurl() . '/u/' . $u[0]['nickname']);
1010
1011         $cnt = preg_match_all('/[\@\!]\[url\=(.*?)\](.*?)\[\/url\]/ism',$item['body'],$matches,PREG_SET_ORDER);
1012         if($cnt) {
1013                 foreach($matches as $mtch) {
1014                         if(link_compare($link,$mtch[1]) || link_compare($dlink,$mtch[1])) {
1015                                 $mention = true;
1016                                 logger('tag_deliver: mention found: ' . $mtch[2]);
1017                         }
1018                 }
1019         }
1020
1021         if(! $mention)
1022                 return;
1023
1024         // send a notification
1025
1026         require_once('include/enotify.php');
1027         notification(array(
1028                 'type'         => NOTIFY_TAGSELF,
1029                 'notify_flags' => $u[0]['notify-flags'],
1030                 'language'     => $u[0]['language'],
1031                 'to_name'      => $u[0]['username'],
1032                 'to_email'     => $u[0]['email'],
1033                 'uid'          => $u[0]['uid'],
1034                 'item'         => $item,
1035                 'link'         => $a->get_baseurl() . '/display/' . $u[0]['nickname'] . '/' . $item['id'],
1036                 'source_name'  => $item['author-name'],
1037                 'source_link'  => $item['author-link'],
1038                 'source_photo' => $item['author-avatar'],
1039                 'verb'         => ACTIVITY_TAG,
1040                 'otype'        => 'item'
1041         ));
1042
1043         if((! $community_page) && (! $prvgroup))
1044                 return;
1045
1046
1047         // tgroup delivery - setup a second delivery chain
1048         // prevent delivery looping - only proceed
1049         // if the message originated elsewhere and is a top-level post
1050
1051         if(($item['wall']) || ($item['origin']) || ($item['id'] != $item['parent']))
1052                 return;
1053
1054         // now change this copy of the post to a forum head message and deliver to all the tgroup members
1055
1056
1057         $c = q("select name, url, thumb from contact where self = 1 and uid = %d limit 1",
1058                 intval($u[0]['uid'])
1059         );
1060         if(! count($c))
1061                 return;
1062
1063         // also reset all the privacy bits to the forum default permissions
1064
1065         $private = ($u[0]['allow_cid'] || $u[0]['allow_gid'] || $u[0]['deny_cid'] || $u[0]['deny_gid']) ? 1 : 0;
1066
1067         $forum_mode = (($prvgroup) ? 2 : 1);
1068
1069         q("update item set wall = 1, origin = 1, forum_mode = %d, `owner-name` = '%s', `owner-link` = '%s', `owner-avatar` = '%s', 
1070                 `private` = %d, `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s'  where id = %d limit 1",
1071                 intval($forum_mode),
1072                 dbesc($c[0]['name']),
1073                 dbesc($c[0]['url']),
1074                 dbesc($c[0]['thumb']),
1075                 intval($private),
1076                 dbesc($u[0]['allow_cid']),
1077                 dbesc($u[0]['allow_gid']),
1078                 dbesc($u[0]['deny_cid']),
1079                 dbesc($u[0]['deny_gid']),
1080                 intval($item_id)
1081         );
1082
1083         proc_run('php','include/notifier.php','tgroup',$item_id);                       
1084
1085 }
1086
1087
1088
1089
1090
1091
1092 function dfrn_deliver($owner,$contact,$atom, $dissolve = false) {
1093
1094         $a = get_app();
1095
1096         $idtosend = $orig_id = (($contact['dfrn-id']) ? $contact['dfrn-id'] : $contact['issued-id']);
1097
1098         if($contact['duplex'] && $contact['dfrn-id'])
1099                 $idtosend = '0:' . $orig_id;
1100         if($contact['duplex'] && $contact['issued-id'])
1101                 $idtosend = '1:' . $orig_id;            
1102
1103         $rino = ((function_exists('mcrypt_encrypt')) ? 1 : 0);
1104
1105         $rino_enable = get_config('system','rino_encrypt');
1106
1107         if(! $rino_enable)
1108                 $rino = 0;
1109
1110         $ssl_val = intval(get_config('system','ssl_policy'));
1111         $ssl_policy = '';
1112
1113         switch($ssl_val){
1114                 case SSL_POLICY_FULL:
1115                         $ssl_policy = 'full';
1116                         break;
1117                 case SSL_POLICY_SELFSIGN:
1118                         $ssl_policy = 'self';
1119                         break;                  
1120                 case SSL_POLICY_NONE:
1121                 default:
1122                         $ssl_policy = 'none';
1123                         break;
1124         }
1125
1126         $url = $contact['notify'] . '&dfrn_id=' . $idtosend . '&dfrn_version=' . DFRN_PROTOCOL_VERSION . (($rino) ? '&rino=1' : '');
1127
1128         logger('dfrn_deliver: ' . $url);
1129
1130         $xml = fetch_url($url);
1131
1132         $curl_stat = $a->get_curl_code();
1133         if(! $curl_stat)
1134                 return(-1); // timed out
1135
1136         logger('dfrn_deliver: ' . $xml, LOGGER_DATA);
1137
1138         if(! $xml)
1139                 return 3;
1140
1141         if(strpos($xml,'<?xml') === false) {
1142                 logger('dfrn_deliver: no valid XML returned');
1143                 logger('dfrn_deliver: returned XML: ' . $xml, LOGGER_DATA);
1144                 return 3;
1145         }
1146
1147         $res = parse_xml_string($xml);
1148
1149         if((intval($res->status) != 0) || (! strlen($res->challenge)) || (! strlen($res->dfrn_id)))
1150                 return (($res->status) ? $res->status : 3);
1151
1152         $postvars     = array();
1153         $sent_dfrn_id = hex2bin((string) $res->dfrn_id);
1154         $challenge    = hex2bin((string) $res->challenge);
1155         $perm         = (($res->perm) ? $res->perm : null);
1156         $dfrn_version = (float) (($res->dfrn_version) ? $res->dfrn_version : 2.0);
1157         $rino_allowed = ((intval($res->rino) === 1) ? 1 : 0);
1158         $page         = (($owner['page-flags'] == PAGE_COMMUNITY) ? 1 : 0);
1159
1160         if($owner['page-flags'] == PAGE_PRVGROUP)
1161                 $page = 2;
1162
1163         $final_dfrn_id = '';
1164
1165         if($perm) {
1166                 if((($perm == 'rw') && (! intval($contact['writable']))) 
1167                 || (($perm == 'r') && (intval($contact['writable'])))) {
1168                         q("update contact set writable = %d where id = %d limit 1",
1169                                 intval(($perm == 'rw') ? 1 : 0),
1170                                 intval($contact['id'])
1171                         );
1172                         $contact['writable'] = (string) 1 - intval($contact['writable']);                       
1173                 }
1174         }
1175
1176         if(($contact['duplex'] && strlen($contact['pubkey'])) 
1177                 || ($owner['page-flags'] == PAGE_COMMUNITY && strlen($contact['pubkey']))
1178                 || ($contact['rel'] == CONTACT_IS_SHARING && strlen($contact['pubkey']))) {
1179                 openssl_public_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['pubkey']);
1180                 openssl_public_decrypt($challenge,$postvars['challenge'],$contact['pubkey']);
1181         }
1182         else {
1183                 openssl_private_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['prvkey']);
1184                 openssl_private_decrypt($challenge,$postvars['challenge'],$contact['prvkey']);
1185         }
1186
1187         $final_dfrn_id = substr($final_dfrn_id, 0, strpos($final_dfrn_id, '.'));
1188
1189         if(strpos($final_dfrn_id,':') == 1)
1190                 $final_dfrn_id = substr($final_dfrn_id,2);
1191
1192         if($final_dfrn_id != $orig_id) {
1193                 logger('dfrn_deliver: wrong dfrn_id.');
1194                 // did not decode properly - cannot trust this site 
1195                 return 3;
1196         }
1197
1198         $postvars['dfrn_id']      = $idtosend;
1199         $postvars['dfrn_version'] = DFRN_PROTOCOL_VERSION;
1200         if($dissolve)
1201                 $postvars['dissolve'] = '1';
1202
1203
1204         if((($contact['rel']) && ($contact['rel'] != CONTACT_IS_SHARING) && (! $contact['blocked'])) || ($owner['page-flags'] == PAGE_COMMUNITY)) {
1205                 $postvars['data'] = $atom;
1206                 $postvars['perm'] = 'rw';
1207         }
1208         else {
1209                 $postvars['data'] = str_replace('<dfrn:comment-allow>1','<dfrn:comment-allow>0',$atom);
1210                 $postvars['perm'] = 'r';
1211         }
1212
1213         $postvars['ssl_policy'] = $ssl_policy;
1214
1215         if($page)
1216                 $postvars['page'] = $page;
1217         
1218         if($rino && $rino_allowed && (! $dissolve)) {
1219                 $key = substr(random_string(),0,16);
1220                 $data = bin2hex(aes_encrypt($postvars['data'],$key));
1221                 $postvars['data'] = $data;
1222                 logger('rino: sent key = ' . $key, LOGGER_DEBUG);       
1223
1224
1225                 if($dfrn_version >= 2.1) {      
1226                         if(($contact['duplex'] && strlen($contact['pubkey'])) 
1227                                 || ($owner['page-flags'] == PAGE_COMMUNITY && strlen($contact['pubkey']))
1228                                 || ($contact['rel'] == CONTACT_IS_SHARING && strlen($contact['pubkey']))) {
1229
1230                                 openssl_public_encrypt($key,$postvars['key'],$contact['pubkey']);
1231                         }
1232                         else {
1233                                 openssl_private_encrypt($key,$postvars['key'],$contact['prvkey']);
1234                         }
1235                 }
1236                 else {
1237                         if(($contact['duplex'] && strlen($contact['prvkey'])) || ($owner['page-flags'] == PAGE_COMMUNITY)) {
1238                                 openssl_private_encrypt($key,$postvars['key'],$contact['prvkey']);
1239                         }
1240                         else {
1241                                 openssl_public_encrypt($key,$postvars['key'],$contact['pubkey']);
1242                         }
1243                 }
1244
1245                 logger('md5 rawkey ' . md5($postvars['key']));
1246
1247                 $postvars['key'] = bin2hex($postvars['key']);
1248         }
1249
1250         logger('dfrn_deliver: ' . "SENDING: " . print_r($postvars,true), LOGGER_DATA);
1251
1252         $xml = post_url($contact['notify'],$postvars);
1253
1254         logger('dfrn_deliver: ' . "RECEIVED: " . $xml, LOGGER_DATA);
1255
1256         $curl_stat = $a->get_curl_code();
1257         if((! $curl_stat) || (! strlen($xml)))
1258                 return(-1); // timed out
1259
1260         if(($curl_stat == 503) && (stristr($a->get_curl_headers(),'retry-after')))
1261                 return(-1);
1262
1263         if(strpos($xml,'<?xml') === false) {
1264                 logger('dfrn_deliver: phase 2: no valid XML returned');
1265                 logger('dfrn_deliver: phase 2: returned XML: ' . $xml, LOGGER_DATA);
1266                 return 3;
1267         }
1268
1269         if($contact['term-date'] != '0000-00-00 00:00:00') {
1270                 logger("dfrn_deliver: $url back from the dead - removing mark for death");
1271                 require_once('include/Contact.php');
1272                 unmark_for_death($contact);
1273         }
1274
1275         $res = parse_xml_string($xml);
1276
1277         return $res->status; 
1278 }
1279
1280
1281 /**
1282  *
1283  * consume_feed - process atom feed and update anything/everything we might need to update
1284  *
1285  * $xml = the (atom) feed to consume - RSS isn't as fully supported but may work for simple feeds.
1286  *
1287  * $importer = the contact_record (joined to user_record) of the local user who owns this relationship.
1288  *             It is this person's stuff that is going to be updated.
1289  * $contact =  the person who is sending us stuff. If not set, we MAY be processing a "follow" activity
1290  *             from an external network and MAY create an appropriate contact record. Otherwise, we MUST 
1291  *             have a contact record.
1292  * $hub = should we find a hub declation in the feed, pass it back to our calling process, who might (or 
1293  *        might not) try and subscribe to it.
1294  * $datedir sorts in reverse order
1295  * $pass - by default ($pass = 0) we cannot guarantee that a parent item has been 
1296  *      imported prior to its children being seen in the stream unless we are certain
1297  *      of how the feed is arranged/ordered.
1298  * With $pass = 1, we only pull parent items out of the stream.
1299  * With $pass = 2, we only pull children (comments/likes).
1300  *
1301  * So running this twice, first with pass 1 and then with pass 2 will do the right
1302  * thing regardless of feed ordering. This won't be adequate in a fully-threaded
1303  * model where comments can have sub-threads. That would require some massive sorting
1304  * to get all the feed items into a mostly linear ordering, and might still require
1305  * recursion.  
1306  */
1307
1308 function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0) {
1309
1310         require_once('library/simplepie/simplepie.inc');
1311
1312         if(! strlen($xml)) {
1313                 logger('consume_feed: empty input');
1314                 return;
1315         }
1316                 
1317         $feed = new SimplePie();
1318         $feed->set_raw_data($xml);
1319         if($datedir)
1320                 $feed->enable_order_by_date(true);
1321         else
1322                 $feed->enable_order_by_date(false);
1323         $feed->init();
1324
1325         if($feed->error())
1326                 logger('consume_feed: Error parsing XML: ' . $feed->error());
1327
1328         $permalink = $feed->get_permalink();
1329
1330         // Check at the feed level for updated contact name and/or photo
1331
1332         $name_updated  = '';
1333         $new_name = '';
1334         $photo_timestamp = '';
1335         $photo_url = '';
1336         $birthday = '';
1337
1338         $hubs = $feed->get_links('hub');
1339         logger('consume_feed: hubs: ' . print_r($hubs,true), LOGGER_DATA);
1340
1341         if(count($hubs))
1342                 $hub = implode(',', $hubs);
1343
1344         $rawtags = $feed->get_feed_tags( NAMESPACE_DFRN, 'owner');
1345         if(! $rawtags)
1346                 $rawtags = $feed->get_feed_tags( SIMPLEPIE_NAMESPACE_ATOM_10, 'author');
1347         if($rawtags) {
1348                 $elems = $rawtags[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10];
1349                 if($elems['name'][0]['attribs'][NAMESPACE_DFRN]['updated']) {
1350                         $name_updated = $elems['name'][0]['attribs'][NAMESPACE_DFRN]['updated'];
1351                         $new_name = $elems['name'][0]['data'];
1352                 } 
1353                 if((x($elems,'link')) && ($elems['link'][0]['attribs']['']['rel'] === 'photo') && ($elems['link'][0]['attribs'][NAMESPACE_DFRN]['updated'])) {
1354                         $photo_timestamp = datetime_convert('UTC','UTC',$elems['link'][0]['attribs'][NAMESPACE_DFRN]['updated']);
1355                         $photo_url = $elems['link'][0]['attribs']['']['href'];
1356                 }
1357
1358                 if((x($rawtags[0]['child'], NAMESPACE_DFRN)) && (x($rawtags[0]['child'][NAMESPACE_DFRN],'birthday'))) {
1359                         $birthday = datetime_convert('UTC','UTC', $rawtags[0]['child'][NAMESPACE_DFRN]['birthday'][0]['data']);
1360                 }
1361         }
1362
1363         if((is_array($contact)) && ($photo_timestamp) && (strlen($photo_url)) && ($photo_timestamp > $contact['avatar-date'])) {
1364                 logger('consume_feed: Updating photo for ' . $contact['name']);
1365                 require_once("Photo.php");
1366                 $photo_failure = false;
1367                 $have_photo = false;
1368
1369                 $r = q("SELECT `resource-id` FROM `photo` WHERE `contact-id` = %d AND `uid` = %d LIMIT 1",
1370                         intval($contact['id']),
1371                         intval($contact['uid'])
1372                 );
1373                 if(count($r)) {
1374                         $resource_id = $r[0]['resource-id'];
1375                         $have_photo = true;
1376                 }
1377                 else {
1378                         $resource_id = photo_new_resource();
1379                 }
1380                         
1381                 $img_str = fetch_url($photo_url,true);
1382                 // guess mimetype from headers or filename
1383                 $type = guess_image_type($photo_url,true);
1384                 
1385                 
1386                 $img = new Photo($img_str, $type);
1387                 if($img->is_valid()) {
1388                         if($have_photo) {
1389                                 q("DELETE FROM `photo` WHERE `resource-id` = '%s' AND `contact-id` = %d AND `uid` = %d",
1390                                         dbesc($resource_id),
1391                                         intval($contact['id']),
1392                                         intval($contact['uid'])
1393                                 );
1394                         }
1395                                 
1396                         $img->scaleImageSquare(175);
1397                                 
1398                         $hash = $resource_id;
1399                         $r = $img->store($contact['uid'], $contact['id'], $hash, basename($photo_url), 'Contact Photos', 4);
1400                                 
1401                         $img->scaleImage(80);
1402                         $r = $img->store($contact['uid'], $contact['id'], $hash, basename($photo_url), 'Contact Photos', 5);
1403
1404                         $img->scaleImage(48);
1405                         $r = $img->store($contact['uid'], $contact['id'], $hash, basename($photo_url), 'Contact Photos', 6);
1406
1407                         $a = get_app();
1408
1409                         q("UPDATE `contact` SET `avatar-date` = '%s', `photo` = '%s', `thumb` = '%s', `micro` = '%s'  
1410                                 WHERE `uid` = %d AND `id` = %d LIMIT 1",
1411                                 dbesc(datetime_convert()),
1412                                 dbesc($a->get_baseurl() . '/photo/' . $hash . '-4.'.$img->getExt()),
1413                                 dbesc($a->get_baseurl() . '/photo/' . $hash . '-5.'.$img->getExt()),
1414                                 dbesc($a->get_baseurl() . '/photo/' . $hash . '-6.'.$img->getExt()),
1415                                 intval($contact['uid']),
1416                                 intval($contact['id'])
1417                         );
1418                 }
1419         }
1420
1421         if((is_array($contact)) && ($name_updated) && (strlen($new_name)) && ($name_updated > $contact['name-date'])) {
1422                 $r = q("select * from contact where uid = %d and id = %d limit 1",
1423                         intval($contact['uid']),
1424                         intval($contact['id'])
1425                 );
1426
1427                 $x = q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s' WHERE `uid` = %d AND `id` = %d LIMIT 1",
1428                         dbesc(notags(trim($new_name))),
1429                         dbesc(datetime_convert()),
1430                         intval($contact['uid']),
1431                         intval($contact['id'])
1432                 );
1433
1434                 // do our best to update the name on content items
1435
1436                 if(count($r)) {
1437                         q("update item set `author-name` = '%s' where `author-name` = '%s' and `author-link` = '%s' and uid = %d",
1438                                 dbesc(notags(trim($new_name))),
1439                                 dbesc($r[0]['name']),
1440                                 dbesc($r[0]['url']),
1441                                 intval($contact['uid'])
1442                         );
1443                 }
1444         }
1445
1446         if(strlen($birthday)) {
1447                 if(substr($birthday,0,4) != $contact['bdyear']) {
1448                         logger('consume_feed: updating birthday: ' . $birthday);
1449
1450                         /**
1451                          *
1452                          * Add new birthday event for this person
1453                          *
1454                          * $bdtext is just a readable placeholder in case the event is shared
1455                          * with others. We will replace it during presentation to our $importer
1456                          * to contain a sparkle link and perhaps a photo. 
1457                          *
1458                          */
1459                          
1460                         $bdtext = t('Birthday:') . ' [url=' . $contact['url'] . ']' . $contact['name'] . '[/url]' ;
1461
1462
1463                         $r = q("INSERT INTO `event` (`uid`,`cid`,`created`,`edited`,`start`,`finish`,`desc`,`type`)
1464                                 VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s' ) ",
1465                                 intval($contact['uid']),
1466                                 intval($contact['id']),
1467                                 dbesc(datetime_convert()),
1468                                 dbesc(datetime_convert()),
1469                                 dbesc(datetime_convert('UTC','UTC', $birthday)),
1470                                 dbesc(datetime_convert('UTC','UTC', $birthday . ' + 1 day ')),
1471                                 dbesc($bdtext),
1472                                 dbesc('birthday')
1473                         );
1474                         
1475
1476                         // update bdyear
1477
1478                         q("UPDATE `contact` SET `bdyear` = '%s' WHERE `uid` = %d AND `id` = %d LIMIT 1",
1479                                 dbesc(substr($birthday,0,4)),
1480                                 intval($contact['uid']),
1481                                 intval($contact['id'])
1482                         );
1483
1484                         // This function is called twice without reloading the contact
1485                         // Make sure we only create one event. This is why &$contact 
1486                         // is a reference var in this function
1487
1488                         $contact['bdyear'] = substr($birthday,0,4);
1489                 }
1490
1491         }
1492
1493         $community_page = 0;
1494         $rawtags = $feed->get_feed_tags( NAMESPACE_DFRN, 'community');
1495         if($rawtags) {
1496                 $community_page = intval($rawtags[0]['data']);
1497         }
1498         if(is_array($contact) && intval($contact['forum']) != $community_page) {
1499                 q("update contact set forum = %d where id = %d limit 1",
1500                         intval($community_page),
1501                         intval($contact['id'])
1502                 );
1503                 $contact['forum'] = (string) $community_page;
1504         }
1505
1506
1507         // process any deleted entries
1508
1509         $del_entries = $feed->get_feed_tags(NAMESPACE_TOMB, 'deleted-entry');
1510         if(is_array($del_entries) && count($del_entries) && $pass != 2) {
1511                 foreach($del_entries as $dentry) {
1512                         $deleted = false;
1513                         if(isset($dentry['attribs']['']['ref'])) {
1514                                 $uri = $dentry['attribs']['']['ref'];
1515                                 $deleted = true;
1516                                 if(isset($dentry['attribs']['']['when'])) {
1517                                         $when = $dentry['attribs']['']['when'];
1518                                         $when = datetime_convert('UTC','UTC', $when, 'Y-m-d H:i:s');
1519                                 }
1520                                 else
1521                                         $when = datetime_convert('UTC','UTC','now','Y-m-d H:i:s');
1522                         }
1523                         if($deleted && is_array($contact)) {
1524                                 $r = q("SELECT `item`.*, `contact`.`self` FROM `item` left join `contact` on `item`.`contact-id` = `contact`.`id` 
1525                                         WHERE `uri` = '%s' AND `item`.`uid` = %d AND `contact-id` = %d AND NOT `item`.`file` LIKE '%%[%%' LIMIT 1",
1526                                         dbesc($uri),
1527                                         intval($importer['uid']),
1528                                         intval($contact['id'])
1529                                 );
1530                                 if(count($r)) {
1531                                         $item = $r[0];
1532
1533                                         if(! $item['deleted'])
1534                                                 logger('consume_feed: deleting item ' . $item['id'] . ' uri=' . $item['uri'], LOGGER_DEBUG);
1535
1536                                         if(($item['verb'] === ACTIVITY_TAG) && ($item['object-type'] === ACTIVITY_OBJ_TAGTERM)) {
1537                                                 $xo = parse_xml_string($item['object'],false);
1538                                                 $xt = parse_xml_string($item['target'],false);
1539                                                 if($xt->type === ACTIVITY_OBJ_NOTE) {
1540                                                         $i = q("select * from `item` where uri = '%s' and uid = %d limit 1",
1541                                                                 dbesc($xt->id),
1542                                                                 intval($importer['importer_uid'])
1543                                                         );
1544                                                         if(count($i)) {
1545
1546                                                                 // For tags, the owner cannot remove the tag on the author's copy of the post.
1547
1548                                                                 $owner_remove = (($item['contact-id'] == $i[0]['contact-id']) ? true: false);
1549                                                                 $author_remove = (($item['origin'] && $item['self']) ? true : false);
1550                                                                 $author_copy = (($item['origin']) ? true : false);
1551
1552                                                                 if($owner_remove && $author_copy)
1553                                                                         continue;
1554                                                                 if($author_remove || $owner_remove) {
1555                                                                         $tags = explode(',',$i[0]['tag']);
1556                                                                         $newtags = array();
1557                                                                         if(count($tags)) {
1558                                                                                 foreach($tags as $tag)
1559                                                                                         if(trim($tag) !== trim($xo->body))
1560                                                                                                 $newtags[] = trim($tag);
1561                                                                         }
1562                                                                         q("update item set tag = '%s' where id = %d limit 1",
1563                                                                                 dbesc(implode(',',$newtags)),
1564                                                                                 intval($i[0]['id'])
1565                                                                         );
1566                                                                 }
1567                                                         }
1568                                                 }
1569                                         }
1570
1571                                         if($item['uri'] == $item['parent-uri']) {
1572                                                 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s',
1573                                                         `body` = '', `title` = ''
1574                                                         WHERE `parent-uri` = '%s' AND `uid` = %d",
1575                                                         dbesc($when),
1576                                                         dbesc(datetime_convert()),
1577                                                         dbesc($item['uri']),
1578                                                         intval($importer['uid'])
1579                                                 );
1580                                         }
1581                                         else {
1582                                                 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s',
1583                                                         `body` = '', `title` = '' 
1584                                                         WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1585                                                         dbesc($when),
1586                                                         dbesc(datetime_convert()),
1587                                                         dbesc($uri),
1588                                                         intval($importer['uid'])
1589                                                 );
1590                                                 if($item['last-child']) {
1591                                                         // ensure that last-child is set in case the comment that had it just got wiped.
1592                                                         q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d ",
1593                                                                 dbesc(datetime_convert()),
1594                                                                 dbesc($item['parent-uri']),
1595                                                                 intval($item['uid'])
1596                                                         );
1597                                                         // who is the last child now? 
1598                                                         $r = q("SELECT `id` FROM `item` WHERE `parent-uri` = '%s' AND `type` != 'activity' AND `deleted` = 0 AND `moderated` = 0 AND `uid` = %d 
1599                                                                 ORDER BY `created` DESC LIMIT 1",
1600                                                                         dbesc($item['parent-uri']),
1601                                                                         intval($importer['uid'])
1602                                                         );
1603                                                         if(count($r)) {
1604                                                                 q("UPDATE `item` SET `last-child` = 1 WHERE `id` = %d LIMIT 1",
1605                                                                         intval($r[0]['id'])
1606                                                                 );
1607                                                         }
1608                                                 }       
1609                                         }
1610                                 }       
1611                         }
1612                 }
1613         }
1614
1615         // Now process the feed
1616
1617         if($feed->get_item_quantity()) {                
1618
1619                 logger('consume_feed: feed item count = ' . $feed->get_item_quantity());
1620
1621         // in inverse date order
1622                 if ($datedir)
1623                         $items = array_reverse($feed->get_items());
1624                 else
1625                         $items = $feed->get_items();
1626
1627
1628                 foreach($items as $item) {
1629
1630                         $is_reply = false;              
1631                         $item_id = $item->get_id();
1632                         $rawthread = $item->get_item_tags( NAMESPACE_THREAD,'in-reply-to');
1633                         if(isset($rawthread[0]['attribs']['']['ref'])) {
1634                                 $is_reply = true;
1635                                 $parent_uri = $rawthread[0]['attribs']['']['ref'];
1636                         }
1637
1638                         if(($is_reply) && is_array($contact)) {
1639
1640                                 if($pass == 1)
1641                                         continue;
1642
1643                                 // Have we seen it? If not, import it.
1644         
1645                                 $item_id  = $item->get_id();
1646                                 $datarray = get_atom_elements($feed,$item);
1647
1648
1649                                 if((! x($datarray,'author-name')) && ($contact['network'] != NETWORK_DFRN))
1650                                         $datarray['author-name'] = $contact['name'];
1651                                 if((! x($datarray,'author-link')) && ($contact['network'] != NETWORK_DFRN))
1652                                         $datarray['author-link'] = $contact['url'];
1653                                 if((! x($datarray,'author-avatar')) && ($contact['network'] != NETWORK_DFRN))
1654                                         $datarray['author-avatar'] = $contact['thumb'];
1655
1656                                 if((! x($datarray,'author-name')) || (! x($datarray,'author-link'))) {
1657                                         logger('consume_feed: no author information! ' . print_r($datarray,true));
1658                                         continue;
1659                                 }
1660
1661                                 $r = q("SELECT `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1662                                         dbesc($item_id),
1663                                         intval($importer['uid'])
1664                                 );
1665
1666                                 // Update content if 'updated' changes
1667
1668                                 if(count($r)) {
1669                                         if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) {  
1670
1671                                                 // do not accept (ignore) an earlier edit than one we currently have.
1672                                                 if(datetime_convert('UTC','UTC',$datarray['edited']) < $r[0]['edited'])
1673                                                         continue;
1674
1675                                                 $r = q("UPDATE `item` SET `title` = '%s', `body` = '%s', `tag` = '%s', `edited` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1676                                                         dbesc($datarray['title']),
1677                                                         dbesc($datarray['body']),
1678                                                         dbesc($datarray['tag']),
1679                                                         dbesc(datetime_convert('UTC','UTC',$datarray['edited'])),
1680                                                         dbesc($item_id),
1681                                                         intval($importer['uid'])
1682                                                 );
1683                                         }
1684
1685                                         // update last-child if it changes
1686
1687                                         $allow = $item->get_item_tags( NAMESPACE_DFRN, 'comment-allow');
1688                                         if(($allow) && ($allow[0]['data'] != $r[0]['last-child'])) {
1689                                                 $r = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d",
1690                                                         dbesc(datetime_convert()),
1691                                                         dbesc($parent_uri),
1692                                                         intval($importer['uid'])
1693                                                 );
1694                                                 $r = q("UPDATE `item` SET `last-child` = %d , `changed` = '%s'  WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1695                                                         intval($allow[0]['data']),
1696                                                         dbesc(datetime_convert()),
1697                                                         dbesc($item_id),
1698                                                         intval($importer['uid'])
1699                                                 );
1700                                         }
1701                                         continue;
1702                                 }
1703
1704                                 $force_parent = false;
1705                                 if($contact['network'] === NETWORK_OSTATUS || stristr($contact['url'],'twitter.com')) {
1706                                         if($contact['network'] === NETWORK_OSTATUS)
1707                                                 $force_parent = true;
1708                                         if(strlen($datarray['title']))
1709                                                 unset($datarray['title']);
1710                                         $r = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d",
1711                                                 dbesc(datetime_convert()),
1712                                                 dbesc($parent_uri),
1713                                                 intval($importer['uid'])
1714                                         );
1715                                         $datarray['last-child'] = 1;
1716                                 }
1717
1718                                 if(($contact['network'] === NETWORK_FEED) || (! strlen($contact['notify']))) {
1719                                         // one way feed - no remote comment ability
1720                                         $datarray['last-child'] = 0;
1721                                 }
1722                                 $datarray['parent-uri'] = $parent_uri;
1723                                 $datarray['uid'] = $importer['uid'];
1724                                 $datarray['contact-id'] = $contact['id'];
1725                                 if((activity_match($datarray['verb'],ACTIVITY_LIKE)) || (activity_match($datarray['verb'],ACTIVITY_DISLIKE))) {
1726                                         $datarray['type'] = 'activity';
1727                                         $datarray['gravity'] = GRAVITY_LIKE;
1728                                         // only one like or dislike per person
1729                                         $r = q("select id from item where uid = %d and `contact-id` = %d and verb ='%s' and deleted = 0 limit 1",
1730                                                 intval($datarray['uid']),
1731                                                 intval($datarray['contact-id']),
1732                                                 dbesc($datarray['verb'])
1733                                         );
1734                                         if($r && count($r))
1735                                                 continue; 
1736                                 }
1737
1738                                 if(($datarray['verb'] === ACTIVITY_TAG) && ($datarray['object-type'] === ACTIVITY_OBJ_TAGTERM)) {
1739                                         $xo = parse_xml_string($datarray['object'],false);
1740                                         $xt = parse_xml_string($datarray['target'],false);
1741
1742                                         if($xt->type == ACTIVITY_OBJ_NOTE) {
1743                                                 $r = q("select * from item where `uri` = '%s' AND `uid` = %d limit 1",
1744                                                         dbesc($xt->id),
1745                                                         intval($importer['importer_uid'])
1746                                                 );
1747                                                 if(! count($r))
1748                                                         continue;
1749
1750                                                 // extract tag, if not duplicate, add to parent item
1751                                                 if($xo->id && $xo->content) {
1752                                                         $newtag = '#[url=' . $xo->id . ']'. $xo->content . '[/url]';
1753                                                         if(! (stristr($r[0]['tag'],$newtag))) {
1754                                                                 q("UPDATE item SET tag = '%s' WHERE id = %d LIMIT 1",
1755                                                                         dbesc($r[0]['tag'] . (strlen($r[0]['tag']) ? ',' : '') . $newtag),
1756                                                                         intval($r[0]['id'])
1757                                                                 );
1758                                                         }
1759                                                 }
1760                                         }
1761                                 }
1762
1763                                 $r = item_store($datarray,$force_parent);
1764                                 continue;
1765                         }
1766
1767                         else {
1768
1769                                 // Head post of a conversation. Have we seen it? If not, import it.
1770
1771                                 $item_id  = $item->get_id();
1772
1773                                 $datarray = get_atom_elements($feed,$item);
1774
1775                                 if(is_array($contact)) {
1776                                         if((! x($datarray,'author-name')) && ($contact['network'] != NETWORK_DFRN))
1777                                                 $datarray['author-name'] = $contact['name'];
1778                                         if((! x($datarray,'author-link')) && ($contact['network'] != NETWORK_DFRN))
1779                                                 $datarray['author-link'] = $contact['url'];
1780                                         if((! x($datarray,'author-avatar')) && ($contact['network'] != NETWORK_DFRN))
1781                                                 $datarray['author-avatar'] = $contact['thumb'];
1782                                 }
1783
1784                                 if((! x($datarray,'author-name')) || (! x($datarray,'author-link'))) {
1785                                         logger('consume_feed: no author information! ' . print_r($datarray,true));
1786                                         continue;
1787                                 }
1788
1789                                 // special handling for events
1790
1791                                 if((x($datarray,'object-type')) && ($datarray['object-type'] === ACTIVITY_OBJ_EVENT)) {
1792                                         $ev = bbtoevent($datarray['body']);
1793                                         if(x($ev,'desc') && x($ev,'start')) {
1794                                                 $ev['uid'] = $importer['uid'];
1795                                                 $ev['uri'] = $item_id;
1796                                                 $ev['edited'] = $datarray['edited'];
1797                                                 $ev['private'] = $datarray['private'];
1798
1799                                                 if(is_array($contact))
1800                                                         $ev['cid'] = $contact['id'];
1801                                                 $r = q("SELECT * FROM `event` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1802                                                         dbesc($item_id),
1803                                                         intval($importer['uid'])
1804                                                 );
1805                                                 if(count($r))
1806                                                         $ev['id'] = $r[0]['id'];
1807                                                 $xyz = event_store($ev);
1808                                                 continue;
1809                                         }
1810                                 }
1811
1812                                 $r = q("SELECT `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1813                                         dbesc($item_id),
1814                                         intval($importer['uid'])
1815                                 );
1816
1817                                 // Update content if 'updated' changes
1818
1819                                 if(count($r)) {
1820                                         if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) {  
1821
1822                                                 // do not accept (ignore) an earlier edit than one we currently have.
1823                                                 if(datetime_convert('UTC','UTC',$datarray['edited']) < $r[0]['edited'])
1824                                                         continue;
1825
1826                                                 $r = q("UPDATE `item` SET `title` = '%s', `body` = '%s', `tag` = '%s', `edited` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1827                                                         dbesc($datarray['title']),
1828                                                         dbesc($datarray['body']),
1829                                                         dbesc($datarray['tag']),
1830                                                         dbesc(datetime_convert('UTC','UTC',$datarray['edited'])),
1831                                                         dbesc($item_id),
1832                                                         intval($importer['uid'])
1833                                                 );
1834                                         }
1835
1836                                         // update last-child if it changes
1837
1838                                         $allow = $item->get_item_tags( NAMESPACE_DFRN, 'comment-allow');
1839                                         if($allow && $allow[0]['data'] != $r[0]['last-child']) {
1840                                                 $r = q("UPDATE `item` SET `last-child` = %d , `changed` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1841                                                         intval($allow[0]['data']),
1842                                                         dbesc(datetime_convert()),
1843                                                         dbesc($item_id),
1844                                                         intval($importer['uid'])
1845                                                 );
1846                                         }
1847                                         continue;
1848                                 }
1849
1850                                 if(activity_match($datarray['verb'],ACTIVITY_FOLLOW)) {
1851                                         logger('consume-feed: New follower');
1852                                         new_follower($importer,$contact,$datarray,$item);
1853                                         return;
1854                                 }
1855                                 if(activity_match($datarray['verb'],ACTIVITY_UNFOLLOW))  {
1856                                         lose_follower($importer,$contact,$datarray,$item);
1857                                         return;
1858                                 }
1859
1860                                 if(activity_match($datarray['verb'],ACTIVITY_REQ_FRIEND)) {
1861                                         logger('consume-feed: New friend request');
1862                                         new_follower($importer,$contact,$datarray,$item,true);
1863                                         return;
1864                                 }
1865                                 if(activity_match($datarray['verb'],ACTIVITY_UNFRIEND))  {
1866                                         lose_sharer($importer,$contact,$datarray,$item);
1867                                         return;
1868                                 }
1869
1870
1871                                 if(! is_array($contact))
1872                                         return;
1873
1874                                 if($contact['network'] === NETWORK_OSTATUS || stristr($contact['url'],'twitter.com')) {
1875                                         if(strlen($datarray['title']))
1876                                                 unset($datarray['title']);
1877                                         $datarray['last-child'] = 1;
1878                                 }
1879
1880                                 if(($contact['network'] === NETWORK_FEED) || (! strlen($contact['notify']))) {
1881                                                 // one way feed - no remote comment ability
1882                                                 $datarray['last-child'] = 0;
1883                                 }
1884                                 if($contact['network'] === NETWORK_FEED)
1885                                         $datarray['private'] = 1;
1886
1887                                 // This is my contact on another system, but it's really me.
1888                                 // Turn this into a wall post.
1889
1890                                 if($contact['remote_self'])
1891                                         $datarray['wall'] = 1;
1892
1893                                 $datarray['parent-uri'] = $item_id;
1894                                 $datarray['uid'] = $importer['uid'];
1895                                 $datarray['contact-id'] = $contact['id'];
1896
1897                                 if(! link_compare($datarray['owner-link'],$contact['url'])) {
1898                                         // The item owner info is not our contact. It's OK and is to be expected if this is a tgroup delivery, 
1899                                         // but otherwise there's a possible data mixup on the sender's system.
1900                                         // the tgroup delivery code called from item_store will correct it if it's a forum,
1901                                         // but we're going to unconditionally correct it here so that the post will always be owned by our contact. 
1902                                         logger('consume_feed: Correcting item owner.', LOGGER_DEBUG);
1903                                         $datarray['owner-name']   = $contact['name'];
1904                                         $datarray['owner-link']   = $contact['url'];
1905                                         $datarray['owner-avatar'] = $contact['thumb'];
1906                                 }
1907
1908                                 $r = item_store($datarray);
1909                                 continue;
1910
1911                         }
1912                 }
1913         }
1914 }
1915
1916 function local_delivery($importer,$data) {
1917
1918         $a = get_app();
1919
1920         if($importer['readonly']) {
1921                 // We aren't receiving stuff from this person. But we will quietly ignore them
1922                 // rather than a blatant "go away" message.
1923                 logger('local_delivery: ignoring');
1924                 return 0;
1925                 //NOTREACHED
1926         }
1927
1928         // Consume notification feed. This may differ from consuming a public feed in several ways
1929         // - might contain email or friend suggestions
1930         // - might contain remote followup to our message
1931         //              - in which case we need to accept it and then notify other conversants
1932         // - we may need to send various email notifications
1933
1934         $feed = new SimplePie();
1935         $feed->set_raw_data($data);
1936         $feed->enable_order_by_date(false);
1937         $feed->init();
1938
1939 /*
1940         // Currently unsupported - needs a lot of work
1941         $reloc = $feed->get_feed_tags( NAMESPACE_DFRN, 'relocate' );
1942         if(isset($reloc[0]['child'][NAMESPACE_DFRN])) {
1943                 $base = $reloc[0]['child'][NAMESPACE_DFRN];
1944                 $newloc = array();
1945                 $newloc['uid'] = $importer['importer_uid'];
1946                 $newloc['cid'] = $importer['id'];
1947                 $newloc['name'] = notags(unxmlify($base['name'][0]['data']));
1948                 $newloc['photo'] = notags(unxmlify($base['photo'][0]['data']));
1949                 $newloc['url'] = notags(unxmlify($base['url'][0]['data']));
1950                 $newloc['request'] = notags(unxmlify($base['request'][0]['data']));
1951                 $newloc['confirm'] = notags(unxmlify($base['confirm'][0]['data']));
1952                 $newloc['notify'] = notags(unxmlify($base['notify'][0]['data']));
1953                 $newloc['poll'] = notags(unxmlify($base['poll'][0]['data']));
1954                 $newloc['site-pubkey'] = notags(unxmlify($base['site-pubkey'][0]['data']));
1955                 $newloc['pubkey'] = notags(unxmlify($base['pubkey'][0]['data']));
1956                 $newloc['prvkey'] = notags(unxmlify($base['prvkey'][0]['data']));
1957                 
1958                 // TODO
1959                 // merge with current record, current contents have priority
1960                 // update record, set url-updated
1961                 // update profile photos
1962                 // schedule a scan?
1963
1964         }
1965 */
1966
1967         // handle friend suggestion notification
1968
1969         $sugg = $feed->get_feed_tags( NAMESPACE_DFRN, 'suggest' );
1970         if(isset($sugg[0]['child'][NAMESPACE_DFRN])) {
1971                 $base = $sugg[0]['child'][NAMESPACE_DFRN];
1972                 $fsugg = array();
1973                 $fsugg['uid'] = $importer['importer_uid'];
1974                 $fsugg['cid'] = $importer['id'];
1975                 $fsugg['name'] = notags(unxmlify($base['name'][0]['data']));
1976                 $fsugg['photo'] = notags(unxmlify($base['photo'][0]['data']));
1977                 $fsugg['url'] = notags(unxmlify($base['url'][0]['data']));
1978                 $fsugg['request'] = notags(unxmlify($base['request'][0]['data']));
1979                 $fsugg['body'] = escape_tags(unxmlify($base['note'][0]['data']));
1980
1981                 // Does our member already have a friend matching this description?
1982
1983                 $r = q("SELECT * FROM `contact` WHERE `name` = '%s' AND `nurl` = '%s' AND `uid` = %d LIMIT 1",
1984                         dbesc($fsugg['name']),
1985                         dbesc(normalise_link($fsugg['url'])),
1986                         intval($fsugg['uid'])
1987                 );
1988                 if(count($r))
1989                         return 0;
1990
1991                 // Do we already have an fcontact record for this person?
1992
1993                 $fid = 0;
1994                 $r = q("SELECT * FROM `fcontact` WHERE `url` = '%s' AND `name` = '%s' AND `request` = '%s' LIMIT 1",
1995                         dbesc($fsugg['url']),
1996                         dbesc($fsugg['name']),
1997                         dbesc($fsugg['request'])
1998                 );
1999                 if(count($r)) {
2000                         $fid = $r[0]['id'];
2001
2002                         // OK, we do. Do we already have an introduction for this person ?
2003                         $r = q("select id from intro where uid = %d and fid = %d limit 1",
2004                                 intval($fsugg['uid']),
2005                                 intval($fid)
2006                         );
2007                         if(count($r))
2008                                 return 0;
2009                 }
2010                 if(! $fid)
2011                         $r = q("INSERT INTO `fcontact` ( `name`,`url`,`photo`,`request` ) VALUES ( '%s', '%s', '%s', '%s' ) ",
2012                         dbesc($fsugg['name']),
2013                         dbesc($fsugg['url']),
2014                         dbesc($fsugg['photo']),
2015                         dbesc($fsugg['request'])
2016                 );
2017                 $r = q("SELECT * FROM `fcontact` WHERE `url` = '%s' AND `name` = '%s' AND `request` = '%s' LIMIT 1",
2018                         dbesc($fsugg['url']),
2019                         dbesc($fsugg['name']),
2020                         dbesc($fsugg['request'])
2021                 );
2022                 if(count($r)) {
2023                         $fid = $r[0]['id'];
2024                 }
2025                 // database record did not get created. Quietly give up.
2026                 else
2027                         return 0;
2028
2029
2030                 $hash = random_string();
2031  
2032                 $r = q("INSERT INTO `intro` ( `uid`, `fid`, `contact-id`, `note`, `hash`, `datetime`, `blocked` )
2033                         VALUES( %d, %d, %d, '%s', '%s', '%s', %d )",
2034                         intval($fsugg['uid']),
2035                         intval($fid),
2036                         intval($fsugg['cid']),
2037                         dbesc($fsugg['body']),
2038                         dbesc($hash),
2039                         dbesc(datetime_convert()),
2040                         intval(0)
2041                 );
2042
2043                 notification(array(
2044                         'type'         => NOTIFY_SUGGEST,
2045                         'notify_flags' => $importer['notify-flags'],
2046                         'language'     => $importer['language'],
2047                         'to_name'      => $importer['username'],
2048                         'to_email'     => $importer['email'],
2049                         'uid'          => $importer['importer_uid'],
2050                         'item'         => $fsugg,
2051                         'link'         => $a->get_baseurl() . '/notifications/intros',
2052                         'source_name'  => $importer['name'],
2053                         'source_link'  => $importer['url'],
2054                         'source_photo' => $importer['photo'],
2055                         'verb'         => ACTIVITY_REQ_FRIEND,
2056                         'otype'        => 'intro'
2057                 ));
2058
2059                 return 0;
2060         }
2061
2062         $ismail = false;
2063
2064         $rawmail = $feed->get_feed_tags( NAMESPACE_DFRN, 'mail' );
2065         if(isset($rawmail[0]['child'][NAMESPACE_DFRN])) {
2066
2067                 logger('local_delivery: private message received');
2068
2069                 $ismail = true;
2070                 $base = $rawmail[0]['child'][NAMESPACE_DFRN];
2071
2072                 $msg = array();
2073                 $msg['uid'] = $importer['importer_uid'];
2074                 $msg['from-name'] = notags(unxmlify($base['sender'][0]['child'][NAMESPACE_DFRN]['name'][0]['data']));
2075                 $msg['from-photo'] = notags(unxmlify($base['sender'][0]['child'][NAMESPACE_DFRN]['avatar'][0]['data']));
2076                 $msg['from-url'] = notags(unxmlify($base['sender'][0]['child'][NAMESPACE_DFRN]['uri'][0]['data']));
2077                 $msg['contact-id'] = $importer['id'];
2078                 $msg['title'] = notags(unxmlify($base['subject'][0]['data']));
2079                 $msg['body'] = escape_tags(unxmlify($base['content'][0]['data']));
2080                 $msg['seen'] = 0;
2081                 $msg['replied'] = 0;
2082                 $msg['uri'] = notags(unxmlify($base['id'][0]['data']));
2083                 $msg['parent-uri'] = notags(unxmlify($base['in-reply-to'][0]['data']));
2084                 $msg['created'] = datetime_convert(notags(unxmlify('UTC','UTC',$base['sentdate'][0]['data'])));
2085                 
2086                 dbesc_array($msg);
2087
2088                 $r = dbq("INSERT INTO `mail` (`" . implode("`, `", array_keys($msg)) 
2089                         . "`) VALUES ('" . implode("', '", array_values($msg)) . "')" );
2090
2091                 // send notifications.
2092
2093                 require_once('include/enotify.php');
2094
2095                 $notif_params = array(
2096                         'type' => NOTIFY_MAIL,
2097                         'notify_flags' => $importer['notify-flags'],
2098                         'language' => $importer['language'],
2099                         'to_name' => $importer['username'],
2100                         'to_email' => $importer['email'],
2101                         'uid' => $importer['importer_uid'],
2102                         'item' => $msg,
2103                         'source_name' => $msg['from-name'],
2104                         'source_link' => $importer['url'],
2105                         'source_photo' => $importer['thumb'],
2106                         'verb' => ACTIVITY_POST,
2107                         'otype' => 'mail'
2108                 );
2109                         
2110                 notification($notif_params);
2111                 return 0;
2112
2113                 // NOTREACHED
2114         }       
2115
2116         $community_page = 0;
2117         $rawtags = $feed->get_feed_tags( NAMESPACE_DFRN, 'community');
2118         if($rawtags) {
2119                 $community_page = intval($rawtags[0]['data']);
2120         }
2121         if(intval($importer['forum']) != $community_page) {
2122                 q("update contact set forum = %d where id = %d limit 1",
2123                         intval($community_page),
2124                         intval($importer['id'])
2125                 );
2126                 $importer['forum'] = (string) $community_page;
2127         }
2128         
2129         logger('local_delivery: feed item count = ' . $feed->get_item_quantity());
2130
2131         // process any deleted entries
2132
2133         $del_entries = $feed->get_feed_tags(NAMESPACE_TOMB, 'deleted-entry');
2134         if(is_array($del_entries) && count($del_entries)) {
2135                 foreach($del_entries as $dentry) {
2136                         $deleted = false;
2137                         if(isset($dentry['attribs']['']['ref'])) {
2138                                 $uri = $dentry['attribs']['']['ref'];
2139                                 $deleted = true;
2140                                 if(isset($dentry['attribs']['']['when'])) {
2141                                         $when = $dentry['attribs']['']['when'];
2142                                         $when = datetime_convert('UTC','UTC', $when, 'Y-m-d H:i:s');
2143                                 }
2144                                 else
2145                                         $when = datetime_convert('UTC','UTC','now','Y-m-d H:i:s');
2146                         }
2147                         if($deleted) {
2148
2149                                 $r = q("SELECT `item`.*, `contact`.`self` FROM `item` left join contact on `item`.`contact-id` = `contact`.`id`
2150                                         WHERE `uri` = '%s' AND `item`.`uid` = %d AND `contact-id` = %d AND NOT `item`.`file` LIKE '%%[%%' LIMIT 1",
2151                                         dbesc($uri),
2152                                         intval($importer['importer_uid']),
2153                                         intval($importer['id'])
2154                                 );
2155
2156                                 if(count($r)) {
2157                                         $item = $r[0];
2158
2159                                         if($item['deleted'])
2160                                                 continue;
2161
2162                                         logger('local_delivery: deleting item ' . $item['id'] . ' uri=' . $item['uri'], LOGGER_DEBUG);
2163
2164                                         if(($item['verb'] === ACTIVITY_TAG) && ($item['object-type'] === ACTIVITY_OBJ_TAGTERM)) {
2165                                                 $xo = parse_xml_string($item['object'],false);
2166                                                 $xt = parse_xml_string($item['target'],false);
2167
2168                                                 if($xt->type === ACTIVITY_OBJ_NOTE) {
2169                                                         $i = q("select * from `item` where uri = '%s' and uid = %d limit 1",
2170                                                                 dbesc($xt->id),
2171                                                                 intval($importer['importer_uid'])
2172                                                         );
2173                                                         if(count($i)) {
2174
2175                                                                 // For tags, the owner cannot remove the tag on the author's copy of the post.
2176                                                                 
2177                                                                 $owner_remove = (($item['contact-id'] == $i[0]['contact-id']) ? true: false);
2178                                                                 $author_remove = (($item['origin'] && $item['self']) ? true : false);
2179                                                                 $author_copy = (($item['origin']) ? true : false); 
2180
2181                                                                 if($owner_remove && $author_copy)
2182                                                                         continue;
2183                                                                 if($author_remove || $owner_remove) {                                                           
2184                                                                         $tags = explode(',',$i[0]['tag']);
2185                                                                         $newtags = array();
2186                                                                         if(count($tags)) {
2187                                                                                 foreach($tags as $tag)
2188                                                                                         if(trim($tag) !== trim($xo->body))
2189                                                                                                 $newtags[] = trim($tag);
2190                                                                         }
2191                                                                         q("update item set tag = '%s' where id = %d limit 1",
2192                                                                                 dbesc(implode(',',$newtags)),
2193                                                                                 intval($i[0]['id'])
2194                                                                         );
2195                                                                 }
2196                                                         }
2197                                                 }
2198                                         }
2199
2200                                         if($item['uri'] == $item['parent-uri']) {
2201                                                 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s'
2202                                                         WHERE `parent-uri` = '%s' AND `uid` = %d",
2203                                                         dbesc($when),
2204                                                         dbesc(datetime_convert()),
2205                                                         dbesc($item['uri']),
2206                                                         intval($importer['importer_uid'])
2207                                                 );
2208                                         }
2209                                         else {
2210                                                 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s' 
2211                                                         WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2212                                                         dbesc($when),
2213                                                         dbesc(datetime_convert()),
2214                                                         dbesc($uri),
2215                                                         intval($importer['importer_uid'])
2216                                                 );
2217                                                 if($item['last-child']) {
2218                                                         // ensure that last-child is set in case the comment that had it just got wiped.
2219                                                         q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d ",
2220                                                                 dbesc(datetime_convert()),
2221                                                                 dbesc($item['parent-uri']),
2222                                                                 intval($item['uid'])
2223                                                         );
2224                                                         // who is the last child now? 
2225                                                         $r = q("SELECT `id` FROM `item` WHERE `parent-uri` = '%s' AND `type` != 'activity' AND `deleted` = 0 AND `uid` = %d
2226                                                                 ORDER BY `created` DESC LIMIT 1",
2227                                                                         dbesc($item['parent-uri']),
2228                                                                         intval($importer['importer_uid'])
2229                                                         );
2230                                                         if(count($r)) {
2231                                                                 q("UPDATE `item` SET `last-child` = 1 WHERE `id` = %d LIMIT 1",
2232                                                                         intval($r[0]['id'])
2233                                                                 );
2234                                                         }       
2235                                                 }
2236                                         }       
2237                                 }
2238                         }
2239                 }
2240         }
2241
2242
2243         foreach($feed->get_items() as $item) {
2244
2245                 $is_reply = false;              
2246                 $item_id = $item->get_id();
2247                 $rawthread = $item->get_item_tags( NAMESPACE_THREAD, 'in-reply-to');
2248                 if(isset($rawthread[0]['attribs']['']['ref'])) {
2249                         $is_reply = true;
2250                         $parent_uri = $rawthread[0]['attribs']['']['ref'];
2251                 }
2252
2253                 if($is_reply) {
2254                         $community = false;
2255
2256                         if($importer['page-flags'] == PAGE_COMMUNITY || $importer['page-flags'] == PAGE_PRVGROUP ) {
2257                                 $sql_extra = '';
2258                                 $community = true;
2259                                 logger('local_delivery: possible community reply');
2260                         }
2261                         else
2262                                 $sql_extra = " and contact.self = 1 and item.wall = 1 ";
2263  
2264                         // was the top-level post for this reply written by somebody on this site? 
2265                         // Specifically, the recipient? 
2266
2267                         $is_a_remote_comment = false;
2268
2269                         $r = q("select `item`.`id`, `item`.`uri`, `item`.`tag`, `item`.`forum_mode`,`item`.`origin`,`item`.`wall`, 
2270                                 `contact`.`name`, `contact`.`url`, `contact`.`thumb` from `item` 
2271                                 LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id` 
2272                                 WHERE `item`.`uri` = '%s' AND (`item`.`parent-uri` = '%s' or `item`.`thr-parent` = '%s')
2273                                 AND `item`.`uid` = %d 
2274                                 $sql_extra
2275                                 LIMIT 1",
2276                                 dbesc($parent_uri),
2277                                 dbesc($parent_uri),
2278                                 dbesc($parent_uri),
2279                                 intval($importer['importer_uid'])
2280                         );
2281                         if($r && count($r))
2282                                 $is_a_remote_comment = true;                    
2283
2284                         // Does this have the characteristics of a community or private group comment?
2285                         // If it's a reply to a wall post on a community/prvgroup page it's a 
2286                         // valid community comment. Also forum_mode makes it valid for sure. 
2287                         // If neither, it's not.
2288
2289                         if($is_a_remote_comment && $community) {
2290                                 if((! $r[0]['forum_mode']) && (! $r[0]['wall'])) {
2291                                         $is_a_remote_comment = false;
2292                                         logger('local_delivery: not a community reply');
2293                                 }
2294                         }
2295
2296                         if($is_a_remote_comment) {
2297                                 logger('local_delivery: received remote comment');
2298                                 $is_like = false;
2299                                 // remote reply to our post. Import and then notify everybody else.
2300
2301                                 $datarray = get_atom_elements($feed,$item);
2302
2303                                 $r = q("SELECT `id`, `uid`, `last-child`, `edited`, `body`  FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2304                                         dbesc($item_id),
2305                                         intval($importer['importer_uid'])
2306                                 );
2307
2308                                 // Update content if 'updated' changes
2309
2310                                 if(count($r)) {
2311                                         $iid = $r[0]['id'];
2312                                         if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) {
2313                                         
2314                                                 // do not accept (ignore) an earlier edit than one we currently have.
2315                                                 if(datetime_convert('UTC','UTC',$datarray['edited']) < $r[0]['edited'])
2316                                                         continue;
2317   
2318                                                 logger('received updated comment' , LOGGER_DEBUG);
2319                                                 $r = q("UPDATE `item` SET `title` = '%s', `body` = '%s', `tag` = '%s', `edited` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2320                                                         dbesc($datarray['title']),
2321                                                         dbesc($datarray['body']),
2322                                                         dbesc($datarray['tag']),
2323                                                         dbesc(datetime_convert('UTC','UTC',$datarray['edited'])),
2324                                                         dbesc($item_id),
2325                                                         intval($importer['importer_uid'])
2326                                                 );
2327
2328                                                 proc_run('php',"include/notifier.php","comment-import",$iid);
2329
2330                                         }
2331
2332                                         continue;
2333                                 }
2334
2335
2336                                 // TODO: make this next part work against both delivery threads of a community post
2337
2338 //                              if((! link_compare($datarray['author-link'],$importer['url'])) && (! $community)) {
2339 //                                      logger('local_delivery: received relay claiming to be from ' . $importer['url'] . ' however comment author url is ' . $datarray['author-link'] ); 
2340                                         // they won't know what to do so don't report an error. Just quietly die.
2341 //                                      return 0;
2342 //                              }                                       
2343
2344                                 // our user with $importer['importer_uid'] is the owner
2345
2346                                 $own = q("select name,url,thumb from contact where uid = %d and self = 1 limit 1",
2347                                         intval($importer['importer_uid'])
2348                                 );
2349
2350
2351                                 $datarray['type'] = 'remote-comment';
2352                                 $datarray['wall'] = 1;
2353                                 $datarray['parent-uri'] = $parent_uri;
2354                                 $datarray['uid'] = $importer['importer_uid'];
2355                                 $datarray['owner-name'] = $own[0]['name'];
2356                                 $datarray['owner-link'] = $own[0]['url'];
2357                                 $datarray['owner-avatar'] = $own[0]['thumb'];
2358                                 $datarray['contact-id'] = $importer['id'];
2359
2360                                 if(($datarray['verb'] === ACTIVITY_LIKE) || ($datarray['verb'] === ACTIVITY_DISLIKE)) {
2361                                         $is_like = true;
2362                                         $datarray['type'] = 'activity';
2363                                         $datarray['gravity'] = GRAVITY_LIKE;
2364                                         $datarray['last-child'] = 0;
2365                                         // only one like or dislike per person
2366                                         $r = q("select id from item where uid = %d and `contact-id` = %d and verb ='%s' and (`thr-parent` = '%s' or `parent-uri` = '%s') and deleted = 0 limit 1",
2367                                                 intval($datarray['uid']),
2368                                                 intval($datarray['contact-id']),
2369                                                 dbesc($datarray['verb']),
2370                                                 dbesc($datarray['parent-uri']),
2371                                                 dbesc($datarray['parent-uri'])
2372                 
2373                                         );
2374                                         if($r && count($r))
2375                                                 continue; 
2376                                 }
2377
2378                                 if(($datarray['verb'] === ACTIVITY_TAG) && ($datarray['object-type'] === ACTIVITY_OBJ_TAGTERM)) {
2379                                         
2380                                         $xo = parse_xml_string($datarray['object'],false);
2381                                         $xt = parse_xml_string($datarray['target'],false);
2382
2383                                         if(($xt->type == ACTIVITY_OBJ_NOTE) && ($xt->id)) {
2384
2385                                                 // fetch the parent item
2386
2387                                                 $tagp = q("select * from item where uri = '%s' and uid = %d limit 1",
2388                                                         dbesc($xt->id),
2389                                                         intval($importer['importer_uid'])
2390                                                 );
2391                                                 if(! count($tagp))
2392                                                         continue;       
2393
2394                                                 // extract tag, if not duplicate, and this user allows tags, add to parent item                                         
2395
2396                                                 if($xo->id && $xo->content) {
2397                                                         $newtag = '#[url=' . $xo->id . ']'. $xo->content . '[/url]';
2398                                                         if(! (stristr($tagp[0]['tag'],$newtag))) {
2399                                                                 $i = q("SELECT `blocktags` FROM `user` where `uid` = %d LIMIT 1",
2400                                                                         intval($importer['importer_uid'])
2401                                                                 );
2402                                                                 if(count($i) && ! intval($i[0]['blocktags'])) {
2403                                                                         q("UPDATE item SET tag = '%s', `edited` = '%s' WHERE id = %d LIMIT 1",
2404                                                                                 dbesc($tagp[0]['tag'] . (strlen($tagp[0]['tag']) ? ',' : '') . $newtag),
2405                                                                                 intval($tagp[0]['id']),
2406                                                                                 dbesc(datetime_convert())
2407                                                                         );
2408                                                                 }
2409                                                         }
2410                                                 }                                                                                                       
2411                                         }
2412                                 }
2413
2414 //                              if($community) {
2415 //                                      $newtag = '@[url=' . $a->get_baseurl() . '/profile/' . $importer['nickname'] . ']' . $importer['username'] . '[/url]';
2416 //                                      if(! stristr($datarray['tag'],$newtag)) {
2417 //                                              if(strlen($datarray['tag']))
2418 //                                                      $datarray['tag'] .= ',';
2419 //                                              $datarray['tag'] .= $newtag;
2420 //                                      }
2421 //                              }
2422
2423
2424                                 $posted_id = item_store($datarray);
2425                                 $parent = 0;
2426
2427                                 if($posted_id) {
2428                                         $r = q("SELECT `parent` FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1",
2429                                                 intval($posted_id),
2430                                                 intval($importer['importer_uid'])
2431                                         );
2432                                         if(count($r))
2433                                                 $parent = $r[0]['parent'];
2434                         
2435                                         if(! $is_like) {
2436                                                 $r1 = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `uid` = %d AND `parent` = %d",
2437                                                         dbesc(datetime_convert()),
2438                                                         intval($importer['importer_uid']),
2439                                                         intval($r[0]['parent'])
2440                                                 );
2441
2442                                                 $r2 = q("UPDATE `item` SET `last-child` = 1, `changed` = '%s' WHERE `uid` = %d AND `id` = %d LIMIT 1",
2443                                                         dbesc(datetime_convert()),
2444                                                         intval($importer['importer_uid']),
2445                                                         intval($posted_id)
2446                                                 );
2447                                         }
2448
2449                                         if($posted_id && $parent) {
2450                                 
2451                                                 proc_run('php',"include/notifier.php","comment-import","$posted_id");
2452                                         
2453                                                 if((! $is_like) && (! $importer['self'])) {
2454
2455                                                         require_once('include/enotify.php');
2456
2457                                                         notification(array(
2458                                                                 'type'         => NOTIFY_COMMENT,
2459                                                                 'notify_flags' => $importer['notify-flags'],
2460                                                                 'language'     => $importer['language'],
2461                                                                 'to_name'      => $importer['username'],
2462                                                                 'to_email'     => $importer['email'],
2463                                                                 'uid'          => $importer['importer_uid'],
2464                                                                 'item'         => $datarray,
2465                                                                 'link'             => $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $posted_id,
2466                                                                 'source_name'  => stripslashes($datarray['author-name']),
2467                                                                 'source_link'  => $datarray['author-link'],
2468                                                                 'source_photo' => ((link_compare($datarray['author-link'],$importer['url'])) 
2469                                                                         ? $importer['thumb'] : $datarray['author-avatar']),
2470                                                                 'verb'         => ACTIVITY_POST,
2471                                                                 'otype'        => 'item',
2472                                                                 'parent'       => $parent,
2473
2474                                                         ));
2475
2476                                                 }
2477                                         }
2478
2479                                         return 0;
2480                                         // NOTREACHED
2481                                 }
2482                         }
2483                         else {
2484
2485                                 // regular comment that is part of this total conversation. Have we seen it? If not, import it.
2486
2487                                 $item_id  = $item->get_id();
2488                                 $datarray = get_atom_elements($feed,$item);
2489
2490                                 $r = q("SELECT `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2491                                         dbesc($item_id),
2492                                         intval($importer['importer_uid'])
2493                                 );
2494
2495                                 // Update content if 'updated' changes
2496
2497                                 if(count($r)) {
2498                                         if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) {  
2499
2500                                                 // do not accept (ignore) an earlier edit than one we currently have.
2501                                                 if(datetime_convert('UTC','UTC',$datarray['edited']) < $r[0]['edited'])
2502                                                         continue;
2503
2504                                                 $r = q("UPDATE `item` SET `title` = '%s', `body` = '%s', `tag` = '%s', `edited` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2505                                                         dbesc($datarray['title']),
2506                                                         dbesc($datarray['body']),
2507                                                         dbesc($datarray['tag']),
2508                                                         dbesc(datetime_convert('UTC','UTC',$datarray['edited'])),
2509                                                         dbesc($item_id),
2510                                                         intval($importer['importer_uid'])
2511                                                 );
2512                                         }
2513
2514                                         // update last-child if it changes
2515
2516                                         $allow = $item->get_item_tags( NAMESPACE_DFRN, 'comment-allow');
2517                                         if(($allow) && ($allow[0]['data'] != $r[0]['last-child'])) {
2518                                                 $r = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d",
2519                                                         dbesc(datetime_convert()),
2520                                                         dbesc($parent_uri),
2521                                                         intval($importer['importer_uid'])
2522                                                 );
2523                                                 $r = q("UPDATE `item` SET `last-child` = %d , `changed` = '%s'  WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2524                                                         intval($allow[0]['data']),
2525                                                         dbesc(datetime_convert()),
2526                                                         dbesc($item_id),
2527                                                         intval($importer['importer_uid'])
2528                                                 );
2529                                         }
2530                                         continue;
2531                                 }
2532
2533                                 $datarray['parent-uri'] = $parent_uri;
2534                                 $datarray['uid'] = $importer['importer_uid'];
2535                                 $datarray['contact-id'] = $importer['id'];
2536                                 if(($datarray['verb'] == ACTIVITY_LIKE) || ($datarray['verb'] == ACTIVITY_DISLIKE)) {
2537                                         $datarray['type'] = 'activity';
2538                                         $datarray['gravity'] = GRAVITY_LIKE;
2539                                         // only one like or dislike per person
2540                                         $r = q("select id from item where uid = %d and `contact-id` = %d and verb ='%s' and deleted = 0 limit 1",
2541                                                 intval($datarray['uid']),
2542                                                 intval($datarray['contact-id']),
2543                                                 dbesc($datarray['verb'])
2544                                         );
2545                                         if($r && count($r))
2546                                                 continue; 
2547
2548                                 }
2549
2550                                 if(($datarray['verb'] === ACTIVITY_TAG) && ($datarray['object-type'] === ACTIVITY_OBJ_TAGTERM)) {
2551
2552                                         $xo = parse_xml_string($datarray['object'],false);
2553                                         $xt = parse_xml_string($datarray['target'],false);
2554
2555                                         if($xt->type == ACTIVITY_OBJ_NOTE) {
2556                                                 $r = q("select * from item where `uri` = '%s' AND `uid` = %d limit 1",
2557                                                         dbesc($xt->id),
2558                                                         intval($importer['importer_uid'])
2559                                                 );
2560                                                 if(! count($r))
2561                                                         continue;                               
2562
2563                                                 // extract tag, if not duplicate, add to parent item                                            
2564                                                 if($xo->content) {
2565                                                         if(! (stristr($r[0]['tag'],trim($xo->content)))) {
2566                                                                 q("UPDATE item SET tag = '%s' WHERE id = %d LIMIT 1",
2567                                                                         dbesc($r[0]['tag'] . (strlen($r[0]['tag']) ? ',' : '') . '#[url=' . $xo->id . ']'. $xo->content . '[/url]'),
2568                                                                         intval($r[0]['id'])
2569                                                                 );
2570                                                         }
2571                                                 }                                                                                                       
2572                                         }
2573                                 }
2574
2575                                 $posted_id = item_store($datarray);
2576
2577                                 // find out if our user is involved in this conversation and wants to be notified.
2578                         
2579                                 if(!x($datarray['type']) || $datarray['type'] != 'activity') {
2580
2581                                         $myconv = q("SELECT `author-link`, `author-avatar`, `parent` FROM `item` WHERE `parent-uri` = '%s' AND `uid` = %d AND `parent` != 0 AND `deleted` = 0",
2582                                                 dbesc($parent_uri),
2583                                                 intval($importer['importer_uid'])
2584                                         );
2585
2586                                         if(count($myconv)) {
2587                                                 $importer_url = $a->get_baseurl() . '/profile/' . $importer['nickname'];
2588
2589                                                 // first make sure this isn't our own post coming back to us from a wall-to-wall event
2590                                                 if(! link_compare($datarray['author-link'],$importer_url)) {
2591
2592                                                         
2593                                                         foreach($myconv as $conv) {
2594
2595                                                                 // now if we find a match, it means we're in this conversation
2596         
2597                                                                 if(! link_compare($conv['author-link'],$importer_url))
2598                                                                         continue;
2599
2600                                                                 require_once('include/enotify.php');
2601                                                                 
2602                                                                 $conv_parent = $conv['parent'];
2603
2604                                                                 notification(array(
2605                                                                         'type'         => NOTIFY_COMMENT,
2606                                                                         'notify_flags' => $importer['notify-flags'],
2607                                                                         'language'     => $importer['language'],
2608                                                                         'to_name'      => $importer['username'],
2609                                                                         'to_email'     => $importer['email'],
2610                                                                         'uid'          => $importer['importer_uid'],
2611                                                                         'item'         => $datarray,
2612                                                                         'link'             => $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $posted_id,
2613                                                                         'source_name'  => stripslashes($datarray['author-name']),
2614                                                                         'source_link'  => $datarray['author-link'],
2615                                                                         'source_photo' => ((link_compare($datarray['author-link'],$importer['url'])) 
2616                                                                                 ? $importer['thumb'] : $datarray['author-avatar']),
2617                                                                         'verb'         => ACTIVITY_POST,
2618                                                                         'otype'        => 'item',
2619                                                                         'parent'       => $conv_parent,
2620
2621                                                                 ));
2622
2623                                                                 // only send one notification
2624                                                                 break;
2625                                                         }
2626                                                 }
2627                                         }
2628                                 }
2629                                 continue;
2630                         }
2631                 }
2632
2633                 else {
2634
2635                         // Head post of a conversation. Have we seen it? If not, import it.
2636
2637
2638                         $item_id  = $item->get_id();
2639                         $datarray = get_atom_elements($feed,$item);
2640
2641                         if((x($datarray,'object-type')) && ($datarray['object-type'] === ACTIVITY_OBJ_EVENT)) {
2642                                 $ev = bbtoevent($datarray['body']);
2643                                 if(x($ev,'desc') && x($ev,'start')) {
2644                                         $ev['cid'] = $importer['id'];
2645                                         $ev['uid'] = $importer['uid'];
2646                                         $ev['uri'] = $item_id;
2647                                         $ev['edited'] = $datarray['edited'];
2648                                         $ev['private'] = $datarray['private'];
2649
2650                                         $r = q("SELECT * FROM `event` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2651                                                 dbesc($item_id),
2652                                                 intval($importer['uid'])
2653                                         );
2654                                         if(count($r))
2655                                                 $ev['id'] = $r[0]['id'];
2656                                         $xyz = event_store($ev);
2657                                         continue;
2658                                 }
2659                         }
2660
2661                         $r = q("SELECT `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2662                                 dbesc($item_id),
2663                                 intval($importer['importer_uid'])
2664                         );
2665
2666                         // Update content if 'updated' changes
2667
2668                         if(count($r)) {
2669                                 if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) {  
2670
2671                                         // do not accept (ignore) an earlier edit than one we currently have.
2672                                         if(datetime_convert('UTC','UTC',$datarray['edited']) < $r[0]['edited'])
2673                                                 continue;
2674
2675                                         $r = q("UPDATE `item` SET `title` = '%s', `body` = '%s', `tag` = '%s', `edited` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2676                                                 dbesc($datarray['title']),
2677                                                 dbesc($datarray['body']),
2678                                                 dbesc($datarray['tag']),
2679                                                 dbesc(datetime_convert('UTC','UTC',$datarray['edited'])),
2680                                                 dbesc($item_id),
2681                                                 intval($importer['importer_uid'])
2682                                         );
2683                                 }
2684
2685                                 // update last-child if it changes
2686
2687                                 $allow = $item->get_item_tags( NAMESPACE_DFRN, 'comment-allow');
2688                                 if($allow && $allow[0]['data'] != $r[0]['last-child']) {
2689                                         $r = q("UPDATE `item` SET `last-child` = %d , `changed` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2690                                                 intval($allow[0]['data']),
2691                                                 dbesc(datetime_convert()),
2692                                                 dbesc($item_id),
2693                                                 intval($importer['importer_uid'])
2694                                         );
2695                                 }
2696                                 continue;
2697                         }
2698
2699                         // This is my contact on another system, but it's really me.
2700                         // Turn this into a wall post.
2701
2702                         if($importer['remote_self'])
2703                                 $datarray['wall'] = 1;
2704
2705                         $datarray['parent-uri'] = $item_id;
2706                         $datarray['uid'] = $importer['importer_uid'];
2707                         $datarray['contact-id'] = $importer['id'];
2708
2709                         if(! link_compare($datarray['owner-link'],$contact['url'])) {
2710                                 // The item owner info is not our contact. It's OK and is to be expected if this is a tgroup delivery, 
2711                                 // but otherwise there's a possible data mixup on the sender's system.
2712                                 // the tgroup delivery code called from item_store will correct it if it's a forum,
2713                                 // but we're going to unconditionally correct it here so that the post will always be owned by our contact. 
2714                                 logger('local_delivery: Correcting item owner.', LOGGER_DEBUG);
2715                                 $datarray['owner-name']   = $importer['senderName'];
2716                                 $datarray['owner-link']   = $importer['url'];
2717                                 $datarray['owner-avatar'] = $importer['thumb'];
2718                         }
2719
2720                         $r = item_store($datarray);
2721                         continue;
2722                 }
2723         }
2724
2725         return 0;
2726         // NOTREACHED
2727
2728 }
2729
2730
2731 function new_follower($importer,$contact,$datarray,$item,$sharing = false) {
2732         $url = notags(trim($datarray['author-link']));
2733         $name = notags(trim($datarray['author-name']));
2734         $photo = notags(trim($datarray['author-avatar']));
2735
2736         $rawtag = $item->get_item_tags(NAMESPACE_ACTIVITY,'actor');
2737         if($rawtag && $rawtag[0]['child'][NAMESPACE_POCO]['preferredUsername'][0]['data'])
2738                 $nick = $rawtag[0]['child'][NAMESPACE_POCO]['preferredUsername'][0]['data'];
2739
2740         if(is_array($contact)) {
2741                 if(($contact['network'] == NETWORK_OSTATUS && $contact['rel'] == CONTACT_IS_SHARING)
2742                         || ($sharing && $contact['rel'] == CONTACT_IS_FOLLOWER)) {
2743                         $r = q("UPDATE `contact` SET `rel` = %d WHERE `id` = %d AND `uid` = %d LIMIT 1",
2744                                 intval(CONTACT_IS_FRIEND),
2745                                 intval($contact['id']),
2746                                 intval($importer['uid'])
2747                         );
2748                 }
2749                 // send email notification to owner?
2750         }
2751         else {
2752         
2753                 // create contact record
2754
2755                 $r = q("INSERT INTO `contact` ( `uid`, `created`, `url`, `nurl`, `name`, `nick`, `photo`, `network`, `rel`, 
2756                         `blocked`, `readonly`, `pending`, `writable` )
2757                         VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, 0, 0, 1, 1 ) ",
2758                         intval($importer['uid']),
2759                         dbesc(datetime_convert()),
2760                         dbesc($url),
2761                         dbesc(normalise_link($url)),
2762                         dbesc($name),
2763                         dbesc($nick),
2764                         dbesc($photo),
2765                         dbesc(($sharing) ? NETWORK_ZOT : NETWORK_OSTATUS),
2766                         intval(($sharing) ? CONTACT_IS_SHARING : CONTACT_IS_FOLLOWER)
2767                 );
2768                 $r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `url` = '%s' AND `pending` = 1 LIMIT 1",
2769                                 intval($importer['uid']),
2770                                 dbesc($url)
2771                 );
2772                 if(count($r))
2773                                 $contact_record = $r[0];
2774
2775                 // create notification  
2776                 $hash = random_string();
2777
2778                 if(is_array($contact_record)) {
2779                         $ret = q("INSERT INTO `intro` ( `uid`, `contact-id`, `blocked`, `knowyou`, `hash`, `datetime`)
2780                                 VALUES ( %d, %d, 0, 0, '%s', '%s' )",
2781                                 intval($importer['uid']),
2782                                 intval($contact_record['id']),
2783                                 dbesc($hash),
2784                                 dbesc(datetime_convert())
2785                         );
2786                 }
2787                 $r = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
2788                         intval($importer['uid'])
2789                 );
2790                 $a = get_app();
2791                 if(count($r)) {
2792
2793                         if(intval($r[0]['def_gid'])) {
2794                                 require_once('include/group.php');
2795                                 group_add_member($r[0]['uid'],'',$contact_record['id'],$r[0]['def_gid']);
2796                         }
2797
2798                         if(($r[0]['notify-flags'] & NOTIFY_INTRO) && ($r[0]['page-flags'] == PAGE_NORMAL)) {
2799                                 $email_tpl = get_intltext_template('follow_notify_eml.tpl');
2800                                 $email = replace_macros($email_tpl, array(
2801                                         '$requestor' => ((strlen($name)) ? $name : t('[Name Withheld]')),
2802                                         '$url' => $url,
2803                                         '$myname' => $r[0]['username'],
2804                                         '$siteurl' => $a->get_baseurl(),
2805                                         '$sitename' => $a->config['sitename']
2806                                 ));
2807                                 $res = mail($r[0]['email'], 
2808                                         (($sharing) ? t('A new person is sharing with you at ') : t("You have a new follower at ")) . $a->config['sitename'],
2809                                         $email,
2810                                         'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] . "\n"
2811                                         . 'Content-type: text/plain; charset=UTF-8' . "\n"
2812                                         . 'Content-transfer-encoding: 8bit' );
2813                         
2814                         }
2815                 }
2816         }
2817 }
2818
2819 function lose_follower($importer,$contact,$datarray,$item) {
2820
2821         if(($contact['rel'] == CONTACT_IS_FRIEND) || ($contact['rel'] == CONTACT_IS_SHARING)) {
2822                 q("UPDATE `contact` SET `rel` = %d WHERE `id` = %d LIMIT 1",
2823                         intval(CONTACT_IS_SHARING),
2824                         intval($contact['id'])
2825                 );
2826         }
2827         else {
2828                 contact_remove($contact['id']);
2829         }
2830 }
2831
2832 function lose_sharer($importer,$contact,$datarray,$item) {
2833
2834         if(($contact['rel'] == CONTACT_IS_FRIEND) || ($contact['rel'] == CONTACT_IS_FOLLOWER)) {
2835                 q("UPDATE `contact` SET `rel` = %d WHERE `id` = %d LIMIT 1",
2836                         intval(CONTACT_IS_FOLLOWER),
2837                         intval($contact['id'])
2838                 );
2839         }
2840         else {
2841                 contact_remove($contact['id']);
2842         }
2843 }
2844
2845
2846 function subscribe_to_hub($url,$importer,$contact,$hubmode = 'subscribe') {
2847
2848         $a = get_app();
2849
2850         if(is_array($importer)) {
2851                 $r = q("SELECT `nickname` FROM `user` WHERE `uid` = %d LIMIT 1",
2852                         intval($importer['uid'])
2853                 );
2854         }
2855
2856         // Diaspora has different message-ids in feeds than they do 
2857         // through the direct Diaspora protocol. If we try and use
2858         // the feed, we'll get duplicates. So don't.
2859
2860         if((! count($r)) || $contact['network'] === NETWORK_DIASPORA)
2861                 return;
2862
2863         $push_url = get_config('system','url') . '/pubsub/' . $r[0]['nickname'] . '/' . $contact['id'];
2864
2865         // Use a single verify token, even if multiple hubs
2866
2867         $verify_token = ((strlen($contact['hub-verify'])) ? $contact['hub-verify'] : random_string());
2868
2869         $params= 'hub.mode=' . $hubmode . '&hub.callback=' . urlencode($push_url) . '&hub.topic=' . urlencode($contact['poll']) . '&hub.verify=async&hub.verify_token=' . $verify_token;
2870
2871         logger('subscribe_to_hub: ' . $hubmode . ' ' . $contact['name'] . ' to hub ' . $url . ' endpoint: '  . $push_url . ' with verifier ' . $verify_token);
2872
2873         if(! strlen($contact['hub-verify'])) {
2874                 $r = q("UPDATE `contact` SET `hub-verify` = '%s' WHERE `id` = %d LIMIT 1",
2875                         dbesc($verify_token),
2876                         intval($contact['id'])
2877                 );
2878         }
2879
2880         post_url($url,$params);
2881
2882         logger('subscribe_to_hub: returns: ' . $a->get_curl_code(), LOGGER_DEBUG);
2883                         
2884         return;
2885
2886 }
2887
2888
2889 function atom_author($tag,$name,$uri,$h,$w,$photo) {
2890         $o = '';
2891         if(! $tag)
2892                 return $o;
2893         $name = xmlify($name);
2894         $uri = xmlify($uri);
2895         $h = intval($h);
2896         $w = intval($w);
2897         $photo = xmlify($photo);
2898
2899
2900         $o .= "<$tag>\r\n";
2901         $o .= "<name>$name</name>\r\n";
2902         $o .= "<uri>$uri</uri>\r\n";
2903         $o .= '<link rel="photo"  type="image/jpeg" media:width="' . $w . '" media:height="' . $h . '" href="' . $photo . '" />' . "\r\n";
2904         $o .= '<link rel="avatar" type="image/jpeg" media:width="' . $w . '" media:height="' . $h . '" href="' . $photo . '" />' . "\r\n";
2905
2906         call_hooks('atom_author', $o);
2907
2908         $o .= "</$tag>\r\n";
2909         return $o;
2910 }
2911
2912 function atom_entry($item,$type,$author,$owner,$comment = false,$cid = 0) {
2913
2914         $a = get_app();
2915
2916         if(! $item['parent'])
2917                 return;
2918
2919         if($item['deleted'])
2920                 return '<at:deleted-entry ref="' . xmlify($item['uri']) . '" when="' . xmlify(datetime_convert('UTC','UTC',$item['edited'] . '+00:00',ATOM_TIME)) . '" />' . "\r\n";
2921
2922
2923         if($item['allow_cid'] || $item['allow_gid'] || $item['deny_cid'] || $item['deny_gid'])
2924                 $body = fix_private_photos($item['body'],$owner['uid'],$item,$cid);
2925         else
2926                 $body = $item['body'];
2927
2928
2929         $o = "\r\n\r\n<entry>\r\n";
2930
2931         if(is_array($author))
2932                 $o .= atom_author('author',$author['name'],$author['url'],80,80,$author['thumb']);
2933         else
2934                 $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']));
2935         if(strlen($item['owner-name']))
2936                 $o .= atom_author('dfrn:owner',$item['owner-name'],$item['owner-link'],80,80,$item['owner-avatar']);
2937
2938         if(($item['parent'] != $item['id']) || ($item['parent-uri'] !== $item['uri']) || ($item['thr-parent'])) {
2939                 $parent_item = (($item['thr-parent']) ? $item['thr-parent'] : $item['parent-uri']);
2940                 $o .= '<thr:in-reply-to ref="' . xmlify($parent_item) . '" type="text/html" href="' .  xmlify($a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['parent']) . '" />' . "\r\n";
2941         }
2942
2943         $o .= '<id>' . xmlify($item['uri']) . '</id>' . "\r\n";
2944         $o .= '<title>' . xmlify($item['title']) . '</title>' . "\r\n";
2945         $o .= '<published>' . xmlify(datetime_convert('UTC','UTC',$item['created'] . '+00:00',ATOM_TIME)) . '</published>' . "\r\n";
2946         $o .= '<updated>' . xmlify(datetime_convert('UTC','UTC',$item['edited'] . '+00:00',ATOM_TIME)) . '</updated>' . "\r\n";
2947         $o .= '<dfrn:env>' . base64url_encode($body, true) . '</dfrn:env>' . "\r\n";
2948         $o .= '<content type="' . $type . '" >' . xmlify((($type === 'html') ? bbcode($body) : $body)) . '</content>' . "\r\n";
2949         $o .= '<link rel="alternate" type="text/html" href="' . xmlify($a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id']) . '" />' . "\r\n";
2950         if($comment)
2951                 $o .= '<dfrn:comment-allow>' . intval($item['last-child']) . '</dfrn:comment-allow>' . "\r\n";
2952
2953         if($item['location']) {
2954                 $o .= '<dfrn:location>' . xmlify($item['location']) . '</dfrn:location>' . "\r\n";
2955                 $o .= '<poco:address><poco:formatted>' . xmlify($item['location']) . '</poco:formatted></poco:address>' . "\r\n";
2956         }
2957
2958         if($item['coord'])
2959                 $o .= '<georss:point>' . xmlify($item['coord']) . '</georss:point>' . "\r\n";
2960
2961         if(($item['private']) || strlen($item['allow_cid']) || strlen($item['allow_gid']) || strlen($item['deny_cid']) || strlen($item['deny_gid']))
2962                 $o .= '<dfrn:private>1</dfrn:private>' . "\r\n";
2963
2964         if($item['extid'])
2965                 $o .= '<dfrn:extid>' . xmlify($item['extid']) . '</dfrn:extid>' . "\r\n";
2966         if($item['bookmark'])
2967                 $o .= '<dfrn:bookmark>true</dfrn:bookmark>' . "\r\n";
2968
2969         if($item['app'])
2970                 $o .= '<statusnet:notice_info local_id="' . $item['id'] . '" source="' . xmlify($item['app']) . '" ></statusnet:notice_info>' . "\r\n";
2971
2972         if($item['guid'])
2973                 $o .= '<dfrn:diaspora_guid>' . $item['guid'] . '</dfrn:diaspora_guid>' . "\r\n";
2974
2975         if($item['signed_text']) {
2976                 $sign = base64_encode(json_encode(array('signed_text' => $item['signed_text'],'signature' => $item['signature'],'signer' => $item['signer'])));
2977                 $o .= '<dfrn:diaspora_signature>' . xmlify($sign) . '</dfrn:diaspora_signature>' . "\r\n";
2978         }
2979
2980         $verb = construct_verb($item);
2981         $o .= '<as:verb>' . xmlify($verb) . '</as:verb>' . "\r\n";
2982         $actobj = construct_activity_object($item);
2983         if(strlen($actobj))
2984                 $o .= $actobj;
2985         $actarg = construct_activity_target($item);
2986         if(strlen($actarg))
2987                 $o .= $actarg;
2988
2989         $tags = item_getfeedtags($item);
2990         if(count($tags)) {
2991                 foreach($tags as $t) {
2992                         $o .= '<category scheme="X-DFRN:' . xmlify($t[0]) . ':' . xmlify($t[1]) . '" term="' . xmlify($t[2]) . '" />' . "\r\n";
2993                 }
2994         }
2995
2996         $o .= item_getfeedattach($item);
2997
2998         $mentioned = get_mentions($item);
2999         if($mentioned)
3000                 $o .= $mentioned;
3001         
3002         call_hooks('atom_entry', $o);
3003
3004         $o .= '</entry>' . "\r\n";
3005         
3006         return $o;
3007 }
3008
3009 function fix_private_photos($s,$uid, $item = null, $cid = 0) {
3010         $a = get_app();
3011
3012         logger('fix_private_photos', LOGGER_DEBUG);
3013         $site = substr($a->get_baseurl(),strpos($a->get_baseurl(),'://'));
3014
3015         if(preg_match("/\[img(.*?)\](.*?)\[\/img\]/is",$s,$matches)) {
3016                 $image = $matches[2];
3017                 logger('fix_private_photos: found photo ' . $image, LOGGER_DEBUG);
3018                 if(stristr($image , $site . '/photo/')) {
3019                         $replace = false;
3020                         $i = basename($image);
3021                         $i = str_replace(array('.jpg','.png'),array('',''),$i);
3022                         $x = strpos($i,'-');
3023                         if($x) {
3024                                 $res = substr($i,$x+1);
3025                                 $i = substr($i,0,$x);
3026                                 $r = q("SELECT * FROM `photo` WHERE `resource-id` = '%s' AND `scale` = %d AND `uid` = %d",
3027                                         dbesc($i),
3028                                         intval($res),
3029                                         intval($uid)
3030                                 );
3031                                 if(count($r)) {
3032
3033                                         // Check to see if we should replace this photo link with an embedded image
3034                                         // 1. No need to do so if the photo is public
3035                                         // 2. If there's a contact-id provided, see if they're in the access list
3036                                         //    for the photo. If so, embed it. 
3037                                         // 3. Otherwise, if we have an item, see if the item permissions match the photo
3038                                         //    permissions, regardless of order but first check to see if they're an exact
3039                                         //    match to save some processing overhead.
3040                                 
3041                                         // Currently we only embed one private photo per message so as not to hit import 
3042                                         // size limits at the receiving end.
3043
3044                                         // To embed multiples, we would need to parse out the embedded photos on message
3045                                         // receipt and limit size based only on the text component. Would also need to
3046                                         // ignore all photos during bbcode translation and item localisation, as these
3047                                         // will hit internal regex backtrace limits.  
3048
3049                                         if(has_permissions($r[0])) {
3050                                                 if($cid) {
3051                                                         $recips = enumerate_permissions($r[0]);
3052                                                         if(in_array($cid, $recips)) {
3053                                                                 $replace = true;        
3054                                                         }
3055                                                 }
3056                                                 elseif($item) {
3057                                                         if(compare_permissions($item,$r[0]))
3058                                                                 $replace = true;
3059                                                 }
3060                                         }
3061                                         if($replace) {
3062                                                 logger('fix_private_photos: replacing photo', LOGGER_DEBUG);
3063                                                 $s = str_replace($image, 'data:' . $r[0]['type'] . ';base64,' . base64_encode($r[0]['data']), $s);
3064                                                 logger('fix_private_photos: replaced: ' . $s, LOGGER_DATA);
3065                                         }
3066                                 }
3067                         }
3068                 }       
3069         }
3070         return($s);
3071 }
3072
3073
3074 function has_permissions($obj) {
3075         if(($obj['allow_cid'] != '') || ($obj['allow_gid'] != '') || ($obj['deny_cid'] != '') || ($obj['deny_gid'] != ''))
3076                 return true;
3077         return false;
3078 }
3079
3080 function compare_permissions($obj1,$obj2) {
3081         // first part is easy. Check that these are exactly the same. 
3082         if(($obj1['allow_cid'] == $obj2['allow_cid'])
3083                 && ($obj1['allow_gid'] == $obj2['allow_gid'])
3084                 && ($obj1['deny_cid'] == $obj2['deny_cid'])
3085                 && ($obj1['deny_gid'] == $obj2['deny_gid']))
3086                 return true;
3087
3088         // This is harder. Parse all the permissions and compare the resulting set.
3089
3090         $recipients1 = enumerate_permissions($obj1);
3091         $recipients2 = enumerate_permissions($obj2);
3092         sort($recipients1);
3093         sort($recipients2);
3094         if($recipients1 == $recipients2)
3095                 return true;
3096         return false;
3097 }
3098
3099 // returns an array of contact-ids that are allowed to see this object
3100
3101 function enumerate_permissions($obj) {
3102         require_once('include/group.php');
3103         $allow_people = expand_acl($obj['allow_cid']);
3104         $allow_groups = expand_groups(expand_acl($obj['allow_gid']));
3105         $deny_people  = expand_acl($obj['deny_cid']);
3106         $deny_groups  = expand_groups(expand_acl($obj['deny_gid']));
3107         $recipients   = array_unique(array_merge($allow_people,$allow_groups));
3108         $deny         = array_unique(array_merge($deny_people,$deny_groups));
3109         $recipients   = array_diff($recipients,$deny);
3110         return $recipients;
3111 }
3112
3113 function item_getfeedtags($item) {
3114         $ret = array();
3115         $matches = false;
3116         $cnt = preg_match_all('|\#\[url\=(.*?)\](.*?)\[\/url\]|',$item['tag'],$matches);
3117         if($cnt) {
3118                 for($x = 0; $x < $cnt; $x ++) {
3119                         if($matches[1][$x])
3120                                 $ret[] = array('#',$matches[1][$x], $matches[2][$x]);
3121                 }
3122         }
3123         $matches = false; 
3124         $cnt = preg_match_all('|\@\[url\=(.*?)\](.*?)\[\/url\]|',$item['tag'],$matches);
3125         if($cnt) {
3126                 for($x = 0; $x < $cnt; $x ++) {
3127                         if($matches[1][$x])
3128                                 $ret[] = array('@',$matches[1][$x], $matches[2][$x]);
3129                 }
3130         } 
3131         return $ret;
3132 }
3133
3134 function item_getfeedattach($item) {
3135         $ret = '';
3136         $arr = explode(',',$item['attach']);
3137         if(count($arr)) {
3138                 foreach($arr as $r) {
3139                         $matches = false;
3140                         $cnt = preg_match('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"\[\/attach\]|',$r,$matches);
3141                         if($cnt) {
3142                                 $ret .= '<link rel="enclosure" href="' . xmlify($matches[1]) . '" type="' . xmlify($matches[3]) . '" ';
3143                                 if(intval($matches[2]))
3144                                         $ret .= 'length="' . intval($matches[2]) . '" ';
3145                                 if($matches[4] !== ' ')
3146                                         $ret .= 'title="' . xmlify(trim($matches[4])) . '" ';
3147                                 $ret .= ' />' . "\r\n";
3148                         }
3149                 }
3150         }
3151         return $ret;
3152 }
3153
3154
3155         
3156 function item_expire($uid,$days) {
3157
3158         if((! $uid) || ($days < 1))
3159                 return;
3160
3161         // $expire_network_only = save your own wall posts
3162         // and just expire conversations started by others
3163
3164         $expire_network_only = get_pconfig($uid,'expire','network_only');
3165         $sql_extra = ((intval($expire_network_only)) ? " AND wall = 0 " : "");
3166
3167         $r = q("SELECT * FROM `item` 
3168                 WHERE `uid` = %d 
3169                 AND `created` < UTC_TIMESTAMP() - INTERVAL %d DAY 
3170                 AND `id` = `parent` 
3171                 $sql_extra
3172                 AND `deleted` = 0",
3173                 intval($uid),
3174                 intval($days)
3175         );
3176
3177         if(! count($r))
3178                 return;
3179
3180         $expire_items = get_pconfig($uid, 'expire','items');
3181         $expire_items = (($expire_items===false)?1:intval($expire_items)); // default if not set: 1
3182         
3183         $expire_notes = get_pconfig($uid, 'expire','notes');
3184         $expire_notes = (($expire_notes===false)?1:intval($expire_notes)); // default if not set: 1
3185
3186         $expire_starred = get_pconfig($uid, 'expire','starred');
3187         $expire_starred = (($expire_starred===false)?1:intval($expire_starred)); // default if not set: 1
3188         
3189         $expire_photos = get_pconfig($uid, 'expire','photos');
3190         $expire_photos = (($expire_photos===false)?0:intval($expire_photos)); // default if not set: 0
3191  
3192         logger('expire: # items=' . count($r). "; expire items: $expire_items, expire notes: $expire_notes, expire starred: $expire_starred, expire photos: $expire_photos");
3193
3194         foreach($r as $item) {
3195
3196                 // don't expire filed items
3197
3198                 if(strpos($item['file'],'[') !== false)
3199                         continue;
3200
3201                 // Only expire posts, not photos and photo comments
3202
3203                 if($expire_photos==0 && strlen($item['resource-id']))
3204                         continue;
3205                 if($expire_starred==0 && intval($item['starred']))
3206                         continue;
3207                 if($expire_notes==0 && $item['type']=='note')
3208                         continue;
3209                 if($expire_items==0 && $item['type']!='note')
3210                         continue;
3211
3212                 drop_item($item['id'],false);
3213         }
3214
3215         proc_run('php',"include/notifier.php","expire","$uid");
3216         
3217 }
3218
3219
3220 function drop_items($items) {
3221         $uid = 0;
3222
3223         if(! local_user() && ! remote_user())
3224                 return;
3225
3226         if(count($items)) {
3227                 foreach($items as $item) {
3228                         $owner = drop_item($item,false);
3229                         if($owner && ! $uid)
3230                                 $uid = $owner;
3231                 }
3232         }
3233
3234         // multiple threads may have been deleted, send an expire notification
3235
3236         if($uid)
3237                 proc_run('php',"include/notifier.php","expire","$uid");
3238 }
3239
3240
3241 function drop_item($id,$interactive = true) {
3242
3243         $a = get_app();
3244
3245         // locate item to be deleted
3246
3247         $r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1",
3248                 intval($id)
3249         );
3250
3251         if(! count($r)) {
3252                 if(! $interactive)
3253                         return 0;
3254                 notice( t('Item not found.') . EOL);
3255                 goaway($a->get_baseurl() . '/' . $_SESSION['return_url']);
3256         }
3257
3258         $item = $r[0];
3259
3260         $owner = $item['uid'];
3261
3262         // check if logged in user is either the author or owner of this item
3263
3264         if((local_user() == $item['uid']) || (remote_user() == $item['contact-id'])) {
3265
3266                 // delete the item
3267
3268                 $r = q("UPDATE `item` SET `deleted` = 1, `title` = '', `body` = '', `edited` = '%s', `changed` = '%s' WHERE `id` = %d LIMIT 1",
3269                         dbesc(datetime_convert()),
3270                         dbesc(datetime_convert()),
3271                         intval($item['id'])
3272                 );
3273
3274                 // clean up categories and tags so they don't end up as orphans
3275
3276                 $matches = false;
3277                 $cnt = preg_match_all('/<(.*?)>/',$item['file'],$matches,PREG_SET_ORDER);
3278                 if($cnt) {
3279                         foreach($matches as $mtch) {
3280                                 file_tag_unsave_file($item['uid'],$item['id'],$mtch[1],true);
3281                         }
3282                 }
3283
3284                 $matches = false;
3285
3286                 $cnt = preg_match_all('/\[(.*?)\]/',$item['file'],$matches,PREG_SET_ORDER);
3287                 if($cnt) {
3288                         foreach($matches as $mtch) {
3289                                 file_tag_unsave_file($item['uid'],$item['id'],$mtch[1],false);
3290                         }
3291                 }
3292
3293                 // If item is a link to a photo resource, nuke all the associated photos 
3294                 // (visitors will not have photo resources)
3295                 // This only applies to photos uploaded from the photos page. Photos inserted into a post do not
3296                 // generate a resource-id and therefore aren't intimately linked to the item. 
3297
3298                 if(strlen($item['resource-id'])) {
3299                         q("DELETE FROM `photo` WHERE `resource-id` = '%s' AND `uid` = %d ",
3300                                 dbesc($item['resource-id']),
3301                                 intval($item['uid'])
3302                         );
3303                         // ignore the result
3304                 }
3305
3306                 // If item is a link to an event, nuke the event record.
3307
3308                 if(intval($item['event-id'])) {
3309                         q("DELETE FROM `event` WHERE `id` = %d AND `uid` = %d LIMIT 1",
3310                                 intval($item['event-id']),
3311                                 intval($item['uid'])
3312                         );
3313                         // ignore the result
3314                 }
3315
3316                 // clean up item_id and sign meta-data tables
3317
3318                 $r = q("DELETE FROM item_id where iid in (select id from item where parent = %d and uid = %d)",
3319                         intval($item['id']),
3320                         intval($item['uid'])
3321                 );
3322
3323                 $r = q("DELETE FROM sign where iid in (select id from item where parent = %d and uid = %d)",
3324                         intval($item['id']),
3325                         intval($item['uid'])
3326                 );
3327
3328                 // If it's the parent of a comment thread, kill all the kids
3329
3330                 if($item['uri'] == $item['parent-uri']) {
3331                         $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s', `body` = '' , `title` = ''
3332                                 WHERE `parent-uri` = '%s' AND `uid` = %d ",
3333                                 dbesc(datetime_convert()),
3334                                 dbesc(datetime_convert()),
3335                                 dbesc($item['parent-uri']),
3336                                 intval($item['uid'])
3337                         );
3338                         // ignore the result
3339                 }
3340                 else {
3341                         // ensure that last-child is set in case the comment that had it just got wiped.
3342                         q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d ",
3343                                 dbesc(datetime_convert()),
3344                                 dbesc($item['parent-uri']),
3345                                 intval($item['uid'])
3346                         );
3347                         // who is the last child now? 
3348                         $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",
3349                                 dbesc($item['parent-uri']),
3350                                 intval($item['uid'])
3351                         );
3352                         if(count($r)) {
3353                                 q("UPDATE `item` SET `last-child` = 1 WHERE `id` = %d LIMIT 1",
3354                                         intval($r[0]['id'])
3355                                 );
3356                         }
3357
3358                         // Add a relayable_retraction signature for Diaspora. Note that we can't add a target_author_signature
3359                         // if the comment was deleted by a remote user. That should be ok, because if a remote user is deleting
3360                         // the comment, that means we're the home of the post, and Diaspora will only
3361                         // check the parent_author_signature of retractions that it doesn't have to relay further
3362                         //
3363                         // I don't think this function gets called for an "unlike," but I'll check anyway
3364                         $signed_text = $item['guid'] . ';' . ( ($item['verb'] === ACTIVITY_LIKE) ? 'Like' : 'Comment');
3365
3366                         if(local_user() == $item['uid']) {
3367
3368                                 $handle = $a->user['nickname'] . '@' . substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
3369                                 $authorsig = base64_encode(rsa_sign($signed_text,$a->user['prvkey'],'sha256'));
3370                         }
3371                         else {
3372                                 $r = q("SELECT `nick`, `url` FROM `contact` WHERE `id` = '%d' LIMIT 1",
3373                                         $item['contact-id']
3374                                 );
3375                                 if(count($r)) {
3376                                         // The below handle only works for NETWORK_DFRN. I think that's ok, because this function
3377                                         // only handles DFRN deletes
3378                                         $handle_baseurl_start = strpos($r['url'],'://') + 3;
3379                                         $handle_baseurl_length = strpos($r['url'],'/profile') - $handle_baseurl_start;
3380                                         $handle = $r['nick'] . '@' . substr($r['url'], $handle_baseurl_start, $handle_baseurl_length);
3381                                         $authorsig = '';
3382                                 }
3383                         }
3384
3385                         if(isset($handle))
3386                                 q("insert into sign (`retract_iid`,`signed_text`,`signature`,`signer`) values (%d,'%s','%s','%s') ",
3387                                         intval($item['id']),
3388                                         dbesc($signed_text),
3389                                         dbesc($authorsig),
3390                                         dbesc($handle)
3391                                 );
3392                 }
3393                 $drop_id = intval($item['id']);
3394
3395                 // send the notification upstream/downstream as the case may be
3396
3397                 if(! $interactive)
3398                         return $owner;
3399
3400                 proc_run('php',"include/notifier.php","drop","$drop_id");
3401                 goaway($a->get_baseurl() . '/' . $_SESSION['return_url']);
3402                 //NOTREACHED
3403         }
3404         else {
3405                 if(! $interactive)
3406                         return 0;
3407                 notice( t('Permission denied.') . EOL);
3408                 goaway($a->get_baseurl() . '/' . $_SESSION['return_url']);
3409                 //NOTREACHED
3410         }
3411         
3412 }
3413
3414
3415 function first_post_date($uid,$wall = false) {
3416         $r = q("select id, created from item 
3417                 where uid = %d and wall = %d and deleted = 0 and visible = 1 AND moderated = 0 
3418                 and id = parent
3419                 order by created asc limit 1",
3420                 intval($uid),
3421                 intval($wall ? 1 : 0)
3422         );
3423         if(count($r)) {
3424 //              logger('first_post_date: ' . $r[0]['id'] . ' ' . $r[0]['created'], LOGGER_DATA);
3425                 return substr(datetime_convert('',date_default_timezone_get(),$r[0]['created']),0,10);
3426         }
3427         return false;
3428 }
3429
3430 function posted_dates($uid,$wall) {
3431         $dnow = datetime_convert('',date_default_timezone_get(),'now','Y-m-d');
3432
3433         $dthen = first_post_date($uid,$wall);
3434         if(! $dthen)
3435                 return array();
3436
3437         // If it's near the end of a long month, backup to the 28th so that in 
3438         // consecutive loops we'll always get a whole month difference.
3439
3440         if(intval(substr($dnow,8)) > 28)
3441                 $dnow = substr($dnow,0,8) . '28';
3442         if(intval(substr($dthen,8)) > 28)
3443                 $dnow = substr($dthen,0,8) . '28';
3444
3445         $ret = array();
3446         while($dnow >= $dthen) {
3447                 $dstart = substr($dnow,0,8) . '01';
3448                 $dend = substr($dnow,0,8) . get_dim(intval($dnow),intval(substr($dnow,5)));
3449                 $start_month = datetime_convert('','',$dstart,'Y-m-d');
3450                 $end_month = datetime_convert('','',$dend,'Y-m-d');
3451                 $str = day_translate(datetime_convert('','',$dnow,'F Y'));
3452                 $ret[] = array($str,$end_month,$start_month);
3453                 $dnow = datetime_convert('','',$dnow . ' -1 month', 'Y-m-d');
3454         }
3455         return $ret;
3456 }
3457
3458
3459 function posted_date_widget($url,$uid,$wall) {
3460         $o = '';
3461
3462         // For former Facebook folks that left because of "timeline"
3463
3464         if($wall && intval(get_pconfig($uid,'system','no_wall_archive_widget')))
3465                 return $o;
3466
3467         $ret = posted_dates($uid,$wall);
3468         if(! count($ret))
3469                 return $o;
3470
3471         $o = replace_macros(get_markup_template('posted_date_widget.tpl'),array(
3472                 '$title' => t('Archives'),
3473                 '$size' => ((count($ret) > 6) ? 6 : count($ret)),
3474                 '$url' => $url,
3475                 '$dates' => $ret
3476         ));
3477         return $o;
3478 }