3 require_once('include/bbcode.php');
4 require_once('include/oembed.php');
5 require_once('include/salmon.php');
6 require_once('include/crypto.php');
8 function get_feed_for(&$a, $dfrn_id, $owner_nick, $last_update, $direction = 0) {
10 // default permissions - anonymous user
12 if(! strlen($owner_nick))
15 $public_feed = (($dfrn_id) ? false : true);
19 if($public_feed && $a->argc > 2) {
20 for($x = 2; $x < $a->argc; $x++) {
21 if($a->argv[$x] == 'converse')
23 if($a->argv[$x] == 'starred')
29 $sql_extra = " AND `allow_cid` = '' AND `allow_gid` = '' AND `deny_cid` = '' AND `deny_gid` = '' ";
31 $r = q("SELECT `contact`.*, `user`.`uid` AS `user_uid`, `user`.`nickname`, `user`.`timezone`
32 FROM `contact` LEFT JOIN `user` ON `user`.`uid` = `contact`.`uid`
33 WHERE `contact`.`self` = 1 AND `user`.`nickname` = '%s' LIMIT 1",
41 $owner_id = $owner['user_uid'];
42 $owner_nick = $owner['nickname'];
44 $birthday = feed_birthday($owner_id,$owner['timezone']);
51 $sql_extra = sprintf(" AND `issued-id` = '%s' ", dbesc($dfrn_id));
55 $sql_extra = sprintf(" AND `issued-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id));
56 $my_id = '1:' . $dfrn_id;
59 $sql_extra = sprintf(" AND `dfrn-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id));
60 $my_id = '0:' . $dfrn_id;
67 $r = q("SELECT * FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `contact`.`uid` = %d $sql_extra LIMIT 1",
75 $groups = init_groups_visitor($contact['id']);
78 for($x = 0; $x < count($groups); $x ++)
79 $groups[$x] = '<' . intval($groups[$x]) . '>' ;
80 $gs = implode('|', $groups);
83 $gs = '<<>>' ; // Impossible to match
85 $sql_extra = sprintf("
86 AND ( `allow_cid` = '' OR `allow_cid` REGEXP '<%d>' )
87 AND ( `deny_cid` = '' OR NOT `deny_cid` REGEXP '<%d>' )
88 AND ( `allow_gid` = '' OR `allow_gid` REGEXP '%s' )
89 AND ( `deny_gid` = '' OR NOT `deny_gid` REGEXP '%s')
91 intval($contact['id']),
92 intval($contact['id']),
103 if(! strlen($last_update))
104 $last_update = 'now -30 days';
108 $sql_extra .= " AND `contact`.`self` = 1 ";
111 $check_date = datetime_convert('UTC','UTC',$last_update,'Y-m-d H:i:s');
113 $r = q("SELECT `item`.*, `item`.`id` AS `item_id`,
114 `contact`.`name`, `contact`.`photo`, `contact`.`url`,
115 `contact`.`name-date`, `contact`.`uri-date`, `contact`.`avatar-date`,
116 `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`,
117 `contact`.`id` AS `contact-id`, `contact`.`uid` AS `contact-uid`,
118 `sign`.`signed_text`, `sign`.`signature`, `sign`.`signer`
119 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
120 LEFT JOIN `sign` ON `sign`.`iid` = `item`.`id`
121 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`parent` != 0
122 AND `item`.`wall` = 1 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
123 AND ( `item`.`edited` > '%s' OR `item`.`changed` > '%s' )
125 ORDER BY `parent` %s, `created` ASC LIMIT 0, 300",
132 // Will check further below if this actually returned results.
133 // We will provide an empty feed if that is the case.
137 $feed_template = get_markup_template(($dfrn_id) ? 'atom_feed_dfrn.tpl' : 'atom_feed.tpl');
141 $hubxml = feed_hublinks();
143 $salmon = feed_salmonlinks($owner_nick);
145 $atom .= replace_macros($feed_template, array(
146 '$version' => xmlify(FRIENDIKA_VERSION),
147 '$feed_id' => xmlify($a->get_baseurl() . '/profile/' . $owner_nick),
148 '$feed_title' => xmlify($owner['name']),
149 '$feed_updated' => xmlify(datetime_convert('UTC', 'UTC', 'now' , ATOM_TIME)) ,
151 '$salmon' => $salmon,
152 '$name' => xmlify($owner['name']),
153 '$profile_page' => xmlify($owner['url']),
154 '$photo' => xmlify($owner['photo']),
155 '$thumb' => xmlify($owner['thumb']),
156 '$picdate' => xmlify(datetime_convert('UTC','UTC',$owner['avatar-date'] . '+00:00' , ATOM_TIME)) ,
157 '$uridate' => xmlify(datetime_convert('UTC','UTC',$owner['uri-date'] . '+00:00' , ATOM_TIME)) ,
158 '$namdate' => xmlify(datetime_convert('UTC','UTC',$owner['name-date'] . '+00:00' , ATOM_TIME)) ,
159 '$birthday' => ((strlen($birthday)) ? '<dfrn:birthday>' . xmlify($birthday) . '</dfrn:birthday>' : '')
162 call_hooks('atom_feed', $atom);
164 if(! count($items)) {
166 call_hooks('atom_feed_end', $atom);
168 $atom .= '</feed>' . "\r\n";
172 foreach($items as $item) {
174 // public feeds get html, our own nodes use bbcode
178 // catch any email that's in a public conversation and make sure it doesn't leak
186 $atom .= atom_entry($item,$type,null,$owner,true);
189 call_hooks('atom_feed_end', $atom);
191 $atom .= '</feed>' . "\r\n";
197 function construct_verb($item) {
199 return $item['verb'];
200 return ACTIVITY_POST;
203 function construct_activity_object($item) {
205 if($item['object']) {
206 $o = '<as:object>' . "\r\n";
207 $r = parse_xml_string($item['object'],false);
213 $o .= '<as:object-type>' . xmlify($r->type) . '</as:object-type>' . "\r\n";
215 $o .= '<id>' . xmlify($r->id) . '</id>' . "\r\n";
217 $o .= '<title>' . xmlify($r->title) . '</title>' . "\r\n";
219 if(substr($r->link,0,1) === '<') {
220 // patch up some facebook "like" activity objects that got stored incorrectly
221 // for a couple of months prior to 9-Jun-2011 and generated bad XML.
222 // we can probably remove this hack here and in the following function in a few months time.
223 if(strstr($r->link,'&') && (! strstr($r->link,'&')))
224 $r->link = str_replace('&','&', $r->link);
225 $r->link = preg_replace('/\<link(.*?)\"\>/','<link$1"/>',$r->link);
229 $o .= '<link rel="alternate" type="text/html" href="' . xmlify($r->link) . '" />' . "\r\n";
232 $o .= '<content type="html" >' . xmlify(bbcode($r->content)) . '</content>' . "\r\n";
233 $o .= '</as:object>' . "\r\n";
240 function construct_activity_target($item) {
242 if($item['target']) {
243 $o = '<as:target>' . "\r\n";
244 $r = parse_xml_string($item['target'],false);
248 $o .= '<as:object-type>' . xmlify($r->type) . '</as:object-type>' . "\r\n";
250 $o .= '<id>' . xmlify($r->id) . '</id>' . "\r\n";
252 $o .= '<title>' . xmlify($r->title) . '</title>' . "\r\n";
254 if(substr($r->link,0,1) === '<') {
255 if(strstr($r->link,'&') && (! strstr($r->link,'&')))
256 $r->link = str_replace('&','&', $r->link);
257 $r->link = preg_replace('/\<link(.*?)\"\>/','<link$1"/>',$r->link);
261 $o .= '<link rel="alternate" type="text/html" href="' . xmlify($r->link) . '" />' . "\r\n";
264 $o .= '<content type="html" >' . xmlify(bbcode($r->content)) . '</content>' . "\r\n";
265 $o .= '</as:target>' . "\r\n";
275 function get_atom_elements($feed,$item) {
277 require_once('library/HTMLPurifier.auto.php');
278 require_once('include/html2bbcode.php');
280 $best_photo = array();
284 $author = $item->get_author();
286 $res['author-name'] = unxmlify($author->get_name());
287 $res['author-link'] = unxmlify($author->get_link());
290 $res['author-name'] = unxmlify($feed->get_title());
291 $res['author-link'] = unxmlify($feed->get_permalink());
293 $res['uri'] = unxmlify($item->get_id());
294 $res['title'] = unxmlify($item->get_title());
295 $res['body'] = unxmlify($item->get_content());
296 $res['plink'] = unxmlify($item->get_link(0));
298 // look for a photo. We should check media size and find the best one,
299 // but for now let's just find any author photo
301 $rawauthor = $item->get_item_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'author');
303 if($rawauthor && $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) {
304 $base = $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
305 foreach($base as $link) {
306 if(! $res['author-avatar']) {
307 if($link['attribs']['']['rel'] === 'photo' || $link['attribs']['']['rel'] === 'avatar')
308 $res['author-avatar'] = unxmlify($link['attribs']['']['href']);
313 $rawactor = $item->get_item_tags(NAMESPACE_ACTIVITY, 'actor');
315 if($rawactor && activity_match($rawactor[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'],ACTIVITY_OBJ_PERSON)) {
316 $base = $rawactor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
317 if($base && count($base)) {
318 foreach($base as $link) {
319 if($link['attribs']['']['rel'] === 'alternate' && (! $res['author-link']))
320 $res['author-link'] = unxmlify($link['attribs']['']['href']);
321 if(! $res['author-avatar']) {
322 if($link['attribs']['']['rel'] === 'avatar' || $link['attribs']['']['rel'] === 'photo')
323 $res['author-avatar'] = unxmlify($link['attribs']['']['href']);
329 // No photo/profile-link on the item - look at the feed level
331 if((! (x($res,'author-link'))) || (! (x($res,'author-avatar')))) {
332 $rawauthor = $feed->get_feed_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'author');
333 if($rawauthor && $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) {
334 $base = $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
335 foreach($base as $link) {
336 if($link['attribs']['']['rel'] === 'alternate' && (! $res['author-link']))
337 $res['author-link'] = unxmlify($link['attribs']['']['href']);
338 if(! $res['author-avatar']) {
339 if($link['attribs']['']['rel'] === 'photo' || $link['attribs']['']['rel'] === 'avatar')
340 $res['author-avatar'] = unxmlify($link['attribs']['']['href']);
345 $rawactor = $feed->get_feed_tags(NAMESPACE_ACTIVITY, 'subject');
347 if($rawactor && activity_match($rawactor[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'],ACTIVITY_OBJ_PERSON)) {
348 $base = $rawactor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
350 if($base && count($base)) {
351 foreach($base as $link) {
352 if($link['attribs']['']['rel'] === 'alternate' && (! $res['author-link']))
353 $res['author-link'] = unxmlify($link['attribs']['']['href']);
354 if(! (x($res,'author-avatar'))) {
355 if($link['attribs']['']['rel'] === 'avatar' || $link['attribs']['']['rel'] === 'photo')
356 $res['author-avatar'] = unxmlify($link['attribs']['']['href']);
363 $apps = $item->get_item_tags(NAMESPACE_STATUSNET,'notice_info');
364 if($apps && $apps[0]['attribs']['']['source']) {
365 $res['app'] = strip_tags(unxmlify($apps[0]['attribs']['']['source']));
366 if($res['app'] === 'web')
367 $res['app'] = 'OStatus';
370 // base64 encoded json structure representing Diaspora signature
372 $dsig = $item->get_item_tags(NAMESPACE_DFRN,'diaspora_signature');
374 $res['dsprsig'] = unxmlify($dsig[0]['data']);
377 $dguid = $item->get_item_tags(NAMESPACE_DFRN,'diaspora_guid');
379 $res['guid'] = unxmlify($dguid[0]['data']);
381 $bm = $item->get_item_tags(NAMESPACE_DFRN,'bookmark');
383 $res['bookmark'] = ((unxmlify($bm[0]['data']) === 'true') ? 1 : 0);
387 * If there's a copy of the body content which is guaranteed to have survived mangling in transit, use it.
390 $have_real_body = false;
392 $rawenv = $item->get_item_tags(NAMESPACE_DFRN, 'env');
394 $have_real_body = true;
395 $res['body'] = $rawenv[0]['data'];
396 $res['body'] = str_replace(array(' ',"\t","\r","\n"), array('','','',''),$res['body']);
397 // make sure nobody is trying to sneak some html tags by us
398 $res['body'] = notags(base64url_decode($res['body']));
401 $maxlen = get_max_import_size();
402 if($maxlen && (strlen($res['body']) > $maxlen))
403 $res['body'] = substr($res['body'],0, $maxlen);
405 // It isn't certain at this point whether our content is plaintext or html and we'd be foolish to trust
406 // the content type. Our own network only emits text normally, though it might have been converted to
407 // html if we used a pubsubhubbub transport. But if we see even one html tag in our text, we will
408 // have to assume it is all html and needs to be purified.
410 // It doesn't matter all that much security wise - because before this content is used anywhere, we are
411 // going to escape any tags we find regardless, but this lets us import a limited subset of html from
412 // the wild, by sanitising it and converting supported tags to bbcode before we rip out any remaining
415 if((strpos($res['body'],'<') !== false) || (strpos($res['body'],'>') !== false)) {
417 $res['body'] = html2bb_video($res['body']);
419 $res['body'] = oembed_html2bbcode($res['body']);
421 $config = HTMLPurifier_Config::createDefault();
422 $config->set('Cache.DefinitionImpl', null);
424 // we shouldn't need a whitelist, because the bbcode converter
425 // will strip out any unsupported tags.
426 // $config->set('HTML.Allowed', 'p,b,a[href],i');
428 $purifier = new HTMLPurifier($config);
429 $res['body'] = $purifier->purify($res['body']);
431 $res['body'] = html2bbcode($res['body']);
434 $allow = $item->get_item_tags(NAMESPACE_DFRN,'comment-allow');
435 if($allow && $allow[0]['data'] == 1)
436 $res['last-child'] = 1;
438 $res['last-child'] = 0;
440 $private = $item->get_item_tags(NAMESPACE_DFRN,'private');
441 if($private && $private[0]['data'] == 1)
446 $extid = $item->get_item_tags(NAMESPACE_DFRN,'extid');
447 if($extid && $extid[0]['data'])
448 $res['extid'] = $extid[0]['data'];
450 $rawlocation = $item->get_item_tags(NAMESPACE_DFRN, 'location');
452 $res['location'] = unxmlify($rawlocation[0]['data']);
455 $rawcreated = $item->get_item_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'published');
457 $res['created'] = unxmlify($rawcreated[0]['data']);
460 $rawedited = $item->get_item_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'updated');
462 $res['edited'] = unxmlify($rawedited[0]['data']);
464 if((x($res,'edited')) && (! (x($res,'created'))))
465 $res['created'] = $res['edited'];
467 if(! $res['created'])
468 $res['created'] = $item->get_date('c');
471 $res['edited'] = $item->get_date('c');
474 // Disallow time travelling posts
476 $d1 = strtotime($res['created']);
477 $d2 = strtotime($res['edited']);
478 $d3 = strtotime('now');
481 $res['created'] = datetime_convert();
483 $res['edited'] = datetime_convert();
485 $rawowner = $item->get_item_tags(NAMESPACE_DFRN, 'owner');
486 if($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['name'][0]['data'])
487 $res['owner-name'] = unxmlify($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['name'][0]['data']);
488 elseif($rawowner[0]['child'][NAMESPACE_DFRN]['name'][0]['data'])
489 $res['owner-name'] = unxmlify($rawowner[0]['child'][NAMESPACE_DFRN]['name'][0]['data']);
490 if($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]['data'])
491 $res['owner-link'] = unxmlify($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]['data']);
492 elseif($rawowner[0]['child'][NAMESPACE_DFRN]['uri'][0]['data'])
493 $res['owner-link'] = unxmlify($rawowner[0]['child'][NAMESPACE_DFRN]['uri'][0]['data']);
495 if($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) {
496 $base = $rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
498 foreach($base as $link) {
499 if(! $res['owner-avatar']) {
500 if($link['attribs']['']['rel'] === 'photo' || $link['attribs']['']['rel'] === 'avatar')
501 $res['owner-avatar'] = unxmlify($link['attribs']['']['href']);
506 $rawgeo = $item->get_item_tags(NAMESPACE_GEORSS,'point');
508 $res['coord'] = unxmlify($rawgeo[0]['data']);
511 $rawverb = $item->get_item_tags(NAMESPACE_ACTIVITY, 'verb');
513 // select between supported verbs
516 $res['verb'] = unxmlify($rawverb[0]['data']);
519 // translate OStatus unfollow to activity streams if it happened to get selected
521 if((x($res,'verb')) && ($res['verb'] === 'http://ostatus.org/schema/1.0/unfollow'))
522 $res['verb'] = ACTIVITY_UNFOLLOW;
524 $cats = $item->get_categories();
527 foreach($cats as $cat) {
528 $term = $cat->get_term();
530 $term = $cat->get_label();
531 $scheme = $cat->get_scheme();
532 if($scheme && $term && stristr($scheme,'X-DFRN:'))
533 $tag_arr[] = substr($scheme,7,1) . '[url=' . unxmlify(substr($scheme,9)) . ']' . unxmlify($term) . '[/url]';
535 $tag_arr[] = notags(trim($term));
537 $res['tag'] = implode(',', $tag_arr);
540 $attach = $item->get_enclosures();
543 foreach($attach as $att) {
544 $len = intval($att->get_length());
545 $link = str_replace(array(',','"'),array('%2D','%22'),notags(trim(unxmlify($att->get_link()))));
546 $title = str_replace(array(',','"'),array('%2D','%22'),notags(trim(unxmlify($att->get_title()))));
547 $type = str_replace(array(',','"'),array('%2D','%22'),notags(trim(unxmlify($att->get_type()))));
548 if(strpos($type,';'))
549 $type = substr($type,0,strpos($type,';'));
550 if((! $link) || (strpos($link,'http') !== 0))
556 $type = 'application/octet-stream';
558 $att_arr[] = '[attach]href="' . $link . '" length="' . $len . '" type="' . $type . '" title="' . $title . '"[/attach]';
560 $res['attach'] = implode(',', $att_arr);
563 $rawobj = $item->get_item_tags(NAMESPACE_ACTIVITY, 'object');
566 $res['object'] = '<object>' . "\n";
567 if($rawobj[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data']) {
568 $res['object-type'] = $rawobj[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'];
569 $res['object'] .= '<type>' . $rawobj[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'] . '</type>' . "\n";
571 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'])
572 $res['object'] .= '<id>' . $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'] . '</id>' . "\n";
573 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'])
574 $res['object'] .= '<link>' . encode_rel_links($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) . '</link>' . "\n";
575 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'])
576 $res['object'] .= '<title>' . $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'] . '</title>' . "\n";
577 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data']) {
578 $body = $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data'];
580 $body = $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['summary'][0]['data'];
581 // preserve a copy of the original body content in case we later need to parse out any microformat information, e.g. events
582 $res['object'] .= '<orig>' . xmlify($body) . '</orig>' . "\n";
583 if((strpos($body,'<') !== false) || (strpos($body,'>') !== false)) {
585 $body = html2bb_video($body);
587 $config = HTMLPurifier_Config::createDefault();
588 $config->set('Cache.DefinitionImpl', null);
590 $purifier = new HTMLPurifier($config);
591 $body = $purifier->purify($body);
592 $body = html2bbcode($body);
595 $res['object'] .= '<content>' . $body . '</content>' . "\n";
598 $res['object'] .= '</object>' . "\n";
601 $rawobj = $item->get_item_tags(NAMESPACE_ACTIVITY, 'target');
604 $res['target'] = '<target>' . "\n";
605 if($rawobj[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data']) {
606 $res['target'] .= '<type>' . $rawobj[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'] . '</type>' . "\n";
608 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'])
609 $res['target'] .= '<id>' . $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'] . '</id>' . "\n";
611 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'])
612 $res['target'] .= '<link>' . encode_rel_links($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) . '</link>' . "\n";
613 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'])
614 $res['target'] .= '<title>' . $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'] . '</title>' . "\n";
615 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data']) {
616 $body = $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data'];
618 $body = $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['summary'][0]['data'];
619 // preserve a copy of the original body content in case we later need to parse out any microformat information, e.g. events
620 $res['target'] .= '<orig>' . xmlify($body) . '</orig>' . "\n";
621 if((strpos($body,'<') !== false) || (strpos($body,'>') !== false)) {
623 $body = html2bb_video($body);
625 $config = HTMLPurifier_Config::createDefault();
626 $config->set('Cache.DefinitionImpl', null);
628 $purifier = new HTMLPurifier($config);
629 $body = $purifier->purify($body);
630 $body = html2bbcode($body);
633 $res['target'] .= '<content>' . $body . '</content>' . "\n";
636 $res['target'] .= '</target>' . "\n";
639 $arr = array('feed' => $feed, 'item' => $item, 'result' => $res);
641 call_hooks('parse_atom', $arr);
646 function encode_rel_links($links) {
648 if(! ((is_array($links)) && (count($links))))
650 foreach($links as $link) {
652 if($link['attribs']['']['rel'])
653 $o .= 'rel="' . $link['attribs']['']['rel'] . '" ';
654 if($link['attribs']['']['type'])
655 $o .= 'type="' . $link['attribs']['']['type'] . '" ';
656 if($link['attribs']['']['href'])
657 $o .= 'href="' . $link['attribs']['']['href'] . '" ';
658 if( (x($link['attribs'],NAMESPACE_MEDIA)) && $link['attribs'][NAMESPACE_MEDIA]['width'])
659 $o .= 'media:width="' . $link['attribs'][NAMESPACE_MEDIA]['width'] . '" ';
660 if( (x($link['attribs'],NAMESPACE_MEDIA)) && $link['attribs'][NAMESPACE_MEDIA]['height'])
661 $o .= 'media:height="' . $link['attribs'][NAMESPACE_MEDIA]['height'] . '" ';
667 function item_store($arr,$force_parent = false) {
669 // If a Diaspora signature structure was passed in, pull it out of the
670 // item array and set it aside for later storage.
673 if(x($arr,'dsprsig')) {
674 $dsprsig = json_decode(base64_decode($arr['dsprsig']));
675 unset($arr['dsprsig']);
679 $arr['gravity'] = intval($arr['gravity']);
680 elseif($arr['parent-uri'] === $arr['uri'])
682 elseif(activity_match($arr['verb'],ACTIVITY_POST))
685 $arr['gravity'] = 6; // extensible catchall
688 $arr['type'] = 'remote';
690 // Shouldn't happen but we want to make absolutely sure it doesn't leak from a plugin.
692 if((strpos($arr['body'],'<') !== false) || (strpos($arr['body'],'>') !== false))
693 $arr['body'] = strip_tags($arr['body']);
696 $arr['wall'] = ((x($arr,'wall')) ? intval($arr['wall']) : 0);
697 $arr['uri'] = ((x($arr,'uri')) ? notags(trim($arr['uri'])) : random_string());
698 $arr['extid'] = ((x($arr,'extid')) ? notags(trim($arr['extid'])) : '');
699 $arr['author-name'] = ((x($arr,'author-name')) ? notags(trim($arr['author-name'])) : '');
700 $arr['author-link'] = ((x($arr,'author-link')) ? notags(trim($arr['author-link'])) : '');
701 $arr['author-avatar'] = ((x($arr,'author-avatar')) ? notags(trim($arr['author-avatar'])) : '');
702 $arr['owner-name'] = ((x($arr,'owner-name')) ? notags(trim($arr['owner-name'])) : '');
703 $arr['owner-link'] = ((x($arr,'owner-link')) ? notags(trim($arr['owner-link'])) : '');
704 $arr['owner-avatar'] = ((x($arr,'owner-avatar')) ? notags(trim($arr['owner-avatar'])) : '');
705 $arr['created'] = ((x($arr,'created') !== false) ? datetime_convert('UTC','UTC',$arr['created']) : datetime_convert());
706 $arr['edited'] = ((x($arr,'edited') !== false) ? datetime_convert('UTC','UTC',$arr['edited']) : datetime_convert());
707 $arr['commented'] = datetime_convert();
708 $arr['received'] = datetime_convert();
709 $arr['changed'] = datetime_convert();
710 $arr['title'] = ((x($arr,'title')) ? notags(trim($arr['title'])) : '');
711 $arr['location'] = ((x($arr,'location')) ? notags(trim($arr['location'])) : '');
712 $arr['coord'] = ((x($arr,'coord')) ? notags(trim($arr['coord'])) : '');
713 $arr['last-child'] = ((x($arr,'last-child')) ? intval($arr['last-child']) : 0 );
714 $arr['visible'] = ((x($arr,'visible') !== false) ? intval($arr['visible']) : 1 );
716 $arr['parent-uri'] = ((x($arr,'parent-uri')) ? notags(trim($arr['parent-uri'])) : '');
717 $arr['verb'] = ((x($arr,'verb')) ? notags(trim($arr['verb'])) : '');
718 $arr['object-type'] = ((x($arr,'object-type')) ? notags(trim($arr['object-type'])) : '');
719 $arr['object'] = ((x($arr,'object')) ? trim($arr['object']) : '');
720 $arr['target-type'] = ((x($arr,'target-type')) ? notags(trim($arr['target-type'])) : '');
721 $arr['target'] = ((x($arr,'target')) ? trim($arr['target']) : '');
722 $arr['plink'] = ((x($arr,'plink')) ? notags(trim($arr['plink'])) : '');
723 $arr['allow_cid'] = ((x($arr,'allow_cid')) ? trim($arr['allow_cid']) : '');
724 $arr['allow_gid'] = ((x($arr,'allow_gid')) ? trim($arr['allow_gid']) : '');
725 $arr['deny_cid'] = ((x($arr,'deny_cid')) ? trim($arr['deny_cid']) : '');
726 $arr['deny_gid'] = ((x($arr,'deny_gid')) ? trim($arr['deny_gid']) : '');
727 $arr['private'] = ((x($arr,'private')) ? intval($arr['private']) : 0 );
728 $arr['bookmark'] = ((x($arr,'bookmark')) ? intval($arr['bookmark']) : 0 );
729 $arr['body'] = ((x($arr,'body')) ? trim($arr['body']) : '');
730 $arr['tag'] = ((x($arr,'tag')) ? notags(trim($arr['tag'])) : '');
731 $arr['attach'] = ((x($arr,'attach')) ? notags(trim($arr['attach'])) : '');
732 $arr['app'] = ((x($arr,'app')) ? notags(trim($arr['app'])) : '');
733 $arr['origin'] = ((x($arr,'origin')) ? intval($arr['origin']) : 0 );
734 $arr['guid'] = ((x($arr,'guid')) ? notags(trim($arr['guid'])) : get_guid());
736 if($arr['parent-uri'] === $arr['uri']) {
738 $allow_cid = $arr['allow_cid'];
739 $allow_gid = $arr['allow_gid'];
740 $deny_cid = $arr['deny_cid'];
741 $deny_gid = $arr['deny_gid'];
745 // find the parent and snarf the item id and ACL's
746 // and anything else we need to inherit
748 $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d ORDER BY `id` ASC LIMIT 1",
749 dbesc($arr['parent-uri']),
755 // is the new message multi-level threaded?
756 // even though we don't support it now, preserve the info
757 // and re-attach to the conversation parent.
759 if($r[0]['uri'] != $r[0]['parent-uri']) {
760 $arr['thr-parent'] = $arr['parent-uri'];
761 $arr['parent-uri'] = $r[0]['parent-uri'];
762 $z = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `parent-uri` = '%s' AND `uid` = %d
763 ORDER BY `id` ASC LIMIT 1",
764 dbesc($r[0]['parent-uri']),
765 dbesc($r[0]['parent-uri']),
772 $parent_id = $r[0]['id'];
773 $parent_deleted = $r[0]['deleted'];
774 $allow_cid = $r[0]['allow_cid'];
775 $allow_gid = $r[0]['allow_gid'];
776 $deny_cid = $r[0]['deny_cid'];
777 $deny_gid = $r[0]['deny_gid'];
778 $arr['wall'] = $r[0]['wall'];
782 // Allow one to see reply tweets from status.net even when
783 // we don't have or can't see the original post.
786 logger('item_store: $force_parent=true, reply converted to top-level post.');
788 $arr['thr-parent'] = $arr['parent-uri'];
789 $arr['parent-uri'] = $arr['uri'];
793 logger('item_store: item parent was not found - ignoring item');
799 $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
803 if($r && count($r)) {
804 logger('item-store: duplicate item ignored. ' . print_r($arr,true));
808 call_hooks('post_remote',$arr);
812 logger('item_store: ' . print_r($arr,true), LOGGER_DATA);
814 $r = dbq("INSERT INTO `item` (`"
815 . implode("`, `", array_keys($arr))
817 . implode("', '", array_values($arr))
820 // find the item we just created
822 $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = %d ORDER BY `id` ASC ",
823 $arr['uri'], // already dbesc'd
828 $current_post = $r[0]['id'];
829 logger('item_store: created item ' . $current_post);
832 logger('item_store: could not locate created item');
836 logger('item_store: duplicated post occurred. Removing duplicates.');
837 q("DELETE FROM `item` WHERE `uri` = '%s' AND `uid` = %d AND `id` != %d ",
840 intval($current_post)
844 if((! $parent_id) || ($arr['parent-uri'] === $arr['uri']))
845 $parent_id = $current_post;
847 if(strlen($allow_cid) || strlen($allow_gid) || strlen($deny_cid) || strlen($deny_gid))
850 $private = $arr['private'];
852 // Set parent id - and also make sure to inherit the parent's ACL's.
854 $r = q("UPDATE `item` SET `parent` = %d, `allow_cid` = '%s', `allow_gid` = '%s',
855 `deny_cid` = '%s', `deny_gid` = '%s', `private` = %d, `deleted` = %d WHERE `id` = %d LIMIT 1",
862 intval($parent_deleted),
863 intval($current_post)
866 // update the commented timestamp on the parent
868 q("UPDATE `item` set `commented` = '%s', `changed` = '%s' WHERE `id` = %d LIMIT 1",
869 dbesc(datetime_convert()),
870 dbesc(datetime_convert()),
875 q("insert into sign (`iid`,`signed_text`,`signature`,`signer`) values (%d,'%s','%s','%s') ",
876 intval($current_post),
877 dbesc($dsprsig->signed_text),
878 dbesc($dsprsig->signature),
879 dbesc($dsprsig->signer)
885 * If this is now the last-child, force all _other_ children of this parent to *not* be last-child
888 if($arr['last-child']) {
889 $r = q("UPDATE `item` SET `last-child` = 0 WHERE `parent-uri` = '%s' AND `uid` = %d AND `id` != %d",
892 intval($current_post)
896 return $current_post;
899 function get_item_contact($item,$contacts) {
900 if(! count($contacts) || (! is_array($item)))
902 foreach($contacts as $contact) {
903 if($contact['id'] == $item['contact-id']) {
912 function dfrn_deliver($owner,$contact,$atom, $dissolve = false) {
916 if((! strlen($contact['issued-id'])) && (! $contact['duplex']) && (! ($owner['page-flags'] == PAGE_COMMUNITY)))
919 $idtosend = $orig_id = (($contact['dfrn-id']) ? $contact['dfrn-id'] : $contact['issued-id']);
921 if($contact['duplex'] && $contact['dfrn-id'])
922 $idtosend = '0:' . $orig_id;
923 if($contact['duplex'] && $contact['issued-id'])
924 $idtosend = '1:' . $orig_id;
926 $rino = ((function_exists('mcrypt_encrypt')) ? 1 : 0);
928 $rino_enable = get_config('system','rino_encrypt');
933 $url = $contact['notify'] . '&dfrn_id=' . $idtosend . '&dfrn_version=' . DFRN_PROTOCOL_VERSION . (($rino) ? '&rino=1' : '');
935 logger('dfrn_deliver: ' . $url);
937 $xml = fetch_url($url);
939 $curl_stat = $a->get_curl_code();
941 return(-1); // timed out
943 logger('dfrn_deliver: ' . $xml, LOGGER_DATA);
948 if(strpos($xml,'<?xml') === false) {
949 logger('dfrn_deliver: no valid XML returned');
950 logger('dfrn_deliver: returned XML: ' . $xml, LOGGER_DATA);
954 $res = parse_xml_string($xml);
956 if((intval($res->status) != 0) || (! strlen($res->challenge)) || (! strlen($res->dfrn_id)))
957 return (($res->status) ? $res->status : 3);
960 $sent_dfrn_id = hex2bin((string) $res->dfrn_id);
961 $challenge = hex2bin((string) $res->challenge);
962 $dfrn_version = (float) (($res->dfrn_version) ? $res->dfrn_version : 2.0);
963 $rino_allowed = ((intval($res->rino) === 1) ? 1 : 0);
968 if(($contact['duplex'] && strlen($contact['pubkey'])) || ($owner['page-flags'] == PAGE_COMMUNITY)) {
969 openssl_public_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['pubkey']);
970 openssl_public_decrypt($challenge,$postvars['challenge'],$contact['pubkey']);
973 openssl_private_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['prvkey']);
974 openssl_private_decrypt($challenge,$postvars['challenge'],$contact['prvkey']);
977 $final_dfrn_id = substr($final_dfrn_id, 0, strpos($final_dfrn_id, '.'));
979 if(strpos($final_dfrn_id,':') == 1)
980 $final_dfrn_id = substr($final_dfrn_id,2);
982 if($final_dfrn_id != $orig_id) {
983 logger('dfrn_deliver: wrong dfrn_id.');
984 // did not decode properly - cannot trust this site
988 $postvars['dfrn_id'] = $idtosend;
989 $postvars['dfrn_version'] = DFRN_PROTOCOL_VERSION;
991 $postvars['dissolve'] = '1';
994 if((($contact['rel']) && ($contact['rel'] != CONTACT_IS_SHARING) && (! $contact['blocked'])) || ($owner['page-flags'] == PAGE_COMMUNITY)) {
995 $postvars['data'] = $atom;
996 $postvars['perm'] = 'rw';
999 $postvars['data'] = str_replace('<dfrn:comment-allow>1','<dfrn:comment-allow>0',$atom);
1000 $postvars['perm'] = 'r';
1003 if($rino && $rino_allowed && (! $dissolve)) {
1004 $key = substr(random_string(),0,16);
1005 $data = bin2hex(aes_encrypt($postvars['data'],$key));
1006 $postvars['data'] = $data;
1007 logger('rino: sent key = ' . $key, LOGGER_DEBUG);
1010 if($dfrn_version >= 2.1) {
1011 if(($contact['duplex'] && strlen($contact['pubkey'])) || ($owner['page-flags'] == PAGE_COMMUNITY)) {
1012 openssl_public_encrypt($key,$postvars['key'],$contact['pubkey']);
1015 openssl_private_encrypt($key,$postvars['key'],$contact['prvkey']);
1019 if(($contact['duplex'] && strlen($contact['prvkey'])) || ($owner['page-flags'] == PAGE_COMMUNITY)) {
1020 openssl_private_encrypt($key,$postvars['key'],$contact['prvkey']);
1023 openssl_public_encrypt($key,$postvars['key'],$contact['pubkey']);
1027 logger('md5 rawkey ' . md5($postvars['key']));
1029 $postvars['key'] = bin2hex($postvars['key']);
1032 logger('dfrn_deliver: ' . "SENDING: " . print_r($postvars,true), LOGGER_DATA);
1034 $xml = post_url($contact['notify'],$postvars);
1036 logger('dfrn_deliver: ' . "RECEIVED: " . $xml, LOGGER_DATA);
1038 $curl_stat = $a->get_curl_code();
1039 if((! $curl_stat) || (! strlen($xml)))
1040 return(-1); // timed out
1042 if(($curl_stat == 503) && (stristr($a->get_curl_headers(),'retry-after')))
1045 if(strpos($xml,'<?xml') === false) {
1046 logger('dfrn_deliver: phase 2: no valid XML returned');
1047 logger('dfrn_deliver: phase 2: returned XML: ' . $xml, LOGGER_DATA);
1051 $res = parse_xml_string($xml);
1053 return $res->status;
1059 * consume_feed - process atom feed and update anything/everything we might need to update
1061 * $xml = the (atom) feed to consume - RSS isn't as fully supported but may work for simple feeds.
1063 * $importer = the contact_record (joined to user_record) of the local user who owns this relationship.
1064 * It is this person's stuff that is going to be updated.
1065 * $contact = the person who is sending us stuff. If not set, we MAY be processing a "follow" activity
1066 * from an external network and MAY create an appropriate contact record. Otherwise, we MUST
1067 * have a contact record.
1068 * $hub = should we find a hub declation in the feed, pass it back to our calling process, who might (or
1069 * might not) try and subscribe to it.
1070 * $datedir sorts in reverse order
1071 * $pass - by default ($pass = 0) we cannot guarantee that a parent item has been
1072 * imported prior to its children being seen in the stream unless we are certain
1073 * of how the feed is arranged/ordered.
1074 * With $pass = 1, we only pull parent items out of the stream.
1075 * With $pass = 2, we only pull children (comments/likes).
1077 * So running this twice, first with pass 1 and then with pass 2 will do the right
1078 * thing regardless of feed ordering. This won't be adequate in a fully-threaded
1079 * model where comments can have sub-threads. That would require some massive sorting
1080 * to get all the feed items into a mostly linear ordering, and might still require
1084 function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0) {
1086 require_once('library/simplepie/simplepie.inc');
1088 if(! strlen($xml)) {
1089 logger('consume_feed: empty input');
1093 $feed = new SimplePie();
1094 $feed->set_raw_data($xml);
1096 $feed->enable_order_by_date(true);
1098 $feed->enable_order_by_date(false);
1102 logger('consume_feed: Error parsing XML: ' . $feed->error());
1104 $permalink = $feed->get_permalink();
1106 // Check at the feed level for updated contact name and/or photo
1110 $photo_timestamp = '';
1114 $hubs = $feed->get_links('hub');
1117 $hub = implode(',', $hubs);
1119 $rawtags = $feed->get_feed_tags( NAMESPACE_DFRN, 'owner');
1121 $rawtags = $feed->get_feed_tags( SIMPLEPIE_NAMESPACE_ATOM_10, 'author');
1123 $elems = $rawtags[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10];
1124 if($elems['name'][0]['attribs'][NAMESPACE_DFRN]['updated']) {
1125 $name_updated = $elems['name'][0]['attribs'][NAMESPACE_DFRN]['updated'];
1126 $new_name = $elems['name'][0]['data'];
1128 if((x($elems,'link')) && ($elems['link'][0]['attribs']['']['rel'] === 'photo') && ($elems['link'][0]['attribs'][NAMESPACE_DFRN]['updated'])) {
1129 $photo_timestamp = datetime_convert('UTC','UTC',$elems['link'][0]['attribs'][NAMESPACE_DFRN]['updated']);
1130 $photo_url = $elems['link'][0]['attribs']['']['href'];
1133 if((x($rawtags[0]['child'], NAMESPACE_DFRN)) && (x($rawtags[0]['child'][NAMESPACE_DFRN],'birthday'))) {
1134 $birthday = datetime_convert('UTC','UTC', $rawtags[0]['child'][NAMESPACE_DFRN]['birthday'][0]['data']);
1138 if((is_array($contact)) && ($photo_timestamp) && (strlen($photo_url)) && ($photo_timestamp > $contact['avatar-date'])) {
1139 logger('consume_feed: Updating photo for ' . $contact['name']);
1140 require_once("Photo.php");
1141 $photo_failure = false;
1142 $have_photo = false;
1144 $r = q("SELECT `resource-id` FROM `photo` WHERE `contact-id` = %d AND `uid` = %d LIMIT 1",
1145 intval($contact['id']),
1146 intval($contact['uid'])
1149 $resource_id = $r[0]['resource-id'];
1153 $resource_id = photo_new_resource();
1156 $img_str = fetch_url($photo_url,true);
1157 $img = new Photo($img_str);
1158 if($img->is_valid()) {
1160 q("DELETE FROM `photo` WHERE `resource-id` = '%s' AND `contact-id` = %d AND `uid` = %d",
1161 dbesc($resource_id),
1162 intval($contact['id']),
1163 intval($contact['uid'])
1167 $img->scaleImageSquare(175);
1169 $hash = $resource_id;
1170 $r = $img->store($contact['uid'], $contact['id'], $hash, basename($photo_url), 'Contact Photos', 4);
1172 $img->scaleImage(80);
1173 $r = $img->store($contact['uid'], $contact['id'], $hash, basename($photo_url), 'Contact Photos', 5);
1175 $img->scaleImage(48);
1176 $r = $img->store($contact['uid'], $contact['id'], $hash, basename($photo_url), 'Contact Photos', 6);
1180 q("UPDATE `contact` SET `avatar-date` = '%s', `photo` = '%s', `thumb` = '%s', `micro` = '%s'
1181 WHERE `uid` = %d AND `id` = %d LIMIT 1",
1182 dbesc(datetime_convert()),
1183 dbesc($a->get_baseurl() . '/photo/' . $hash . '-4.jpg'),
1184 dbesc($a->get_baseurl() . '/photo/' . $hash . '-5.jpg'),
1185 dbesc($a->get_baseurl() . '/photo/' . $hash . '-6.jpg'),
1186 intval($contact['uid']),
1187 intval($contact['id'])
1192 if((is_array($contact)) && ($name_updated) && (strlen($new_name)) && ($name_updated > $contact['name-date'])) {
1193 q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s' WHERE `uid` = %d AND `id` = %d LIMIT 1",
1194 dbesc(notags(trim($new_name))),
1195 dbesc(datetime_convert()),
1196 intval($contact['uid']),
1197 intval($contact['id'])
1201 if(strlen($birthday)) {
1202 if(substr($birthday,0,4) != $contact['bdyear']) {
1203 logger('consume_feed: updating birthday: ' . $birthday);
1207 * Add new birthday event for this person
1209 * $bdtext is just a readable placeholder in case the event is shared
1210 * with others. We will replace it during presentation to our $importer
1211 * to contain a sparkle link and perhaps a photo.
1215 $bdtext = t('Birthday:') . ' [url=' . $contact['url'] . ']' . $contact['name'] . '[/url]' ;
1218 $r = q("INSERT INTO `event` (`uid`,`cid`,`created`,`edited`,`start`,`finish`,`desc`,`type`)
1219 VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s' ) ",
1220 intval($contact['uid']),
1221 intval($contact['id']),
1222 dbesc(datetime_convert()),
1223 dbesc(datetime_convert()),
1224 dbesc(datetime_convert('UTC','UTC', $birthday)),
1225 dbesc(datetime_convert('UTC','UTC', $birthday . ' + 1 day ')),
1233 q("UPDATE `contact` SET `bdyear` = '%s' WHERE `uid` = %d AND `id` = %d LIMIT 1",
1234 dbesc(substr($birthday,0,4)),
1235 intval($contact['uid']),
1236 intval($contact['id'])
1239 // This function is called twice without reloading the contact
1240 // Make sure we only create one event. This is why &$contact
1241 // is a reference var in this function
1243 $contact['bdyear'] = substr($birthday,0,4);
1249 // process any deleted entries
1251 $del_entries = $feed->get_feed_tags(NAMESPACE_TOMB, 'deleted-entry');
1252 if(is_array($del_entries) && count($del_entries) && $pass != 2) {
1253 foreach($del_entries as $dentry) {
1255 if(isset($dentry['attribs']['']['ref'])) {
1256 $uri = $dentry['attribs']['']['ref'];
1258 if(isset($dentry['attribs']['']['when'])) {
1259 $when = $dentry['attribs']['']['when'];
1260 $when = datetime_convert('UTC','UTC', $when, 'Y-m-d H:i:s');
1263 $when = datetime_convert('UTC','UTC','now','Y-m-d H:i:s');
1265 if($deleted && is_array($contact)) {
1266 $r = q("SELECT `item`.*, `contact`.`self` FROM `item` left join `contact` on `item`.`contact-id` = `contact`.id`
1267 WHERE `uri` = '%s' AND `uid` = %d AND `contact-id` = %d LIMIT 1",
1269 intval($importer['uid']),
1270 intval($contact['id'])
1275 if(! $item['deleted'])
1276 logger('consume_feed: deleting item ' . $item['id'] . ' uri=' . $item['uri'], LOGGER_DEBUG);
1278 if(($item['verb'] === ACTIVITY_TAG) && ($item['object-type'] === ACTVITY_OBJ_TAGTERM)) {
1279 $xo = parse_xml_string($item['object'],false);
1280 $xt = parse_xml_string($item['target'],false);
1281 if($xt->type === ACTIVITY_OBJ_NOTE) {
1282 $i = q("select * from `item` where uri = '%s' and uid = %d limit 1",
1284 intval($importer['importer_uid'])
1288 // For tags, the owner cannot remove the tag on the author's copy of the post.
1290 $owner_remove = (($item['contact-id'] == $i[0]['contact-id']) ? true: false);
1291 $author_remove = (($item['origin'] && $item['self']) ? true : false);
1292 $author_copy = (($item['origin']) ? true : false);
1294 if($owner_remove && $author_copy)
1296 if($author_remove || $owner_remove) {
1297 $tags = explode(',',$i[0]['tag']);
1300 foreach($tags as $tag)
1301 if(trim($tag) !== trim($xo->body))
1302 $newtags[] = trim($tag);
1304 q("update item set tag = '%s' where id = %d limit 1",
1305 dbesc(implode(',',$newtags)),
1313 if($item['uri'] == $item['parent-uri']) {
1314 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s',
1315 `body` = '', `title` = ''
1316 WHERE `parent-uri` = '%s' AND `uid` = %d",
1318 dbesc(datetime_convert()),
1319 dbesc($item['uri']),
1320 intval($importer['uid'])
1324 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s',
1325 `body` = '', `title` = ''
1326 WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1328 dbesc(datetime_convert()),
1330 intval($importer['uid'])
1332 if($item['last-child']) {
1333 // ensure that last-child is set in case the comment that had it just got wiped.
1334 q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d ",
1335 dbesc(datetime_convert()),
1336 dbesc($item['parent-uri']),
1337 intval($item['uid'])
1339 // who is the last child now?
1340 $r = q("SELECT `id` FROM `item` WHERE `parent-uri` = '%s' AND `type` != 'activity' AND `deleted` = 0 AND `uid` = %d
1341 ORDER BY `created` DESC LIMIT 1",
1342 dbesc($item['parent-uri']),
1343 intval($importer['uid'])
1346 q("UPDATE `item` SET `last-child` = 1 WHERE `id` = %d LIMIT 1",
1357 // Now process the feed
1359 if($feed->get_item_quantity()) {
1361 logger('consume_feed: feed item count = ' . $feed->get_item_quantity());
1363 // in inverse date order
1365 $items = array_reverse($feed->get_items());
1367 $items = $feed->get_items();
1370 foreach($items as $item) {
1373 $item_id = $item->get_id();
1374 $rawthread = $item->get_item_tags( NAMESPACE_THREAD,'in-reply-to');
1375 if(isset($rawthread[0]['attribs']['']['ref'])) {
1377 $parent_uri = $rawthread[0]['attribs']['']['ref'];
1380 if(($is_reply) && is_array($contact)) {
1385 // Have we seen it? If not, import it.
1387 $item_id = $item->get_id();
1388 $datarray = get_atom_elements($feed,$item);
1390 if(! x($datarray,'author-name'))
1391 $datarray['author-name'] = $contact['name'];
1392 if(! x($datarray,'author-link'))
1393 $datarray['author-link'] = $contact['url'];
1394 if(! x($datarray,'author-avatar'))
1395 $datarray['author-avatar'] = $contact['thumb'];
1398 $r = q("SELECT `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1400 intval($importer['uid'])
1403 // Update content if 'updated' changes
1406 if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) {
1407 $r = q("UPDATE `item` SET `body` = '%s', `edited` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1408 dbesc($datarray['body']),
1409 dbesc(datetime_convert('UTC','UTC',$datarray['edited'])),
1411 intval($importer['uid'])
1415 // update last-child if it changes
1417 $allow = $item->get_item_tags( NAMESPACE_DFRN, 'comment-allow');
1418 if(($allow) && ($allow[0]['data'] != $r[0]['last-child'])) {
1419 $r = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d",
1420 dbesc(datetime_convert()),
1422 intval($importer['uid'])
1424 $r = q("UPDATE `item` SET `last-child` = %d , `changed` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1425 intval($allow[0]['data']),
1426 dbesc(datetime_convert()),
1428 intval($importer['uid'])
1434 $force_parent = false;
1435 if($contact['network'] === NETWORK_OSTATUS) {
1436 $force_parent = true;
1437 if(strlen($datarray['title']))
1438 unset($datarray['title']);
1439 $r = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d",
1440 dbesc(datetime_convert()),
1442 intval($importer['uid'])
1444 $datarray['last-child'] = 1;
1447 if(($contact['network'] === NETWORK_FEED) || (! strlen($contact['notify']))) {
1448 // one way feed - no remote comment ability
1449 $datarray['last-child'] = 0;
1451 $datarray['parent-uri'] = $parent_uri;
1452 $datarray['uid'] = $importer['uid'];
1453 $datarray['contact-id'] = $contact['id'];
1454 if((activity_match($datarray['verb'],ACTIVITY_LIKE)) || (activity_match($datarray['verb'],ACTIVITY_DISLIKE))) {
1455 $datarray['type'] = 'activity';
1456 $datarray['gravity'] = GRAVITY_LIKE;
1459 if(($datarray['verb'] === ACTIVITY_TAG) && ($datarray['object-type'] === ACTIVITY_OBJ_TAGTERM)) {
1460 $xo = parse_xml_string($datarray['object'],false);
1461 $xt = parse_xml_string($datarray['target'],false);
1463 if($xt->type == ACTIVITY_OBJ_NOTE) {
1464 $r = q("select * from item where `uri` = '%s' AND `uid` = %d limit 1",
1466 intval($importer['importer_uid'])
1471 // extract tag, if not duplicate, add to parent item
1473 if(! (stristr($r[0]['tag'],trim($xo->content)))) {
1474 q("UPDATE item SET tag = '%s' WHERE id = %d LIMIT 1",
1475 dbesc($r[0]['tag'] . (strlen($r[0]['tag']) ? ',' : '') . '#[url=' . $xo->id . ']'. $xo->content . '[/url]'),
1483 $r = item_store($datarray,$force_parent);
1489 // Head post of a conversation. Have we seen it? If not, import it.
1491 $item_id = $item->get_id();
1493 $datarray = get_atom_elements($feed,$item);
1495 if(is_array($contact)) {
1496 if(! x($datarray,'author-name'))
1497 $datarray['author-name'] = $contact['name'];
1498 if(! x($datarray,'author-link'))
1499 $datarray['author-link'] = $contact['url'];
1500 if(! x($datarray,'author-avatar'))
1501 $datarray['author-avatar'] = $contact['thumb'];
1504 // special handling for events
1506 if((x($datarray,'object-type')) && ($datarray['object-type'] === ACTIVITY_OBJ_EVENT)) {
1507 $ev = bbtoevent($datarray['body']);
1508 if(x($ev,'desc') && x($ev,'start')) {
1509 $ev['uid'] = $importer['uid'];
1510 $ev['uri'] = $item_id;
1511 $ev['edited'] = $datarray['edited'];
1512 $ev['private'] = $datarray['private'];
1514 if(is_array($contact))
1515 $ev['cid'] = $contact['id'];
1516 $r = q("SELECT * FROM `event` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1518 intval($importer['uid'])
1521 $ev['id'] = $r[0]['id'];
1522 $xyz = event_store($ev);
1527 $r = q("SELECT `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1529 intval($importer['uid'])
1532 // Update content if 'updated' changes
1535 if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) {
1536 $r = q("UPDATE `item` SET `body` = '%s', `edited` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1537 dbesc($datarray['body']),
1538 dbesc(datetime_convert('UTC','UTC',$datarray['edited'])),
1540 intval($importer['uid'])
1544 // update last-child if it changes
1546 $allow = $item->get_item_tags( NAMESPACE_DFRN, 'comment-allow');
1547 if($allow && $allow[0]['data'] != $r[0]['last-child']) {
1548 $r = q("UPDATE `item` SET `last-child` = %d , `changed` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1549 intval($allow[0]['data']),
1550 dbesc(datetime_convert()),
1552 intval($importer['uid'])
1558 if(activity_match($datarray['verb'],ACTIVITY_FOLLOW)) {
1559 logger('consume-feed: New follower');
1560 new_follower($importer,$contact,$datarray,$item);
1563 if(activity_match($datarray['verb'],ACTIVITY_UNFOLLOW)) {
1564 lose_follower($importer,$contact,$datarray,$item);
1568 if(activity_match($datarray['verb'],ACTIVITY_REQ_FRIEND)) {
1569 logger('consume-feed: New friend request');
1570 new_follower($importer,$contact,$datarray,$item,true);
1573 if(activity_match($datarray['verb'],ACTIVITY_UNFRIEND)) {
1574 lose_sharer($importer,$contact,$datarray,$item);
1579 if(! is_array($contact))
1582 if($contact['network'] === NETWORK_OSTATUS || stristr($permalink,'twitter.com')) {
1583 if(strlen($datarray['title']))
1584 unset($datarray['title']);
1585 $datarray['last-child'] = 1;
1588 if(($contact['network'] === NETWORK_FEED) || (! strlen($contact['notify']))) {
1589 // one way feed - no remote comment ability
1590 $datarray['last-child'] = 0;
1593 // This is my contact on another system, but it's really me.
1594 // Turn this into a wall post.
1596 if($contact['remote_self'])
1597 $datarray['wall'] = 1;
1599 $datarray['parent-uri'] = $item_id;
1600 $datarray['uid'] = $importer['uid'];
1601 $datarray['contact-id'] = $contact['id'];
1602 $r = item_store($datarray);
1610 function local_delivery($importer,$data) {
1614 if($importer['readonly']) {
1615 // We aren't receiving stuff from this person. But we will quietly ignore them
1616 // rather than a blatant "go away" message.
1617 logger('local_delivery: ignoring');
1622 // Consume notification feed. This may differ from consuming a public feed in several ways
1623 // - might contain email or friend suggestions
1624 // - might contain remote followup to our message
1625 // - in which case we need to accept it and then notify other conversants
1626 // - we may need to send various email notifications
1628 $feed = new SimplePie();
1629 $feed->set_raw_data($data);
1630 $feed->enable_order_by_date(false);
1633 $reloc = $feed->get_feed_tags( NAMESPACE_DFRN, 'relocate' );
1634 if(isset($reloc[0]['child'][NAMESPACE_DFRN])) {
1635 $base = $reloc[0]['child'][NAMESPACE_DFRN];
1637 $newloc['uid'] = $importer['importer_uid'];
1638 $newloc['cid'] = $importer['id'];
1639 $newloc['name'] = notags(unxmlify($base['name'][0]['data']));
1640 $newloc['photo'] = notags(unxmlify($base['photo'][0]['data']));
1641 $newloc['url'] = notags(unxmlify($base['url'][0]['data']));
1642 $newloc['request'] = notags(unxmlify($base['request'][0]['data']));
1643 $newloc['confirm'] = notags(unxmlify($base['confirm'][0]['data']));
1644 $newloc['notify'] = notags(unxmlify($base['notify'][0]['data']));
1645 $newloc['poll'] = notags(unxmlify($base['poll'][0]['data']));
1646 $newloc['site-pubkey'] = notags(unxmlify($base['site-pubkey'][0]['data']));
1647 $newloc['pubkey'] = notags(unxmlify($base['pubkey'][0]['data']));
1648 $newloc['prvkey'] = notags(unxmlify($base['prvkey'][0]['data']));
1651 // merge with current record, current contents have priority
1652 // update record, set url-updated
1653 // update profile photos
1658 // handle friend suggestion notification
1660 $sugg = $feed->get_feed_tags( NAMESPACE_DFRN, 'suggest' );
1661 if(isset($sugg[0]['child'][NAMESPACE_DFRN])) {
1662 $base = $sugg[0]['child'][NAMESPACE_DFRN];
1664 $fsugg['uid'] = $importer['importer_uid'];
1665 $fsugg['cid'] = $importer['id'];
1666 $fsugg['name'] = notags(unxmlify($base['name'][0]['data']));
1667 $fsugg['photo'] = notags(unxmlify($base['photo'][0]['data']));
1668 $fsugg['url'] = notags(unxmlify($base['url'][0]['data']));
1669 $fsugg['request'] = notags(unxmlify($base['request'][0]['data']));
1670 $fsugg['body'] = escape_tags(unxmlify($base['note'][0]['data']));
1672 // Does our member already have a friend matching this description?
1674 $r = q("SELECT * FROM `contact` WHERE `name` = '%s' AND `url` = '%s' AND `uid` = %d LIMIT 1",
1675 dbesc($fsugg['name']),
1676 dbesc($fsugg['url']),
1677 intval($fsugg['uid'])
1682 // Do we already have an fcontact record for this person?
1685 $r = q("SELECT * FROM `fcontact` WHERE `url` = '%s' AND `name` = '%s' AND `request` = '%s' LIMIT 1",
1686 dbesc($fsugg['url']),
1687 dbesc($fsugg['name']),
1688 dbesc($fsugg['request'])
1694 $r = q("INSERT INTO `fcontact` ( `name`,`url`,`photo`,`request` ) VALUES ( '%s', '%s', '%s', '%s' ) ",
1695 dbesc($fsugg['name']),
1696 dbesc($fsugg['url']),
1697 dbesc($fsugg['photo']),
1698 dbesc($fsugg['request'])
1700 $r = q("SELECT * FROM `fcontact` WHERE `url` = '%s' AND `name` = '%s' AND `request` = '%s' LIMIT 1",
1701 dbesc($fsugg['url']),
1702 dbesc($fsugg['name']),
1703 dbesc($fsugg['request'])
1708 // database record did not get created. Quietly give up.
1712 $hash = random_string();
1714 $r = q("INSERT INTO `intro` ( `uid`, `fid`, `contact-id`, `note`, `hash`, `datetime`, `blocked` )
1715 VALUES( %d, %d, %d, '%s', '%s', '%s', %d )",
1716 intval($fsugg['uid']),
1718 intval($fsugg['cid']),
1719 dbesc($fsugg['body']),
1721 dbesc(datetime_convert()),
1725 // TODO - send email notify (which may require a new notification preference)
1732 $rawmail = $feed->get_feed_tags( NAMESPACE_DFRN, 'mail' );
1733 if(isset($rawmail[0]['child'][NAMESPACE_DFRN])) {
1735 logger('local_delivery: private message received');
1738 $base = $rawmail[0]['child'][NAMESPACE_DFRN];
1741 $msg['uid'] = $importer['importer_uid'];
1742 $msg['from-name'] = notags(unxmlify($base['sender'][0]['child'][NAMESPACE_DFRN]['name'][0]['data']));
1743 $msg['from-photo'] = notags(unxmlify($base['sender'][0]['child'][NAMESPACE_DFRN]['avatar'][0]['data']));
1744 $msg['from-url'] = notags(unxmlify($base['sender'][0]['child'][NAMESPACE_DFRN]['uri'][0]['data']));
1745 $msg['contact-id'] = $importer['id'];
1746 $msg['title'] = notags(unxmlify($base['subject'][0]['data']));
1747 $msg['body'] = escape_tags(unxmlify($base['content'][0]['data']));
1749 $msg['replied'] = 0;
1750 $msg['uri'] = notags(unxmlify($base['id'][0]['data']));
1751 $msg['parent-uri'] = notags(unxmlify($base['in-reply-to'][0]['data']));
1752 $msg['created'] = datetime_convert(notags(unxmlify('UTC','UTC',$base['sentdate'][0]['data'])));
1756 $r = dbq("INSERT INTO `mail` (`" . implode("`, `", array_keys($msg))
1757 . "`) VALUES ('" . implode("', '", array_values($msg)) . "')" );
1759 // send email notification if requested.
1761 require_once('bbcode.php');
1762 if($importer['notify-flags'] & NOTIFY_MAIL) {
1764 push_lang($importer['language']);
1766 // name of the automated email sender
1767 $msg['notificationfromname'] = t('Administrator');
1768 // noreply address to send from
1769 $msg['notificationfromemail'] = t('noreply') . '@' . $a->get_hostname();
1772 // process the message body to display properly in text mode
1773 // 1) substitute a \n character for the "\" then "n", so it behaves properly (it doesn't come in as a \n character)
1774 // 2) remove escape slashes
1775 // 3) decode any bbcode from the message editor
1776 // 4) decode any encoded html tags
1777 // 5) remove html tags
1779 = strip_tags(html_entity_decode(bbcode(stripslashes(str_replace(array("\\r\\n", "\\r", "\\n"), "\n",$msg['body']))),ENT_QUOTES,'UTF-8'));
1782 // process the message body to display properly in text mode
1783 // 1) substitute a <br /> tag for the "\" then "n", so it behaves properly (it doesn't come in as a \n character)
1784 // 2) remove escape slashes
1785 // 3) decode any bbcode from the message editor
1786 // 4) decode any encoded html tags
1788 = html_entity_decode(bbcode(stripslashes(str_replace(array("\\r\\n", "\\r","\\n\\n" ,"\\n"), "<br />\n",$msg['body']))));
1790 // load the template for private message notifications
1791 $tpl = get_intltext_template('mail_received_html_body_eml.tpl');
1792 $email_html_body_tpl = replace_macros($tpl,array(
1793 '$username' => $importer['username'],
1794 '$siteName' => $a->config['sitename'], // name of this site
1795 '$siteurl' => $a->get_baseurl(), // descriptive url of this site
1796 '$thumb' => $importer['thumb'], // thumbnail url for sender icon
1797 '$email' => $importer['email'], // email address to send to
1798 '$url' => $importer['url'], // full url for the site
1799 '$from' => $msg['from-name'], // name of the person sending the message
1800 '$title' => stripslashes($msg['title']), // subject of the message
1801 '$htmlversion' => $msg['htmlversion'], // html version of the message
1802 '$mimeboundary' => $msg['mimeboundary'], // mime message divider
1803 '$hostname' => $a->get_hostname() // name of this host
1806 // load the template for private message notifications
1807 $tpl = get_intltext_template('mail_received_text_body_eml.tpl');
1808 $email_text_body_tpl = replace_macros($tpl,array(
1809 '$username' => $importer['username'],
1810 '$siteName' => $a->config['sitename'], // name of this site
1811 '$siteurl' => $a->get_baseurl(), // descriptive url of this site
1812 '$thumb' => $importer['thumb'], // thumbnail url for sender icon
1813 '$email' => $importer['email'], // email address to send to
1814 '$url' => $importer['url'], // full url for the site
1815 '$from' => $msg['from-name'], // name of the person sending the message
1816 '$title' => stripslashes($msg['title']), // subject of the message
1817 '$textversion' => $msg['textversion'], // text version of the message
1818 '$mimeboundary' => $msg['mimeboundary'], // mime message divider
1819 '$hostname' => $a->get_hostname() // name of this host
1822 // use the EmailNotification library to send the message
1823 require_once("include/EmailNotification.php");
1824 EmailNotification::sendTextHtmlEmail(
1825 $msg['notificationfromname'],
1826 $msg['notificationfromemail'],
1827 $msg['notificationfromemail'],
1829 t('New mail received at ') . $a->config['sitename'],
1830 $email_html_body_tpl,
1831 $email_text_body_tpl
1840 logger('local_delivery: feed item count = ' . $feed->get_item_quantity());
1842 // process any deleted entries
1844 $del_entries = $feed->get_feed_tags(NAMESPACE_TOMB, 'deleted-entry');
1845 if(is_array($del_entries) && count($del_entries)) {
1846 foreach($del_entries as $dentry) {
1848 if(isset($dentry['attribs']['']['ref'])) {
1849 $uri = $dentry['attribs']['']['ref'];
1851 if(isset($dentry['attribs']['']['when'])) {
1852 $when = $dentry['attribs']['']['when'];
1853 $when = datetime_convert('UTC','UTC', $when, 'Y-m-d H:i:s');
1856 $when = datetime_convert('UTC','UTC','now','Y-m-d H:i:s');
1860 $r = q("SELECT `item`.*, `contact`.`self` FROM `item` left join contact on `item`.`contact-id` = `contact`.`id`
1861 WHERE `uri` = '%s' AND `uid` = %d AND `contact-id` = %d LIMIT 1",
1863 intval($importer['importer_uid']),
1864 intval($importer['id'])
1870 if($item['deleted'])
1873 logger('local_delivery: deleting item ' . $item['id'] . ' uri=' . $item['uri'], LOGGER_DEBUG);
1875 if(($item['verb'] === ACTIVITY_TAG) && ($item['object-type'] === ACTVITY_OBJ_TAGTERM)) {
1876 $xo = parse_xml_string($item['object'],false);
1877 $xt = parse_xml_string($item['target'],false);
1878 if($xt->type === ACTIVITY_OBJ_NOTE) {
1879 $i = q("select * from `item` where uri = '%s' and uid = %d limit 1",
1881 intval($importer['importer_uid'])
1885 // For tags, the owner cannot remove the tag on the author's copy of the post.
1887 $owner_remove = (($item['contact-id'] == $i[0]['contact-id']) ? true: false);
1888 $author_remove = (($item['origin'] && $item['self']) ? true : false);
1889 $author_copy = (($item['origin']) ? true : false);
1891 if($owner_remove && $author_copy)
1893 if($author_remove || $owner_remove) {
1894 $tags = explode(',',$i[0]['tag']);
1897 foreach($tags as $tag)
1898 if(trim($tag) !== trim($xo->body))
1899 $newtags[] = trim($tag);
1901 q("update item set tag = '%s' where id = %d limit 1",
1902 dbesc(implode(',',$newtags)),
1910 if($item['uri'] == $item['parent-uri']) {
1911 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s'
1912 WHERE `parent-uri` = '%s' AND `uid` = %d",
1914 dbesc(datetime_convert()),
1915 dbesc($item['uri']),
1916 intval($importer['importer_uid'])
1920 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s'
1921 WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1923 dbesc(datetime_convert()),
1925 intval($importer['importer_uid'])
1927 if($item['last-child']) {
1928 // ensure that last-child is set in case the comment that had it just got wiped.
1929 q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d ",
1930 dbesc(datetime_convert()),
1931 dbesc($item['parent-uri']),
1932 intval($item['uid'])
1934 // who is the last child now?
1935 $r = q("SELECT `id` FROM `item` WHERE `parent-uri` = '%s' AND `type` != 'activity' AND `deleted` = 0 AND `uid` = %d
1936 ORDER BY `created` DESC LIMIT 1",
1937 dbesc($item['parent-uri']),
1938 intval($importer['importer_uid'])
1941 q("UPDATE `item` SET `last-child` = 1 WHERE `id` = %d LIMIT 1",
1953 foreach($feed->get_items() as $item) {
1956 $item_id = $item->get_id();
1957 $rawthread = $item->get_item_tags( NAMESPACE_THREAD, 'in-reply-to');
1958 if(isset($rawthread[0]['attribs']['']['ref'])) {
1960 $parent_uri = $rawthread[0]['attribs']['']['ref'];
1965 // was the top-level post for this reply written by somebody on this site?
1966 // Specifically, the recipient?
1968 $r = q("select `item`.`id`, `contact`.`name`, `contact`.`url`, `contact`.`thumb` from `item`
1969 LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
1970 WHERE `contact`.`self` = 1 AND `item`.`wall` = 1 AND `item`.`uri` = '%s' AND `item`.`parent-uri` = '%s'
1971 AND `item`.`uid` = %d LIMIT 1",
1974 intval($importer['importer_uid'])
1976 if($r && count($r)) {
1978 logger('local_delivery: received remote comment');
1980 // remote reply to our post. Import and then notify everybody else.
1981 $datarray = get_atom_elements($feed,$item);
1983 if(! link_compare($datarray['author-link'],$importer['url'])) {
1984 logger('local_delivery: received relay claiming to be from ' . $importer['url'] . ' however comment author url is ' . $datarray['author-link'] );
1985 // they won't know what to do so don't report an error. Just quietly die.
1989 $datarray['type'] = 'remote-comment';
1990 $datarray['wall'] = 1;
1991 $datarray['parent-uri'] = $parent_uri;
1992 $datarray['uid'] = $importer['importer_uid'];
1993 $datarray['owner-name'] = $r[0]['name'];
1994 $datarray['owner-link'] = $r[0]['url'];
1995 $datarray['owner-avatar'] = $r[0]['thumb'];
1996 $datarray['contact-id'] = $importer['id'];
1997 if(($datarray['verb'] === ACTIVITY_LIKE) || ($datarray['verb'] === ACTIVITY_DISLIKE)) {
1999 $datarray['type'] = 'activity';
2000 $datarray['gravity'] = GRAVITY_LIKE;
2001 $datarray['last-child'] = 0;
2004 if(($datarray['verb'] === ACTIVITY_TAG) && ($datarray['object-type'] === ACTIVITY_OBJ_TAGTERM)) {
2007 $xo = parse_xml_string($datarray['object'],false);
2008 $xt = parse_xml_string($datarray['target'],false);
2010 if(($xt->type == ACTIVITY_OBJ_NOTE) && ($xt->id == $r[0]['uri'])) {
2012 // extract tag, if not duplicate, and this user allows tags, add to parent item
2015 if(! (stristr($r[0]['tag'],trim($xo->content)))) {
2016 $i = q("SELECT `blocktags` FROM `user` where `uid` = %d LIMIT 1",
2017 intval($importer['importer_uid'])
2019 if(count($i) && ! ($i[0]['blocktags'])) {
2020 q("UPDATE item SET tag = '%s' WHERE id = %d LIMIT 1",
2021 dbesc($r[0]['tag'] . (strlen($r[0]['tag']) ? ',' : '') . '#[url=' . $xo->id . ']'. $xo->content . '[/url]'),
2030 $posted_id = item_store($datarray);
2034 $r = q("SELECT `parent` FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1",
2036 intval($importer['importer_uid'])
2039 $parent = $r[0]['parent'];
2042 $r1 = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `uid` = %d AND `parent` = %d",
2043 dbesc(datetime_convert()),
2044 intval($importer['importer_uid']),
2045 intval($r[0]['parent'])
2048 $r2 = q("UPDATE `item` SET `last-child` = 1, `changed` = '%s' WHERE `uid` = %d AND `id` = %d LIMIT 1",
2049 dbesc(datetime_convert()),
2050 intval($importer['importer_uid']),
2055 if($posted_id && $parent) {
2057 proc_run('php',"include/notifier.php","comment-import","$posted_id");
2059 if((! $is_like) && ($importer['notify-flags'] & NOTIFY_COMMENT) && (! $importer['self'])) {
2060 push_lang($importer['language']);
2061 require_once('bbcode.php');
2062 $from = stripslashes($datarray['author-name']);
2064 // name of the automated email sender
2065 $msg['notificationfromname'] = stripslashes($datarray['author-name']);;
2066 // noreply address to send from
2067 $msg['notificationfromemail'] = t('noreply') . '@' . $a->get_hostname();
2070 // process the message body to display properly in text mode
2072 = html_entity_decode(strip_tags(bbcode(stripslashes($datarray['body']))), ENT_QUOTES, 'UTF-8');
2075 // process the message body to display properly in text mode
2077 = html_entity_decode(bbcode(stripslashes(str_replace(array("\\r\\n", "\\r","\\n\\n" ,"\\n"), "<br />\n",$datarray['body']))));
2079 $imgtouse = ((link_compare($datarray['author-link'],$importer['url'])) ? $importer['thumb'] : $datarray['author-avatar']);
2081 // load the template for private message notifications
2082 $tpl = get_intltext_template('cmnt_received_html_body_eml.tpl');
2083 $email_html_body_tpl = replace_macros($tpl,array(
2084 '$username' => $importer['username'],
2085 '$sitename' => $a->config['sitename'], // name of this site
2086 '$siteurl' => $a->get_baseurl(), // descriptive url of this site
2087 '$thumb' => $imgtouse, // thumbnail url for sender icon
2088 '$email' => $importer['email'], // email address to send to
2089 '$url' => $datarray['author-link'], // full url for the site
2090 '$from' => $from, // name of the person sending the message
2091 '$body' => $msg['htmlversion'], // html version of the message
2092 '$display' => $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $posted_id,
2095 // load the template for private message notifications
2096 $tpl = get_intltext_template('cmnt_received_text_body_eml.tpl');
2097 $email_text_body_tpl = replace_macros($tpl,array(
2098 '$username' => $importer['username'],
2099 '$sitename' => $a->config['sitename'], // name of this site
2100 '$siteurl' => $a->get_baseurl(), // descriptive url of this site
2101 '$thumb' => $imgtouse, // thumbnail url for sender icon
2102 '$email' => $importer['email'], // email address to send to
2103 '$url' => $datarray['author-link'], // full url for the site
2104 '$from' => $from, // name of the person sending the message
2105 '$body' => $msg['textversion'], // text version of the message
2106 '$display' => $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $posted_id,
2109 // use the EmailNotification library to send the message
2110 require_once("include/EmailNotification.php");
2111 EmailNotification::sendTextHtmlEmail(
2112 $msg['notificationfromname'],
2113 t("Administrator") . '@' . $a->get_hostname(),
2114 t("noreply") . '@' . $a->get_hostname(),
2116 sprintf( t('%s commented on an item at %s'), $from , $a->config['sitename']),
2117 $email_html_body_tpl,
2118 $email_text_body_tpl
2129 // regular comment that is part of this total conversation. Have we seen it? If not, import it.
2131 $item_id = $item->get_id();
2132 $datarray = get_atom_elements($feed,$item);
2134 $r = q("SELECT `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2136 intval($importer['importer_uid'])
2139 // Update content if 'updated' changes
2142 if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) {
2143 $r = q("UPDATE `item` SET `body` = '%s', `edited` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2144 dbesc($datarray['body']),
2145 dbesc(datetime_convert('UTC','UTC',$datarray['edited'])),
2147 intval($importer['importer_uid'])
2151 // update last-child if it changes
2153 $allow = $item->get_item_tags( NAMESPACE_DFRN, 'comment-allow');
2154 if(($allow) && ($allow[0]['data'] != $r[0]['last-child'])) {
2155 $r = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d",
2156 dbesc(datetime_convert()),
2158 intval($importer['importer_uid'])
2160 $r = q("UPDATE `item` SET `last-child` = %d , `changed` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2161 intval($allow[0]['data']),
2162 dbesc(datetime_convert()),
2164 intval($importer['importer_uid'])
2170 $datarray['parent-uri'] = $parent_uri;
2171 $datarray['uid'] = $importer['importer_uid'];
2172 $datarray['contact-id'] = $importer['id'];
2173 if(($datarray['verb'] == ACTIVITY_LIKE) || ($datarray['verb'] == ACTIVITY_DISLIKE)) {
2174 $datarray['type'] = 'activity';
2175 $datarray['gravity'] = GRAVITY_LIKE;
2178 if(($datarray['verb'] === ACTIVITY_TAG) && ($datarray['object-type'] === ACTIVITY_OBJ_TAGTERM)) {
2180 $xo = parse_xml_string($datarray['object'],false);
2181 $xt = parse_xml_string($datarray['target'],false);
2183 if($xt->type == ACTIVITY_OBJ_NOTE) {
2184 $r = q("select * from item where `uri` = '%s' AND `uid` = %d limit 1",
2186 intval($importer['importer_uid'])
2191 // extract tag, if not duplicate, add to parent item
2193 if(! (stristr($r[0]['tag'],trim($xo->content)))) {
2194 q("UPDATE item SET tag = '%s' WHERE id = %d LIMIT 1",
2195 dbesc($r[0]['tag'] . (strlen($r[0]['tag']) ? ',' : '') . '#[url=' . $xo->id . ']'. $xo->content . '[/url]'),
2203 $posted_id = item_store($datarray);
2205 // find out if our user is involved in this conversation and wants to be notified.
2207 if(($datarray['type'] != 'activity') && ($importer['notify-flags'] & NOTIFY_COMMENT)) {
2209 $myconv = q("SELECT `author-link`, `author-avatar` FROM `item` WHERE `parent-uri` = '%s' AND `uid` = %d AND `parent` != 0 ",
2211 intval($importer['importer_uid'])
2213 if(count($myconv)) {
2214 $importer_url = $a->get_baseurl() . '/profile/' . $importer['nickname'];
2215 foreach($myconv as $conv) {
2216 if(! link_compare($conv['author-link'],$importer_url))
2219 push_lang($importer['language']);
2220 require_once('bbcode.php');
2221 $from = stripslashes($datarray['author-name']);
2223 // name of the automated email sender
2224 $msg['notificationfromname'] = stripslashes($datarray['author-name']);;
2225 // noreply address to send from
2226 $msg['notificationfromemail'] = t('noreply') . '@' . $a->get_hostname();
2229 // process the message body to display properly in text mode
2231 = html_entity_decode(strip_tags(bbcode(stripslashes($datarray['body']))), ENT_QUOTES, 'UTF-8');
2234 // process the message body to display properly in text mode
2236 = html_entity_decode(bbcode(stripslashes(str_replace(array("\\r\\n", "\\r","\\n\\n" ,"\\n"), "<br />\n",$datarray['body']))));
2238 $imgtouse = ((link_compare($datarray['author-link'],$importer['url'])) ? $importer['thumb'] : $datarray['author-avatar']);
2241 // load the template for private message notifications
2242 $tpl = get_intltext_template('cmnt_received_html_body_eml.tpl');
2243 $email_html_body_tpl = replace_macros($tpl,array(
2244 '$username' => $importer['username'],
2245 '$sitename' => $a->config['sitename'], // name of this site
2246 '$siteurl' => $a->get_baseurl(), // descriptive url of this site
2247 '$thumb' => $imgtouse, // thumbnail url for sender icon
2248 '$url' => $datarray['author-link'], // full url for the site
2249 '$from' => $from, // name of the person sending the message
2250 '$body' => $msg['htmlversion'], // html version of the message
2251 '$display' => $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $posted_id,
2254 // load the template for private message notifications
2255 $tpl = get_intltext_template('cmnt_received_text_body_eml.tpl');
2256 $email_text_body_tpl = replace_macros($tpl,array(
2257 '$username' => $importer['username'],
2258 '$sitename' => $a->config['sitename'], // name of this site
2259 '$siteurl' => $a->get_baseurl(), // descriptive url of this site
2260 '$thumb' => $imgtouse, // thumbnail url for sender icon
2261 '$url' => $datarray['author-link'], // full url for the site
2262 '$from' => $from, // name of the person sending the message
2263 '$body' => $msg['textversion'], // text version of the message
2264 '$display' => $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $posted_id,
2267 // use the EmailNotification library to send the message
2268 require_once("include/EmailNotification.php");
2269 EmailNotification::sendTextHtmlEmail(
2270 $msg['notificationfromname'],
2271 t("Administrator@") . $a->get_hostname(),
2272 t("noreply") . '@' . $a->get_hostname(),
2274 sprintf( t('%s commented on an item at %s'), $from , $a->config['sitename']),
2275 $email_html_body_tpl,
2276 $email_text_body_tpl
2289 // Head post of a conversation. Have we seen it? If not, import it.
2292 $item_id = $item->get_id();
2293 $datarray = get_atom_elements($feed,$item);
2295 if((x($datarray,'object-type')) && ($datarray['object-type'] === ACTIVITY_OBJ_EVENT)) {
2296 $ev = bbtoevent($datarray['body']);
2297 if(x($ev,'desc') && x($ev,'start')) {
2298 $ev['cid'] = $importer['id'];
2299 $ev['uid'] = $importer['uid'];
2300 $ev['uri'] = $item_id;
2301 $ev['edited'] = $datarray['edited'];
2302 $ev['private'] = $datarray['private'];
2304 $r = q("SELECT * FROM `event` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2306 intval($importer['uid'])
2309 $ev['id'] = $r[0]['id'];
2310 $xyz = event_store($ev);
2315 $r = q("SELECT `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2317 intval($importer['importer_uid'])
2320 // Update content if 'updated' changes
2323 if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) {
2324 $r = q("UPDATE `item` SET `body` = '%s', `edited` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2325 dbesc($datarray['body']),
2326 dbesc(datetime_convert('UTC','UTC',$datarray['edited'])),
2328 intval($importer['importer_uid'])
2332 // update last-child if it changes
2334 $allow = $item->get_item_tags( NAMESPACE_DFRN, 'comment-allow');
2335 if($allow && $allow[0]['data'] != $r[0]['last-child']) {
2336 $r = q("UPDATE `item` SET `last-child` = %d , `changed` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2337 intval($allow[0]['data']),
2338 dbesc(datetime_convert()),
2340 intval($importer['importer_uid'])
2346 // This is my contact on another system, but it's really me.
2347 // Turn this into a wall post.
2349 if($contact['remote_self'])
2350 $datarray['wall'] = 1;
2352 $datarray['parent-uri'] = $item_id;
2353 $datarray['uid'] = $importer['importer_uid'];
2354 $datarray['contact-id'] = $importer['id'];
2355 $r = item_store($datarray);
2366 function new_follower($importer,$contact,$datarray,$item,$sharing = false) {
2367 $url = notags(trim($datarray['author-link']));
2368 $name = notags(trim($datarray['author-name']));
2369 $photo = notags(trim($datarray['author-avatar']));
2371 $rawtag = $item->get_item_tags(NAMESPACE_ACTIVITY,'actor');
2372 if($rawtag && $rawtag[0]['child'][NAMESPACE_POCO]['preferredUsername'][0]['data'])
2373 $nick = $rawtag[0]['child'][NAMESPACE_POCO]['preferredUsername'][0]['data'];
2375 if(is_array($contact)) {
2376 if(($contact['network'] == NETWORK_OSTATUS && $contact['rel'] == CONTACT_IS_SHARING)
2377 || ($sharing && $contact['rel'] == CONTACT_IS_FOLLOWER)) {
2378 $r = q("UPDATE `contact` SET `rel` = %d WHERE `id` = %d AND `uid` = %d LIMIT 1",
2379 intval(CONTACT_IS_FRIEND),
2380 intval($contact['id']),
2381 intval($importer['uid'])
2384 // send email notification to owner?
2388 // create contact record
2390 $r = q("INSERT INTO `contact` ( `uid`, `created`, `url`, `name`, `nick`, `photo`, `network`, `rel`,
2391 `blocked`, `readonly`, `pending`, `writable` )
2392 VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', %d, 0, 0, 1, 1 ) ",
2393 intval($importer['uid']),
2394 dbesc(datetime_convert()),
2399 dbesc(($sharing) ? NETWORK_ZOT : NETWORK_OSTATUS),
2400 intval(($sharing) ? CONTACT_IS_SHARING : CONTACT_IS_FOLLOWER)
2402 $r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `url` = '%s' AND `pending` = 1 LIMIT 1",
2403 intval($importer['uid']),
2407 $contact_record = $r[0];
2409 // create notification
2410 $hash = random_string();
2412 if(is_array($contact_record)) {
2413 $ret = q("INSERT INTO `intro` ( `uid`, `contact-id`, `blocked`, `knowyou`, `hash`, `datetime`)
2414 VALUES ( %d, %d, 0, 0, '%s', '%s' )",
2415 intval($importer['uid']),
2416 intval($contact_record['id']),
2418 dbesc(datetime_convert())
2421 $r = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
2422 intval($importer['uid'])
2426 if(($r[0]['notify-flags'] & NOTIFY_INTRO) && ($r[0]['page-flags'] == PAGE_NORMAL)) {
2427 $email_tpl = get_intltext_template('follow_notify_eml.tpl');
2428 $email = replace_macros($email_tpl, array(
2429 '$requestor' => ((strlen($name)) ? $name : t('[Name Withheld]')),
2431 '$myname' => $r[0]['username'],
2432 '$siteurl' => $a->get_baseurl(),
2433 '$sitename' => $a->config['sitename']
2435 $res = mail($r[0]['email'],
2436 (($sharing) ? t('A new person is sharing with you at ') : t("You have a new follower at ")) . $a->config['sitename'],
2438 'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] . "\n"
2439 . 'Content-type: text/plain; charset=UTF-8' . "\n"
2440 . 'Content-transfer-encoding: 8bit' );
2447 function lose_follower($importer,$contact,$datarray,$item) {
2449 if(($contact['rel'] == CONTACT_IS_FRIEND) || ($contact['rel'] == CONTACT_IS_SHARING)) {
2450 q("UPDATE `contact` SET `rel` = %d WHERE `id` = %d LIMIT 1",
2451 intval(CONTACT_IS_SHARING),
2452 intval($contact['id'])
2456 contact_remove($contact['id']);
2460 function lose_sharer($importer,$contact,$datarray,$item) {
2462 if(($contact['rel'] == CONTACT_IS_FRIEND) || ($contact['rel'] == CONTACT_IS_FOLLOWER)) {
2463 q("UPDATE `contact` SET `rel` = %d WHERE `id` = %d LIMIT 1",
2464 intval(CONTACT_IS_FOLLOWER),
2465 intval($contact['id'])
2469 contact_remove($contact['id']);
2474 function subscribe_to_hub($url,$importer,$contact,$hubmode = 'subscribe') {
2476 if(is_array($importer)) {
2477 $r = q("SELECT `nickname` FROM `user` WHERE `uid` = %d LIMIT 1",
2478 intval($importer['uid'])
2482 // Diaspora has different message-ids in feeds than they do
2483 // through the direct Diaspora protocol. If we try and use
2484 // the feed, we'll get duplicates. So don't.
2486 if((! count($r)) || $contact['network'] === NETWORK_DIASPORA)
2489 $push_url = get_config('system','url') . '/pubsub/' . $r[0]['nickname'] . '/' . $contact['id'];
2491 // Use a single verify token, even if multiple hubs
2493 $verify_token = ((strlen($contact['hub-verify'])) ? $contact['hub-verify'] : random_string());
2495 $params= 'hub.mode=' . $hubmode . '&hub.callback=' . urlencode($push_url) . '&hub.topic=' . urlencode($contact['poll']) . '&hub.verify=async&hub.verify_token=' . $verify_token;
2497 logger('subscribe_to_hub: ' . $hubmode . ' ' . $contact['name'] . ' to hub ' . $url . ' endpoint: ' . $push_url . ' with verifier ' . $verify_token);
2499 if(! strlen($contact['hub-verify'])) {
2500 $r = q("UPDATE `contact` SET `hub-verify` = '%s' WHERE `id` = %d LIMIT 1",
2501 dbesc($verify_token),
2502 intval($contact['id'])
2506 post_url($url,$params);
2512 function atom_author($tag,$name,$uri,$h,$w,$photo) {
2516 $name = xmlify($name);
2517 $uri = xmlify($uri);
2520 $photo = xmlify($photo);
2524 $o .= "<name>$name</name>\r\n";
2525 $o .= "<uri>$uri</uri>\r\n";
2526 $o .= '<link rel="photo" type="image/jpeg" media:width="' . $w . '" media:height="' . $h . '" href="' . $photo . '" />' . "\r\n";
2527 $o .= '<link rel="avatar" type="image/jpeg" media:width="' . $w . '" media:height="' . $h . '" href="' . $photo . '" />' . "\r\n";
2529 call_hooks('atom_author', $o);
2531 $o .= "</$tag>\r\n";
2535 function atom_entry($item,$type,$author,$owner,$comment = false) {
2539 if(! $item['parent'])
2542 if($item['deleted'])
2543 return '<at:deleted-entry ref="' . xmlify($item['uri']) . '" when="' . xmlify(datetime_convert('UTC','UTC',$item['edited'] . '+00:00',ATOM_TIME)) . '" />' . "\r\n";
2546 if($item['allow_cid'] || $item['allow_gid'] || $item['deny_cid'] || $item['deny_gid'])
2547 $body = fix_private_photos($item['body'],$owner['uid']);
2549 $body = $item['body'];
2552 $o = "\r\n\r\n<entry>\r\n";
2554 if(is_array($author))
2555 $o .= atom_author('author',$author['name'],$author['url'],80,80,$author['thumb']);
2557 $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']));
2558 if(strlen($item['owner-name']))
2559 $o .= atom_author('dfrn:owner',$item['owner-name'],$item['owner-link'],80,80,$item['owner-avatar']);
2561 if(($item['parent'] != $item['id']) || ($item['parent-uri'] !== $item['uri']))
2562 $o .= '<thr:in-reply-to ref="' . xmlify($item['parent-uri']) . '" type="text/html" href="' . xmlify($a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['parent']) . '" />' . "\r\n";
2564 $o .= '<id>' . xmlify($item['uri']) . '</id>' . "\r\n";
2565 $o .= '<title>' . xmlify($item['title']) . '</title>' . "\r\n";
2566 $o .= '<published>' . xmlify(datetime_convert('UTC','UTC',$item['created'] . '+00:00',ATOM_TIME)) . '</published>' . "\r\n";
2567 $o .= '<updated>' . xmlify(datetime_convert('UTC','UTC',$item['edited'] . '+00:00',ATOM_TIME)) . '</updated>' . "\r\n";
2568 $o .= '<dfrn:env>' . base64url_encode($body, true) . '</dfrn:env>' . "\r\n";
2569 $o .= '<content type="' . $type . '" >' . xmlify((($type === 'html') ? bbcode($body) : $body)) . '</content>' . "\r\n";
2570 $o .= '<link rel="alternate" type="text/html" href="' . xmlify($a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id']) . '" />' . "\r\n";
2572 $o .= '<dfrn:comment-allow>' . intval($item['last-child']) . '</dfrn:comment-allow>' . "\r\n";
2574 if($item['location']) {
2575 $o .= '<dfrn:location>' . xmlify($item['location']) . '</dfrn:location>' . "\r\n";
2576 $o .= '<poco:address><poco:formatted>' . xmlify($item['location']) . '</poco:formatted></poco:address>' . "\r\n";
2580 $o .= '<georss:point>' . xmlify($item['coord']) . '</georss:point>' . "\r\n";
2582 if(($item['private']) || strlen($item['allow_cid']) || strlen($item['allow_gid']) || strlen($item['deny_cid']) || strlen($item['deny_gid']))
2583 $o .= '<dfrn:private>1</dfrn:private>' . "\r\n";
2586 $o .= '<dfrn:extid>' . xmlify($item['extid']) . '</dfrn:extid>' . "\r\n";
2587 if($item['bookmark'])
2588 $o .= '<dfrn:bookmark>true</dfrn:bookmark>' . "\r\n";
2591 $o .= '<statusnet:notice_info local_id="' . $item['id'] . '" source="' . xmlify($item['app']) . '" ></statusnet:notice_info>' . "\r\n";
2594 $o .= '<dfrn:diaspora_guid>' . $item['guid'] . '</dfrn:diaspora_guid>' . "\r\n";
2596 if($item['signed_text']) {
2597 $sign = base64_encode(json_encode(array('signed_text' => $item['signed_text'],'signature' => $item['signature'],'signer' => $item['signer'])));
2598 $o .= '<dfrn:diaspora_signature>' . xmlify($sign) . '</dfrn:diaspora_signature>' . "\r\n";
2601 $verb = construct_verb($item);
2602 $o .= '<as:verb>' . xmlify($verb) . '</as:verb>' . "\r\n";
2603 $actobj = construct_activity_object($item);
2606 $actarg = construct_activity_target($item);
2610 $tags = item_getfeedtags($item);
2612 foreach($tags as $t) {
2613 $o .= '<category scheme="X-DFRN:' . xmlify($t[0]) . ':' . xmlify($t[1]) . '" term="' . xmlify($t[2]) . '" />' . "\r\n";
2617 $o .= item_getfeedattach($item);
2619 $mentioned = get_mentions($item);
2623 call_hooks('atom_entry', $o);
2625 $o .= '</entry>' . "\r\n";
2630 function fix_private_photos($s,$uid) {
2632 logger('fix_private_photos');
2634 if(preg_match("/\[img\](.*?)\[\/img\]/is",$s,$matches)) {
2635 $image = $matches[1];
2636 logger('fix_private_photos: found photo ' . $image);
2637 if(stristr($image ,$a->get_baseurl() . '/photo/')) {
2638 $i = basename($image);
2639 $i = str_replace('.jpg','',$i);
2640 $x = strpos($i,'-');
2642 $res = substr($i,$x+1);
2643 $i = substr($i,0,$x);
2644 $r = q("SELECT * FROM `photo` WHERE `resource-id` = '%s' AND `scale` = %d AND `uid` = %d",
2650 logger('replacing photo');
2651 $s = str_replace($image, 'data:image/jpg;base64,' . base64_encode($r[0]['data']), $s);
2654 logger('fix_private_photos: replaced: ' . $s, LOGGER_DATA);
2662 function item_getfeedtags($item) {
2665 $cnt = preg_match_all('|\#\[url\=(.*?)\](.*?)\[\/url\]|',$item['tag'],$matches);
2667 for($x = 0; $x < count($matches); $x ++) {
2669 $ret[] = array('#',$matches[1][$x], $matches[2][$x]);
2673 $cnt = preg_match_all('|\@\[url\=(.*?)\](.*?)\[\/url\]|',$item['tag'],$matches);
2675 for($x = 0; $x < count($matches); $x ++) {
2677 $ret[] = array('#',$matches[1][$x], $matches[2][$x]);
2683 function item_getfeedattach($item) {
2685 $arr = explode(',',$item['attach']);
2687 foreach($arr as $r) {
2689 $cnt = preg_match('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"\[\/attach\]|',$r,$matches);
2691 $ret .= '<link rel="enclosure" href="' . xmlify($matches[1]) . '" type="' . xmlify($matches[3]) . '" ';
2692 if(intval($matches[2]))
2693 $ret .= 'length="' . intval($matches[2]) . '" ';
2694 if($matches[4] !== ' ')
2695 $ret .= 'title="' . xmlify(trim($matches[4])) . '" ';
2696 $ret .= ' />' . "\r\n";
2705 function item_expire($uid,$days) {
2707 if((! $uid) || (! $days))
2710 $r = q("SELECT * FROM `item`
2712 AND `created` < UTC_TIMESTAMP() - INTERVAL %d DAY
2722 logger('expire: # items=' . count($r) );
2724 foreach($r as $item) {
2726 // Only expire posts, not photos and photo comments
2728 if(strlen($item['resource-id']))
2731 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s' WHERE `id` = %d LIMIT 1",
2732 dbesc(datetime_convert()),
2733 dbesc(datetime_convert()),
2739 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d ",
2740 dbesc(datetime_convert()),
2741 dbesc(datetime_convert()),
2742 dbesc($item['parent-uri']),
2743 intval($item['uid'])
2748 proc_run('php',"include/notifier.php","expire","$uid");
2753 function drop_items($items) {
2757 foreach($items as $item) {
2758 $owner = drop_item($item,false);
2759 if($owner && ! $uid)
2764 // multiple threads may have been deleted, send an expire notification
2767 proc_run('php',"include/notifier.php","expire","$uid");
2771 function drop_item($id,$interactive = true) {
2775 // locate item to be deleted
2777 $r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1",
2784 notice( t('Item not found.') . EOL);
2785 goaway($a->get_baseurl() . '/' . $_SESSION['return_url']);
2790 $owner = $item['uid'];
2792 // check if logged in user is either the author or owner of this item
2794 if((local_user() == $item['uid']) || (remote_user() == $item['contact-id'])) {
2798 $r = q("UPDATE `item` SET `deleted` = 1, `body` = '', `edited` = '%s', `changed` = '%s' WHERE `id` = %d LIMIT 1",
2799 dbesc(datetime_convert()),
2800 dbesc(datetime_convert()),
2804 // If item is a link to a photo resource, nuke all the associated photos
2805 // (visitors will not have photo resources)
2806 // This only applies to photos uploaded from the photos page. Photos inserted into a post do not
2807 // generate a resource-id and therefore aren't intimately linked to the item.
2809 if(strlen($item['resource-id'])) {
2810 q("DELETE FROM `photo` WHERE `resource-id` = '%s' AND `uid` = %d ",
2811 dbesc($item['resource-id']),
2812 intval($item['uid'])
2814 // ignore the result
2817 // If item is a link to an event, nuke the event record.
2819 if(intval($item['event-id'])) {
2820 q("DELETE FROM `event` WHERE `id` = %d AND `uid` = %d LIMIT 1",
2821 intval($item['event-id']),
2822 intval($item['uid'])
2824 // ignore the result
2828 // If it's the parent of a comment thread, kill all the kids
2830 if($item['uri'] == $item['parent-uri']) {
2831 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s', `body` = ''
2832 WHERE `parent-uri` = '%s' AND `uid` = %d ",
2833 dbesc(datetime_convert()),
2834 dbesc(datetime_convert()),
2835 dbesc($item['parent-uri']),
2836 intval($item['uid'])
2838 // ignore the result
2841 // ensure that last-child is set in case the comment that had it just got wiped.
2842 q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d ",
2843 dbesc(datetime_convert()),
2844 dbesc($item['parent-uri']),
2845 intval($item['uid'])
2847 // who is the last child now?
2848 $r = q("SELECT `id` FROM `item` WHERE `parent-uri` = '%s' AND `type` != 'activity' AND `deleted` = 0 AND `uid` = %d ORDER BY `edited` DESC LIMIT 1",
2849 dbesc($item['parent-uri']),
2850 intval($item['uid'])
2853 q("UPDATE `item` SET `last-child` = 1 WHERE `id` = %d LIMIT 1",
2858 $drop_id = intval($item['id']);
2860 // send the notification upstream/downstream as the case may be
2865 proc_run('php',"include/notifier.php","drop","$drop_id");
2866 goaway($a->get_baseurl() . '/' . $_SESSION['return_url']);
2872 notice( t('Permission denied.') . EOL);
2873 goaway($a->get_baseurl() . '/' . $_SESSION['return_url']);