]> git.mxchange.org Git - friendica.git/blob - include/items.php
Merge pull request #112 from tomtom84/master
[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(!x($res, 'author-avatar') || !$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(!x($res, 'author-avatar') || !$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(!x($res, 'owner-avatar') || !$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                 $r = q("select * from contact where uid = %d and id = %d limit 1",
1312                         intval($contact['uid']),
1313                         intval($contact['id'])
1314                 );
1315
1316                 $x = q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s' WHERE `uid` = %d AND `id` = %d LIMIT 1",
1317                         dbesc(notags(trim($new_name))),
1318                         dbesc(datetime_convert()),
1319                         intval($contact['uid']),
1320                         intval($contact['id'])
1321                 );
1322
1323                 // do our best to update the name on content items
1324
1325                 if(count($r)) {
1326                         q("update item set `author-name` = '%s' where `author-name` = '%s' and `author-link` = '%s' and uid = %d",
1327                                 dbesc(notags(trim($new_name))),
1328                                 dbesc($r[0]['name']),
1329                                 dbesc($r[0]['url']),
1330                                 intval($contact['uid'])
1331                         );
1332                 }
1333         }
1334
1335         if(strlen($birthday)) {
1336                 if(substr($birthday,0,4) != $contact['bdyear']) {
1337                         logger('consume_feed: updating birthday: ' . $birthday);
1338
1339                         /**
1340                          *
1341                          * Add new birthday event for this person
1342                          *
1343                          * $bdtext is just a readable placeholder in case the event is shared
1344                          * with others. We will replace it during presentation to our $importer
1345                          * to contain a sparkle link and perhaps a photo. 
1346                          *
1347                          */
1348                          
1349                         $bdtext = t('Birthday:') . ' [url=' . $contact['url'] . ']' . $contact['name'] . '[/url]' ;
1350
1351
1352                         $r = q("INSERT INTO `event` (`uid`,`cid`,`created`,`edited`,`start`,`finish`,`desc`,`type`)
1353                                 VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s' ) ",
1354                                 intval($contact['uid']),
1355                                 intval($contact['id']),
1356                                 dbesc(datetime_convert()),
1357                                 dbesc(datetime_convert()),
1358                                 dbesc(datetime_convert('UTC','UTC', $birthday)),
1359                                 dbesc(datetime_convert('UTC','UTC', $birthday . ' + 1 day ')),
1360                                 dbesc($bdtext),
1361                                 dbesc('birthday')
1362                         );
1363                         
1364
1365                         // update bdyear
1366
1367                         q("UPDATE `contact` SET `bdyear` = '%s' WHERE `uid` = %d AND `id` = %d LIMIT 1",
1368                                 dbesc(substr($birthday,0,4)),
1369                                 intval($contact['uid']),
1370                                 intval($contact['id'])
1371                         );
1372
1373                         // This function is called twice without reloading the contact
1374                         // Make sure we only create one event. This is why &$contact 
1375                         // is a reference var in this function
1376
1377                         $contact['bdyear'] = substr($birthday,0,4);
1378                 }
1379
1380         }
1381
1382
1383         // process any deleted entries
1384
1385         $del_entries = $feed->get_feed_tags(NAMESPACE_TOMB, 'deleted-entry');
1386         if(is_array($del_entries) && count($del_entries) && $pass != 2) {
1387                 foreach($del_entries as $dentry) {
1388                         $deleted = false;
1389                         if(isset($dentry['attribs']['']['ref'])) {
1390                                 $uri = $dentry['attribs']['']['ref'];
1391                                 $deleted = true;
1392                                 if(isset($dentry['attribs']['']['when'])) {
1393                                         $when = $dentry['attribs']['']['when'];
1394                                         $when = datetime_convert('UTC','UTC', $when, 'Y-m-d H:i:s');
1395                                 }
1396                                 else
1397                                         $when = datetime_convert('UTC','UTC','now','Y-m-d H:i:s');
1398                         }
1399                         if($deleted && is_array($contact)) {
1400                                 $r = q("SELECT `item`.*, `contact`.`self` FROM `item` left join `contact` on `item`.`contact-id` = `contact`.`id` 
1401                                         WHERE `uri` = '%s' AND `item`.`uid` = %d AND `contact-id` = %d LIMIT 1",
1402                                         dbesc($uri),
1403                                         intval($importer['uid']),
1404                                         intval($contact['id'])
1405                                 );
1406                                 if(count($r)) {
1407                                         $item = $r[0];
1408
1409                                         if(! $item['deleted'])
1410                                                 logger('consume_feed: deleting item ' . $item['id'] . ' uri=' . $item['uri'], LOGGER_DEBUG);
1411
1412                                         if(($item['verb'] === ACTIVITY_TAG) && ($item['object-type'] === ACTVITY_OBJ_TAGTERM)) {
1413                                                 $xo = parse_xml_string($item['object'],false);
1414                                                 $xt = parse_xml_string($item['target'],false);
1415                                                 if($xt->type === ACTIVITY_OBJ_NOTE) {
1416                                                         $i = q("select * from `item` where uri = '%s' and uid = %d limit 1",
1417                                                                 dbesc($xt->id),
1418                                                                 intval($importer['importer_uid'])
1419                                                         );
1420                                                         if(count($i)) {
1421
1422                                                                 // For tags, the owner cannot remove the tag on the author's copy of the post.
1423
1424                                                                 $owner_remove = (($item['contact-id'] == $i[0]['contact-id']) ? true: false);
1425                                                                 $author_remove = (($item['origin'] && $item['self']) ? true : false);
1426                                                                 $author_copy = (($item['origin']) ? true : false);
1427
1428                                                                 if($owner_remove && $author_copy)
1429                                                                         continue;
1430                                                                 if($author_remove || $owner_remove) {
1431                                                                         $tags = explode(',',$i[0]['tag']);
1432                                                                         $newtags = array();
1433                                                                         if(count($tags)) {
1434                                                                                 foreach($tags as $tag)
1435                                                                                         if(trim($tag) !== trim($xo->body))
1436                                                                                                 $newtags[] = trim($tag);
1437                                                                         }
1438                                                                         q("update item set tag = '%s' where id = %d limit 1",
1439                                                                                 dbesc(implode(',',$newtags)),
1440                                                                                 intval($i[0]['id'])
1441                                                                         );
1442                                                                 }
1443                                                         }
1444                                                 }
1445                                         }
1446
1447                                         if($item['uri'] == $item['parent-uri']) {
1448                                                 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s',
1449                                                         `body` = '', `title` = ''
1450                                                         WHERE `parent-uri` = '%s' AND `uid` = %d",
1451                                                         dbesc($when),
1452                                                         dbesc(datetime_convert()),
1453                                                         dbesc($item['uri']),
1454                                                         intval($importer['uid'])
1455                                                 );
1456                                         }
1457                                         else {
1458                                                 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s',
1459                                                         `body` = '', `title` = '' 
1460                                                         WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1461                                                         dbesc($when),
1462                                                         dbesc(datetime_convert()),
1463                                                         dbesc($uri),
1464                                                         intval($importer['uid'])
1465                                                 );
1466                                                 if($item['last-child']) {
1467                                                         // ensure that last-child is set in case the comment that had it just got wiped.
1468                                                         q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d ",
1469                                                                 dbesc(datetime_convert()),
1470                                                                 dbesc($item['parent-uri']),
1471                                                                 intval($item['uid'])
1472                                                         );
1473                                                         // who is the last child now? 
1474                                                         $r = q("SELECT `id` FROM `item` WHERE `parent-uri` = '%s' AND `type` != 'activity' AND `deleted` = 0 AND `moderated` = 0 AND `uid` = %d 
1475                                                                 ORDER BY `created` DESC LIMIT 1",
1476                                                                         dbesc($item['parent-uri']),
1477                                                                         intval($importer['uid'])
1478                                                         );
1479                                                         if(count($r)) {
1480                                                                 q("UPDATE `item` SET `last-child` = 1 WHERE `id` = %d LIMIT 1",
1481                                                                         intval($r[0]['id'])
1482                                                                 );
1483                                                         }
1484                                                 }       
1485                                         }
1486                                 }       
1487                         }
1488                 }
1489         }
1490
1491         // Now process the feed
1492
1493         if($feed->get_item_quantity()) {                
1494
1495                 logger('consume_feed: feed item count = ' . $feed->get_item_quantity());
1496
1497         // in inverse date order
1498                 if ($datedir)
1499                         $items = array_reverse($feed->get_items());
1500                 else
1501                         $items = $feed->get_items();
1502
1503
1504                 foreach($items as $item) {
1505
1506                         $is_reply = false;              
1507                         $item_id = $item->get_id();
1508                         $rawthread = $item->get_item_tags( NAMESPACE_THREAD,'in-reply-to');
1509                         if(isset($rawthread[0]['attribs']['']['ref'])) {
1510                                 $is_reply = true;
1511                                 $parent_uri = $rawthread[0]['attribs']['']['ref'];
1512                         }
1513
1514                         if(($is_reply) && is_array($contact)) {
1515
1516                                 if($pass == 1)
1517                                         continue;
1518
1519                                 // Have we seen it? If not, import it.
1520         
1521                                 $item_id  = $item->get_id();
1522                                 $datarray = get_atom_elements($feed,$item);
1523
1524
1525                                 if((! x($datarray,'author-name')) && ($contact['network'] != NETWORK_DFRN))
1526                                         $datarray['author-name'] = $contact['name'];
1527                                 if((! x($datarray,'author-link')) && ($contact['network'] != NETWORK_DFRN))
1528                                         $datarray['author-link'] = $contact['url'];
1529                                 if((! x($datarray,'author-avatar')) && ($contact['network'] != NETWORK_DFRN))
1530                                         $datarray['author-avatar'] = $contact['thumb'];
1531
1532                                 if((! x($datarray,'author-name')) || (! x($datarray,'author-link'))) {
1533                                         logger('consume_feed: no author information! ' . print_r($datarray,true));
1534                                         continue;
1535                                 }
1536
1537                                 $r = q("SELECT `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1538                                         dbesc($item_id),
1539                                         intval($importer['uid'])
1540                                 );
1541
1542                                 // Update content if 'updated' changes
1543
1544                                 if(count($r)) {
1545                                         if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) {  
1546                                                 $r = q("UPDATE `item` SET `title` = '%s', `body` = '%s', `edited` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1547                                                         dbesc($datarray['title']),
1548                                                         dbesc($datarray['body']),
1549                                                         dbesc(datetime_convert('UTC','UTC',$datarray['edited'])),
1550                                                         dbesc($item_id),
1551                                                         intval($importer['uid'])
1552                                                 );
1553                                         }
1554
1555                                         // update last-child if it changes
1556
1557                                         $allow = $item->get_item_tags( NAMESPACE_DFRN, 'comment-allow');
1558                                         if(($allow) && ($allow[0]['data'] != $r[0]['last-child'])) {
1559                                                 $r = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d",
1560                                                         dbesc(datetime_convert()),
1561                                                         dbesc($parent_uri),
1562                                                         intval($importer['uid'])
1563                                                 );
1564                                                 $r = q("UPDATE `item` SET `last-child` = %d , `changed` = '%s'  WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1565                                                         intval($allow[0]['data']),
1566                                                         dbesc(datetime_convert()),
1567                                                         dbesc($item_id),
1568                                                         intval($importer['uid'])
1569                                                 );
1570                                         }
1571                                         continue;
1572                                 }
1573
1574                                 $force_parent = false;
1575                                 if($contact['network'] === NETWORK_OSTATUS || stristr($contact['url'],'twitter.com')) {
1576                                         if($contact['network'] === NETWORK_OSTATUS)
1577                                                 $force_parent = true;
1578                                         if(strlen($datarray['title']))
1579                                                 unset($datarray['title']);
1580                                         $r = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d",
1581                                                 dbesc(datetime_convert()),
1582                                                 dbesc($parent_uri),
1583                                                 intval($importer['uid'])
1584                                         );
1585                                         $datarray['last-child'] = 1;
1586                                 }
1587
1588                                 if(($contact['network'] === NETWORK_FEED) || (! strlen($contact['notify']))) {
1589                                         // one way feed - no remote comment ability
1590                                         $datarray['last-child'] = 0;
1591                                 }
1592                                 $datarray['parent-uri'] = $parent_uri;
1593                                 $datarray['uid'] = $importer['uid'];
1594                                 $datarray['contact-id'] = $contact['id'];
1595                                 if((activity_match($datarray['verb'],ACTIVITY_LIKE)) || (activity_match($datarray['verb'],ACTIVITY_DISLIKE))) {
1596                                         $datarray['type'] = 'activity';
1597                                         $datarray['gravity'] = GRAVITY_LIKE;
1598                                         // only one like or dislike per person
1599                                         $r = q("select id from item where uid = %d and `contact-id` = %d and verb ='%s' and deleted = 0 limit 1",
1600                                                 intval($datarray['uid']),
1601                                                 intval($datarray['contact-id']),
1602                                                 dbesc($datarray['verb'])
1603                                         );
1604                                         if($r && count($r))
1605                                                 continue; 
1606                                 }
1607
1608                                 if(($datarray['verb'] === ACTIVITY_TAG) && ($datarray['object-type'] === ACTIVITY_OBJ_TAGTERM)) {
1609                                         $xo = parse_xml_string($datarray['object'],false);
1610                                         $xt = parse_xml_string($datarray['target'],false);
1611
1612                                         if($xt->type == ACTIVITY_OBJ_NOTE) {
1613                                                 $r = q("select * from item where `uri` = '%s' AND `uid` = %d limit 1",
1614                                                         dbesc($xt->id),
1615                                                         intval($importer['importer_uid'])
1616                                                 );
1617                                                 if(! count($r))
1618                                                         continue;
1619
1620                                                 // extract tag, if not duplicate, add to parent item
1621                                                 if($xo->id && $xo->content) {
1622                                                         $newtag = '#[url=' . $xo->id . ']'. $xo->content . '[/url]';
1623                                                         if(! (stristr($r[0]['tag'],$newtag))) {
1624                                                                 q("UPDATE item SET tag = '%s' WHERE id = %d LIMIT 1",
1625                                                                         dbesc($r[0]['tag'] . (strlen($r[0]['tag']) ? ',' : '') . $newtag),
1626                                                                         intval($r[0]['id'])
1627                                                                 );
1628                                                         }
1629                                                 }
1630                                         }
1631                                 }
1632
1633                                 $r = item_store($datarray,$force_parent);
1634                                 continue;
1635                         }
1636
1637                         else {
1638
1639                                 // Head post of a conversation. Have we seen it? If not, import it.
1640
1641                                 $item_id  = $item->get_id();
1642
1643                                 $datarray = get_atom_elements($feed,$item);
1644
1645                                 if(is_array($contact)) {
1646                                         if((! x($datarray,'author-name')) && ($contact['network'] != NETWORK_DFRN))
1647                                                 $datarray['author-name'] = $contact['name'];
1648                                         if((! x($datarray,'author-link')) && ($contact['network'] != NETWORK_DFRN))
1649                                                 $datarray['author-link'] = $contact['url'];
1650                                         if((! x($datarray,'author-avatar')) && ($contact['network'] != NETWORK_DFRN))
1651                                                 $datarray['author-avatar'] = $contact['thumb'];
1652                                 }
1653
1654                                 if((! x($datarray,'author-name')) || (! x($datarray,'author-link'))) {
1655                                         logger('consume_feed: no author information! ' . print_r($datarray,true));
1656                                         continue;
1657                                 }
1658
1659                                 // special handling for events
1660
1661                                 if((x($datarray,'object-type')) && ($datarray['object-type'] === ACTIVITY_OBJ_EVENT)) {
1662                                         $ev = bbtoevent($datarray['body']);
1663                                         if(x($ev,'desc') && x($ev,'start')) {
1664                                                 $ev['uid'] = $importer['uid'];
1665                                                 $ev['uri'] = $item_id;
1666                                                 $ev['edited'] = $datarray['edited'];
1667                                                 $ev['private'] = $datarray['private'];
1668
1669                                                 if(is_array($contact))
1670                                                         $ev['cid'] = $contact['id'];
1671                                                 $r = q("SELECT * FROM `event` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1672                                                         dbesc($item_id),
1673                                                         intval($importer['uid'])
1674                                                 );
1675                                                 if(count($r))
1676                                                         $ev['id'] = $r[0]['id'];
1677                                                 $xyz = event_store($ev);
1678                                                 continue;
1679                                         }
1680                                 }
1681
1682                                 $r = q("SELECT `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1683                                         dbesc($item_id),
1684                                         intval($importer['uid'])
1685                                 );
1686
1687                                 // Update content if 'updated' changes
1688
1689                                 if(count($r)) {
1690                                         if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) {  
1691                                                 $r = q("UPDATE `item` SET `title` = '%s', `body` = '%s', `edited` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1692                                                         dbesc($datarray['title']),
1693                                                         dbesc($datarray['body']),
1694                                                         dbesc(datetime_convert('UTC','UTC',$datarray['edited'])),
1695                                                         dbesc($item_id),
1696                                                         intval($importer['uid'])
1697                                                 );
1698                                         }
1699
1700                                         // update last-child if it changes
1701
1702                                         $allow = $item->get_item_tags( NAMESPACE_DFRN, 'comment-allow');
1703                                         if($allow && $allow[0]['data'] != $r[0]['last-child']) {
1704                                                 $r = q("UPDATE `item` SET `last-child` = %d , `changed` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1705                                                         intval($allow[0]['data']),
1706                                                         dbesc(datetime_convert()),
1707                                                         dbesc($item_id),
1708                                                         intval($importer['uid'])
1709                                                 );
1710                                         }
1711                                         continue;
1712                                 }
1713
1714                                 if(activity_match($datarray['verb'],ACTIVITY_FOLLOW)) {
1715                                         logger('consume-feed: New follower');
1716                                         new_follower($importer,$contact,$datarray,$item);
1717                                         return;
1718                                 }
1719                                 if(activity_match($datarray['verb'],ACTIVITY_UNFOLLOW))  {
1720                                         lose_follower($importer,$contact,$datarray,$item);
1721                                         return;
1722                                 }
1723
1724                                 if(activity_match($datarray['verb'],ACTIVITY_REQ_FRIEND)) {
1725                                         logger('consume-feed: New friend request');
1726                                         new_follower($importer,$contact,$datarray,$item,true);
1727                                         return;
1728                                 }
1729                                 if(activity_match($datarray['verb'],ACTIVITY_UNFRIEND))  {
1730                                         lose_sharer($importer,$contact,$datarray,$item);
1731                                         return;
1732                                 }
1733
1734
1735                                 if(! is_array($contact))
1736                                         return;
1737
1738                                 if($contact['network'] === NETWORK_OSTATUS || stristr($contact['url'],'twitter.com')) {
1739                                         if(strlen($datarray['title']))
1740                                                 unset($datarray['title']);
1741                                         $datarray['last-child'] = 1;
1742                                 }
1743
1744                                 if(($contact['network'] === NETWORK_FEED) || (! strlen($contact['notify']))) {
1745                                         // one way feed - no remote comment ability
1746                                         $datarray['last-child'] = 0;
1747                                 }
1748
1749                                 // This is my contact on another system, but it's really me.
1750                                 // Turn this into a wall post.
1751
1752                                 if($contact['remote_self'])
1753                                         $datarray['wall'] = 1;
1754
1755                                 $datarray['parent-uri'] = $item_id;
1756                                 $datarray['uid'] = $importer['uid'];
1757                                 $datarray['contact-id'] = $contact['id'];
1758
1759                                 if(! link_compare($datarray['owner-link'],$contact['url'])) {
1760                                         // The item owner info is not our contact. It's OK and is to be expected if this is a tgroup delivery, 
1761                                         // but otherwise there's a possible data mixup on the sender's system.
1762                                         // the tgroup delivery code called from item_store will correct it if it's a forum,
1763                                         // but we're going to unconditionally correct it here so that the post will always be owned by our contact. 
1764                                         logger('local_delivery: Correcting item owner.', LOGGER_DEBUG);
1765                                         $datarray['owner-name']   = $contact['name'];
1766                                         $datarray['owner-link']   = $contact['url'];
1767                                         $datarray['owner-avatar'] = $contact['thumb'];
1768                                 }
1769
1770                                 $r = item_store($datarray);
1771                                 continue;
1772
1773                         }
1774                 }
1775         }
1776 }
1777
1778 function local_delivery($importer,$data) {
1779
1780         $a = get_app();
1781
1782         if($importer['readonly']) {
1783                 // We aren't receiving stuff from this person. But we will quietly ignore them
1784                 // rather than a blatant "go away" message.
1785                 logger('local_delivery: ignoring');
1786                 return 0;
1787                 //NOTREACHED
1788         }
1789
1790         // Consume notification feed. This may differ from consuming a public feed in several ways
1791         // - might contain email or friend suggestions
1792         // - might contain remote followup to our message
1793         //              - in which case we need to accept it and then notify other conversants
1794         // - we may need to send various email notifications
1795
1796         $feed = new SimplePie();
1797         $feed->set_raw_data($data);
1798         $feed->enable_order_by_date(false);
1799         $feed->init();
1800
1801         $reloc = $feed->get_feed_tags( NAMESPACE_DFRN, 'relocate' );
1802         if(isset($reloc[0]['child'][NAMESPACE_DFRN])) {
1803                 $base = $reloc[0]['child'][NAMESPACE_DFRN];
1804                 $newloc = array();
1805                 $newloc['uid'] = $importer['importer_uid'];
1806                 $newloc['cid'] = $importer['id'];
1807                 $newloc['name'] = notags(unxmlify($base['name'][0]['data']));
1808                 $newloc['photo'] = notags(unxmlify($base['photo'][0]['data']));
1809                 $newloc['url'] = notags(unxmlify($base['url'][0]['data']));
1810                 $newloc['request'] = notags(unxmlify($base['request'][0]['data']));
1811                 $newloc['confirm'] = notags(unxmlify($base['confirm'][0]['data']));
1812                 $newloc['notify'] = notags(unxmlify($base['notify'][0]['data']));
1813                 $newloc['poll'] = notags(unxmlify($base['poll'][0]['data']));
1814                 $newloc['site-pubkey'] = notags(unxmlify($base['site-pubkey'][0]['data']));
1815                 $newloc['pubkey'] = notags(unxmlify($base['pubkey'][0]['data']));
1816                 $newloc['prvkey'] = notags(unxmlify($base['prvkey'][0]['data']));
1817                 
1818                 // TODO
1819                 // merge with current record, current contents have priority
1820                 // update record, set url-updated
1821                 // update profile photos
1822                 // schedule a scan?
1823
1824         }
1825
1826         // handle friend suggestion notification
1827
1828         $sugg = $feed->get_feed_tags( NAMESPACE_DFRN, 'suggest' );
1829         if(isset($sugg[0]['child'][NAMESPACE_DFRN])) {
1830                 $base = $sugg[0]['child'][NAMESPACE_DFRN];
1831                 $fsugg = array();
1832                 $fsugg['uid'] = $importer['importer_uid'];
1833                 $fsugg['cid'] = $importer['id'];
1834                 $fsugg['name'] = notags(unxmlify($base['name'][0]['data']));
1835                 $fsugg['photo'] = notags(unxmlify($base['photo'][0]['data']));
1836                 $fsugg['url'] = notags(unxmlify($base['url'][0]['data']));
1837                 $fsugg['request'] = notags(unxmlify($base['request'][0]['data']));
1838                 $fsugg['body'] = escape_tags(unxmlify($base['note'][0]['data']));
1839
1840                 // Does our member already have a friend matching this description?
1841
1842                 $r = q("SELECT * FROM `contact` WHERE `name` = '%s' AND `nurl` = '%s' AND `uid` = %d LIMIT 1",
1843                         dbesc($fsugg['name']),
1844                         dbesc(normalise_link($fsugg['url'])),
1845                         intval($fsugg['uid'])
1846                 );
1847                 if(count($r))
1848                         return 0;
1849
1850                 // Do we already have an fcontact record for this person?
1851
1852                 $fid = 0;
1853                 $r = q("SELECT * FROM `fcontact` WHERE `url` = '%s' AND `name` = '%s' AND `request` = '%s' LIMIT 1",
1854                         dbesc($fsugg['url']),
1855                         dbesc($fsugg['name']),
1856                         dbesc($fsugg['request'])
1857                 );
1858                 if(count($r)) {
1859                         $fid = $r[0]['id'];
1860                 }
1861                 if(! $fid)
1862                         $r = q("INSERT INTO `fcontact` ( `name`,`url`,`photo`,`request` ) VALUES ( '%s', '%s', '%s', '%s' ) ",
1863                         dbesc($fsugg['name']),
1864                         dbesc($fsugg['url']),
1865                         dbesc($fsugg['photo']),
1866                         dbesc($fsugg['request'])
1867                 );
1868                 $r = q("SELECT * FROM `fcontact` WHERE `url` = '%s' AND `name` = '%s' AND `request` = '%s' LIMIT 1",
1869                         dbesc($fsugg['url']),
1870                         dbesc($fsugg['name']),
1871                         dbesc($fsugg['request'])
1872                 );
1873                 if(count($r)) {
1874                         $fid = $r[0]['id'];
1875                 }
1876                 // database record did not get created. Quietly give up.
1877                 else
1878                         return 0;
1879
1880                 $hash = random_string();
1881  
1882                 $r = q("INSERT INTO `intro` ( `uid`, `fid`, `contact-id`, `note`, `hash`, `datetime`, `blocked` )
1883                         VALUES( %d, %d, %d, '%s', '%s', '%s', %d )",
1884                         intval($fsugg['uid']),
1885                         intval($fid),
1886                         intval($fsugg['cid']),
1887                         dbesc($fsugg['body']),
1888                         dbesc($hash),
1889                         dbesc(datetime_convert()),
1890                         intval(0)
1891                 );
1892
1893                 notification(array(
1894                         'type'         => NOTIFY_SUGGEST,
1895                         'notify_flags' => $importer['notify-flags'],
1896                         'language'     => $importer['language'],
1897                         'to_name'      => $importer['username'],
1898                         'to_email'     => $importer['email'],
1899                         'uid'          => $importer['importer_uid'],
1900                         'item'         => $fsugg,
1901                         'link'         => $a->get_baseurl() . '/notifications/intros',
1902                         'source_name'  => $importer['name'],
1903                         'source_link'  => $importer['url'],
1904                         'source_photo' => $importer['photo'],
1905                         'verb'         => ACTIVITY_REQ_FRIEND,
1906                         'otype'        => 'intro'
1907                 ));
1908
1909                 return 0;
1910         }
1911
1912         $ismail = false;
1913
1914         $rawmail = $feed->get_feed_tags( NAMESPACE_DFRN, 'mail' );
1915         if(isset($rawmail[0]['child'][NAMESPACE_DFRN])) {
1916
1917                 logger('local_delivery: private message received');
1918
1919                 $ismail = true;
1920                 $base = $rawmail[0]['child'][NAMESPACE_DFRN];
1921
1922                 $msg = array();
1923                 $msg['uid'] = $importer['importer_uid'];
1924                 $msg['from-name'] = notags(unxmlify($base['sender'][0]['child'][NAMESPACE_DFRN]['name'][0]['data']));
1925                 $msg['from-photo'] = notags(unxmlify($base['sender'][0]['child'][NAMESPACE_DFRN]['avatar'][0]['data']));
1926                 $msg['from-url'] = notags(unxmlify($base['sender'][0]['child'][NAMESPACE_DFRN]['uri'][0]['data']));
1927                 $msg['contact-id'] = $importer['id'];
1928                 $msg['title'] = notags(unxmlify($base['subject'][0]['data']));
1929                 $msg['body'] = escape_tags(unxmlify($base['content'][0]['data']));
1930                 $msg['seen'] = 0;
1931                 $msg['replied'] = 0;
1932                 $msg['uri'] = notags(unxmlify($base['id'][0]['data']));
1933                 $msg['parent-uri'] = notags(unxmlify($base['in-reply-to'][0]['data']));
1934                 $msg['created'] = datetime_convert(notags(unxmlify('UTC','UTC',$base['sentdate'][0]['data'])));
1935                 
1936                 dbesc_array($msg);
1937
1938                 $r = dbq("INSERT INTO `mail` (`" . implode("`, `", array_keys($msg)) 
1939                         . "`) VALUES ('" . implode("', '", array_values($msg)) . "')" );
1940
1941                 // send notifications.
1942
1943                 require_once('include/enotify.php');
1944
1945                 $notif_params = array(
1946                         'type' => NOTIFY_MAIL,
1947                         'notify_flags' => $importer['notify-flags'],
1948                         'language' => $importer['language'],
1949                         'to_name' => $importer['username'],
1950                         'to_email' => $importer['email'],
1951                         'uid' => $importer['importer_uid'],
1952                         'item' => $msg,
1953                         'source_name' => $msg['from-name'],
1954                         'source_link' => $importer['url'],
1955                         'source_photo' => $importer['thumb'],
1956                         'verb' => ACTIVITY_POST,
1957                         'otype' => 'mail'
1958                 );
1959                         
1960                 notification($notif_params);
1961                 return 0;
1962
1963                 // NOTREACHED
1964         }       
1965         
1966         logger('local_delivery: feed item count = ' . $feed->get_item_quantity());
1967
1968         // process any deleted entries
1969
1970         $del_entries = $feed->get_feed_tags(NAMESPACE_TOMB, 'deleted-entry');
1971         if(is_array($del_entries) && count($del_entries)) {
1972                 foreach($del_entries as $dentry) {
1973                         $deleted = false;
1974                         if(isset($dentry['attribs']['']['ref'])) {
1975                                 $uri = $dentry['attribs']['']['ref'];
1976                                 $deleted = true;
1977                                 if(isset($dentry['attribs']['']['when'])) {
1978                                         $when = $dentry['attribs']['']['when'];
1979                                         $when = datetime_convert('UTC','UTC', $when, 'Y-m-d H:i:s');
1980                                 }
1981                                 else
1982                                         $when = datetime_convert('UTC','UTC','now','Y-m-d H:i:s');
1983                         }
1984                         if($deleted) {
1985
1986                                 $r = q("SELECT `item`.*, `contact`.`self` FROM `item` left join contact on `item`.`contact-id` = `contact`.`id`
1987                                         WHERE `uri` = '%s' AND `item`.`uid` = %d AND `contact-id` = %d LIMIT 1",
1988                                         dbesc($uri),
1989                                         intval($importer['importer_uid']),
1990                                         intval($importer['id'])
1991                                 );
1992
1993                                 if(count($r)) {
1994                                         $item = $r[0];
1995
1996                                         if($item['deleted'])
1997                                                 continue;
1998
1999                                         logger('local_delivery: deleting item ' . $item['id'] . ' uri=' . $item['uri'], LOGGER_DEBUG);
2000
2001                                         if(($item['verb'] === ACTIVITY_TAG) && ($item['object-type'] === ACTVITY_OBJ_TAGTERM)) {
2002                                                 $xo = parse_xml_string($item['object'],false);
2003                                                 $xt = parse_xml_string($item['target'],false);
2004                                                 if($xt->type === ACTIVITY_OBJ_NOTE) {
2005                                                         $i = q("select * from `item` where uri = '%s' and uid = %d limit 1",
2006                                                                 dbesc($xt->id),
2007                                                                 intval($importer['importer_uid'])
2008                                                         );
2009                                                         if(count($i)) {
2010
2011                                                                 // For tags, the owner cannot remove the tag on the author's copy of the post.
2012                                                                 
2013                                                                 $owner_remove = (($item['contact-id'] == $i[0]['contact-id']) ? true: false);
2014                                                                 $author_remove = (($item['origin'] && $item['self']) ? true : false);
2015                                                                 $author_copy = (($item['origin']) ? true : false); 
2016
2017                                                                 if($owner_remove && $author_copy)
2018                                                                         continue;
2019                                                                 if($author_remove || $owner_remove) {                                                           
2020                                                                         $tags = explode(',',$i[0]['tag']);
2021                                                                         $newtags = array();
2022                                                                         if(count($tags)) {
2023                                                                                 foreach($tags as $tag)
2024                                                                                         if(trim($tag) !== trim($xo->body))
2025                                                                                                 $newtags[] = trim($tag);
2026                                                                         }
2027                                                                         q("update item set tag = '%s' where id = %d limit 1",
2028                                                                                 dbesc(implode(',',$newtags)),
2029                                                                                 intval($i[0]['id'])
2030                                                                         );
2031                                                                 }
2032                                                         }
2033                                                 }
2034                                         }
2035
2036                                         if($item['uri'] == $item['parent-uri']) {
2037                                                 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s'
2038                                                         WHERE `parent-uri` = '%s' AND `uid` = %d",
2039                                                         dbesc($when),
2040                                                         dbesc(datetime_convert()),
2041                                                         dbesc($item['uri']),
2042                                                         intval($importer['importer_uid'])
2043                                                 );
2044                                         }
2045                                         else {
2046                                                 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s' 
2047                                                         WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2048                                                         dbesc($when),
2049                                                         dbesc(datetime_convert()),
2050                                                         dbesc($uri),
2051                                                         intval($importer['importer_uid'])
2052                                                 );
2053                                                 if($item['last-child']) {
2054                                                         // ensure that last-child is set in case the comment that had it just got wiped.
2055                                                         q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d ",
2056                                                                 dbesc(datetime_convert()),
2057                                                                 dbesc($item['parent-uri']),
2058                                                                 intval($item['uid'])
2059                                                         );
2060                                                         // who is the last child now? 
2061                                                         $r = q("SELECT `id` FROM `item` WHERE `parent-uri` = '%s' AND `type` != 'activity' AND `deleted` = 0 AND `uid` = %d
2062                                                                 ORDER BY `created` DESC LIMIT 1",
2063                                                                         dbesc($item['parent-uri']),
2064                                                                         intval($importer['importer_uid'])
2065                                                         );
2066                                                         if(count($r)) {
2067                                                                 q("UPDATE `item` SET `last-child` = 1 WHERE `id` = %d LIMIT 1",
2068                                                                         intval($r[0]['id'])
2069                                                                 );
2070                                                         }       
2071                                                 }
2072                                         }       
2073                                 }
2074                         }
2075                 }
2076         }
2077
2078
2079         foreach($feed->get_items() as $item) {
2080
2081                 $is_reply = false;              
2082                 $item_id = $item->get_id();
2083                 $rawthread = $item->get_item_tags( NAMESPACE_THREAD, 'in-reply-to');
2084                 if(isset($rawthread[0]['attribs']['']['ref'])) {
2085                         $is_reply = true;
2086                         $parent_uri = $rawthread[0]['attribs']['']['ref'];
2087                 }
2088
2089                 if($is_reply) {
2090                         $community = false;
2091
2092                         if($importer['page-flags'] == PAGE_COMMUNITY) {
2093                                 $sql_extra = '';
2094                                 $community = true;
2095                                 logger('local_delivery: possible community reply');
2096                         }
2097                         else
2098                                 $sql_extra = " and contact.self = 1 and item.wall = 1 ";
2099  
2100                         // was the top-level post for this reply written by somebody on this site? 
2101                         // Specifically, the recipient? 
2102
2103                         $is_a_remote_comment = false;
2104
2105                         $r = q("select `item`.`id`, `item`.`uri`, `item`.`tag`, `item`.`forum_mode`,`item`.`origin`,`item`.`wall`, 
2106                                 `contact`.`name`, `contact`.`url`, `contact`.`thumb` from `item` 
2107                                 LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id` 
2108                                 WHERE `item`.`uri` = '%s' AND `item`.`parent-uri` = '%s'
2109                                 AND `item`.`uid` = %d 
2110                                 $sql_extra
2111                                 LIMIT 1",
2112                                 dbesc($parent_uri),
2113                                 dbesc($parent_uri),
2114                                 intval($importer['importer_uid'])
2115                         );
2116                         if($r && count($r))
2117                                 $is_a_remote_comment = true;                    
2118
2119                         // Does this have the characteristics of a community comment?
2120                         // If it's a reply to a wall post on a community page it's a 
2121                         // valid community comment. Also forum_mode makes it valid for sure. 
2122                         // If neither, it's not.
2123
2124                         if($is_a_remote_comment && $community) {
2125                                 if((! $r[0]['forum_mode']) && (! $r[0]['wall'])) {
2126                                         $is_a_remote_comment = false;
2127                                         logger('local_delivery: not a community reply');
2128                                 }
2129                         }
2130
2131                         if($is_a_remote_comment) {
2132                                 logger('local_delivery: received remote comment');
2133                                 $is_like = false;
2134                                 // remote reply to our post. Import and then notify everybody else.
2135                                 $datarray = get_atom_elements($feed,$item);
2136
2137
2138                                 // TODO: make this next part work against both delivery threads of a community post
2139
2140 //                              if((! link_compare($datarray['author-link'],$importer['url'])) && (! $community)) {
2141 //                                      logger('local_delivery: received relay claiming to be from ' . $importer['url'] . ' however comment author url is ' . $datarray['author-link'] ); 
2142                                         // they won't know what to do so don't report an error. Just quietly die.
2143 //                                      return 0;
2144 //                              }                                       
2145
2146                                 $datarray['type'] = 'remote-comment';
2147                                 $datarray['wall'] = 1;
2148                                 $datarray['parent-uri'] = $parent_uri;
2149                                 $datarray['uid'] = $importer['importer_uid'];
2150                                 $datarray['owner-name'] = $r[0]['name'];
2151                                 $datarray['owner-link'] = $r[0]['url'];
2152                                 $datarray['owner-avatar'] = $r[0]['thumb'];
2153                                 $datarray['contact-id'] = $importer['id'];
2154                                 if(($datarray['verb'] === ACTIVITY_LIKE) || ($datarray['verb'] === ACTIVITY_DISLIKE)) {
2155                                         $is_like = true;
2156                                         $datarray['type'] = 'activity';
2157                                         $datarray['gravity'] = GRAVITY_LIKE;
2158                                         $datarray['last-child'] = 0;
2159                                         // only one like or dislike per person
2160                                         $r = q("select id from item where uid = %d and `contact-id` = %d and verb ='%s' and deleted = 0 limit 1",
2161                                                 intval($datarray['uid']),
2162                                                 intval($datarray['contact-id']),
2163                                                 dbesc($datarray['verb'])
2164                                         );
2165                                         if($r && count($r))
2166                                                 continue; 
2167                                 }
2168
2169                                 if(($datarray['verb'] === ACTIVITY_TAG) && ($datarray['object-type'] === ACTIVITY_OBJ_TAGTERM)) {
2170
2171
2172                                         $xo = parse_xml_string($datarray['object'],false);
2173                                         $xt = parse_xml_string($datarray['target'],false);
2174
2175                                         if(($xt->type == ACTIVITY_OBJ_NOTE) && ($xt->id == $r[0]['uri'])) {
2176
2177                                                 // extract tag, if not duplicate, and this user allows tags, add to parent item                                         
2178
2179                                                 if($xo->id && $xo->content) {
2180                                                         $newtag = '#[url=' . $xo->id . ']'. $xo->content . '[/url]';
2181
2182                                                         if(! (stristr($r[0]['tag'],$newtag))) {
2183                                                                 $i = q("SELECT `blocktags` FROM `user` where `uid` = %d LIMIT 1",
2184                                                                         intval($importer['importer_uid'])
2185                                                                 );
2186                                                                 if(count($i) && ! ($i[0]['blocktags'])) {
2187                                                                         q("UPDATE item SET tag = '%s' WHERE id = %d LIMIT 1",
2188                                                                                 dbesc($r[0]['tag'] . (strlen($r[0]['tag']) ? ',' : '') . $newtag),
2189                                                                                 intval($r[0]['id'])
2190                                                                         );
2191                                                                 }
2192                                                         }
2193                                                 }                                                                                                       
2194                                         }
2195                                 }
2196
2197 //                              if($community) {
2198 //                                      $newtag = '@[url=' . $a->get_baseurl() . '/profile/' . $importer['nickname'] . ']' . $importer['username'] . '[/url]';
2199 //                                      if(! stristr($datarray['tag'],$newtag)) {
2200 //                                              if(strlen($datarray['tag']))
2201 //                                                      $datarray['tag'] .= ',';
2202 //                                              $datarray['tag'] .= $newtag;
2203 //                                      }
2204 //                              }
2205
2206
2207                                 $posted_id = item_store($datarray);
2208                                 $parent = 0;
2209
2210                                 if($posted_id) {
2211                                         $r = q("SELECT `parent` FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1",
2212                                                 intval($posted_id),
2213                                                 intval($importer['importer_uid'])
2214                                         );
2215                                         if(count($r))
2216                                                 $parent = $r[0]['parent'];
2217                         
2218                                         if(! $is_like) {
2219                                                 $r1 = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `uid` = %d AND `parent` = %d",
2220                                                         dbesc(datetime_convert()),
2221                                                         intval($importer['importer_uid']),
2222                                                         intval($r[0]['parent'])
2223                                                 );
2224
2225                                                 $r2 = q("UPDATE `item` SET `last-child` = 1, `changed` = '%s' WHERE `uid` = %d AND `id` = %d LIMIT 1",
2226                                                         dbesc(datetime_convert()),
2227                                                         intval($importer['importer_uid']),
2228                                                         intval($posted_id)
2229                                                 );
2230                                         }
2231
2232                                         if($posted_id && $parent) {
2233                                 
2234                                                 proc_run('php',"include/notifier.php","comment-import","$posted_id");
2235                                         
2236                                                 if((! $is_like) && (! $importer['self'])) {
2237
2238                                                         require_once('include/enotify.php');
2239
2240                                                         notification(array(
2241                                                                 'type'         => NOTIFY_COMMENT,
2242                                                                 'notify_flags' => $importer['notify-flags'],
2243                                                                 'language'     => $importer['language'],
2244                                                                 'to_name'      => $importer['username'],
2245                                                                 'to_email'     => $importer['email'],
2246                                                                 'uid'          => $importer['importer_uid'],
2247                                                                 'item'         => $datarray,
2248                                                                 'link'             => $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $posted_id,
2249                                                                 'source_name'  => stripslashes($datarray['author-name']),
2250                                                                 'source_link'  => $datarray['author-link'],
2251                                                                 'source_photo' => ((link_compare($datarray['author-link'],$importer['url'])) 
2252                                                                         ? $importer['thumb'] : $datarray['author-avatar']),
2253                                                                 'verb'         => ACTIVITY_POST,
2254                                                                 'otype'        => 'item',
2255                                                                 'parent'       => $parent,
2256
2257                                                         ));
2258
2259                                                 }
2260                                         }
2261
2262                                         return 0;
2263                                         // NOTREACHED
2264                                 }
2265                         }
2266                         else {
2267
2268                                 // regular comment that is part of this total conversation. Have we seen it? If not, import it.
2269
2270                                 $item_id  = $item->get_id();
2271                                 $datarray = get_atom_elements($feed,$item);
2272
2273                                 $r = q("SELECT `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2274                                         dbesc($item_id),
2275                                         intval($importer['importer_uid'])
2276                                 );
2277
2278                                 // Update content if 'updated' changes
2279
2280                                 if(count($r)) {
2281                                         if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) {  
2282                                                 $r = q("UPDATE `item` SET `title` = '%s', `body` = '%s', `edited` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2283                                                         dbesc($datarray['title']),
2284                                                         dbesc($datarray['body']),
2285                                                         dbesc(datetime_convert('UTC','UTC',$datarray['edited'])),
2286                                                         dbesc($item_id),
2287                                                         intval($importer['importer_uid'])
2288                                                 );
2289                                         }
2290
2291                                         // update last-child if it changes
2292
2293                                         $allow = $item->get_item_tags( NAMESPACE_DFRN, 'comment-allow');
2294                                         if(($allow) && ($allow[0]['data'] != $r[0]['last-child'])) {
2295                                                 $r = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d",
2296                                                         dbesc(datetime_convert()),
2297                                                         dbesc($parent_uri),
2298                                                         intval($importer['importer_uid'])
2299                                                 );
2300                                                 $r = q("UPDATE `item` SET `last-child` = %d , `changed` = '%s'  WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2301                                                         intval($allow[0]['data']),
2302                                                         dbesc(datetime_convert()),
2303                                                         dbesc($item_id),
2304                                                         intval($importer['importer_uid'])
2305                                                 );
2306                                         }
2307                                         continue;
2308                                 }
2309
2310                                 $datarray['parent-uri'] = $parent_uri;
2311                                 $datarray['uid'] = $importer['importer_uid'];
2312                                 $datarray['contact-id'] = $importer['id'];
2313                                 if(($datarray['verb'] == ACTIVITY_LIKE) || ($datarray['verb'] == ACTIVITY_DISLIKE)) {
2314                                         $datarray['type'] = 'activity';
2315                                         $datarray['gravity'] = GRAVITY_LIKE;
2316                                         // only one like or dislike per person
2317                                         $r = q("select id from item where uid = %d and `contact-id` = %d and verb ='%s' and deleted = 0 limit 1",
2318                                                 intval($datarray['uid']),
2319                                                 intval($datarray['contact-id']),
2320                                                 dbesc($datarray['verb'])
2321                                         );
2322                                         if($r && count($r))
2323                                                 continue; 
2324
2325                                 }
2326
2327                                 if(($datarray['verb'] === ACTIVITY_TAG) && ($datarray['object-type'] === ACTIVITY_OBJ_TAGTERM)) {
2328
2329                                         $xo = parse_xml_string($datarray['object'],false);
2330                                         $xt = parse_xml_string($datarray['target'],false);
2331
2332                                         if($xt->type == ACTIVITY_OBJ_NOTE) {
2333                                                 $r = q("select * from item where `uri` = '%s' AND `uid` = %d limit 1",
2334                                                         dbesc($xt->id),
2335                                                         intval($importer['importer_uid'])
2336                                                 );
2337                                                 if(! count($r))
2338                                                         continue;                               
2339
2340                                                 // extract tag, if not duplicate, add to parent item                                            
2341                                                 if($xo->content) {
2342                                                         if(! (stristr($r[0]['tag'],trim($xo->content)))) {
2343                                                                 q("UPDATE item SET tag = '%s' WHERE id = %d LIMIT 1",
2344                                                                         dbesc($r[0]['tag'] . (strlen($r[0]['tag']) ? ',' : '') . '#[url=' . $xo->id . ']'. $xo->content . '[/url]'),
2345                                                                         intval($r[0]['id'])
2346                                                                 );
2347                                                         }
2348                                                 }                                                                                                       
2349                                         }
2350                                 }
2351
2352                                 $posted_id = item_store($datarray);
2353
2354                                 // find out if our user is involved in this conversation and wants to be notified.
2355                         
2356                                 if($datarray['type'] != 'activity') {
2357
2358                                         $myconv = q("SELECT `author-link`, `author-avatar`, `parent` FROM `item` WHERE `parent-uri` = '%s' AND `uid` = %d AND `parent` != 0 ",
2359                                                 dbesc($parent_uri),
2360                                                 intval($importer['importer_uid'])
2361                                         );
2362
2363                                         if(count($myconv)) {
2364                                                 $importer_url = $a->get_baseurl() . '/profile/' . $importer['nickname'];
2365
2366                                                 // first make sure this isn't our own post coming back to us from a wall-to-wall event
2367                                                 if(! link_compare($datarray['author-link'],$importer_url)) {
2368
2369                                                         
2370                                                         foreach($myconv as $conv) {
2371
2372                                                                 // now if we find a match, it means we're in this conversation
2373         
2374                                                                 if(! link_compare($conv['author-link'],$importer_url))
2375                                                                         continue;
2376
2377                                                                 require_once('include/enotify.php');
2378                                                                 
2379                                                                 $conv_parent = $conv['parent'];
2380
2381                                                                 notification(array(
2382                                                                         'type'         => NOTIFY_COMMENT,
2383                                                                         'notify_flags' => $importer['notify-flags'],
2384                                                                         'language'     => $importer['language'],
2385                                                                         'to_name'      => $importer['username'],
2386                                                                         'to_email'     => $importer['email'],
2387                                                                         'uid'          => $importer['importer_uid'],
2388                                                                         'item'         => $datarray,
2389                                                                         'link'             => $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $posted_id,
2390                                                                         'source_name'  => stripslashes($datarray['author-name']),
2391                                                                         'source_link'  => $datarray['author-link'],
2392                                                                         'source_photo' => ((link_compare($datarray['author-link'],$importer['url'])) 
2393                                                                                 ? $importer['thumb'] : $datarray['author-avatar']),
2394                                                                         'verb'         => ACTIVITY_POST,
2395                                                                         'otype'        => 'item',
2396                                                                         'parent'       => $conv_parent,
2397
2398                                                                 ));
2399
2400                                                                 // only send one notification
2401                                                                 break;
2402                                                         }
2403                                                 }
2404                                         }
2405                                 }
2406                                 continue;
2407                         }
2408                 }
2409
2410                 else {
2411
2412                         // Head post of a conversation. Have we seen it? If not, import it.
2413
2414
2415                         $item_id  = $item->get_id();
2416                         $datarray = get_atom_elements($feed,$item);
2417
2418                         if((x($datarray,'object-type')) && ($datarray['object-type'] === ACTIVITY_OBJ_EVENT)) {
2419                                 $ev = bbtoevent($datarray['body']);
2420                                 if(x($ev,'desc') && x($ev,'start')) {
2421                                         $ev['cid'] = $importer['id'];
2422                                         $ev['uid'] = $importer['uid'];
2423                                         $ev['uri'] = $item_id;
2424                                         $ev['edited'] = $datarray['edited'];
2425                                         $ev['private'] = $datarray['private'];
2426
2427                                         $r = q("SELECT * FROM `event` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2428                                                 dbesc($item_id),
2429                                                 intval($importer['uid'])
2430                                         );
2431                                         if(count($r))
2432                                                 $ev['id'] = $r[0]['id'];
2433                                         $xyz = event_store($ev);
2434                                         continue;
2435                                 }
2436                         }
2437
2438                         $r = q("SELECT `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2439                                 dbesc($item_id),
2440                                 intval($importer['importer_uid'])
2441                         );
2442
2443                         // Update content if 'updated' changes
2444
2445                         if(count($r)) {
2446                                 if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) {  
2447                                         $r = q("UPDATE `item` SET `title` = '%s', `body` = '%s', `edited` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2448                                                 dbesc($datarray['title']),
2449                                                 dbesc($datarray['body']),
2450                                                 dbesc(datetime_convert('UTC','UTC',$datarray['edited'])),
2451                                                 dbesc($item_id),
2452                                                 intval($importer['importer_uid'])
2453                                         );
2454                                 }
2455
2456                                 // update last-child if it changes
2457
2458                                 $allow = $item->get_item_tags( NAMESPACE_DFRN, 'comment-allow');
2459                                 if($allow && $allow[0]['data'] != $r[0]['last-child']) {
2460                                         $r = q("UPDATE `item` SET `last-child` = %d , `changed` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2461                                                 intval($allow[0]['data']),
2462                                                 dbesc(datetime_convert()),
2463                                                 dbesc($item_id),
2464                                                 intval($importer['importer_uid'])
2465                                         );
2466                                 }
2467                                 continue;
2468                         }
2469
2470                         // This is my contact on another system, but it's really me.
2471                         // Turn this into a wall post.
2472
2473                         if($importer['remote_self'])
2474                                 $datarray['wall'] = 1;
2475
2476                         $datarray['parent-uri'] = $item_id;
2477                         $datarray['uid'] = $importer['importer_uid'];
2478                         $datarray['contact-id'] = $importer['id'];
2479
2480                         if(! link_compare($datarray['owner-link'],$contact['url'])) {
2481                                 // The item owner info is not our contact. It's OK and is to be expected if this is a tgroup delivery, 
2482                                 // but otherwise there's a possible data mixup on the sender's system.
2483                                 // the tgroup delivery code called from item_store will correct it if it's a forum,
2484                                 // but we're going to unconditionally correct it here so that the post will always be owned by our contact. 
2485                                 logger('local_delivery: Correcting item owner.', LOGGER_DEBUG);
2486                                 $datarray['owner-name']   = $importer['senderName'];
2487                                 $datarray['owner-link']   = $importer['url'];
2488                                 $datarray['owner-avatar'] = $importer['thumb'];
2489                         }
2490
2491                         $r = item_store($datarray);
2492                         continue;
2493                 }
2494         }
2495
2496         return 0;
2497         // NOTREACHED
2498
2499 }
2500
2501
2502 function new_follower($importer,$contact,$datarray,$item,$sharing = false) {
2503         $url = notags(trim($datarray['author-link']));
2504         $name = notags(trim($datarray['author-name']));
2505         $photo = notags(trim($datarray['author-avatar']));
2506
2507         $rawtag = $item->get_item_tags(NAMESPACE_ACTIVITY,'actor');
2508         if($rawtag && $rawtag[0]['child'][NAMESPACE_POCO]['preferredUsername'][0]['data'])
2509                 $nick = $rawtag[0]['child'][NAMESPACE_POCO]['preferredUsername'][0]['data'];
2510
2511         if(is_array($contact)) {
2512                 if(($contact['network'] == NETWORK_OSTATUS && $contact['rel'] == CONTACT_IS_SHARING)
2513                         || ($sharing && $contact['rel'] == CONTACT_IS_FOLLOWER)) {
2514                         $r = q("UPDATE `contact` SET `rel` = %d WHERE `id` = %d AND `uid` = %d LIMIT 1",
2515                                 intval(CONTACT_IS_FRIEND),
2516                                 intval($contact['id']),
2517                                 intval($importer['uid'])
2518                         );
2519                 }
2520                 // send email notification to owner?
2521         }
2522         else {
2523         
2524                 // create contact record
2525
2526                 $r = q("INSERT INTO `contact` ( `uid`, `created`, `url`, `nurl`, `name`, `nick`, `photo`, `network`, `rel`, 
2527                         `blocked`, `readonly`, `pending`, `writable` )
2528                         VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, 0, 0, 1, 1 ) ",
2529                         intval($importer['uid']),
2530                         dbesc(datetime_convert()),
2531                         dbesc($url),
2532                         dbesc(normalise_link($url)),
2533                         dbesc($name),
2534                         dbesc($nick),
2535                         dbesc($photo),
2536                         dbesc(($sharing) ? NETWORK_ZOT : NETWORK_OSTATUS),
2537                         intval(($sharing) ? CONTACT_IS_SHARING : CONTACT_IS_FOLLOWER)
2538                 );
2539                 $r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `url` = '%s' AND `pending` = 1 LIMIT 1",
2540                                 intval($importer['uid']),
2541                                 dbesc($url)
2542                 );
2543                 if(count($r))
2544                                 $contact_record = $r[0];
2545
2546                 // create notification  
2547                 $hash = random_string();
2548
2549                 if(is_array($contact_record)) {
2550                         $ret = q("INSERT INTO `intro` ( `uid`, `contact-id`, `blocked`, `knowyou`, `hash`, `datetime`)
2551                                 VALUES ( %d, %d, 0, 0, '%s', '%s' )",
2552                                 intval($importer['uid']),
2553                                 intval($contact_record['id']),
2554                                 dbesc($hash),
2555                                 dbesc(datetime_convert())
2556                         );
2557                 }
2558                 $r = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
2559                         intval($importer['uid'])
2560                 );
2561                 $a = get_app();
2562                 if(count($r)) {
2563                         if(($r[0]['notify-flags'] & NOTIFY_INTRO) && ($r[0]['page-flags'] == PAGE_NORMAL)) {
2564                                 $email_tpl = get_intltext_template('follow_notify_eml.tpl');
2565                                 $email = replace_macros($email_tpl, array(
2566                                         '$requestor' => ((strlen($name)) ? $name : t('[Name Withheld]')),
2567                                         '$url' => $url,
2568                                         '$myname' => $r[0]['username'],
2569                                         '$siteurl' => $a->get_baseurl(),
2570                                         '$sitename' => $a->config['sitename']
2571                                 ));
2572                                 $res = mail($r[0]['email'], 
2573                                         (($sharing) ? t('A new person is sharing with you at ') : t("You have a new follower at ")) . $a->config['sitename'],
2574                                         $email,
2575                                         'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] . "\n"
2576                                         . 'Content-type: text/plain; charset=UTF-8' . "\n"
2577                                         . 'Content-transfer-encoding: 8bit' );
2578                         
2579                         }
2580                 }
2581         }
2582 }
2583
2584 function lose_follower($importer,$contact,$datarray,$item) {
2585
2586         if(($contact['rel'] == CONTACT_IS_FRIEND) || ($contact['rel'] == CONTACT_IS_SHARING)) {
2587                 q("UPDATE `contact` SET `rel` = %d WHERE `id` = %d LIMIT 1",
2588                         intval(CONTACT_IS_SHARING),
2589                         intval($contact['id'])
2590                 );
2591         }
2592         else {
2593                 contact_remove($contact['id']);
2594         }
2595 }
2596
2597 function lose_sharer($importer,$contact,$datarray,$item) {
2598
2599         if(($contact['rel'] == CONTACT_IS_FRIEND) || ($contact['rel'] == CONTACT_IS_FOLLOWER)) {
2600                 q("UPDATE `contact` SET `rel` = %d WHERE `id` = %d LIMIT 1",
2601                         intval(CONTACT_IS_FOLLOWER),
2602                         intval($contact['id'])
2603                 );
2604         }
2605         else {
2606                 contact_remove($contact['id']);
2607         }
2608 }
2609
2610
2611 function subscribe_to_hub($url,$importer,$contact,$hubmode = 'subscribe') {
2612
2613         if(is_array($importer)) {
2614                 $r = q("SELECT `nickname` FROM `user` WHERE `uid` = %d LIMIT 1",
2615                         intval($importer['uid'])
2616                 );
2617         }
2618
2619         // Diaspora has different message-ids in feeds than they do 
2620         // through the direct Diaspora protocol. If we try and use
2621         // the feed, we'll get duplicates. So don't.
2622
2623         if((! count($r)) || $contact['network'] === NETWORK_DIASPORA)
2624                 return;
2625
2626         $push_url = get_config('system','url') . '/pubsub/' . $r[0]['nickname'] . '/' . $contact['id'];
2627
2628         // Use a single verify token, even if multiple hubs
2629
2630         $verify_token = ((strlen($contact['hub-verify'])) ? $contact['hub-verify'] : random_string());
2631
2632         $params= 'hub.mode=' . $hubmode . '&hub.callback=' . urlencode($push_url) . '&hub.topic=' . urlencode($contact['poll']) . '&hub.verify=async&hub.verify_token=' . $verify_token;
2633
2634         logger('subscribe_to_hub: ' . $hubmode . ' ' . $contact['name'] . ' to hub ' . $url . ' endpoint: '  . $push_url . ' with verifier ' . $verify_token);
2635
2636         if(! strlen($contact['hub-verify'])) {
2637                 $r = q("UPDATE `contact` SET `hub-verify` = '%s' WHERE `id` = %d LIMIT 1",
2638                         dbesc($verify_token),
2639                         intval($contact['id'])
2640                 );
2641         }
2642
2643         post_url($url,$params);                 
2644         return;
2645
2646 }
2647
2648
2649 function atom_author($tag,$name,$uri,$h,$w,$photo) {
2650         $o = '';
2651         if(! $tag)
2652                 return $o;
2653         $name = xmlify($name);
2654         $uri = xmlify($uri);
2655         $h = intval($h);
2656         $w = intval($w);
2657         $photo = xmlify($photo);
2658
2659
2660         $o .= "<$tag>\r\n";
2661         $o .= "<name>$name</name>\r\n";
2662         $o .= "<uri>$uri</uri>\r\n";
2663         $o .= '<link rel="photo"  type="image/jpeg" media:width="' . $w . '" media:height="' . $h . '" href="' . $photo . '" />' . "\r\n";
2664         $o .= '<link rel="avatar" type="image/jpeg" media:width="' . $w . '" media:height="' . $h . '" href="' . $photo . '" />' . "\r\n";
2665
2666         call_hooks('atom_author', $o);
2667
2668         $o .= "</$tag>\r\n";
2669         return $o;
2670 }
2671
2672 function atom_entry($item,$type,$author,$owner,$comment = false) {
2673
2674         $a = get_app();
2675
2676         if(! $item['parent'])
2677                 return;
2678
2679         if($item['deleted'])
2680                 return '<at:deleted-entry ref="' . xmlify($item['uri']) . '" when="' . xmlify(datetime_convert('UTC','UTC',$item['edited'] . '+00:00',ATOM_TIME)) . '" />' . "\r\n";
2681
2682
2683         if($item['allow_cid'] || $item['allow_gid'] || $item['deny_cid'] || $item['deny_gid'])
2684                 $body = fix_private_photos($item['body'],$owner['uid']);
2685         else
2686                 $body = $item['body'];
2687
2688
2689         $o = "\r\n\r\n<entry>\r\n";
2690
2691         if(is_array($author))
2692                 $o .= atom_author('author',$author['name'],$author['url'],80,80,$author['thumb']);
2693         else
2694                 $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']));
2695         if(strlen($item['owner-name']))
2696                 $o .= atom_author('dfrn:owner',$item['owner-name'],$item['owner-link'],80,80,$item['owner-avatar']);
2697
2698         if(($item['parent'] != $item['id']) || ($item['parent-uri'] !== $item['uri']))
2699                 $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";
2700
2701         $o .= '<id>' . xmlify($item['uri']) . '</id>' . "\r\n";
2702         $o .= '<title>' . xmlify($item['title']) . '</title>' . "\r\n";
2703         $o .= '<published>' . xmlify(datetime_convert('UTC','UTC',$item['created'] . '+00:00',ATOM_TIME)) . '</published>' . "\r\n";
2704         $o .= '<updated>' . xmlify(datetime_convert('UTC','UTC',$item['edited'] . '+00:00',ATOM_TIME)) . '</updated>' . "\r\n";
2705         $o .= '<dfrn:env>' . base64url_encode($body, true) . '</dfrn:env>' . "\r\n";
2706         $o .= '<content type="' . $type . '" >' . xmlify((($type === 'html') ? bbcode($body) : $body)) . '</content>' . "\r\n";
2707         $o .= '<link rel="alternate" type="text/html" href="' . xmlify($a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id']) . '" />' . "\r\n";
2708         if($comment)
2709                 $o .= '<dfrn:comment-allow>' . intval($item['last-child']) . '</dfrn:comment-allow>' . "\r\n";
2710
2711         if($item['location']) {
2712                 $o .= '<dfrn:location>' . xmlify($item['location']) . '</dfrn:location>' . "\r\n";
2713                 $o .= '<poco:address><poco:formatted>' . xmlify($item['location']) . '</poco:formatted></poco:address>' . "\r\n";
2714         }
2715
2716         if($item['coord'])
2717                 $o .= '<georss:point>' . xmlify($item['coord']) . '</georss:point>' . "\r\n";
2718
2719         if(($item['private']) || strlen($item['allow_cid']) || strlen($item['allow_gid']) || strlen($item['deny_cid']) || strlen($item['deny_gid']))
2720                 $o .= '<dfrn:private>1</dfrn:private>' . "\r\n";
2721
2722         if($item['extid'])
2723                 $o .= '<dfrn:extid>' . xmlify($item['extid']) . '</dfrn:extid>' . "\r\n";
2724         if($item['bookmark'])
2725                 $o .= '<dfrn:bookmark>true</dfrn:bookmark>' . "\r\n";
2726
2727         if($item['app'])
2728                 $o .= '<statusnet:notice_info local_id="' . $item['id'] . '" source="' . xmlify($item['app']) . '" ></statusnet:notice_info>' . "\r\n";
2729
2730         if($item['guid'])
2731                 $o .= '<dfrn:diaspora_guid>' . $item['guid'] . '</dfrn:diaspora_guid>' . "\r\n";
2732
2733         if($item['signed_text']) {
2734                 $sign = base64_encode(json_encode(array('signed_text' => $item['signed_text'],'signature' => $item['signature'],'signer' => $item['signer'])));
2735                 $o .= '<dfrn:diaspora_signature>' . xmlify($sign) . '</dfrn:diaspora_signature>' . "\r\n";
2736         }
2737
2738         $verb = construct_verb($item);
2739         $o .= '<as:verb>' . xmlify($verb) . '</as:verb>' . "\r\n";
2740         $actobj = construct_activity_object($item);
2741         if(strlen($actobj))
2742                 $o .= $actobj;
2743         $actarg = construct_activity_target($item);
2744         if(strlen($actarg))
2745                 $o .= $actarg;
2746
2747         $tags = item_getfeedtags($item);
2748         if(count($tags)) {
2749                 foreach($tags as $t) {
2750                         $o .= '<category scheme="X-DFRN:' . xmlify($t[0]) . ':' . xmlify($t[1]) . '" term="' . xmlify($t[2]) . '" />' . "\r\n";
2751                 }
2752         }
2753
2754         $o .= item_getfeedattach($item);
2755
2756         $mentioned = get_mentions($item);
2757         if($mentioned)
2758                 $o .= $mentioned;
2759         
2760         call_hooks('atom_entry', $o);
2761
2762         $o .= '</entry>' . "\r\n";
2763         
2764         return $o;
2765 }
2766
2767 function fix_private_photos($s,$uid) {
2768         $a = get_app();
2769         logger('fix_private_photos');
2770
2771         if(preg_match("/\[img\](.*?)\[\/img\]/is",$s,$matches)) {
2772                 $image = $matches[1];
2773                 logger('fix_private_photos: found photo ' . $image);
2774                 if(stristr($image ,$a->get_baseurl() . '/photo/')) {
2775                         $i = basename($image);
2776                         $i = str_replace('.jpg','',$i);
2777                         $x = strpos($i,'-');
2778                         if($x) {
2779                                 $res = substr($i,$x+1);
2780                                 $i = substr($i,0,$x);
2781                                 $r = q("SELECT * FROM `photo` WHERE `resource-id` = '%s' AND `scale` = %d AND `uid` = %d",
2782                                         dbesc($i),
2783                                         intval($res),
2784                                         intval($uid)
2785                                 );
2786                                 if(count($r)) {
2787                                         logger('replacing photo');
2788                                         $s = str_replace($image, 'data:image/jpg;base64,' . base64_encode($r[0]['data']), $s);
2789                                 }
2790                         }
2791                         logger('fix_private_photos: replaced: ' . $s, LOGGER_DATA);
2792                 }       
2793         }
2794         return($s);
2795 }
2796
2797
2798
2799 function item_getfeedtags($item) {
2800         $ret = array();
2801         $matches = false;
2802         $cnt = preg_match_all('|\#\[url\=(.*?)\](.*?)\[\/url\]|',$item['tag'],$matches);
2803         if($cnt) {
2804                 for($x = 0; $x < $cnt; $x ++) {
2805                         if($matches[1][$x])
2806                                 $ret[] = array('#',$matches[1][$x], $matches[2][$x]);
2807                 }
2808         }
2809         $matches = false; 
2810         $cnt = preg_match_all('|\@\[url\=(.*?)\](.*?)\[\/url\]|',$item['tag'],$matches);
2811         if($cnt) {
2812                 for($x = 0; $x < $cnt; $x ++) {
2813                         if($matches[1][$x])
2814                                 $ret[] = array('@',$matches[1][$x], $matches[2][$x]);
2815                 }
2816         } 
2817         return $ret;
2818 }
2819
2820 function item_getfeedattach($item) {
2821         $ret = '';
2822         $arr = explode(',',$item['attach']);
2823         if(count($arr)) {
2824                 foreach($arr as $r) {
2825                         $matches = false;
2826                         $cnt = preg_match('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"\[\/attach\]|',$r,$matches);
2827                         if($cnt) {
2828                                 $ret .= '<link rel="enclosure" href="' . xmlify($matches[1]) . '" type="' . xmlify($matches[3]) . '" ';
2829                                 if(intval($matches[2]))
2830                                         $ret .= 'length="' . intval($matches[2]) . '" ';
2831                                 if($matches[4] !== ' ')
2832                                         $ret .= 'title="' . xmlify(trim($matches[4])) . '" ';
2833                                 $ret .= ' />' . "\r\n";
2834                         }
2835                 }
2836         }
2837         return $ret;
2838 }
2839
2840
2841         
2842 function item_expire($uid,$days) {
2843
2844         if((! $uid) || (! $days))
2845                 return;
2846
2847         $r = q("SELECT * FROM `item` 
2848                 WHERE `uid` = %d 
2849                 AND `created` < UTC_TIMESTAMP() - INTERVAL %d DAY 
2850                 AND `id` = `parent` 
2851                 AND `deleted` = 0",
2852                 intval($uid),
2853                 intval($days)
2854         );
2855
2856         if(! count($r))
2857                 return;
2858
2859         $expire_items = get_pconfig($uid, 'expire','items');
2860         $expire_items = (($expire_items===false)?1:intval($expire_items)); // default if not set: 1
2861         
2862         $expire_notes = get_pconfig($uid, 'expire','notes');
2863         $expire_notes = (($expire_notes===false)?1:intval($expire_notes)); // default if not set: 1
2864
2865         $expire_starred = get_pconfig($uid, 'expire','starred');
2866         $expire_starred = (($expire_starred===false)?1:intval($expire_starred)); // default if not set: 1
2867         
2868         $expire_photos = get_pconfig($uid, 'expire','photos');
2869         $expire_photos = (($expire_photos===false)?0:intval($expire_photos)); // default if not set: 0
2870  
2871         logger('expire: # items=' . count($r). "; expire items: $expire_items, expire notes: $expire_notes, expire starred: $expire_starred, expire photos: $expire_photos");
2872
2873         foreach($r as $item) {
2874
2875                 // Only expire posts, not photos and photo comments
2876
2877                 if($expire_photos==0 && strlen($item['resource-id']))
2878                         continue;
2879                 if($expire_starred==0 && intval($item['starred']))
2880                         continue;
2881                 if($expire_notes==0 && $item['type']=='note')
2882                         continue;
2883                 if($expire_items==0 && $item['type']!='note')
2884                         continue;
2885
2886                 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s' WHERE `id` = %d LIMIT 1",
2887                         dbesc(datetime_convert()),
2888                         dbesc(datetime_convert()),
2889                         intval($item['id'])
2890                 );
2891
2892                 // kill the kids
2893
2894                 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d ",
2895                         dbesc(datetime_convert()),
2896                         dbesc(datetime_convert()),
2897                         dbesc($item['parent-uri']),
2898                         intval($item['uid'])
2899                 );
2900
2901         }
2902
2903         proc_run('php',"include/notifier.php","expire","$uid");
2904         
2905 }
2906
2907
2908 function drop_items($items) {
2909         $uid = 0;
2910
2911         if((! local_user()) && (! $remote_user()))
2912                 return;
2913
2914         if(count($items)) {
2915                 foreach($items as $item) {
2916                         $owner = drop_item($item,false);
2917                         if($owner && ! $uid)
2918                                 $uid = $owner;
2919                 }
2920         }
2921
2922         // multiple threads may have been deleted, send an expire notification
2923
2924         if($uid)
2925                 proc_run('php',"include/notifier.php","expire","$uid");
2926 }
2927
2928
2929 function drop_item($id,$interactive = true) {
2930
2931         $a = get_app();
2932
2933         // locate item to be deleted
2934
2935         $r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1",
2936                 intval($id)
2937         );
2938
2939         if(! count($r)) {
2940                 if(! $interactive)
2941                         return 0;
2942                 notice( t('Item not found.') . EOL);
2943                 goaway($a->get_baseurl() . '/' . $_SESSION['return_url']);
2944         }
2945
2946         $item = $r[0];
2947
2948         $owner = $item['uid'];
2949
2950         // check if logged in user is either the author or owner of this item
2951
2952         if((local_user() == $item['uid']) || (remote_user() == $item['contact-id'])) {
2953
2954                 // delete the item
2955
2956                 $r = q("UPDATE `item` SET `deleted` = 1, `title` = '', `body` = '', `edited` = '%s', `changed` = '%s' WHERE `id` = %d LIMIT 1",
2957                         dbesc(datetime_convert()),
2958                         dbesc(datetime_convert()),
2959                         intval($item['id'])
2960                 );
2961
2962                 // If item is a link to a photo resource, nuke all the associated photos 
2963                 // (visitors will not have photo resources)
2964                 // This only applies to photos uploaded from the photos page. Photos inserted into a post do not
2965                 // generate a resource-id and therefore aren't intimately linked to the item. 
2966
2967                 if(strlen($item['resource-id'])) {
2968                         q("DELETE FROM `photo` WHERE `resource-id` = '%s' AND `uid` = %d ",
2969                                 dbesc($item['resource-id']),
2970                                 intval($item['uid'])
2971                         );
2972                         // ignore the result
2973                 }
2974
2975                 // If item is a link to an event, nuke the event record.
2976
2977                 if(intval($item['event-id'])) {
2978                         q("DELETE FROM `event` WHERE `id` = %d AND `uid` = %d LIMIT 1",
2979                                 intval($item['event-id']),
2980                                 intval($item['uid'])
2981                         );
2982                         // ignore the result
2983                 }
2984
2985
2986                 // If it's the parent of a comment thread, kill all the kids
2987
2988                 if($item['uri'] == $item['parent-uri']) {
2989                         $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s', `body` = '' , `title` = ''
2990                                 WHERE `parent-uri` = '%s' AND `uid` = %d ",
2991                                 dbesc(datetime_convert()),
2992                                 dbesc(datetime_convert()),
2993                                 dbesc($item['parent-uri']),
2994                                 intval($item['uid'])
2995                         );
2996                         // ignore the result
2997                 }
2998                 else {
2999                         // ensure that last-child is set in case the comment that had it just got wiped.
3000                         q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d ",
3001                                 dbesc(datetime_convert()),
3002                                 dbesc($item['parent-uri']),
3003                                 intval($item['uid'])
3004                         );
3005                         // who is the last child now? 
3006                         $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",
3007                                 dbesc($item['parent-uri']),
3008                                 intval($item['uid'])
3009                         );
3010                         if(count($r)) {
3011                                 q("UPDATE `item` SET `last-child` = 1 WHERE `id` = %d LIMIT 1",
3012                                         intval($r[0]['id'])
3013                                 );
3014                         }       
3015                 }
3016                 $drop_id = intval($item['id']);
3017                         
3018                 // send the notification upstream/downstream as the case may be
3019
3020                 if(! $interactive)
3021                         return $owner;
3022
3023                 proc_run('php',"include/notifier.php","drop","$drop_id");
3024                 goaway($a->get_baseurl() . '/' . $_SESSION['return_url']);
3025                 //NOTREACHED
3026         }
3027         else {
3028                 if(! $interactive)
3029                         return 0;
3030                 notice( t('Permission denied.') . EOL);
3031                 goaway($a->get_baseurl() . '/' . $_SESSION['return_url']);
3032                 //NOTREACHED
3033         }
3034         
3035 }