3 require_once('bbcode.php');
4 require_once('oembed.php');
5 require_once('include/salmon.php');
7 function get_feed_for(&$a, $dfrn_id, $owner_nick, $last_update, $direction = 0) {
10 // default permissions - anonymous user
12 if(! strlen($owner_nick))
15 $sql_extra = " AND `allow_cid` = '' AND `allow_gid` = '' AND `deny_cid` = '' AND `deny_gid` = '' ";
17 $r = q("SELECT `contact`.*, `user`.`uid` AS `user_uid`, `user`.`nickname`, `user`.`timezone`
18 FROM `contact` LEFT JOIN `user` ON `user`.`uid` = `contact`.`uid`
19 WHERE `contact`.`self` = 1 AND `user`.`nickname` = '%s' LIMIT 1",
27 $owner_id = $owner['user_uid'];
28 $owner_nick = $owner['nickname'];
30 $birthday = feed_birthday($owner_id,$owner['timezone']);
32 if(strlen($dfrn_id)) {
37 $sql_extra = sprintf(" AND `issued-id` = '%s' ", dbesc($dfrn_id));
41 $sql_extra = sprintf(" AND `issued-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id));
42 $my_id = '1:' . $dfrn_id;
45 $sql_extra = sprintf(" AND `dfrn-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id));
46 $my_id = '0:' . $dfrn_id;
53 $r = q("SELECT * FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `contact`.`uid` = %d $sql_extra LIMIT 1",
61 $groups = init_groups_visitor($contact['id']);
64 for($x = 0; $x < count($groups); $x ++)
65 $groups[$x] = '<' . intval($groups[$x]) . '>' ;
66 $gs = implode('|', $groups);
69 $gs = '<<>>' ; // Impossible to match
71 $sql_extra = sprintf("
72 AND ( `allow_cid` = '' OR `allow_cid` REGEXP '<%d>' )
73 AND ( `deny_cid` = '' OR NOT `deny_cid` REGEXP '<%d>' )
74 AND ( `allow_gid` = '' OR `allow_gid` REGEXP '%s' )
75 AND ( `deny_gid` = '' OR NOT `deny_gid` REGEXP '%s')
77 intval($contact['id']),
78 intval($contact['id']),
84 if($dfrn_id === '' || $dfrn_id === '*')
89 if(! strlen($last_update))
90 $last_update = 'now -30 days';
92 $check_date = datetime_convert('UTC','UTC',$last_update,'Y-m-d H:i:s');
94 $r = q("SELECT `item`.*, `item`.`id` AS `item_id`,
95 `contact`.`name`, `contact`.`photo`, `contact`.`url`,
96 `contact`.`name-date`, `contact`.`uri-date`, `contact`.`avatar-date`,
97 `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`,
98 `contact`.`id` AS `contact-id`, `contact`.`uid` AS `contact-uid`
99 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
100 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`parent` != 0
101 AND `item`.`wall` = 1 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
102 AND ( `item`.`edited` > '%s' OR `item`.`changed` > '%s' )
104 ORDER BY `parent` %s, `created` ASC LIMIT 0, 300",
111 // Will check further below if this actually returned results.
112 // We will provide an empty feed if that is the case.
116 $feed_template = get_markup_template('atom_feed.tpl');
120 $hubxml = feed_hublinks();
122 $salmon = feed_salmonlinks($owner_nick);
124 $atom .= replace_macros($feed_template, array(
125 '$version' => xmlify(FRIENDIKA_VERSION),
126 '$feed_id' => xmlify($a->get_baseurl() . '/profile/' . $owner_nick),
127 '$feed_title' => xmlify($owner['name']),
128 '$feed_updated' => xmlify(datetime_convert('UTC', 'UTC', 'now' , ATOM_TIME)) ,
130 '$salmon' => $salmon,
131 '$name' => xmlify($owner['name']),
132 '$profile_page' => xmlify($owner['url']),
133 '$photo' => xmlify($owner['photo']),
134 '$thumb' => xmlify($owner['thumb']),
135 '$picdate' => xmlify(datetime_convert('UTC','UTC',$owner['avatar-date'] . '+00:00' , ATOM_TIME)) ,
136 '$uridate' => xmlify(datetime_convert('UTC','UTC',$owner['uri-date'] . '+00:00' , ATOM_TIME)) ,
137 '$namdate' => xmlify(datetime_convert('UTC','UTC',$owner['name-date'] . '+00:00' , ATOM_TIME)) ,
138 '$birthday' => ((strlen($birthday)) ? '<dfrn:birthday>' . xmlify($birthday) . '</dfrn:birthday>' : '')
141 call_hooks('atom_feed', $atom);
143 if(! count($items)) {
145 call_hooks('atom_feed_end', $atom);
147 $atom .= '</feed>' . "\r\n";
151 foreach($items as $item) {
153 // public feeds get html, our own nodes use bbcode
155 if($dfrn_id === '') {
162 $atom .= atom_entry($item,$type,null,$owner,true);
165 call_hooks('atom_feed_end', $atom);
167 $atom .= '</feed>' . "\r\n";
173 function construct_verb($item) {
175 return $item['verb'];
176 return ACTIVITY_POST;
179 function construct_activity_object($item) {
181 if($item['object']) {
182 $o = '<as:object>' . "\r\n";
183 $r = parse_xml_string($item['object']);
185 $o .= '<as:object-type>' . xmlify($r->type) . '</as:object-type>' . "\r\n";
187 $o .= '<id>' . xmlify($r->id) . '</id>' . "\r\n";
189 $o .= '<title>' . xmlify($r->title) . '</title>' . "\r\n";
191 if(substr($r->link,0,1) === '<')
194 $o .= '<link rel="alternate" type="text/html" href="' . xmlify($r->link) . '" />' . "\r\n";
197 $o .= '<content type="html" >' . xmlify(bbcode($r->content)) . '</content>' . "\r\n";
198 $o .= '</as:object>' . "\r\n";
205 function construct_activity_target($item) {
207 if($item['target']) {
208 $o = '<as:target>' . "\r\n";
209 $r = parse_xml_string($item['target']);
211 $o .= '<as:object-type>' . xmlify($r->type) . '</as:object-type>' . "\r\n";
213 $o .= '<id>' . xmlify($r->id) . '</id>' . "\r\n";
215 $o .= '<title>' . xmlify($r->title) . '</title>' . "\r\n";
217 if(substr($r->link,0,1) === '<')
220 $o .= '<link rel="alternate" type="text/html" href="' . xmlify($r->link) . '" />' . "\r\n";
223 $o .= '<content type="html" >' . xmlify(bbcode($r->content)) . '</content>' . "\r\n";
224 $o .= '</as:target>' . "\r\n";
234 function get_atom_elements($feed,$item) {
236 require_once('library/HTMLPurifier.auto.php');
237 require_once('include/html2bbcode.php');
239 $best_photo = array();
243 $author = $item->get_author();
245 $res['author-name'] = unxmlify($author->get_name());
246 $res['author-link'] = unxmlify($author->get_link());
249 $res['author-name'] = unxmlify($feed->get_title());
250 $res['author-link'] = unxmlify($feed->get_permalink());
252 $res['uri'] = unxmlify($item->get_id());
253 $res['title'] = unxmlify($item->get_title());
254 $res['body'] = unxmlify($item->get_content());
255 $res['plink'] = unxmlify($item->get_link(0));
257 // look for a photo. We should check media size and find the best one,
258 // but for now let's just find any author photo
260 $rawauthor = $item->get_item_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'author');
262 if($rawauthor && $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) {
263 $base = $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
264 foreach($base as $link) {
265 if(! $res['author-avatar']) {
266 if($link['attribs']['']['rel'] === 'photo' || $link['attribs']['']['rel'] === 'avatar')
267 $res['author-avatar'] = unxmlify($link['attribs']['']['href']);
272 $rawactor = $item->get_item_tags(NAMESPACE_ACTIVITY, 'actor');
274 if($rawactor && activity_match($rawactor[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'],ACTIVITY_OBJ_PERSON)) {
275 $base = $rawactor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
276 if($base && count($base)) {
277 foreach($base as $link) {
278 if($link['attribs']['']['rel'] === 'alternate' && (! $res['author-link']))
279 $res['author-link'] = unxmlify($link['attribs']['']['href']);
280 if(! $res['author-avatar']) {
281 if($link['attribs']['']['rel'] === 'avatar' || $link['attribs']['']['rel'] === 'photo')
282 $res['author-avatar'] = unxmlify($link['attribs']['']['href']);
288 // No photo/profile-link on the item - look at the feed level
290 if((! (x($res,'author-link'))) || (! (x($res,'author-avatar')))) {
291 $rawauthor = $feed->get_feed_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'author');
292 if($rawauthor && $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) {
293 $base = $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
294 foreach($base as $link) {
295 if($link['attribs']['']['rel'] === 'alternate' && (! $res['author-link']))
296 $res['author-link'] = unxmlify($link['attribs']['']['href']);
297 if(! $res['author-avatar']) {
298 if($link['attribs']['']['rel'] === 'photo' || $link['attribs']['']['rel'] === 'avatar')
299 $res['author-avatar'] = unxmlify($link['attribs']['']['href']);
304 $rawactor = $feed->get_feed_tags(NAMESPACE_ACTIVITY, 'subject');
306 if($rawactor && activity_match($rawactor[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'],ACTIVITY_OBJ_PERSON)) {
307 $base = $rawactor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
309 if($base && count($base)) {
310 foreach($base as $link) {
311 if($link['attribs']['']['rel'] === 'alternate' && (! $res['author-link']))
312 $res['author-link'] = unxmlify($link['attribs']['']['href']);
313 if(! (x($res,'author-avatar'))) {
314 if($link['attribs']['']['rel'] === 'avatar' || $link['attribs']['']['rel'] === 'photo')
315 $res['author-avatar'] = unxmlify($link['attribs']['']['href']);
324 * If there's a copy of the body content which is guaranteed to have survived mangling in transit, use it.
327 $have_real_body = false;
329 $rawenv = $item->get_item_tags(NAMESPACE_DFRN, 'env');
331 $have_real_body = true;
332 $res['body'] = $rawenv[0]['data'];
333 $res['body'] = str_replace(array(' ',"\t","\r","\n"), array('','','',''),$res['body']);
334 // make sure nobody is trying to sneak some html tags by us
335 $res['body'] = notags(base64url_decode($res['body']));
338 $maxlen = get_max_import_size();
339 if($maxlen && (strlen($res['body']) > $maxlen))
340 $res['body'] = substr($res['body'],0, $maxlen);
342 // It isn't certain at this point whether our content is plaintext or html and we'd be foolish to trust
343 // the content type. Our own network only emits text normally, though it might have been converted to
344 // html if we used a pubsubhubbub transport. But if we see even one html tag in our text, we will
345 // have to assume it is all html and needs to be purified.
347 // It doesn't matter all that much security wise - because before this content is used anywhere, we are
348 // going to escape any tags we find regardless, but this lets us import a limited subset of html from
349 // the wild, by sanitising it and converting supported tags to bbcode before we rip out any remaining
352 if((strpos($res['body'],'<') !== false) || (strpos($res['body'],'>') !== false)) {
354 $res['body'] = preg_replace('#<object[^>]+>.+?' . 'http://www.youtube.com/((?:v|cp)/[A-Za-z0-9\-_=]+).+?</object>#s',
355 '[youtube]$1[/youtube]', $res['body']);
357 $res['body'] = preg_replace('#<iframe[^>].+?' . 'http://www.youtube.com/embed/([A-Za-z0-9\-_=]+).+?</iframe>#s',
358 '[youtube]$1[/youtube]', $res['body']);
360 $res['body'] = oembed_html2bbcode($res['body']);
362 $config = HTMLPurifier_Config::createDefault();
363 $config->set('Cache.DefinitionImpl', null);
365 // we shouldn't need a whitelist, because the bbcode converter
366 // will strip out any unsupported tags.
367 // $config->set('HTML.Allowed', 'p,b,a[href],i');
369 $purifier = new HTMLPurifier($config);
370 $res['body'] = $purifier->purify($res['body']);
372 $res['body'] = html2bbcode($res['body']);
375 $allow = $item->get_item_tags(NAMESPACE_DFRN,'comment-allow');
376 if($allow && $allow[0]['data'] == 1)
377 $res['last-child'] = 1;
379 $res['last-child'] = 0;
381 $private = $item->get_item_tags(NAMESPACE_DFRN,'private');
382 if($private && $private[0]['data'] == 1)
388 $rawlocation = $item->get_item_tags(NAMESPACE_DFRN, 'location');
390 $res['location'] = unxmlify($rawlocation[0]['data']);
393 $rawcreated = $item->get_item_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'published');
395 $res['created'] = unxmlify($rawcreated[0]['data']);
398 $rawedited = $item->get_item_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'updated');
400 $res['edited'] = unxmlify($rawedited[0]['data']);
402 if((x($res,'edited')) && (! (x($res,'created'))))
403 $res['created'] = $res['edited'];
405 if(! $res['created'])
406 $res['created'] = $item->get_date('c');
409 $res['edited'] = $item->get_date('c');
412 // Disallow time travelling posts
414 $d1 = strtotime($res['created']);
415 $d2 = strtotime($res['edited']);
416 $d3 = strtotime('now');
419 $res['created'] = datetime_convert();
421 $res['edited'] = datetime_convert();
423 $rawowner = $item->get_item_tags(NAMESPACE_DFRN, 'owner');
424 if($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['name'][0]['data'])
425 $res['owner-name'] = unxmlify($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['name'][0]['data']);
426 elseif($rawowner[0]['child'][NAMESPACE_DFRN]['name'][0]['data'])
427 $res['owner-name'] = unxmlify($rawowner[0]['child'][NAMESPACE_DFRN]['name'][0]['data']);
428 if($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]['data'])
429 $res['owner-link'] = unxmlify($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]['data']);
430 elseif($rawowner[0]['child'][NAMESPACE_DFRN]['uri'][0]['data'])
431 $res['owner-link'] = unxmlify($rawowner[0]['child'][NAMESPACE_DFRN]['uri'][0]['data']);
433 if($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) {
434 $base = $rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
436 foreach($base as $link) {
437 if(! $res['owner-avatar']) {
438 if($link['attribs']['']['rel'] === 'photo' || $link['attribs']['']['rel'] === 'avatar')
439 $res['owner-avatar'] = unxmlify($link['attribs']['']['href']);
444 $rawgeo = $item->get_item_tags(NAMESPACE_GEORSS,'point');
446 $res['coord'] = unxmlify($rawgeo[0]['data']);
449 $rawverb = $item->get_item_tags(NAMESPACE_ACTIVITY, 'verb');
451 // select between supported verbs
454 $res['verb'] = unxmlify($rawverb[0]['data']);
457 // translate OStatus unfollow to activity streams if it happened to get selected
459 if((x($res,'verb')) && ($res['verb'] === 'http://ostatus.org/schema/1.0/unfollow'))
460 $res['verb'] = ACTIVITY_UNFOLLOW;
463 $cats = $item->get_categories();
466 foreach($cats as $cat) {
467 $term = $cat->get_term();
469 $term = $cat->get_label();
470 $scheme = $cat->get_scheme();
471 if($scheme && $term && stristr($scheme,'X-DFRN:'))
472 $tag_arr[] = substr($scheme,7,1) . '[url=' . unxmlify(substr($scheme,9)) . ']' . unxmlify($term) . '[/url]';
474 $tag_arr[] = notags(trim($term));
476 $res['tag'] = implode(',', $tag_arr);
479 $attach = $item->get_enclosures();
482 foreach($attach as $att) {
483 $len = intval($att->get_length());
484 $link = str_replace(array(',','"'),array('%2D','%22'),notags(trim(unxmlify($att->get_link()))));
485 $title = str_replace(array(',','"'),array('%2D','%22'),notags(trim(unxmlify($att->get_title()))));
486 $type = str_replace(array(',','"'),array('%2D','%22'),notags(trim(unxmlify($att->get_type()))));
487 if(strpos($type,';'))
488 $type = substr($type,0,strpos($type,';'));
489 if((! $link) || (strpos($link,'http') !== 0))
495 $type = 'application/octet-stream';
497 $att_arr[] = '[attach]href="' . $link . '" size="' . $len . '" type="' . $type . '" title="' . $title . '"[/attach]';
499 $res['attach'] = implode(',', $att_arr);
502 $rawobj = $item->get_item_tags(NAMESPACE_ACTIVITY, 'object');
505 $res['object'] = '<object>' . "\n";
506 if($rawobj[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data']) {
507 $res['object-type'] = $rawobj[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'];
508 $res['object'] .= '<type>' . $rawobj[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'] . '</type>' . "\n";
510 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'])
511 $res['object'] .= '<id>' . $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'] . '</id>' . "\n";
512 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'])
513 $res['object'] .= '<link>' . encode_rel_links($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) . '</link>' . "\n";
514 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'])
515 $res['object'] .= '<title>' . $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'] . '</title>' . "\n";
516 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data']) {
517 $body = $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data'];
519 $body = $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['summary'][0]['data'];
520 // preserve a copy of the original body content in case we later need to parse out any microformat information, e.g. events
521 $res['object'] .= '<orig>' . xmlify($body) . '</orig>' . "\n";
522 if((strpos($body,'<') !== false) || (strpos($body,'>') !== false)) {
524 $body = preg_replace('#<object[^>]+>.+?' . 'http://www.youtube.com/((?:v|cp)/[A-Za-z0-9\-_=]+).+?</object>#s',
525 '[youtube]$1[/youtube]', $body);
527 $res['body'] = preg_replace('#<iframe[^>].+?' . 'http://www.youtube.com/embed/([A-Za-z0-9\-_=]+).+?</iframe>#s',
528 '[youtube]$1[/youtube]', $res['body']);
531 $config = HTMLPurifier_Config::createDefault();
532 $config->set('Cache.DefinitionImpl', null);
534 $purifier = new HTMLPurifier($config);
535 $body = $purifier->purify($body);
536 $body = html2bbcode($body);
539 $res['object'] .= '<content>' . $body . '</content>' . "\n";
542 $res['object'] .= '</object>' . "\n";
545 $rawobj = $item->get_item_tags(NAMESPACE_ACTIVITY, 'target');
548 $res['target'] = '<target>' . "\n";
549 if($rawobj[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data']) {
550 $res['target'] .= '<type>' . $rawobj[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'] . '</type>' . "\n";
552 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'])
553 $res['target'] .= '<id>' . $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'] . '</id>' . "\n";
555 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'])
556 $res['target'] .= '<link>' . encode_rel_links($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) . '</link>' . "\n";
557 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'])
558 $res['target'] .= '<title>' . $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'] . '</title>' . "\n";
559 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data']) {
560 $body = $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data'];
562 $body = $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['summary'][0]['data'];
563 // preserve a copy of the original body content in case we later need to parse out any microformat information, e.g. events
564 $res['object'] .= '<orig>' . xmlify($body) . '</orig>' . "\n";
565 if((strpos($body,'<') !== false) || (strpos($body,'>') !== false)) {
567 $body = preg_replace('#<object[^>]+>.+?' . 'http://www.youtube.com/((?:v|cp)/[A-Za-z0-9\-_=]+).+?</object>#s',
568 '[youtube]$1[/youtube]', $body);
570 $res['body'] = preg_replace('#<iframe[^>].+?' . 'http://www.youtube.com/embed/([A-Za-z0-9\-_=]+).+?</iframe>#s',
571 '[youtube]$1[/youtube]', $res['body']);
573 $config = HTMLPurifier_Config::createDefault();
574 $config->set('Cache.DefinitionImpl', null);
576 $purifier = new HTMLPurifier($config);
577 $body = $purifier->purify($body);
578 $body = html2bbcode($body);
581 $res['target'] .= '<content>' . $body . '</content>' . "\n";
584 $res['target'] .= '</target>' . "\n";
587 $arr = array('feed' => $feed, 'item' => $item, 'result' => $res);
589 call_hooks('parse_atom', $arr);
594 function encode_rel_links($links) {
596 if(! ((is_array($links)) && (count($links))))
598 foreach($links as $link) {
600 if($link['attribs']['']['rel'])
601 $o .= 'rel="' . $link['attribs']['']['rel'] . '" ';
602 if($link['attribs']['']['type'])
603 $o .= 'type="' . $link['attribs']['']['type'] . '" ';
604 if($link['attribs']['']['href'])
605 $o .= 'href="' . $link['attribs']['']['href'] . '" ';
606 if( (x($link['attribs'],NAMESPACE_MEDIA)) && $link['attribs'][NAMESPACE_MEDIA]['width'])
607 $o .= 'media:width="' . $link['attribs'][NAMESPACE_MEDIA]['width'] . '" ';
608 if( (x($link['attribs'],NAMESPACE_MEDIA)) && $link['attribs'][NAMESPACE_MEDIA]['height'])
609 $o .= 'media:height="' . $link['attribs'][NAMESPACE_MEDIA]['height'] . '" ';
615 function item_store($arr,$force_parent = false) {
618 $arr['gravity'] = intval($arr['gravity']);
619 elseif($arr['parent-uri'] == $arr['uri'])
621 elseif(activity_match($arr['verb'],ACTIVITY_POST))
624 $arr['gravity'] = 6; // extensible catchall
627 $arr['type'] = 'remote';
629 // Shouldn't happen but we want to make absolutely sure it doesn't leak from a plugin.
631 if((strpos($arr['body'],'<') !== false) || (strpos($arr['body'],'>') !== false))
632 $arr['body'] = strip_tags($arr['body']);
635 $arr['wall'] = ((x($arr,'wall')) ? intval($arr['wall']) : 0);
636 $arr['uri'] = ((x($arr,'uri')) ? notags(trim($arr['uri'])) : random_string());
637 $arr['author-name'] = ((x($arr,'author-name')) ? notags(trim($arr['author-name'])) : '');
638 $arr['author-link'] = ((x($arr,'author-link')) ? notags(trim($arr['author-link'])) : '');
639 $arr['author-avatar'] = ((x($arr,'author-avatar')) ? notags(trim($arr['author-avatar'])) : '');
640 $arr['owner-name'] = ((x($arr,'owner-name')) ? notags(trim($arr['owner-name'])) : '');
641 $arr['owner-link'] = ((x($arr,'owner-link')) ? notags(trim($arr['owner-link'])) : '');
642 $arr['owner-avatar'] = ((x($arr,'owner-avatar')) ? notags(trim($arr['owner-avatar'])) : '');
643 $arr['created'] = ((x($arr,'created') !== false) ? datetime_convert('UTC','UTC',$arr['created']) : datetime_convert());
644 $arr['edited'] = ((x($arr,'edited') !== false) ? datetime_convert('UTC','UTC',$arr['edited']) : datetime_convert());
645 $arr['changed'] = datetime_convert();
646 $arr['title'] = ((x($arr,'title')) ? notags(trim($arr['title'])) : '');
647 $arr['location'] = ((x($arr,'location')) ? notags(trim($arr['location'])) : '');
648 $arr['coord'] = ((x($arr,'coord')) ? notags(trim($arr['coord'])) : '');
649 $arr['last-child'] = ((x($arr,'last-child')) ? intval($arr['last-child']) : 0 );
650 $arr['visible'] = ((x($arr,'visible') !== false) ? intval($arr['visible']) : 1 );
652 $arr['parent-uri'] = ((x($arr,'parent-uri')) ? notags(trim($arr['parent-uri'])) : '');
653 $arr['verb'] = ((x($arr,'verb')) ? notags(trim($arr['verb'])) : '');
654 $arr['object-type'] = ((x($arr,'object-type')) ? notags(trim($arr['object-type'])) : '');
655 $arr['object'] = ((x($arr,'object')) ? trim($arr['object']) : '');
656 $arr['target-type'] = ((x($arr,'target-type')) ? notags(trim($arr['target-type'])) : '');
657 $arr['target'] = ((x($arr,'target')) ? trim($arr['target']) : '');
658 $arr['plink'] = ((x($arr,'plink')) ? notags(trim($arr['plink'])) : '');
659 $arr['allow_cid'] = ((x($arr,'allow_cid')) ? trim($arr['allow_cid']) : '');
660 $arr['allow_gid'] = ((x($arr,'allow_gid')) ? trim($arr['allow_gid']) : '');
661 $arr['deny_cid'] = ((x($arr,'deny_cid')) ? trim($arr['deny_cid']) : '');
662 $arr['deny_gid'] = ((x($arr,'deny_gid')) ? trim($arr['deny_gid']) : '');
663 $arr['private'] = ((x($arr,'private')) ? intval($arr['private']) : 0 );
664 $arr['body'] = ((x($arr,'body')) ? trim($arr['body']) : '');
665 $arr['tag'] = ((x($arr,'tag')) ? notags(trim($arr['tag'])) : '');
666 $arr['attach'] = ((x($arr,'attach')) ? notags(trim($arr['attach'])) : '');
668 if($arr['parent-uri'] === $arr['uri']) {
670 $allow_cid = $arr['allow_cid'];
671 $allow_gid = $arr['allow_gid'];
672 $deny_cid = $arr['deny_cid'];
673 $deny_gid = $arr['deny_gid'];
677 // find the parent and snarf the item id and ACL's
678 // and anything else we need to inherit
680 $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
681 dbesc($arr['parent-uri']),
687 // is the new message multi-level threaded?
688 // even though we don't support it now, preserve the info
689 // and re-attach to the conversation parent.
691 if($r[0]['uri'] != $r[0]['parent-uri']) {
692 $arr['thr-parent'] = $arr['parent-uri'];
693 $arr['parent-uri'] = $r[0]['parent-uri'];
696 $parent_id = $r[0]['id'];
697 $parent_deleted = $r[0]['deleted'];
698 $allow_cid = $r[0]['allow_cid'];
699 $allow_gid = $r[0]['allow_gid'];
700 $deny_cid = $r[0]['deny_cid'];
701 $deny_gid = $r[0]['deny_gid'];
702 $arr['wall'] = $r[0]['wall'];
706 // Allow one to see reply tweets from status.net even when
707 // we don't have or can't see the original post.
710 logger('item_store: $force_parent=true, reply converted to top-level post.');
712 $arr['thr-parent'] = $arr['parent-uri'];
713 $arr['parent-uri'] = $arr['uri'];
717 logger('item_store: item parent was not found - ignoring item');
723 call_hooks('post_remote',$arr);
727 logger('item_store: ' . print_r($arr,true), LOGGER_DATA);
729 $r = dbq("INSERT INTO `item` (`"
730 . implode("`, `", array_keys($arr))
732 . implode("', '", array_values($arr))
735 // find the item we just created
737 $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
738 $arr['uri'], // already dbesc'd
742 $current_post = $r[0]['id'];
743 logger('item_store: created item ' . $current_post);
746 logger('item_store: could not locate created item');
750 if((! $parent_id) || ($arr['parent-uri'] === $arr['uri']))
751 $parent_id = $current_post;
753 if(strlen($allow_cid) || strlen($allow_gid) || strlen($deny_cid) || strlen($deny_gid))
756 $private = $arr['private'];
758 // Set parent id - and also make sure to inherit the parent's ACL's.
760 $r = q("UPDATE `item` SET `parent` = %d, `allow_cid` = '%s', `allow_gid` = '%s',
761 `deny_cid` = '%s', `deny_gid` = '%s', `private` = %d, `deleted` = %d WHERE `id` = %d LIMIT 1",
768 intval($parent_deleted),
769 intval($current_post)
773 * If this is now the last-child, force all _other_ children of this parent to *not* be last-child
776 if($arr['last-child']) {
777 $r = q("UPDATE `item` SET `last-child` = 0 WHERE `parent-uri` = '%s' AND `uid` = %d AND `id` != %d",
780 intval($current_post)
784 return $current_post;
787 function get_item_contact($item,$contacts) {
788 if(! count($contacts) || (! is_array($item)))
790 foreach($contacts as $contact) {
791 if($contact['id'] == $item['contact-id']) {
800 function dfrn_deliver($owner,$contact,$atom, $dissolve = false) {
804 if((! strlen($contact['issued-id'])) && (! $contact['duplex']) && (! ($owner['page-flags'] == PAGE_COMMUNITY)))
807 $idtosend = $orig_id = (($contact['dfrn-id']) ? $contact['dfrn-id'] : $contact['issued-id']);
809 if($contact['duplex'] && $contact['dfrn-id'])
810 $idtosend = '0:' . $orig_id;
811 if($contact['duplex'] && $contact['issued-id'])
812 $idtosend = '1:' . $orig_id;
814 $rino = ((function_exists('mcrypt_encrypt')) ? 1 : 0);
816 $rino_enable = get_config('system','rino_encrypt');
821 $url = $contact['notify'] . '&dfrn_id=' . $idtosend . '&dfrn_version=' . DFRN_PROTOCOL_VERSION . (($rino) ? '&rino=1' : '');
823 logger('dfrn_deliver: ' . $url);
825 $xml = fetch_url($url);
827 $curl_stat = $a->get_curl_code();
829 return(-1); // timed out
831 logger('dfrn_deliver: ' . $xml);
836 if(strpos($xml,'<?xml') === false) {
837 logger('dfrn_deliver: no valid XML returned');
838 logger('dfrn_deliver: returned XML: ' . $xml, LOGGER_DATA);
842 $res = parse_xml_string($xml);
844 if((intval($res->status) != 0) || (! strlen($res->challenge)) || (! strlen($res->dfrn_id)))
845 return (($res->status) ? $res->status : 3);
848 $sent_dfrn_id = hex2bin((string) $res->dfrn_id);
849 $challenge = hex2bin((string) $res->challenge);
850 $dfrn_version = (float) (($res->dfrn_version) ? $res->dfrn_version : 2.0);
851 $rino_allowed = ((intval($res->rino) === 1) ? 1 : 0);
856 if(($contact['duplex'] && strlen($contact['pubkey'])) || ($owner['page-flags'] == PAGE_COMMUNITY)) {
857 openssl_public_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['pubkey']);
858 openssl_public_decrypt($challenge,$postvars['challenge'],$contact['pubkey']);
861 openssl_private_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['prvkey']);
862 openssl_private_decrypt($challenge,$postvars['challenge'],$contact['prvkey']);
865 $final_dfrn_id = substr($final_dfrn_id, 0, strpos($final_dfrn_id, '.'));
867 if(strpos($final_dfrn_id,':') == 1)
868 $final_dfrn_id = substr($final_dfrn_id,2);
870 if($final_dfrn_id != $orig_id) {
871 logger('dfrn_deliver: wrong dfrn_id.');
872 // did not decode properly - cannot trust this site
876 $postvars['dfrn_id'] = $idtosend;
877 $postvars['dfrn_version'] = DFRN_PROTOCOL_VERSION;
879 $postvars['dissolve'] = '1';
882 if((($contact['rel']) && ($contact['rel'] != REL_FAN) && (! $contact['blocked'])) || ($owner['page-flags'] == PAGE_COMMUNITY)) {
883 $postvars['data'] = $atom;
884 $postvars['perm'] = 'rw';
887 $postvars['data'] = str_replace('<dfrn:comment-allow>1','<dfrn:comment-allow>0',$atom);
888 $postvars['perm'] = 'r';
891 if($rino && $rino_allowed && (! $dissolve)) {
892 $key = substr(random_string(),0,16);
893 $data = bin2hex(aes_encrypt($postvars['data'],$key));
894 $postvars['data'] = $data;
895 logger('rino: sent key = ' . $key);
898 if($dfrn_version >= 2.1) {
899 if(($contact['duplex'] && strlen($contact['pubkey'])) || ($owner['page-flags'] == PAGE_COMMUNITY)) {
900 openssl_public_encrypt($key,$postvars['key'],$contact['pubkey']);
903 openssl_private_encrypt($key,$postvars['key'],$contact['prvkey']);
907 if(($contact['duplex'] && strlen($contact['prvkey'])) || ($owner['page-flags'] == PAGE_COMMUNITY)) {
908 openssl_private_encrypt($key,$postvars['key'],$contact['prvkey']);
911 openssl_public_encrypt($key,$postvars['key'],$contact['pubkey']);
915 logger('md5 rawkey ' . md5($postvars['key']));
917 $postvars['key'] = bin2hex($postvars['key']);
920 logger('dfrn_deliver: ' . "SENDING: " . print_r($postvars,true), LOGGER_DATA);
922 $xml = post_url($contact['notify'],$postvars);
924 logger('dfrn_deliver: ' . "RECEIVED: " . $xml, LOGGER_DATA);
926 $curl_stat = $a->get_curl_code();
927 if((! $curl_stat) || (! strlen($xml)))
928 return(-1); // timed out
930 if(strpos($xml,'<?xml') === false) {
931 logger('dfrn_deliver: phase 2: no valid XML returned');
932 logger('dfrn_deliver: phase 2: returned XML: ' . $xml, LOGGER_DATA);
936 $res = parse_xml_string($xml);
944 * consume_feed - process atom feed and update anything/everything we might need to update
946 * $xml = the (atom) feed to consume - RSS isn't as fully supported but may work for simple feeds.
948 * $importer = the contact_record (joined to user_record) of the local user who owns this relationship.
949 * It is this person's stuff that is going to be updated.
950 * $contact = the person who is sending us stuff. If not set, we MAY be processing a "follow" activity
951 * from an external network and MAY create an appropriate contact record. Otherwise, we MUST
952 * have a contact record.
953 * $hub = should we find a hub declation in the feed, pass it back to our calling process, who might (or
954 * might not) try and subscribe to it.
958 function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $secure_feed = false) {
960 require_once('simplepie/simplepie.inc');
962 $feed = new SimplePie();
963 $feed->set_raw_data($xml);
965 $feed->enable_order_by_date(true);
967 $feed->enable_order_by_date(false);
971 logger('consume_feed: Error parsing XML: ' . $feed->error());
973 $permalink = $feed->get_permalink();
975 // Check at the feed level for updated contact name and/or photo
979 $photo_timestamp = '';
983 $hubs = $feed->get_links('hub');
986 $hub = implode(',', $hubs);
988 $rawtags = $feed->get_feed_tags( SIMPLEPIE_NAMESPACE_ATOM_10, 'author');
990 $elems = $rawtags[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10];
991 if($elems['name'][0]['attribs'][NAMESPACE_DFRN]['updated']) {
992 $name_updated = $elems['name'][0]['attribs'][NAMESPACE_DFRN]['updated'];
993 $new_name = $elems['name'][0]['data'];
995 if((x($elems,'link')) && ($elems['link'][0]['attribs']['']['rel'] === 'photo') && ($elems['link'][0]['attribs'][NAMESPACE_DFRN]['updated'])) {
996 $photo_timestamp = datetime_convert('UTC','UTC',$elems['link'][0]['attribs'][NAMESPACE_DFRN]['updated']);
997 $photo_url = $elems['link'][0]['attribs']['']['href'];
1000 if((x($rawtags[0]['child'], NAMESPACE_DFRN)) && (x($rawtags[0]['child'][NAMESPACE_DFRN],'birthday'))) {
1001 $birthday = datetime_convert('UTC','UTC', $rawtags[0]['child'][NAMESPACE_DFRN]['birthday'][0]['data']);
1005 if((is_array($contact)) && ($photo_timestamp) && (strlen($photo_url)) && ($photo_timestamp > $contact['avatar-date'])) {
1006 logger('consume_feed: Updating photo for ' . $contact['name']);
1007 require_once("Photo.php");
1008 $photo_failure = false;
1009 $have_photo = false;
1011 $r = q("SELECT `resource-id` FROM `photo` WHERE `contact-id` = %d AND `uid` = %d LIMIT 1",
1012 intval($contact['id']),
1013 intval($contact['uid'])
1016 $resource_id = $r[0]['resource-id'];
1020 $resource_id = photo_new_resource();
1023 $img_str = fetch_url($photo_url,true);
1024 $img = new Photo($img_str);
1025 if($img->is_valid()) {
1027 q("DELETE FROM `photo` WHERE `resource-id` = '%s' AND `contact-id` = %d AND `uid` = %d",
1028 dbesc($resource_id),
1029 intval($contact['id']),
1030 intval($contact['uid'])
1034 $img->scaleImageSquare(175);
1036 $hash = $resource_id;
1037 $r = $img->store($contact['uid'], $contact['id'], $hash, basename($photo_url), t('Contact Photos') , 4);
1039 $img->scaleImage(80);
1040 $r = $img->store($contact['uid'], $contact['id'], $hash, basename($photo_url), t('Contact Photos') , 5);
1042 $img->scaleImage(48);
1043 $r = $img->store($contact['uid'], $contact['id'], $hash, basename($photo_url), t('Contact Photos') , 6);
1047 q("UPDATE `contact` SET `avatar-date` = '%s', `photo` = '%s', `thumb` = '%s', `micro` = '%s'
1048 WHERE `uid` = %d AND `id` = %d LIMIT 1",
1049 dbesc(datetime_convert()),
1050 dbesc($a->get_baseurl() . '/photo/' . $hash . '-4.jpg'),
1051 dbesc($a->get_baseurl() . '/photo/' . $hash . '-5.jpg'),
1052 dbesc($a->get_baseurl() . '/photo/' . $hash . '-6.jpg'),
1053 intval($contact['uid']),
1054 intval($contact['id'])
1059 if((is_array($contact)) && ($name_updated) && (strlen($new_name)) && ($name_updated > $contact['name-date'])) {
1060 q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s' WHERE `uid` = %d AND `id` = %d LIMIT 1",
1061 dbesc(notags(trim($new_name))),
1062 dbesc(datetime_convert()),
1063 intval($contact['uid']),
1064 intval($contact['id'])
1068 if(strlen($birthday)) {
1069 if(substr($birthday,0,4) != $contact['bdyear']) {
1070 logger('consume_feed: updating birthday: ' . $birthday);
1074 * Add new birthday event for this person
1076 * $bdtext is just a readable placeholder in case the event is shared
1077 * with others. We will replace it during presentation to our $importer
1078 * to contain a sparkle link and perhaps a photo.
1082 $bdtext = t('Birthday:') . ' [url=' . $contact['url'] . ']' . $contact['name'] . '[/url]' ;
1085 $r = q("INSERT INTO `event` (`uid`,`cid`,`created`,`edited`,`start`,`finish`,`desc`,`type`)
1086 VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s' ) ",
1087 intval($contact['uid']),
1088 intval($contact['id']),
1089 dbesc(datetime_convert()),
1090 dbesc(datetime_convert()),
1091 dbesc(datetime_convert('UTC','UTC', $birthday)),
1092 dbesc(datetime_convert('UTC','UTC', $birthday . ' + 1 day ')),
1100 q("UPDATE `contact` SET `bdyear` = '%s' WHERE `uid` = %d AND `id` = %d LIMIT 1",
1101 dbesc(substr($birthday,0,4)),
1102 intval($contact['uid']),
1103 intval($contact['id'])
1106 // This function is called twice without reloading the contact
1107 // Make sure we only create one event. This is why &$contact
1108 // is a reference var in this function
1110 $contact['bdyear'] = substr($birthday,0,4);
1116 // process any deleted entries
1118 $del_entries = $feed->get_feed_tags(NAMESPACE_TOMB, 'deleted-entry');
1119 if(is_array($del_entries) && count($del_entries)) {
1120 foreach($del_entries as $dentry) {
1122 if(isset($dentry['attribs']['']['ref'])) {
1123 $uri = $dentry['attribs']['']['ref'];
1125 if(isset($dentry['attribs']['']['when'])) {
1126 $when = $dentry['attribs']['']['when'];
1127 $when = datetime_convert('UTC','UTC', $when, 'Y-m-d H:i:s');
1130 $when = datetime_convert('UTC','UTC','now','Y-m-d H:i:s');
1132 if($deleted && is_array($contact)) {
1133 $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d AND `contact-id` = %d LIMIT 1",
1135 intval($importer['uid']),
1136 intval($contact['id'])
1141 if(! $item['deleted'])
1142 logger('consume_feed: deleting item ' . $item['id'] . ' uri=' . $item['uri'], LOGGER_DEBUG);
1144 if($item['uri'] == $item['parent-uri']) {
1145 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s',
1146 `body` = '', `title` = ''
1147 WHERE `parent-uri` = '%s' AND `uid` = %d",
1149 dbesc(datetime_convert()),
1150 dbesc($item['uri']),
1151 intval($importer['uid'])
1155 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s',
1156 `body` = '', `title` = ''
1157 WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1159 dbesc(datetime_convert()),
1161 intval($importer['uid'])
1163 if($item['last-child']) {
1164 // ensure that last-child is set in case the comment that had it just got wiped.
1165 q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d ",
1166 dbesc(datetime_convert()),
1167 dbesc($item['parent-uri']),
1168 intval($item['uid'])
1170 // who is the last child now?
1171 $r = q("SELECT `id` FROM `item` WHERE `parent-uri` = '%s' AND `type` != 'activity' AND `deleted` = 0 AND `uid` = %d
1172 ORDER BY `created` DESC LIMIT 1",
1173 dbesc($item['parent-uri']),
1174 intval($importer['uid'])
1177 q("UPDATE `item` SET `last-child` = 1 WHERE `id` = %d LIMIT 1",
1188 // Now process the feed
1190 if($feed->get_item_quantity()) {
1192 logger('consume_feed: feed item count = ' . $feed->get_item_quantity());
1194 // in inverse date order
1196 $items = array_reverse($feed->get_items());
1198 $items = $feed->get_items();
1201 foreach($items as $item) {
1204 $item_id = $item->get_id();
1205 $rawthread = $item->get_item_tags( NAMESPACE_THREAD,'in-reply-to');
1206 if(isset($rawthread[0]['attribs']['']['ref'])) {
1208 $parent_uri = $rawthread[0]['attribs']['']['ref'];
1211 if(($is_reply) && is_array($contact)) {
1213 // Have we seen it? If not, import it.
1215 $item_id = $item->get_id();
1216 $datarray = get_atom_elements($feed,$item);
1218 if(! x($datarray,'author-name'))
1219 $datarray['author-name'] = $contact['name'];
1220 if(! x($datarray,'author-link'))
1221 $datarray['author-link'] = $contact['url'];
1222 if(! x($datarray,'author-avatar'))
1223 $datarray['author-avatar'] = $contact['thumb'];
1225 $r = q("SELECT `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1227 intval($importer['uid'])
1230 // Update content if 'updated' changes
1233 if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) {
1234 $r = q("UPDATE `item` SET `body` = '%s', `edited` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1235 dbesc($datarray['body']),
1236 dbesc(datetime_convert('UTC','UTC',$datarray['edited'])),
1238 intval($importer['uid'])
1242 // update last-child if it changes
1244 $allow = $item->get_item_tags( NAMESPACE_DFRN, 'comment-allow');
1245 if(($allow) && ($allow[0]['data'] != $r[0]['last-child'])) {
1246 $r = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d",
1247 dbesc(datetime_convert()),
1249 intval($importer['uid'])
1251 $r = q("UPDATE `item` SET `last-child` = %d , `changed` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1252 intval($allow[0]['data']),
1253 dbesc(datetime_convert()),
1255 intval($importer['uid'])
1261 $force_parent = false;
1262 if($contact['network'] === 'stat') {
1263 $force_parent = true;
1264 if(strlen($datarray['title']))
1265 unset($datarray['title']);
1266 $r = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d",
1267 dbesc(datetime_convert()),
1269 intval($importer['uid'])
1271 $datarray['last-child'] = 1;
1274 if(($contact['network'] === 'feed') || (! strlen($contact['notify']))) {
1275 // one way feed - no remote comment ability
1276 $datarray['last-child'] = 0;
1278 $datarray['parent-uri'] = $parent_uri;
1279 $datarray['uid'] = $importer['uid'];
1280 $datarray['contact-id'] = $contact['id'];
1281 if((activity_match($datarray['verb'],ACTIVITY_LIKE)) || (activity_match($datarray['verb'],ACTIVITY_DISLIKE))) {
1282 $datarray['type'] = 'activity';
1283 $datarray['gravity'] = GRAVITY_LIKE;
1286 $r = item_store($datarray,$force_parent);
1292 // Head post of a conversation. Have we seen it? If not, import it.
1294 $item_id = $item->get_id();
1296 $datarray = get_atom_elements($feed,$item);
1298 if(is_array($contact)) {
1299 if(! x($datarray,'author-name'))
1300 $datarray['author-name'] = $contact['name'];
1301 if(! x($datarray,'author-link'))
1302 $datarray['author-link'] = $contact['url'];
1303 if(! x($datarray,'author-avatar'))
1304 $datarray['author-avatar'] = $contact['thumb'];
1307 $r = q("SELECT `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1309 intval($importer['uid'])
1312 // Update content if 'updated' changes
1315 if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) {
1316 $r = q("UPDATE `item` SET `body` = '%s', `edited` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1317 dbesc($datarray['body']),
1318 dbesc(datetime_convert('UTC','UTC',$datarray['edited'])),
1320 intval($importer['uid'])
1324 // update last-child if it changes
1326 $allow = $item->get_item_tags( NAMESPACE_DFRN, 'comment-allow');
1327 if($allow && $allow[0]['data'] != $r[0]['last-child']) {
1328 $r = q("UPDATE `item` SET `last-child` = %d , `changed` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1329 intval($allow[0]['data']),
1330 dbesc(datetime_convert()),
1332 intval($importer['uid'])
1338 if(activity_match($datarray['verb'],ACTIVITY_FOLLOW)) {
1339 logger('consume-feed: New follower');
1340 new_follower($importer,$contact,$datarray,$item);
1343 if(activity_match($datarray['verb'],ACTIVITY_UNFOLLOW)) {
1344 lose_follower($importer,$contact,$datarray,$item);
1347 if(! is_array($contact))
1350 if($contact['network'] === 'stat' || stristr($permalink,'twitter.com')) {
1351 if(strlen($datarray['title']))
1352 unset($datarray['title']);
1353 $datarray['last-child'] = 1;
1356 if(($contact['network'] === 'feed') || (! strlen($contact['notify']))) {
1357 // one way feed - no remote comment ability
1358 $datarray['last-child'] = 0;
1361 $datarray['parent-uri'] = $item_id;
1362 $datarray['uid'] = $importer['uid'];
1363 $datarray['contact-id'] = $contact['id'];
1364 $r = item_store($datarray);
1372 function new_follower($importer,$contact,$datarray,$item) {
1373 $url = notags(trim($datarray['author-link']));
1374 $name = notags(trim($datarray['author-name']));
1375 $photo = notags(trim($datarray['author-avatar']));
1377 $rawtag = $item->get_item_tags(NAMESPACE_ACTIVITY,'actor');
1378 if($rawtag && $rawtag[0]['child'][NAMESPACE_POCO]['preferredUsername'][0]['data'])
1379 $nick = $rawtag[0]['child'][NAMESPACE_POCO]['preferredUsername'][0]['data'];
1381 if(is_array($contact)) {
1382 if($contact['network'] == 'stat' && $contact['rel'] == REL_FAN) {
1383 $r = q("UPDATE `contact` SET `rel` = %d WHERE `id` = %d AND `uid` = %d LIMIT 1",
1385 intval($contact['id']),
1386 intval($importer['uid'])
1390 // send email notification to owner?
1394 // create contact record - set to readonly
1396 $r = q("INSERT INTO `contact` ( `uid`, `created`, `url`, `name`, `nick`, `photo`, `network`, `rel`,
1397 `blocked`, `readonly`, `pending`, `writable` )
1398 VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', %d, 0, 1, 1, 1 ) ",
1399 intval($importer['uid']),
1400 dbesc(datetime_convert()),
1408 $r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `url` = '%s' AND `pending` = 1 AND `rel` = %d LIMIT 1",
1409 intval($importer['uid']),
1414 $contact_record = $r[0];
1416 // create notification
1417 $hash = random_string();
1419 if(is_array($contact_record)) {
1420 $ret = q("INSERT INTO `intro` ( `uid`, `contact-id`, `blocked`, `knowyou`, `hash`, `datetime`)
1421 VALUES ( %d, %d, 0, 0, '%s', '%s' )",
1422 intval($importer['uid']),
1423 intval($contact_record['id']),
1425 dbesc(datetime_convert())
1428 $r = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
1429 intval($importer['uid'])
1433 if(($r[0]['notify-flags'] & NOTIFY_INTRO) && ($r[0]['page-flags'] == PAGE_NORMAL)) {
1434 $email_tpl = get_intltext_template('follow_notify_eml.tpl');
1435 $email = replace_macros($email_tpl, array(
1436 '$requestor' => ((strlen($name)) ? $name : t('[Name Withheld]')),
1438 '$myname' => $r[0]['username'],
1439 '$siteurl' => $a->get_baseurl(),
1440 '$sitename' => $a->config['sitename']
1442 $res = mail($r[0]['email'],
1443 t("You have a new follower at ") . $a->config['sitename'],
1445 'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] . "\n"
1446 . 'Content-type: text/plain; charset=UTF-8' . "\n"
1447 . 'Content-transfer-encoding: 8bit' );
1454 function lose_follower($importer,$contact,$datarray,$item) {
1456 if(($contact['rel'] == REL_BUD) || ($contact['rel'] == REL_FAN)) {
1457 q("UPDATE `contact` SET `rel` = %d WHERE `id` = %d LIMIT 1",
1459 intval($contact['id'])
1463 contact_remove($contact['id']);
1468 function subscribe_to_hub($url,$importer,$contact) {
1470 if(is_array($importer)) {
1471 $r = q("SELECT `nickname` FROM `user` WHERE `uid` = %d LIMIT 1",
1472 intval($importer['uid'])
1478 $push_url = get_config('system','url') . '/pubsub/' . $r[0]['nickname'] . '/' . $contact['id'];
1480 // Use a single verify token, even if multiple hubs
1482 $verify_token = ((strlen($contact['hub-verify'])) ? $contact['hub-verify'] : random_string());
1484 $params= 'hub.mode=subscribe&hub.callback=' . urlencode($push_url) . '&hub.topic=' . urlencode($contact['poll']) . '&hub.verify=async&hub.verify_token=' . $verify_token;
1486 logger('subscribe_to_hub: subscribing ' . $contact['name'] . ' to hub ' . $url . ' with verifier ' . $verify_token);
1488 if(! strlen($contact['hub-verify'])) {
1489 $r = q("UPDATE `contact` SET `hub-verify` = '%s' WHERE `id` = %d LIMIT 1",
1490 dbesc($verify_token),
1491 intval($contact['id'])
1495 post_url($url,$params);
1501 function atom_author($tag,$name,$uri,$h,$w,$photo) {
1505 $name = xmlify($name);
1506 $uri = xmlify($uri);
1509 $photo = xmlify($photo);
1513 $o .= "<name>$name</name>\r\n";
1514 $o .= "<uri>$uri</uri>\r\n";
1515 $o .= '<link rel="photo" type="image/jpeg" media:width="' . $w . '" media:height="' . $h . '" href="' . $photo . '" />' . "\r\n";
1516 $o .= '<link rel="avatar" type="image/jpeg" media:width="' . $w . '" media:height="' . $h . '" href="' . $photo . '" />' . "\r\n";
1518 call_hooks('atom_author', $o);
1520 $o .= "</$tag>\r\n";
1524 function atom_entry($item,$type,$author,$owner,$comment = false) {
1528 if($item['deleted'])
1529 return '<at:deleted-entry ref="' . xmlify($item['uri']) . '" when="' . xmlify(datetime_convert('UTC','UTC',$item['edited'] . '+00:00',ATOM_TIME)) . '" />' . "\r\n";
1532 if($item['allow_cid'] || $item['allow_gid'] || $item['deny_cid'] || $item['deny_gid'])
1533 $body = fix_private_photos($item['body'],$owner['uid']);
1535 $body = $item['body'];
1538 $o = "\r\n\r\n<entry>\r\n";
1540 if(is_array($author))
1541 $o .= atom_author('author',$author['name'],$author['url'],80,80,$author['thumb']);
1543 $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']));
1544 if(strlen($item['owner-name']))
1545 $o .= atom_author('dfrn:owner',$item['owner-name'],$item['owner-link'],80,80,$item['owner-avatar']);
1547 if($item['parent'] != $item['id'])
1548 $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";
1550 $o .= '<id>' . xmlify($item['uri']) . '</id>' . "\r\n";
1551 $o .= '<title>' . xmlify($item['title']) . '</title>' . "\r\n";
1552 $o .= '<published>' . xmlify(datetime_convert('UTC','UTC',$item['created'] . '+00:00',ATOM_TIME)) . '</published>' . "\r\n";
1553 $o .= '<updated>' . xmlify(datetime_convert('UTC','UTC',$item['edited'] . '+00:00',ATOM_TIME)) . '</updated>' . "\r\n";
1554 $o .= '<dfrn:env>' . base64url_encode($body, true) . '</dfrn:env>' . "\r\n";
1555 $o .= '<content type="' . $type . '" >' . xmlify(($type === 'html') ? bbcode($body) : $body) . '</content>' . "\r\n";
1556 $o .= '<link rel="alternate" type="text/html" href="' . xmlify($a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id']) . '" />' . "\r\n";
1558 $o .= '<dfrn:comment-allow>' . intval($item['last-child']) . '</dfrn:comment-allow>' . "\r\n";
1560 if($item['location']) {
1561 $o .= '<dfrn:location>' . xmlify($item['location']) . '</dfrn:location>' . "\r\n";
1562 $o .= '<poco:address><poco:formatted>' . xmlify($item['location']) . '</poco:formatted></poco:address>' . "\r\n";
1566 $o .= '<georss:point>' . xmlify($item['coord']) . '</georss:point>' . "\r\n";
1568 if(($item['private']) || strlen($item['allow_cid']) || strlen($item['allow_gid']) || strlen($item['deny_cid']) || strlen($item['deny_gid']))
1569 $o .= '<dfrn:private>1</dfrn:private>' . "\r\n";
1571 $verb = construct_verb($item);
1572 $o .= '<as:verb>' . xmlify($verb) . '</as:verb>' . "\r\n";
1573 $actobj = construct_activity_object($item);
1576 $actarg = construct_activity_target($item);
1580 $tags = item_getfeedtags($item);
1582 foreach($tags as $t) {
1583 $o .= '<category scheme="X-DFRN:' . xmlify($t[0]) . ':' . xmlify($t[1]) . '" term="' . xmlify($t[2]) . '" />' . "\r\n";
1587 $o .= item_getfeedattach($item);
1589 $mentioned = get_mentions($item);
1593 call_hooks('atom_entry', $o);
1595 $o .= '</entry>' . "\r\n";
1600 function fix_private_photos($s,$uid) {
1602 logger('fix_private_photos');
1604 if(preg_match("/\[img\](.+?)\[\/img\]/is",$s,$matches)) {
1605 $image = $matches[1];
1606 logger('fix_private_photos: found photo ' . $image);
1607 if(stristr($image ,$a->get_baseurl() . '/photo/')) {
1608 $i = basename($image);
1609 $i = str_replace('.jpg','',$i);
1610 $x = strpos($i,'-');
1612 $res = substr($i,$x+1);
1613 $i = substr($i,0,$x);
1614 $r = q("SELECT * FROM `photo` WHERE `resource-id` = '%s' AND `scale` = %d AND `uid` = %d",
1620 logger('replacing photo');
1621 $s = str_replace($image, 'data:image/jpg;base64,' . base64_encode($r[0]['data']), $s);
1624 logger('fix_private_photos: replaced: ' . $s, LOGGER_DATA);
1632 function item_getfeedtags($item) {
1635 $cnt = preg_match_all('|\#\[url\=(.+?)\](.+?)\[\/url\]|',$item['tag'],$matches);
1637 for($x = 0; $x < count($matches); $x ++) {
1639 $ret[] = array('#',$matches[1][$x], $matches[2][$x]);
1643 $cnt = preg_match_all('|\@\[url\=(.+?)\](.+?)\[\/url\]|',$item['tag'],$matches);
1645 for($x = 0; $x < count($matches); $x ++) {
1647 $ret[] = array('#',$matches[1][$x], $matches[2][$x]);
1653 function item_getfeedattach($item) {
1655 $arr = explode(',',$item['attach']);
1657 foreach($arr as $r) {
1659 $cnt = preg_match('|\[attach\]href=\"(.+?)\" size=\"(.+?)\" type=\"(.+?)\" title=\"(.+?)\"\[\/attach\]|',$r,$matches);
1661 $ret .= '<link rel="enclosure" href="' . xmlify($matches[1]) . '" type="' . xmlify($matches[3]) . '" ';
1662 if(intval($matches[2]))
1663 $ret .= 'size="' . intval($matches[2]) . '" ';
1664 if($matches[4] !== ' ')
1665 $ret .= 'title="' . xmlify(trim($matches[4])) . '" ';
1666 $ret .= ' />' . "\r\n";
1675 function item_expire($uid,$days) {
1677 if((! $uid) || (! $days))
1680 $r = q("SELECT * FROM `item`
1682 AND `created` < UTC_TIMESTAMP() - INTERVAL %d DAY
1692 logger('expire: # items=' . count($r) );
1694 foreach($r as $item) {
1696 // Only expire posts, not photos and photo comments
1698 if(strlen($item['resource-id']))
1701 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s' WHERE `id` = %d LIMIT 1",
1702 dbesc(datetime_convert()),
1703 dbesc(datetime_convert()),
1709 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d ",
1710 dbesc(datetime_convert()),
1711 dbesc(datetime_convert()),
1712 dbesc($item['parent-uri']),
1713 intval($item['uid'])
1718 proc_run('php',"include/notifier.php","expire","$uid");