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