]> git.mxchange.org Git - friendica.git/blob - include/items.php
activity object link had incorrect attribute, highlight critical install steps
[friendica.git] / include / items.php
1 <?php
2
3 require_once('bbcode.php');
4
5 function get_feed_for(&$a, $dfrn_id, $owner_nick, $last_update, $direction = 0) {
6
7
8         // default permissions - anonymous user
9
10         $sql_extra = " 
11                 AND `allow_cid` = '' 
12                 AND `allow_gid` = '' 
13                 AND `deny_cid`  = '' 
14                 AND `deny_gid`  = '' 
15         ";
16
17         if(strlen($owner_nick) && ! intval($owner_nick)) {
18                 $r = q("SELECT `uid`, `nickname`, `timezone` FROM `user` WHERE `nickname` = '%s' LIMIT 1",
19                         dbesc($owner_nick)
20                 );
21                 if(count($r)) {
22                         $owner_id = $r[0]['uid'];
23                         $owner_nick = $r[0]['nickname'];
24                         $owner_tz = $r[0]['timezone'];
25                 }
26         }
27
28         $r = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
29                 intval($owner_id)
30         );
31         if(count($r)) {
32                 $owner = $r[0];
33                 $owner['nickname'] = $owner_nick;
34         }
35         else
36                 killme();
37
38
39         /**
40          *
41          * Determine the next birthday, but only if the birthday is published
42          * in the default profile. We _could_ also look for a private profile that the
43          * recipient can see, but somebody could get mad at us if they start getting
44          * public birthday greetings when they haven't made this info public. 
45          *
46          * Assuming we are able to publish this info, we are then going to convert
47          * the start time from the owner's timezone to UTC. 
48          *
49          * This will potentially solve the problem found with some social networks
50          * where birthdays are converted to the viewer's timezone and salutations from
51          * elsewhere in the world show up on the wrong day. We will convert it to the
52          * viewer's timezone also, but first we are going to convert it from the birthday
53          * person's timezone to GMT - so the viewer may find the birthday starting at
54          * 6:00PM the day before, but that will correspond to midnight to the birthday person.
55          *
56          */
57
58         $birthday = '';
59
60         $p = q("SELECT `dob` FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
61                 intval($owner_id)
62         );
63
64         if($p && count($p)) {
65                 $tmp_dob = substr($p[0]['dob'],5);
66                 if(intval($tmp_dob)) {
67                         $y = datetime_convert($owner_tz,$owner_tz,'now','Y');
68                         $bd = $y . '-' . $tmp_dob . ' 00:00';
69                         $t_dob = strtotime($bd);
70                         $now = strtotime(datetime_convert($owner_tz,$owner_tz,'now'));
71                         if($t_dob < $now)
72                                 $bd = $y + 1 . '-' . $tmp_dob . ' 00:00';
73                         $birthday = datetime_convert($owner_tz,'UTC',$bd,ATOM_TIME); 
74                 }
75         }
76
77         if($dfrn_id && $dfrn_id != '*') {
78
79                 $sql_extra = '';
80                 switch($direction) {
81                         case (-1):
82                                 $sql_extra = sprintf(" AND `issued-id` = '%s' ", dbesc($dfrn_id));
83                                 $my_id = $dfrn_id;
84                                 break;
85                         case 0:
86                                 $sql_extra = sprintf(" AND `issued-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id));
87                                 $my_id = '1:' . $dfrn_id;
88                                 break;
89                         case 1:
90                                 $sql_extra = sprintf(" AND `dfrn-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id));
91                                 $my_id = '0:' . $dfrn_id;
92                                 break;
93                         default:
94                                 return false;
95                                 break; // NOTREACHED
96                 }
97
98                 $r = q("SELECT * FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `contact`.`uid` = %d $sql_extra LIMIT 1",
99                         intval($owner_id)
100                 );
101
102                 if(! count($r))
103                         return false;
104
105                 $contact = $r[0];
106                 $groups = init_groups_visitor($contact['id']);
107
108                 if(count($groups)) {
109                         for($x = 0; $x < count($groups); $x ++) 
110                                 $groups[$x] = '<' . intval($groups[$x]) . '>' ;
111                         $gs = implode('|', $groups);
112                 }
113                 else
114                         $gs = '<<>>' ; // Impossible to match 
115
116                 $sql_extra = sprintf(" 
117                         AND ( `allow_cid` = '' OR     `allow_cid` REGEXP '<%d>' ) 
118                         AND ( `deny_cid`  = '' OR NOT `deny_cid`  REGEXP '<%d>' ) 
119                         AND ( `allow_gid` = '' OR     `allow_gid` REGEXP '%s' )
120                         AND ( `deny_gid`  = '' OR NOT `deny_gid`  REGEXP '%s') 
121                 ",
122                         intval($contact['id']),
123                         intval($contact['id']),
124                         dbesc($gs),
125                         dbesc($gs)
126                 );
127         }
128
129         if($dfrn_id === '' || $dfrn_id === '*')
130                 $sort = 'DESC';
131         else
132                 $sort = 'ASC';
133
134         if(! strlen($last_update))
135                 $last_update = 'now -30 days';
136
137         $check_date = datetime_convert('UTC','UTC',$last_update,'Y-m-d H:i:s');
138
139         $r = q("SELECT `item`.*, `item`.`id` AS `item_id`, 
140                 `contact`.`name`, `contact`.`photo`, `contact`.`url`, 
141                 `contact`.`name-date`, `contact`.`uri-date`, `contact`.`avatar-date`,
142                 `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`, 
143                 `contact`.`id` AS `contact-id`, `contact`.`uid` AS `contact-uid`
144                 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
145                 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 
146                 AND `item`.`wall` = 1 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
147                 AND ( `item`.`edited` > '%s' OR `item`.`changed` > '%s' )
148                 $sql_extra
149                 ORDER BY `parent` %s, `created` ASC LIMIT 0, 300",
150                 intval($owner_id),
151                 dbesc($check_date),
152                 dbesc($check_date),
153                 dbesc($sort)
154         );
155
156         // Will check further below if this actually returned results.
157         // We will provide an empty feed in any case.
158
159         $items = $r;
160
161         $feed_template = load_view_file('view/atom_feed.tpl');
162
163         $atom = '';
164
165         $hub = get_config('system','huburl');
166
167         $hubxml = '';
168         if(strlen($hub)) {
169                 $hubs = explode(',', $hub);
170                 if(count($hubs)) {
171                         foreach($hubs as $h) {
172                                 $h = trim($h);
173                                 if(! strlen($h))
174                                         continue;
175                                 $hubxml .= '<link rel="hub" href="' . xmlify($h) . '" />' . "\n" ;
176                         }
177                 }
178         }
179
180         $salmon = '<link rel="salmon" href="' . xmlify($a->get_baseurl() . '/salmon/' . $owner_nick) . '" />' . "\n" ; 
181         $salmon .= '<link rel="http://salmon-protocol.org/ns/salmon-replies" href="' . xmlify($a->get_baseurl() . '/salmon/' . $owner_nick) . '" />' . "\n" ; 
182         $salmon .= '<link rel="http://salmon-protocol.org/ns/salmon-mention" href="' . xmlify($a->get_baseurl() . '/salmon/' . $owner_nick) . '" />' . "\n" ; 
183
184
185         $atom .= replace_macros($feed_template, array(
186                 '$version'      => xmlify(FRIENDIKA_VERSION),
187                 '$feed_id'      => xmlify($a->get_baseurl() . '/profile/' . $owner_nick),
188                 '$feed_title'   => xmlify($owner['name']),
189                 '$feed_updated' => xmlify(datetime_convert('UTC', 'UTC', 'now' , ATOM_TIME)) ,
190                 '$hub'          => $hubxml,
191                 '$salmon'       => $salmon,
192                 '$name'         => xmlify($owner['name']),
193                 '$profile_page' => xmlify($owner['url']),
194                 '$photo'        => xmlify($owner['photo']),
195                 '$thumb'        => xmlify($owner['thumb']),
196                 '$picdate'      => xmlify(datetime_convert('UTC','UTC',$owner['avatar-date'] . '+00:00' , ATOM_TIME)) ,
197                 '$uridate'      => xmlify(datetime_convert('UTC','UTC',$owner['uri-date']    . '+00:00' , ATOM_TIME)) ,
198                 '$namdate'      => xmlify(datetime_convert('UTC','UTC',$owner['name-date']   . '+00:00' , ATOM_TIME)) , 
199                 '$birthday'     => ((strlen($birthday)) ? '<dfrn:birthday>' . xmlify($birthday) . '</dfrn:birthday>' : '')
200         ));
201
202         call_hooks('atom_feed', $atom);
203
204         if(! count($items)) {
205
206                 call_hooks('atom_feed_end', $atom);
207
208                 $atom .= '</feed>' . "\r\n";
209                 return $atom;
210         }
211
212         foreach($items as $item) {
213
214                 // public feeds get html, our own nodes use bbcode
215
216                 if($dfrn_id === '*') {
217                         $type = 'html';
218                 }
219                 else {
220                         $type = 'text';
221                 }
222
223                 $atom .= atom_entry($item,$type,null,$owner,true);
224         }
225
226         call_hooks('atom_feed_end', $atom);
227
228         $atom .= '</feed>' . "\r\n";
229
230         return $atom;
231 }
232
233
234 function construct_verb($item) {
235         if($item['verb'])
236                 return $item['verb'];
237         return ACTIVITY_POST;
238 }
239
240 function construct_activity_object($item) {
241
242         if($item['object']) {
243                 $o = '<as:object>' . "\r\n";
244                 $r = @simplexml_load_string($item['object']);
245                 if($r->type)
246                         $o .= '<as:object-type>' . xmlify($r->type) . '</as:object-type>' . "\r\n";
247                 if($r->id)
248                         $o .= '<id>' . xmlify($r->id) . '</id>' . "\r\n";
249                 if($r->title)
250                         $o .= '<title>' . xmlify($r->title) . '</title>' . "\r\n";
251                 if($r->link) {
252                         if(substr($r->link,0,1) === '<') 
253                                 $o .= $r->link;
254                         else
255                                 $o .= '<link rel="alternate" type="text/html" href="' . xmlify($r->link) . '" />' . "\r\n";
256                 }
257                 if($r->content)
258                         $o .= '<content type="html" >' . xmlify(bbcode($r->content)) . '</content>' . "\r\n";
259                 $o .= '</as:object>' . "\r\n";
260                 return $o;
261         }
262
263         return '';
264
265
266 function construct_activity_target($item) {
267
268         if($item['target']) {
269                 $o = '<as:target>' . "\r\n";
270                 $r = @simplexml_load_string($item['target']);
271                 if($r->type)
272                         $o .= '<as:object-type>' . xmlify($r->type) . '</as:object-type>' . "\r\n";
273                 if($r->id)
274                         $o .= '<id>' . xmlify($r->id) . '</id>' . "\r\n";
275                 if($r->title)
276                         $o .= '<title>' . xmlify($r->title) . '</title>' . "\r\n";
277                 if($r->link) {
278                         if(substr($r->link,0,1) === '<') 
279                                 $o .= $r->link;
280                         else
281                                 $o .= '<link rel="alternate" type="text/html" href="' . xmlify($r->link) . '" />' . "\r\n";
282                 }
283                 if($r->content)
284                         $o .= '<content type="html" >' . xmlify(bbcode($r->content)) . '</content>' . "\r\n";
285                 $o .= '</as:target>' . "\r\n";
286                 return $o;
287         }
288
289         return '';
290
291
292
293
294
295 function get_atom_elements($feed,$item) {
296
297         require_once('library/HTMLPurifier.auto.php');
298         require_once('include/html2bbcode.php');
299
300         $best_photo = array();
301
302         $res = array();
303
304         $author = $item->get_author();
305         $res['author-name'] = unxmlify($author->get_name());
306         $res['author-link'] = unxmlify($author->get_link());
307         $res['uri'] = unxmlify($item->get_id());
308         $res['title'] = unxmlify($item->get_title());
309         $res['body'] = unxmlify($item->get_content());
310
311
312         // look for a photo. We should check media size and find the best one,
313         // but for now let's just find any author photo
314
315         $rawauthor = $item->get_item_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'author');
316
317         if($rawauthor && $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) {
318                 $base = $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
319                 foreach($base as $link) {
320                         if(! $res['author-avatar']) {
321                                 if($link['attribs']['']['rel'] === 'photo' || $link['attribs']['']['rel'] === 'avatar')
322                                         $res['author-avatar'] = unxmlify($link['attribs']['']['href']);
323                         }
324                 }
325         }                       
326
327         $rawactor = $item->get_item_tags(NAMESPACE_ACTIVITY, 'actor');
328
329         if($rawactor && activity_match($rawactor[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'],ACTIVITY_OBJ_PERSON)) {
330                 $base = $rawactor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
331                 if($base && count($base)) {
332                         foreach($base as $link) {
333                                 if($link['attribs']['']['rel'] === 'alternate' && (! $res['author-link']))
334                                         $res['author-link'] = unxmlify($link['attribs']['']['href']);
335                                 if(! $res['author-avatar']) {
336                                         if($link['attribs']['']['rel'] === 'avatar' || $link['attribs']['']['rel'] === 'photo')
337                                                 $res['author-avatar'] = unxmlify($link['attribs']['']['href']);
338                                 }
339                         }
340                 }
341         }
342
343         // No photo/profile-link on the item - look at the feed level
344
345         if((! (x($res,'author-link'))) || (! (x($res,'author-avatar')))) {
346                 $rawauthor = $feed->get_feed_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'author');
347                 if($rawauthor && $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) {
348                         $base = $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
349                         foreach($base as $link) {
350                                 if($link['attribs']['']['rel'] === 'alternate' && (! $res['author-link']))
351                                         $res['author-link'] = unxmlify($link['attribs']['']['href']);
352                                 if(! $res['author-avatar']) {
353                                         if($link['attribs']['']['rel'] === 'photo' || $link['attribs']['']['rel'] === 'avatar')
354                                                 $res['author-avatar'] = unxmlify($link['attribs']['']['href']);
355                                 }
356                         }
357                 }                       
358
359                 $rawactor = $feed->get_feed_tags(NAMESPACE_ACTIVITY, 'subject');
360
361                 if($rawactor && activity_match($rawactor[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'],ACTIVITY_OBJ_PERSON)) {
362                         $base = $rawactor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
363
364                         if($base && count($base)) {
365                                 foreach($base as $link) {
366                                         if($link['attribs']['']['rel'] === 'alternate' && (! $res['author-link']))
367                                                 $res['author-link'] = unxmlify($link['attribs']['']['href']);
368                                         if(! (x($res,'author-avatar'))) {
369                                                 if($link['attribs']['']['rel'] === 'avatar' || $link['attribs']['']['rel'] === 'photo')
370                                                         $res['author-avatar'] = unxmlify($link['attribs']['']['href']);
371                                         }
372                                 }
373                         }
374                 }
375         }
376
377
378         $maxlen = get_max_import_size();
379         if($maxlen && (strlen($res['body']) > $maxlen))
380                 $res['body'] = substr($res['body'],0, $maxlen);
381
382         // It isn't certain at this point whether our content is plaintext or html and we'd be foolish to trust 
383         // the content type. Our own network only emits text normally, though it might have been converted to 
384         // html if we used a pubsubhubbub transport. But if we see even one html open tag in our text, we will
385         // have to assume it is all html and needs to be purified.
386
387         // It doesn't matter all that much security wise - because before this content is used anywhere, we are 
388         // going to escape any tags we find regardless, but this lets us import a limited subset of html from 
389         // the wild, by sanitising it and converting supported tags to bbcode before we rip out any remaining 
390         // html.
391
392
393         if(strpos($res['body'],'<')) {
394
395                 $res['body'] = preg_replace('#<object[^>]+>.+?' . 'http://www.youtube.com/((?:v|cp)/[A-Za-z0-9\-_=]+).+?</object>#s',
396                         '[youtube]$1[/youtube]', $res['body']);
397
398                 $config = HTMLPurifier_Config::createDefault();
399                 $config->set('Cache.DefinitionImpl', null);
400
401                 // we shouldn't need a whitelist, because the bbcode converter
402                 // will strip out any unsupported tags.
403                 // $config->set('HTML.Allowed', 'p,b,a[href],i'); 
404
405                 $purifier = new HTMLPurifier($config);
406                 $res['body'] = $purifier->purify($res['body']);
407         }
408
409         
410         $res['body'] = html2bbcode($res['body']);
411
412
413         $allow = $item->get_item_tags(NAMESPACE_DFRN,'comment-allow');
414         if($allow && $allow[0]['data'] == 1)
415                 $res['last-child'] = 1;
416         else
417                 $res['last-child'] = 0;
418
419         $private = $item->get_item_tags(NAMESPACE_DFRN,'private');
420         if($private && $private[0]['data'] == 1)
421                 $res['private'] = 1;
422         else
423                 $res['private'] = 0;
424
425         $rawcreated = $item->get_item_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'published');
426         if($rawcreated)
427                 $res['created'] = unxmlify($rawcreated[0]['data']);
428
429         $rawlocation = $item->get_item_tags(NAMESPACE_DFRN, 'location');
430         if($rawlocation)
431                 $res['location'] = unxmlify($rawlocation[0]['data']);
432
433
434         $rawedited = $item->get_item_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'updated');
435         if($rawedited)
436                 $res['edited'] = unxmlify($rawcreated[0]['data']);
437
438         $rawowner = $item->get_item_tags(NAMESPACE_DFRN, 'owner');
439         if($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['name'][0]['data'])
440                 $res['owner-name'] = unxmlify($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['name'][0]['data']);
441         elseif($rawowner[0]['child'][NAMESPACE_DFRN]['name'][0]['data'])
442                 $res['owner-name'] = unxmlify($rawowner[0]['child'][NAMESPACE_DFRN]['name'][0]['data']);
443         if($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]['data'])
444                 $res['owner-link'] = unxmlify($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]['data']);
445         elseif($rawowner[0]['child'][NAMESPACE_DFRN]['uri'][0]['data'])
446                 $res['owner-link'] = unxmlify($rawowner[0]['child'][NAMESPACE_DFRN]['uri'][0]['data']);
447
448         if($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) {
449                 $base = $rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
450
451                 foreach($base as $link) {
452                         if(! $res['owner-avatar']) {
453                                 if($link['attribs']['']['rel'] === 'photo' || $link['attribs']['']['rel'] === 'avatar')                 
454                                         $res['owner-avatar'] = unxmlify($link['attribs']['']['href']);
455                         }
456                 }
457         }
458
459         $rawgeo = $item->get_item_tags(NAMESPACE_GEORSS,'point');
460         if($rawgeo)
461                 $res['coord'] = unxmlify($rawgeo[0]['data']);
462
463
464         $rawverb = $item->get_item_tags(NAMESPACE_ACTIVITY, 'verb');
465
466         // select between supported verbs
467
468         if($rawverb) {
469                 $res['verb'] = unxmlify($rawverb[0]['data']);
470         }
471
472         // translate OStatus unfollow to activity streams if it happened to get selected
473                 
474         if((x($res,'verb')) && ($res['verb'] === 'http://ostatus.org/schema/1.0/unfollow'))
475                 $res['verb'] = ACTIVITY_UNFOLLOW;
476
477                 
478
479         $rawobj = $item->get_item_tags(NAMESPACE_ACTIVITY, 'object');
480
481         if($rawobj) {
482                 $res['object'] = '<object>' . "\n";
483                 if($rawobj[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data']) {
484                         $res['object-type'] = $rawobj[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'];
485                         $res['object'] .= '<type>' . $rawobj[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'] . '</type>' . "\n";
486                 }       
487                 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'])
488                         $res['object'] .= '<id>' . $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'] . '</id>' . "\n";
489                 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'])
490                         $res['object'] .= '<link>' . encode_rel_links($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) . '</link>' . "\n";
491                 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'])
492                         $res['object'] .= '<title>' . $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'] . '</title>' . "\n";
493                 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data']) {
494                         $body = $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data'];
495                         if(! $body)
496                                 $body = $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['summary'][0]['data'];
497                         // preserve a copy of the original body content in case we later need to parse out any microformat information, e.g. events
498                         $res['object'] .= '<orig>' . xmlify($body) . '</orig>' . "\n";
499                         if(strpos($body,'<')) {
500
501                                 $body = preg_replace('#<object[^>]+>.+?' . 'http://www.youtube.com/((?:v|cp)/[A-Za-z0-9\-_=]+).+?</object>#s',
502                                         '[youtube]$1[/youtube]', $body);
503
504                                 $config = HTMLPurifier_Config::createDefault();
505                                 $config->set('Cache.DefinitionImpl', null);
506
507                                 $purifier = new HTMLPurifier($config);
508                                 $body = $purifier->purify($body);
509                         }
510
511                         $body = html2bbcode($body);
512                         $res['object'] .= '<content>' . $body . '</content>' . "\n";
513                 }
514
515                 $res['object'] .= '</object>' . "\n";
516         }
517
518         $rawobj = $item->get_item_tags(NAMESPACE_ACTIVITY, 'target');
519
520         if($rawobj) {
521                 $res['target'] = '<target>' . "\n";
522                 if($rawobj[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data']) {
523                         $res['target'] .= '<type>' . $rawobj[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'] . '</type>' . "\n";
524                 }       
525                 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'])
526                         $res['target'] .= '<id>' . $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'] . '</id>' . "\n";
527
528                 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'])
529                         $res['target'] .= '<link>' . encode_rel_links($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) . '</link>' . "\n";
530                 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'])
531                         $res['target'] .= '<title>' . $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'] . '</title>' . "\n";
532                 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data']) {
533                         $body = $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data'];
534                         if(! $body)
535                                 $body = $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['summary'][0]['data'];
536                         // preserve a copy of the original body content in case we later need to parse out any microformat information, e.g. events
537                         $res['object'] .= '<orig>' . xmlify($body) . '</orig>' . "\n";
538                         if(strpos($body,'<')) {
539
540                                 $body = preg_replace('#<object[^>]+>.+?' . 'http://www.youtube.com/((?:v|cp)/[A-Za-z0-9\-_=]+).+?</object>#s',
541                                         '[youtube]$1[/youtube]', $body);
542
543                                 $config = HTMLPurifier_Config::createDefault();
544                                 $config->set('Cache.DefinitionImpl', null);
545
546                                 $purifier = new HTMLPurifier($config);
547                                 $body = $purifier->purify($body);
548                         }
549
550                         $body = html2bbcode($body);
551                         $res['target'] .= '<content>' . $body . '</content>' . "\n";
552                 }
553
554                 $res['target'] .= '</target>' . "\n";
555         }
556
557         $arr = array('feed' => $feed, 'item' => $item, 'result' => $res);
558
559         call_hooks('parse_atom', $arr);
560
561         return $res;
562 }
563
564 function encode_rel_links($links) {
565         $o = '';
566         if(! ((is_array($links)) && (count($links))))
567                 return $o;
568         foreach($links as $link) {
569                 $o .= '<link ';
570                 if($link['attribs']['']['rel'])
571                         $o .= 'rel="' . $link['attribs']['']['rel'] . '" ';
572                 if($link['attribs']['']['type'])
573                         $o .= 'type="' . $link['attribs']['']['type'] . '" ';
574                 if($link['attribs']['']['href'])
575                         $o .= 'href="' . $link['attribs']['']['href'] . '" ';
576                 if( (x($link['attribs'],NAMESPACE_MEDIA)) && $link['attribs'][NAMESPACE_MEDIA]['width'])
577                         $o .= 'media:width="' . $link['attribs'][NAMESPACE_MEDIA]['width'] . '" ';
578                 if( (x($link['attribs'],NAMESPACE_MEDIA)) && $link['attribs'][NAMESPACE_MEDIA]['height'])
579                         $o .= 'media:height="' . $link['attribs'][NAMESPACE_MEDIA]['height'] . '" ';
580                 $o .= ' />' . "\n" ;
581         }
582         return xmlify($o);
583 }
584
585 function item_store($arr) {
586
587         if($arr['gravity'])
588                 $arr['gravity'] = intval($arr['gravity']);
589         elseif($arr['parent-uri'] == $arr['uri'])
590                 $arr['gravity'] = 0;
591         elseif(activity_match($arr['verb'],ACTIVITY_POST))
592                 $arr['gravity'] = 6;
593         else      
594                 $arr['gravity'] = 6;   // extensible catchall
595
596         if(! x($arr,'type'))
597                 $arr['type']      = 'remote';
598         $arr['wall']          = ((x($arr,'wall'))          ? intval($arr['wall'])                : 0);
599         $arr['uri']           = ((x($arr,'uri'))           ? notags(trim($arr['uri']))           : random_string());
600         $arr['author-name']   = ((x($arr,'author-name'))   ? notags(trim($arr['author-name']))   : '');
601         $arr['author-link']   = ((x($arr,'author-link'))   ? notags(trim($arr['author-link']))   : '');
602         $arr['author-avatar'] = ((x($arr,'author-avatar')) ? notags(trim($arr['author-avatar'])) : '');
603         $arr['owner-name']    = ((x($arr,'owner-name'))    ? notags(trim($arr['owner-name']))    : '');
604         $arr['owner-link']    = ((x($arr,'owner-link'))    ? notags(trim($arr['owner-link']))    : '');
605         $arr['owner-avatar']  = ((x($arr,'owner-avatar'))  ? notags(trim($arr['owner-avatar']))  : '');
606         $arr['created']       = ((x($arr,'created') !== false) ? datetime_convert('UTC','UTC',$arr['created']) : datetime_convert());
607         $arr['edited']        = ((x($arr,'edited')  !== false) ? datetime_convert('UTC','UTC',$arr['edited'])  : datetime_convert());
608         $arr['changed']       = datetime_convert();
609         $arr['title']         = ((x($arr,'title'))         ? notags(trim($arr['title']))         : '');
610         $arr['location']      = ((x($arr,'location'))      ? notags(trim($arr['location']))      : '');
611         $arr['coord']         = ((x($arr,'coord'))         ? notags(trim($arr['coord']))         : '');
612         $arr['last-child']    = ((x($arr,'last-child'))    ? intval($arr['last-child'])          : 0 );
613         $arr['visible']       = ((x($arr,'visible') !== false) ? intval($arr['visible'])         : 1 );
614         $arr['deleted']       = 0;
615         $arr['parent-uri']    = ((x($arr,'parent-uri'))    ? notags(trim($arr['parent-uri']))    : '');
616         $arr['verb']          = ((x($arr,'verb'))          ? notags(trim($arr['verb']))          : '');
617         $arr['object-type']   = ((x($arr,'object-type'))   ? notags(trim($arr['object-type']))   : '');
618         $arr['object']        = ((x($arr,'object'))        ? trim($arr['object'])                : '');
619         $arr['target-type']   = ((x($arr,'target-type'))   ? notags(trim($arr['target-type']))   : '');
620         $arr['target']        = ((x($arr,'target'))        ? trim($arr['target'])                : '');
621         $arr['allow_cid']     = ((x($arr,'allow_cid'))     ? trim($arr['allow_cid'])             : '');
622         $arr['allow_gid']     = ((x($arr,'allow_gid'))     ? trim($arr['allow_gid'])             : '');
623         $arr['deny_cid']      = ((x($arr,'deny_cid'))      ? trim($arr['deny_cid'])              : '');
624         $arr['deny_gid']      = ((x($arr,'deny_gid'))      ? trim($arr['deny_gid'])              : '');
625         $arr['private']       = ((x($arr,'private'))       ? intval($arr['private'])             : 0 );
626         $arr['body']          = ((x($arr,'body'))          ? escape_tags(trim($arr['body']))     : '');
627
628         // The content body has been through a lot of filtering and transport escaping by now. 
629         // We don't want to skip any filters, however a side effect of all this filtering 
630         // is that ampersands and <> may have been double encoded, depending on which filter chain
631         // they came through. 
632
633         $arr['body']          = str_replace(
634                                                                 array('&amp;amp;','&amp;gt;','&amp;lt;'),
635                                                                 array('&amp;'    ,'&gt;'    ,'&lt;'),
636                                                                 $arr['body']
637                                                         );
638
639
640
641         if($arr['parent-uri'] === $arr['uri']) {
642                 $parent_id = 0;
643                 $allow_cid = $arr['allow_cid'];
644                 $allow_gid = $arr['allow_gid'];
645                 $deny_cid  = $arr['deny_cid'];
646                 $deny_gid  = $arr['deny_gid'];
647         }
648         else { 
649
650                 // find the parent and snarf the item id and ACL's
651
652                 $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
653                         dbesc($arr['parent-uri']),
654                         intval($arr['uid'])
655                 );
656
657                 if(count($r)) {
658
659                         // is the new message multi-level threaded?
660                         // even though we don't support it now, preserve the info
661                         // and re-attach to the conversation parent.
662
663                         if($r[0]['uri'] != $r[0]['parent-uri']) {
664                                 $arr['thr-parent'] = $arr['parent-uri'];
665                                 $arr['parent-uri'] = $r[0]['parent-uri'];
666                         }
667
668                         $parent_id = $r[0]['id'];
669                         $allow_cid = $r[0]['allow_cid'];
670                         $allow_gid = $r[0]['allow_gid'];
671                         $deny_cid  = $r[0]['deny_cid'];
672                         $deny_gid  = $r[0]['deny_gid'];
673                 }
674                 else {
675                         logger('item_store: item parent was not found - ignoring item');
676                         return 0;
677                 }
678         }
679
680         call_hooks('post_remote',$arr);
681
682         dbesc_array($arr);
683
684         logger('item_store: ' . print_r($arr,true), LOGGER_DATA);
685
686         $r = dbq("INSERT INTO `item` (`" 
687                         . implode("`, `", array_keys($arr)) 
688                         . "`) VALUES ('" 
689                         . implode("', '", array_values($arr)) 
690                         . "')" );
691
692         // find the item we just created
693
694         $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
695                 $arr['uri'],           // already dbesc'd
696                 intval($arr['uid'])
697         );
698         if(count($r)) {
699                 $current_post = $r[0]['id'];
700                 logger('item_store: created item ' . $current_post);
701         }
702         else {
703                 logger('item_store: could not locate created item');
704                 return 0;
705         }
706
707         if($arr['parent-uri'] === $arr['uri'])
708                 $parent_id = $current_post;
709  
710         if(strlen($allow_cid) || strlen($allow_gid) || strlen($deny_cid) || strlen($deny_gid))
711                 $private = 1;
712         else
713                 $private = $arr['private']; 
714
715         // Set parent id - and also make sure to inherit the parent's ACL's.
716
717         $r = q("UPDATE `item` SET `parent` = %d, `allow_cid` = '%s', `allow_gid` = '%s',
718                 `deny_cid` = '%s', `deny_gid` = '%s', `private` = %d WHERE `id` = %d LIMIT 1",
719                 intval($parent_id),
720                 dbesc($allow_cid),
721                 dbesc($allow_gid),
722                 dbesc($deny_cid),
723                 dbesc($deny_gid),
724                 intval($private),
725                 intval($current_post)
726         );
727
728         return $current_post;
729 }
730
731 function get_item_contact($item,$contacts) {
732         if(! count($contacts) || (! is_array($item)))
733                 return false;
734         foreach($contacts as $contact) {
735                 if($contact['id'] == $item['contact-id']) {
736                         return $contact;
737                         break; // NOTREACHED
738                 }
739         }
740         return false;
741 }
742
743
744 function dfrn_deliver($owner,$contact,$atom) {
745
746         $a = get_app();
747
748         if((! strlen($contact['dfrn-id'])) && (! $contact['duplex']) && (! ($owner['page-flags'] == PAGE_COMMUNITY)))
749                 return 3;
750
751         $idtosend = $orig_id = (($contact['dfrn-id']) ? $contact['dfrn-id'] : $contact['issued-id']);
752
753         if($contact['duplex'] && $contact['dfrn-id'])
754                 $idtosend = '0:' . $orig_id;
755         if($contact['duplex'] && $contact['issued-id'])
756                 $idtosend = '1:' . $orig_id;            
757
758         $rino = ((function_exists('mcrypt_encrypt')) ? 1 : 0);
759
760         $rino_enable = get_config('system','rino_encrypt');
761
762         if(! $rino_enable)
763                 $rino = 0;
764
765         $url = $contact['notify'] . '?dfrn_id=' . $idtosend . '&dfrn_version=' . DFRN_PROTOCOL_VERSION . (($rino) ? '&rino=1' : '');
766
767         logger('dfrn_deliver: ' . $url);
768
769         $xml = fetch_url($url);
770
771         $curl_stat = $a->get_curl_code();
772         if(! $curl_stat)
773                 return(-1); // timed out
774
775         logger('dfrn_deliver: ' . $xml);
776
777         if(! $xml)
778                 return 3;
779
780         $res = simplexml_load_string($xml);
781
782         if((intval($res->status) != 0) || (! strlen($res->challenge)) || (! strlen($res->dfrn_id)))
783                 return (($res->status) ? $res->status : 3);
784
785         $postvars     = array();
786         $sent_dfrn_id = hex2bin($res->dfrn_id);
787         $challenge    = hex2bin($res->challenge);
788         $rino_allowed = ((intval($res->rino) === 1) ? 1 : 0);
789
790         $final_dfrn_id = '';
791
792
793         if(($contact['duplex'] && strlen($contact['prvkey'])) || ($owner['page-flags'] == PAGE_COMMUNITY)) {
794                 openssl_private_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['prvkey']);
795                 openssl_private_decrypt($challenge,$postvars['challenge'],$contact['prvkey']);
796         }
797         else {
798                 openssl_public_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['pubkey']);
799                 openssl_public_decrypt($challenge,$postvars['challenge'],$contact['pubkey']);
800         }
801
802         $final_dfrn_id = substr($final_dfrn_id, 0, strpos($final_dfrn_id, '.'));
803
804         if(strpos($final_dfrn_id,':') == 1)
805                 $final_dfrn_id = substr($final_dfrn_id,2);
806
807         if($final_dfrn_id != $orig_id) {
808                 logger('dfrn_deliver: wrong dfrn_id.');
809                 // did not decode properly - cannot trust this site 
810                 return 3;
811         }
812
813         $postvars['dfrn_id']      = $idtosend;
814         $postvars['dfrn_version'] = DFRN_PROTOCOL_VERSION;
815
816         if(($contact['rel']) && ($contact['rel'] != REL_FAN) && (! $contact['blocked']) && (! $contact['readonly'])) {
817                 $postvars['data'] = $atom;
818         }
819         elseif($owner['page-flags'] == PAGE_COMMUNITY) {
820                 $postvars['data'] = $atom;
821         }
822         else {
823                 $postvars['data'] = str_replace('<dfrn:comment-allow>1','<dfrn:comment-allow>0',$atom);
824         }
825
826         if($rino && $rino_allowed) {
827                 $key = substr(random_string(),0,16);
828                 $data = bin2hex(aes_encrypt($postvars['data'],$key));
829                 $postvars['data'] = $data;
830                 logger('rino: sent key = ' . $key);     
831
832                 if(($contact['duplex'] && strlen($contact['prvkey'])) || ($owner['page-flags'] == PAGE_COMMUNITY)) {
833                         openssl_private_encrypt($key,$postvars['key'],$contact['prvkey']);
834                 }
835                 else {
836                         openssl_public_encrypt($key,$postvars['key'],$contact['pubkey']);
837                 }
838
839                 logger('md5 rawkey ' . md5($postvars['key']));
840
841                 $postvars['key'] = bin2hex($postvars['key']);
842         }
843
844         logger('dfrn_deliver: ' . "SENDING: " . print_r($postvars,true), LOGGER_DATA);
845
846         $xml = post_url($contact['notify'],$postvars);
847
848         logger('dfrn_deliver: ' . "RECEIVED: " . $xml, LOGGER_DATA);
849
850         $curl_stat = $a->get_curl_code();
851         if((! $curl_stat) || (! strlen($xml)))
852                 return(-1); // timed out
853
854         $res = simplexml_load_string($xml);
855
856         return $res->status;
857  
858 }
859
860
861 /*
862  *
863  * consume_feed - process atom feed and update anything/everything we might need to update
864  *
865  * $xml = the (atom) feed to consume - no RSS spoken here, it might partially work since simplepie 
866  *        handles both, but we don't claim it will work well, and are reasonably certain it won't.
867  * $importer = the contact_record (joined to user_record) of the local user who owns this relationship.
868  *             It is this person's stuff that is going to be updated.
869  * $contact =  the person who is sending us stuff. If not set, we MAY be processing a "follow" activity
870  *             from an external network and MAY create an appropriate contact record. Otherwise, we MUST 
871  *             have a contact record.
872  * $hub = should we find a hub declation in the feed, pass it back to our calling process, who might (or 
873  *        might not) try and subscribe to it.
874  *
875  */
876
877 function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0) {
878
879         require_once('simplepie/simplepie.inc');
880
881         $feed = new SimplePie();
882         $feed->set_raw_data($xml);
883         if($datedir)
884                 $feed->enable_order_by_date(true);
885         else
886                 $feed->enable_order_by_date(false);
887         $feed->init();
888
889         // Check at the feed level for updated contact name and/or photo
890
891         $name_updated  = '';
892         $new_name = '';
893         $photo_timestamp = '';
894         $photo_url = '';
895         $birthday = '';
896
897         $hubs = $feed->get_links('hub');
898
899         if(count($hubs))
900                 $hub = implode(',', $hubs);
901
902         $rawtags = $feed->get_feed_tags( SIMPLEPIE_NAMESPACE_ATOM_10, 'author');
903         if($rawtags) {
904                 $elems = $rawtags[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10];
905                 if($elems['name'][0]['attribs'][NAMESPACE_DFRN]['updated']) {
906                         $name_updated = $elems['name'][0]['attribs'][NAMESPACE_DFRN]['updated'];
907                         $new_name = $elems['name'][0]['data'];
908                 } 
909                 if((x($elems,'link')) && ($elems['link'][0]['attribs']['']['rel'] === 'photo') && ($elems['link'][0]['attribs'][NAMESPACE_DFRN]['updated'])) {
910                         $photo_timestamp = datetime_convert('UTC','UTC',$elems['link'][0]['attribs'][NAMESPACE_DFRN]['updated']);
911                         $photo_url = $elems['link'][0]['attribs']['']['href'];
912                 }
913
914                 if((x($rawtags[0]['child'], NAMESPACE_DFRN)) && (x($rawtags[0]['child'][NAMESPACE_DFRN],'birthday'))) {
915                         $birthday = datetime_convert('UTC','UTC', $rawtags[0]['child'][NAMESPACE_DFRN]['birthday'][0]['data']);
916                 }
917         }
918
919         if((is_array($contact)) && ($photo_timestamp) && (strlen($photo_url)) && ($photo_timestamp > $contact['avatar-date'])) {
920                 logger('consume_feed: Updating photo for ' . $contact['name']);
921                 require_once("Photo.php");
922                 $photo_failure = false;
923                 $have_photo = false;
924
925                 $r = q("SELECT `resource-id` FROM `photo` WHERE `contact-id` = %d AND `uid` = %d LIMIT 1",
926                         intval($contact['id']),
927                         intval($contact['uid'])
928                 );
929                 if(count($r)) {
930                         $resource_id = $r[0]['resource-id'];
931                         $have_photo = true;
932                 }
933                 else {
934                         $resource_id = photo_new_resource();
935                 }
936                         
937                 $img_str = fetch_url($photo_url,true);
938                 $img = new Photo($img_str);
939                 if($img->is_valid()) {
940                         if($have_photo) {
941                                 q("DELETE FROM `photo` WHERE `resource-id` = '%s' AND `contact-id` = %d AND `uid` = %d",
942                                         dbesc($resource_id),
943                                         intval($contact['id']),
944                                         intval($contact['uid'])
945                                 );
946                         }
947                                 
948                         $img->scaleImageSquare(175);
949                                 
950                         $hash = $resource_id;
951                         $r = $img->store($contact['uid'], $contact['id'], $hash, basename($photo_url), t('Contact Photos') , 4);
952                                 
953                         $img->scaleImage(80);
954                         $r = $img->store($contact['uid'], $contact['id'], $hash, basename($photo_url), t('Contact Photos') , 5);
955
956                         $img->scaleImage(48);
957                         $r = $img->store($contact['uid'], $contact['id'], $hash, basename($photo_url), t('Contact Photos') , 6);
958
959                         $a = get_app();
960
961                         q("UPDATE `contact` SET `avatar-date` = '%s', `photo` = '%s', `thumb` = '%s', `micro` = '%s'  
962                                 WHERE `uid` = %d AND `id` = %d LIMIT 1",
963                                 dbesc(datetime_convert()),
964                                 dbesc($a->get_baseurl() . '/photo/' . $hash . '-4.jpg'),
965                                 dbesc($a->get_baseurl() . '/photo/' . $hash . '-5.jpg'),
966                                 dbesc($a->get_baseurl() . '/photo/' . $hash . '-6.jpg'),
967                                 intval($contact['uid']),
968                                 intval($contact['id'])
969                         );
970                 }
971         }
972
973         if((is_array($contact)) && ($name_updated) && (strlen($new_name)) && ($name_updated > $contact['name-date'])) {
974                 q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s' WHERE `uid` = %d AND `id` = %d LIMIT 1",
975                         dbesc(notags(trim($new_name))),
976                         dbesc(datetime_convert()),
977                         intval($contact['uid']),
978                         intval($contact['id'])
979                 );
980         }
981
982         if(strlen($birthday)) {
983                 if(substr($birthday,0,4) != $contact['bdyear']) {
984                         logger('consume_feed: updating birthday: ' . $birthday);
985
986                         /**
987                          *
988                          * Add new birthday event for this person
989                          *
990                          * $bdtext is just a readable placeholder in case the event is shared
991                          * with others. We will replace it during presentation to our $importer
992                          * to contain a sparkle link and perhaps a photo. 
993                          *
994                          */
995                          
996                         $bdtext = t('Birthday:') . ' [url=' . $contact['url'] . ']' . $contact['name'] . '[/url]' ;
997
998
999                         $r = q("INSERT INTO `event` (`uid`,`cid`,`created`,`edited`,`start`,`finish`,`desc`,`type`)
1000                                 VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s' ) ",
1001                                 intval($contact['uid']),
1002                                 intval($contact['id']),
1003                                 dbesc(datetime_convert()),
1004                                 dbesc(datetime_convert()),
1005                                 dbesc(datetime_convert('UTC','UTC', $birthday)),
1006                                 dbesc(datetime_convert('UTC','UTC', $birthday . ' + 1 day ')),
1007                                 dbesc($bdtext),
1008                                 dbesc('birthday')
1009                         );
1010                         
1011
1012                         // update bdyear
1013
1014                         q("UPDATE `contact` SET `bdyear` = '%s' WHERE `uid` = %d AND `id` = %d LIMIT 1",
1015                                 dbesc(substr($birthday,0,4)),
1016                                 intval($contact['uid']),
1017                                 intval($contact['id'])
1018                         );
1019
1020                         // This function is called twice without reloading the contact
1021                         // Make sure we only create one event. This is why &$contact 
1022                         // is a reference var in this function
1023
1024                         $contact['bdyear'] = substr($birthday,0,4);
1025                 }
1026
1027         }
1028
1029         // Now process the feed
1030         if($feed->get_item_quantity()) {                
1031
1032         // in inverse date order
1033                 if ($datedir)
1034                         $items = array_reverse($feed->get_items());
1035                 else
1036                         $items = $feed->get_items();
1037
1038                 foreach($items as $item) {
1039
1040                         $deleted = false;
1041
1042                         $rawdelete = $item->get_item_tags( NAMESPACE_TOMB, 'deleted-entry');
1043                         if(isset($rawdelete[0]['attribs']['']['ref'])) {
1044                                 $uri = $rawthread[0]['attribs']['']['ref'];
1045                                 $deleted = true;
1046                                 if(isset($rawdelete[0]['attribs']['']['when'])) {
1047                                         $when = $rawthread[0]['attribs']['']['when'];
1048                                         $when = datetime_convert('UTC','UTC', $when, 'Y-m-d H:i:s');
1049                                 }
1050                                 else
1051                                         $when = datetime_convert('UTC','UTC','now','Y-m-d H:i:s');
1052                         }
1053                         if($deleted && is_array($contact)) {
1054                                 $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d AND `contact-id` = %d LIMIT 1",
1055                                         dbesc($uri),
1056                                         intval($importer['uid']),
1057                                         intval($contact['id'])
1058                                 );
1059                                 if(count($r)) {
1060                                         $item = $r[0];
1061                                         if($item['uri'] == $item['parent-uri']) {
1062                                                 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s',
1063                                                         `body` = '', `title` = ''
1064                                                         WHERE `parent-uri` = '%s' AND `uid` = %d",
1065                                                         dbesc($when),
1066                                                         dbesc(datetime_convert()),
1067                                                         dbesc($item['uri']),
1068                                                         intval($importer['uid'])
1069                                                 );
1070                                         }
1071                                         else {
1072                                                 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s',
1073                                                         `body` = '', `title` = '' 
1074                                                         WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1075                                                         dbesc($when),
1076                                                         dbesc(datetime_convert()),
1077                                                         dbesc($uri),
1078                                                         intval($importer['uid'])
1079                                                 );
1080                                                 if($item['last-child']) {
1081                                                         // ensure that last-child is set in case the comment that had it just got wiped.
1082                                                         $q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d ",
1083                                                                 dbesc(datetime_convert()),
1084                                                                 dbesc($item['parent-uri']),
1085                                                                 intval($item['uid'])
1086                                                         );
1087                                                         // who is the last child now? 
1088                                                         $r = q("SELECT `id` FROM `item` WHERE `parent-uri` = '%s' AND `type` != 'activity' AND `deleted` = 0 AND `uid` = %d 
1089                                                                 ORDER BY `created` DESC LIMIT 1",
1090                                                                         dbesc($item['parent-uri']),
1091                                                                         intval($importer['uid'])
1092                                                         );
1093                                                         if(count($r)) {
1094                                                                 q("UPDATE `item` SET `last-child` = 1 WHERE `id` = %d LIMIT 1",
1095                                                                         intval($r[0]['id'])
1096                                                                 );
1097                                                         }
1098                                                 }       
1099                                         }
1100                                 }       
1101                                 continue;
1102                         }
1103
1104
1105                         $is_reply = false;              
1106                         $item_id = $item->get_id();
1107                         $rawthread = $item->get_item_tags( NAMESPACE_THREAD,'in-reply-to');
1108                         if(isset($rawthread[0]['attribs']['']['ref'])) {
1109                                 $is_reply = true;
1110                                 $parent_uri = $rawthread[0]['attribs']['']['ref'];
1111                         }
1112
1113
1114                         if(($is_reply) && is_array($contact)) {
1115         
1116                                 // Have we seen it? If not, import it.
1117         
1118                                 $item_id = $item->get_id();
1119         
1120                                 $r = q("SELECT `uid`, `last-child`, `edited` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1121                                         dbesc($item_id),
1122                                         intval($importer['uid'])
1123                                 );
1124                                 // FIXME update content if 'updated' changes
1125                                 if(count($r)) {
1126                                         $allow = $item->get_item_tags( NAMESPACE_DFRN, 'comment-allow');
1127                                         if(($allow) && ($allow[0]['data'] != $r[0]['last-child'])) {
1128                                                 $r = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d",
1129                                                         dbesc(datetime_convert()),
1130                                                         dbesc($parent_uri),
1131                                                         intval($importer['uid'])
1132                                                 );
1133                                                 $r = q("UPDATE `item` SET `last-child` = %d , `changed` = '%s'  WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1134                                                         intval($allow[0]['data']),
1135                                                         dbesc(datetime_convert()),
1136                                                         dbesc($item_id),
1137                                                         intval($importer['uid'])
1138                                                 );
1139                                         }
1140                                         continue;
1141                                 }
1142                                 $datarray = get_atom_elements($feed,$item);
1143                                 if($contact['network'] === 'stat') {
1144                                         if(strlen($datarray['title']))
1145                                                 unset($datarray['title']);
1146                                         $r = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d",
1147                                                 dbesc(datetime_convert()),
1148                                                 dbesc($parent_uri),
1149                                                 intval($importer['uid'])
1150                                         );
1151                                         $datarray['last-child'] = 1;
1152                                 }
1153                                 $datarray['parent-uri'] = $parent_uri;
1154                                 $datarray['uid'] = $importer['uid'];
1155                                 $datarray['contact-id'] = $contact['id'];
1156                                 if((activity_match($datarray['verb'],ACTIVITY_LIKE)) || (activity_match($datarray['verb'],ACTIVITY_DISLIKE))) {
1157                                         $datarray['type'] = 'activity';
1158                                         $datarray['gravity'] = GRAVITY_LIKE;
1159                                 }
1160
1161                                 $r = item_store($datarray);
1162                                 continue;
1163                         }
1164
1165                         else {
1166                                 // Head post of a conversation. Have we seen it? If not, import it.
1167
1168                                 $item_id = $item->get_id();
1169                                 $r = q("SELECT `uid`, `last-child`, `edited` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1170                                         dbesc($item_id),
1171                                         intval($importer['uid'])
1172                                 );
1173                                 if(count($r)) {
1174                                         $allow = $item->get_item_tags( NAMESPACE_DFRN, 'comment-allow');
1175                                         if($allow && $allow[0]['data'] != $r[0]['last-child']) {
1176                                                 $r = q("UPDATE `item` SET `last-child` = %d , `changed` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1177                                                         intval($allow[0]['data']),
1178                                                         dbesc(datetime_convert()),
1179                                                         dbesc($item_id),
1180                                                         intval($importer['uid'])
1181                                                 );
1182                                         }
1183                                         continue;
1184                                 }
1185                                 $datarray = get_atom_elements($feed,$item);
1186
1187                                 if(activity_match($datarray['verb'],ACTIVITY_FOLLOW)) {
1188                                         logger('consume-feed: New follower');
1189                                         new_follower($importer,$contact,$datarray,$item);
1190                                         return;
1191                                 }
1192                                 if(activity_match($datarray['verb'],ACTIVITY_UNFOLLOW))  {
1193                                         lose_follower($importer,$contact,$datarray,$item);
1194                                         return;
1195                                 }
1196                                 if(! is_array($contact))
1197                                         return;
1198
1199                                 if($contact['network'] === 'stat') {
1200                                         if(strlen($datarray['title']))
1201                                                 unset($datarray['title']);
1202                                         $datarray['last-child'] = 1;
1203                                 }
1204
1205                                 $datarray['parent-uri'] = $item_id;
1206                                 $datarray['uid'] = $importer['uid'];
1207                                 $datarray['contact-id'] = $contact['id'];
1208                                 $r = item_store($datarray);
1209                                 continue;
1210
1211                         }
1212                 }
1213         }
1214
1215 }
1216
1217 function new_follower($importer,$contact,$datarray,$item) {
1218         $url = notags(trim($datarray['author-link']));
1219         $name = notags(trim($datarray['author-name']));
1220         $photo = notags(trim($datarray['author-avatar']));
1221
1222         $rawtag = $item->get_item_tags(NAMESPACE_ACTIVITY,'actor');
1223         if($rawtag && $rawtag[0]['child'][NAMESPACE_POCO]['preferredUsername'][0]['data'])
1224                 $nick = $rawtag[0]['child'][NAMESPACE_POCO]['preferredUsername'][0]['data'];
1225
1226         if(is_array($contact)) {
1227                 if($contact['network'] == 'stat' && $contact['rel'] == REL_FAN) {
1228                         $r = q("UPDATE `contact` SET `rel` = %d WHERE `id` = %d AND `uid` = %d LIMIT 1",
1229                                 intval(REL_BUD),
1230                                 intval($contact['id']),
1231                                 intval($importer['uid'])
1232                         );
1233                 }
1234
1235                 // send email notification to owner?
1236         }
1237         else {
1238         
1239                 // create contact record - set to readonly
1240
1241                 $r = q("INSERT INTO `contact` ( `uid`, `created`, `url`, `name`, `nick`, `photo`, `network`, `rel`, 
1242                         `blocked`, `readonly`, `pending` )
1243                         VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', %d, 0, 1, 1 ) ",
1244                         intval($importer['uid']),
1245                         dbesc(datetime_convert()),
1246                         dbesc($url),
1247                         dbesc($name),
1248                         dbesc($nick),
1249                         dbesc($photo),
1250                         dbesc('stat'),
1251                         intval(REL_VIP)
1252                 );
1253                 $r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `url` = '%s' AND `pending` = 1 AND `rel` = %d LIMIT 1",
1254                                 intval($importer['uid']),
1255                                 dbesc($url),
1256                                 intval(REL_VIP)
1257                 );
1258                 if(count($r))
1259                                 $contact_record = $r[0];
1260
1261                 // create notification  
1262                 $hash = random_string();
1263
1264                 if(is_array($contact_record)) {
1265                         $ret = q("INSERT INTO `intro` ( `uid`, `contact-id`, `blocked`, `knowyou`, `hash`, `datetime`)
1266                                 VALUES ( %d, %d, 0, 0, '%s', '%s' )",
1267                                 intval($importer['uid']),
1268                                 intval($contact_record['id']),
1269                                 dbesc($hash),
1270                                 dbesc(datetime_convert())
1271                         );
1272                 }
1273                 $r = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
1274                         intval($importer['uid'])
1275                 );
1276                 $a = get_app();
1277                 if(count($r)) {
1278                         if(($r[0]['notify-flags'] & NOTIFY_INTRO) && ($r[0]['page-flags'] == PAGE_NORMAL)) {
1279                                 $email_tpl = load_view_file('view/follow_notify_eml.tpl');
1280                                 $email = replace_macros($email_tpl, array(
1281                                         '$requestor' => ((strlen($name)) ? $name : t('[Name Withheld]')),
1282                                         '$url' => $url,
1283                                         '$myname' => $r[0]['username'],
1284                                         '$siteurl' => $a->get_baseurl(),
1285                                         '$sitename' => $a->config['sitename']
1286                                 ));
1287                                 $res = mail($r[0]['email'], 
1288                                         t("You have a new follower at ") . $a->config['sitename'],
1289                                         $email,
1290                                         'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] );
1291                         
1292                         }
1293                 }
1294         }
1295 }
1296
1297 function lose_follower($importer,$contact,$datarray,$item) {
1298
1299         if(($contact['rel'] == REL_BUD) || ($contact['rel'] == REL_FAN)) {
1300                 q("UPDATE `contact` SET `rel` = %d WHERE `id` = %d LIMIT 1",
1301                         intval(REL_FAN),
1302                         intval($contact['id'])
1303                 );
1304         }
1305         else {
1306                 contact_remove($contact['id']);
1307         }
1308 }
1309
1310
1311 function subscribe_to_hub($url,$importer,$contact) {
1312
1313         if(is_array($importer)) {
1314                 $r = q("SELECT `nickname` FROM `user` WHERE `uid` = %d LIMIT 1",
1315                         intval($importer['uid'])
1316                 );
1317         }
1318         if(! count($r))
1319                 return;
1320
1321         $push_url = get_config('system','url') . '/pubsub/' . $r[0]['nickname'] . '/' . $contact['id'];
1322
1323         // Use a single verify token, even if multiple hubs
1324
1325         $verify_token = ((strlen($contact['hub-verify'])) ? $contact['hub-verify'] : random_string());
1326
1327         $params= 'hub.mode=subscribe&hub.callback=' . urlencode($push_url) . '&hub.topic=' . urlencode($contact['poll']) . '&hub.verify=async&hub.verify_token=' . $verify_token;
1328
1329         logger('subscribe_to_hub: subscribing ' . $contact['name'] . ' to hub ' . $url . ' with verifier ' . $verify_token);
1330
1331         if(! strlen($contact['hub-verify'])) {
1332                 $r = q("UPDATE `contact` SET `hub-verify` = '%s' WHERE `id` = %d LIMIT 1",
1333                         dbesc($verify_token),
1334                         intval($contact['id'])
1335                 );
1336         }
1337
1338         post_url($url,$params);                 
1339         return;
1340
1341 }
1342
1343
1344 function atom_author($tag,$name,$uri,$h,$w,$photo) {
1345         $o = '';
1346         if(! $tag)
1347                 return $o;
1348         $name = xmlify($name);
1349         $uri = xmlify($uri);
1350         $h = intval($h);
1351         $w = intval($w);
1352         $photo = xmlify($photo);
1353
1354
1355         $o .= "<$tag>\r\n";
1356         $o .= "<name>$name</name>\r\n";
1357         $o .= "<uri>$uri</uri>\r\n";
1358         $o .= '<link rel="photo"  type="image/jpeg" media:width="' . $w . '" media:height="' . $h . '" href="' . $photo . '" />' . "\r\n";
1359         $o .= '<link rel="avatar" type="image/jpeg" media:width="' . $w . '" media:height="' . $h . '" href="' . $photo . '" />' . "\r\n";
1360
1361         call_hooks('atom_author', $o);
1362
1363         $o .= "</$tag>\r\n";
1364         return $o;
1365 }
1366
1367 function atom_entry($item,$type,$author,$owner,$comment = false) {
1368
1369         if($item['deleted'])
1370                 return '<at:deleted-entry ref="' . xmlify($item['uri']) . '" when="' . xmlify(datetime_convert('UTC','UTC',$item['edited'] . '+00:00',ATOM_TIME)) . '" />' . "\r\n";
1371
1372         $a = get_app();
1373
1374         $o = "\r\n\r\n<entry>\r\n";
1375
1376         if(is_array($author))
1377                 $o .= atom_author('author',$author['name'],$author['url'],80,80,$author['thumb']);
1378         else
1379                 $o .= atom_author('author',$item['name'],$item['url'],80,80,$item['thumb']);
1380         if(strlen($item['owner-name']))
1381                 $o .= atom_author('dfrn:owner',$item['owner-name'],$item['owner-link'],80,80,$item['owner-avatar']);
1382
1383         if($item['parent'] != $item['id'])
1384                 $o .= '<thr:in-reply-to ref="' . xmlify($item['parent-uri']) . '" type="text/html" href="' .  xmlify($a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id']) . '" />' . "\r\n";
1385
1386         $o .= '<id>' . xmlify($item['uri']) . '</id>' . "\r\n";
1387         $o .= '<title>' . xmlify($item['title']) . '</title>' . "\r\n";
1388         $o .= '<published>' . xmlify(datetime_convert('UTC','UTC',$item['created'] . '+00:00',ATOM_TIME)) . '</published>' . "\r\n";
1389         $o .= '<updated>' . xmlify(datetime_convert('UTC','UTC',$item['edited'] . '+00:00',ATOM_TIME)) . '</updated>' . "\r\n";
1390         $o .= '<content type="' . $type . '" >' . xmlify(($type === 'html') ? bbcode($item['body']) : $item['body']) . '</content>' . "\r\n";
1391         $o .= '<link rel="alternate" href="' . xmlify($a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id']) . '" />' . "\r\n";
1392         if($comment)
1393                 $o .= '<dfrn:comment-allow>' . intval($item['last-child']) . '</dfrn:comment-allow>' . "\r\n";
1394
1395         if($item['location']) {
1396                 $o .= '<dfrn:location>' . xmlify($item['location']) . '</dfrn:location>' . "\r\n";
1397                 $o .= '<poco:address><poco:formatted>' . xmlify($item['location']) . '</poco:formatted></poco:address>' . "\r\n";
1398         }
1399
1400         if($item['coord'])
1401                 $o .= '<georss:point>' . xmlify($item['coord']) . '</georss:point>' . "\r\n";
1402
1403         if(($item['private']) || strlen($item['allow_cid']) || strlen($item['allow_gid']) || strlen($item['deny_cid']) || strlen($item['deny_gid']))
1404                 $o .= '<dfrn:private>1</dfrn:private>' . "\r\n";
1405
1406         $verb = construct_verb($item);
1407         $o .= '<as:verb>' . xmlify($verb) . '</as:verb>' . "\r\n";
1408         $actobj = construct_activity_object($item);
1409         if(strlen($actobj))
1410                 $o .= $actobj;
1411         $actarg = construct_activity_target($item);
1412         if(strlen($actarg))
1413                 $o .= $actarg;
1414
1415         $mentioned = get_mentions($item);
1416         if($mentioned)
1417                 $o .= $mentioned;
1418         
1419         call_hooks('atom_entry', $o);
1420
1421         $o .= '</entry>' . "\r\n";
1422         
1423         return $o;
1424 }
1425