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