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) {
11 $sitefeed = ((strlen($owner_nick)) ? false : true); // not yet implemented, need to rewrite huge chunks of following logic
12 $public_feed = (($dfrn_id) ? false : true);
13 $starred = false; // not yet implemented, possible security issues
16 if($public_feed && $a->argc > 2) {
17 for($x = 2; $x < $a->argc; $x++) {
18 if($a->argv[$x] == 'converse')
20 if($a->argv[$x] == 'starred')
22 if($a->argv[$x] === 'category' && $a->argc > ($x + 1) && strlen($a->argv[$x+1]))
23 $category = $a->argv[$x+1];
31 // default permissions - anonymous user
33 $sql_extra = " AND `allow_cid` = '' AND `allow_gid` = '' AND `deny_cid` = '' AND `deny_gid` = '' ";
35 $r = q("SELECT `contact`.*, `user`.`uid` AS `user_uid`, `user`.`nickname`, `user`.`timezone`, `user`.`page-flags`
36 FROM `contact` LEFT JOIN `user` ON `user`.`uid` = `contact`.`uid`
37 WHERE `contact`.`self` = 1 AND `user`.`nickname` = '%s' LIMIT 1",
45 $owner_id = $owner['user_uid'];
46 $owner_nick = $owner['nickname'];
48 $birthday = feed_birthday($owner_id,$owner['timezone']);
55 $sql_extra = sprintf(" AND `issued-id` = '%s' ", dbesc($dfrn_id));
59 $sql_extra = sprintf(" AND `issued-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id));
60 $my_id = '1:' . $dfrn_id;
63 $sql_extra = sprintf(" AND `dfrn-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id));
64 $my_id = '0:' . $dfrn_id;
71 $r = q("SELECT * FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `contact`.`uid` = %d $sql_extra LIMIT 1",
79 $groups = init_groups_visitor($contact['id']);
82 for($x = 0; $x < count($groups); $x ++)
83 $groups[$x] = '<' . intval($groups[$x]) . '>' ;
84 $gs = implode('|', $groups);
87 $gs = '<<>>' ; // Impossible to match
89 $sql_extra = sprintf("
90 AND ( `allow_cid` = '' OR `allow_cid` REGEXP '<%d>' )
91 AND ( `deny_cid` = '' OR NOT `deny_cid` REGEXP '<%d>' )
92 AND ( `allow_gid` = '' OR `allow_gid` REGEXP '%s' )
93 AND ( `deny_gid` = '' OR NOT `deny_gid` REGEXP '%s')
95 intval($contact['id']),
96 intval($contact['id']),
107 if(! strlen($last_update))
108 $last_update = 'now -30 days';
110 if(isset($category)) {
111 $sql_extra .= file_tag_file_query('item',$category,'category');
116 $sql_extra .= " AND `contact`.`self` = 1 ";
119 $check_date = datetime_convert('UTC','UTC',$last_update,'Y-m-d H:i:s');
121 $r = q("SELECT `item`.*, `item`.`id` AS `item_id`,
122 `contact`.`name`, `contact`.`photo`, `contact`.`url`,
123 `contact`.`name-date`, `contact`.`uri-date`, `contact`.`avatar-date`,
124 `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`,
125 `contact`.`id` AS `contact-id`, `contact`.`uid` AS `contact-uid`,
126 `sign`.`signed_text`, `sign`.`signature`, `sign`.`signer`
127 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
128 LEFT JOIN `sign` ON `sign`.`iid` = `item`.`id`
129 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 and `item`.`moderated` = 0 AND `item`.`parent` != 0
130 AND `item`.`wall` = 1 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
131 AND ( `item`.`edited` > '%s' OR `item`.`changed` > '%s' )
133 ORDER BY `parent` %s, `created` ASC LIMIT 0, 300",
140 // Will check further below if this actually returned results.
141 // We will provide an empty feed if that is the case.
145 $feed_template = get_markup_template(($dfrn_id) ? 'atom_feed_dfrn.tpl' : 'atom_feed.tpl');
149 $hubxml = feed_hublinks();
151 $salmon = feed_salmonlinks($owner_nick);
153 $atom .= replace_macros($feed_template, array(
154 '$version' => xmlify(FRIENDICA_VERSION),
155 '$feed_id' => xmlify($a->get_baseurl() . '/profile/' . $owner_nick),
156 '$feed_title' => xmlify($owner['name']),
157 '$feed_updated' => xmlify(datetime_convert('UTC', 'UTC', 'now' , ATOM_TIME)) ,
159 '$salmon' => $salmon,
160 '$name' => xmlify($owner['name']),
161 '$profile_page' => xmlify($owner['url']),
162 '$photo' => xmlify($owner['photo']),
163 '$thumb' => xmlify($owner['thumb']),
164 '$picdate' => xmlify(datetime_convert('UTC','UTC',$owner['avatar-date'] . '+00:00' , ATOM_TIME)) ,
165 '$uridate' => xmlify(datetime_convert('UTC','UTC',$owner['uri-date'] . '+00:00' , ATOM_TIME)) ,
166 '$namdate' => xmlify(datetime_convert('UTC','UTC',$owner['name-date'] . '+00:00' , ATOM_TIME)) ,
167 '$birthday' => ((strlen($birthday)) ? '<dfrn:birthday>' . xmlify($birthday) . '</dfrn:birthday>' : ''),
168 '$community' => (($owner['page-flags'] == PAGE_COMMUNITY) ? '<dfrn:community>1</dfrn:community>' : '')
171 call_hooks('atom_feed', $atom);
173 if(! count($items)) {
175 call_hooks('atom_feed_end', $atom);
177 $atom .= '</feed>' . "\r\n";
181 foreach($items as $item) {
183 // public feeds get html, our own nodes use bbcode
187 // catch any email that's in a public conversation and make sure it doesn't leak
195 $atom .= atom_entry($item,$type,null,$owner,true);
198 call_hooks('atom_feed_end', $atom);
200 $atom .= '</feed>' . "\r\n";
206 function construct_verb($item) {
208 return $item['verb'];
209 return ACTIVITY_POST;
212 function construct_activity_object($item) {
214 if($item['object']) {
215 $o = '<as:object>' . "\r\n";
216 $r = parse_xml_string($item['object'],false);
222 $o .= '<as:object-type>' . xmlify($r->type) . '</as:object-type>' . "\r\n";
224 $o .= '<id>' . xmlify($r->id) . '</id>' . "\r\n";
226 $o .= '<title>' . xmlify($r->title) . '</title>' . "\r\n";
228 if(substr($r->link,0,1) === '<') {
229 // patch up some facebook "like" activity objects that got stored incorrectly
230 // for a couple of months prior to 9-Jun-2011 and generated bad XML.
231 // we can probably remove this hack here and in the following function in a few months time.
232 if(strstr($r->link,'&') && (! strstr($r->link,'&')))
233 $r->link = str_replace('&','&', $r->link);
234 $r->link = preg_replace('/\<link(.*?)\"\>/','<link$1"/>',$r->link);
238 $o .= '<link rel="alternate" type="text/html" href="' . xmlify($r->link) . '" />' . "\r\n";
241 $o .= '<content type="html" >' . xmlify(bbcode($r->content)) . '</content>' . "\r\n";
242 $o .= '</as:object>' . "\r\n";
249 function construct_activity_target($item) {
251 if($item['target']) {
252 $o = '<as:target>' . "\r\n";
253 $r = parse_xml_string($item['target'],false);
257 $o .= '<as:object-type>' . xmlify($r->type) . '</as:object-type>' . "\r\n";
259 $o .= '<id>' . xmlify($r->id) . '</id>' . "\r\n";
261 $o .= '<title>' . xmlify($r->title) . '</title>' . "\r\n";
263 if(substr($r->link,0,1) === '<') {
264 if(strstr($r->link,'&') && (! strstr($r->link,'&')))
265 $r->link = str_replace('&','&', $r->link);
266 $r->link = preg_replace('/\<link(.*?)\"\>/','<link$1"/>',$r->link);
270 $o .= '<link rel="alternate" type="text/html" href="' . xmlify($r->link) . '" />' . "\r\n";
273 $o .= '<content type="html" >' . xmlify(bbcode($r->content)) . '</content>' . "\r\n";
274 $o .= '</as:target>' . "\r\n";
284 function get_atom_elements($feed,$item) {
286 require_once('library/HTMLPurifier.auto.php');
287 require_once('include/html2bbcode.php');
289 $best_photo = array();
293 $author = $item->get_author();
295 $res['author-name'] = unxmlify($author->get_name());
296 $res['author-link'] = unxmlify($author->get_link());
299 $res['author-name'] = unxmlify($feed->get_title());
300 $res['author-link'] = unxmlify($feed->get_permalink());
302 $res['uri'] = unxmlify($item->get_id());
303 $res['title'] = unxmlify($item->get_title());
304 $res['body'] = unxmlify($item->get_content());
305 $res['plink'] = unxmlify($item->get_link(0));
308 $base_url = implode('/', array_slice(explode('/',$res['plink']),0,3));
312 // look for a photo. We should check media size and find the best one,
313 // but for now let's just find any author photo
315 $rawauthor = $item->get_item_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'author');
317 if($rawauthor && $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) {
318 $base = $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
319 foreach($base as $link) {
320 if(!x($res, 'author-avatar') || !$res['author-avatar']) {
321 if($link['attribs']['']['rel'] === 'photo' || $link['attribs']['']['rel'] === 'avatar')
322 $res['author-avatar'] = unxmlify($link['attribs']['']['href']);
327 $rawactor = $item->get_item_tags(NAMESPACE_ACTIVITY, 'actor');
329 if($rawactor && activity_match($rawactor[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'],ACTIVITY_OBJ_PERSON)) {
330 $base = $rawactor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
331 if($base && count($base)) {
332 foreach($base as $link) {
333 if($link['attribs']['']['rel'] === 'alternate' && (! $res['author-link']))
334 $res['author-link'] = unxmlify($link['attribs']['']['href']);
335 if(!x($res, 'author-avatar') || !$res['author-avatar']) {
336 if($link['attribs']['']['rel'] === 'avatar' || $link['attribs']['']['rel'] === 'photo')
337 $res['author-avatar'] = unxmlify($link['attribs']['']['href']);
343 // No photo/profile-link on the item - look at the feed level
345 if((! (x($res,'author-link'))) || (! (x($res,'author-avatar')))) {
346 $rawauthor = $feed->get_feed_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'author');
347 if($rawauthor && $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) {
348 $base = $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
349 foreach($base as $link) {
350 if($link['attribs']['']['rel'] === 'alternate' && (! $res['author-link']))
351 $res['author-link'] = unxmlify($link['attribs']['']['href']);
352 if(! $res['author-avatar']) {
353 if($link['attribs']['']['rel'] === 'photo' || $link['attribs']['']['rel'] === 'avatar')
354 $res['author-avatar'] = unxmlify($link['attribs']['']['href']);
359 $rawactor = $feed->get_feed_tags(NAMESPACE_ACTIVITY, 'subject');
361 if($rawactor && activity_match($rawactor[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'],ACTIVITY_OBJ_PERSON)) {
362 $base = $rawactor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
364 if($base && count($base)) {
365 foreach($base as $link) {
366 if($link['attribs']['']['rel'] === 'alternate' && (! $res['author-link']))
367 $res['author-link'] = unxmlify($link['attribs']['']['href']);
368 if(! (x($res,'author-avatar'))) {
369 if($link['attribs']['']['rel'] === 'avatar' || $link['attribs']['']['rel'] === 'photo')
370 $res['author-avatar'] = unxmlify($link['attribs']['']['href']);
377 $apps = $item->get_item_tags(NAMESPACE_STATUSNET,'notice_info');
378 if($apps && $apps[0]['attribs']['']['source']) {
379 $res['app'] = strip_tags(unxmlify($apps[0]['attribs']['']['source']));
380 if($res['app'] === 'web')
381 $res['app'] = 'OStatus';
384 // base64 encoded json structure representing Diaspora signature
386 $dsig = $item->get_item_tags(NAMESPACE_DFRN,'diaspora_signature');
388 $res['dsprsig'] = unxmlify($dsig[0]['data']);
391 $dguid = $item->get_item_tags(NAMESPACE_DFRN,'diaspora_guid');
393 $res['guid'] = unxmlify($dguid[0]['data']);
395 $bm = $item->get_item_tags(NAMESPACE_DFRN,'bookmark');
397 $res['bookmark'] = ((unxmlify($bm[0]['data']) === 'true') ? 1 : 0);
401 * If there's a copy of the body content which is guaranteed to have survived mangling in transit, use it.
404 $have_real_body = false;
406 $rawenv = $item->get_item_tags(NAMESPACE_DFRN, 'env');
408 $have_real_body = true;
409 $res['body'] = $rawenv[0]['data'];
410 $res['body'] = str_replace(array(' ',"\t","\r","\n"), array('','','',''),$res['body']);
411 // make sure nobody is trying to sneak some html tags by us
412 $res['body'] = notags(base64url_decode($res['body']));
415 $maxlen = get_max_import_size();
416 if($maxlen && (strlen($res['body']) > $maxlen))
417 $res['body'] = substr($res['body'],0, $maxlen);
419 // It isn't certain at this point whether our content is plaintext or html and we'd be foolish to trust
420 // the content type. Our own network only emits text normally, though it might have been converted to
421 // html if we used a pubsubhubbub transport. But if we see even one html tag in our text, we will
422 // have to assume it is all html and needs to be purified.
424 // It doesn't matter all that much security wise - because before this content is used anywhere, we are
425 // going to escape any tags we find regardless, but this lets us import a limited subset of html from
426 // the wild, by sanitising it and converting supported tags to bbcode before we rip out any remaining
429 if((strpos($res['body'],'<') !== false) && (strpos($res['body'],'>') !== false)) {
431 $res['body'] = reltoabs($res['body'],$base_url);
433 $res['body'] = html2bb_video($res['body']);
435 $res['body'] = oembed_html2bbcode($res['body']);
437 $config = HTMLPurifier_Config::createDefault();
438 $config->set('Cache.DefinitionImpl', null);
440 // we shouldn't need a whitelist, because the bbcode converter
441 // will strip out any unsupported tags.
443 $purifier = new HTMLPurifier($config);
444 $res['body'] = $purifier->purify($res['body']);
446 $res['body'] = @html2bbcode($res['body']);
448 elseif(! $have_real_body) {
450 // it's not one of our messages and it has no tags
451 // so it's probably just text. We'll escape it just to be safe.
453 $res['body'] = escape_tags($res['body']);
456 // this tag is obsolete but we keep it for really old sites
458 $allow = $item->get_item_tags(NAMESPACE_DFRN,'comment-allow');
459 if($allow && $allow[0]['data'] == 1)
460 $res['last-child'] = 1;
462 $res['last-child'] = 0;
464 $private = $item->get_item_tags(NAMESPACE_DFRN,'private');
465 if($private && $private[0]['data'] == 1)
470 $extid = $item->get_item_tags(NAMESPACE_DFRN,'extid');
471 if($extid && $extid[0]['data'])
472 $res['extid'] = $extid[0]['data'];
474 $rawlocation = $item->get_item_tags(NAMESPACE_DFRN, 'location');
476 $res['location'] = unxmlify($rawlocation[0]['data']);
479 $rawcreated = $item->get_item_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'published');
481 $res['created'] = unxmlify($rawcreated[0]['data']);
484 $rawedited = $item->get_item_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'updated');
486 $res['edited'] = unxmlify($rawedited[0]['data']);
488 if((x($res,'edited')) && (! (x($res,'created'))))
489 $res['created'] = $res['edited'];
491 if(! $res['created'])
492 $res['created'] = $item->get_date('c');
495 $res['edited'] = $item->get_date('c');
498 // Disallow time travelling posts
500 $d1 = strtotime($res['created']);
501 $d2 = strtotime($res['edited']);
502 $d3 = strtotime('now');
505 $res['created'] = datetime_convert();
507 $res['edited'] = datetime_convert();
509 $rawowner = $item->get_item_tags(NAMESPACE_DFRN, 'owner');
510 if($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['name'][0]['data'])
511 $res['owner-name'] = unxmlify($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['name'][0]['data']);
512 elseif($rawowner[0]['child'][NAMESPACE_DFRN]['name'][0]['data'])
513 $res['owner-name'] = unxmlify($rawowner[0]['child'][NAMESPACE_DFRN]['name'][0]['data']);
514 if($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]['data'])
515 $res['owner-link'] = unxmlify($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]['data']);
516 elseif($rawowner[0]['child'][NAMESPACE_DFRN]['uri'][0]['data'])
517 $res['owner-link'] = unxmlify($rawowner[0]['child'][NAMESPACE_DFRN]['uri'][0]['data']);
519 if($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) {
520 $base = $rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
522 foreach($base as $link) {
523 if(!x($res, 'owner-avatar') || !$res['owner-avatar']) {
524 if($link['attribs']['']['rel'] === 'photo' || $link['attribs']['']['rel'] === 'avatar')
525 $res['owner-avatar'] = unxmlify($link['attribs']['']['href']);
530 $rawgeo = $item->get_item_tags(NAMESPACE_GEORSS,'point');
532 $res['coord'] = unxmlify($rawgeo[0]['data']);
535 $rawverb = $item->get_item_tags(NAMESPACE_ACTIVITY, 'verb');
537 // select between supported verbs
540 $res['verb'] = unxmlify($rawverb[0]['data']);
543 // translate OStatus unfollow to activity streams if it happened to get selected
545 if((x($res,'verb')) && ($res['verb'] === 'http://ostatus.org/schema/1.0/unfollow'))
546 $res['verb'] = ACTIVITY_UNFOLLOW;
548 $cats = $item->get_categories();
551 foreach($cats as $cat) {
552 $term = $cat->get_term();
554 $term = $cat->get_label();
555 $scheme = $cat->get_scheme();
556 if($scheme && $term && stristr($scheme,'X-DFRN:'))
557 $tag_arr[] = substr($scheme,7,1) . '[url=' . unxmlify(substr($scheme,9)) . ']' . unxmlify($term) . '[/url]';
559 $tag_arr[] = notags(trim($term));
561 $res['tag'] = implode(',', $tag_arr);
564 $attach = $item->get_enclosures();
567 foreach($attach as $att) {
568 $len = intval($att->get_length());
569 $link = str_replace(array(',','"'),array('%2D','%22'),notags(trim(unxmlify($att->get_link()))));
570 $title = str_replace(array(',','"'),array('%2D','%22'),notags(trim(unxmlify($att->get_title()))));
571 $type = str_replace(array(',','"'),array('%2D','%22'),notags(trim(unxmlify($att->get_type()))));
572 if(strpos($type,';'))
573 $type = substr($type,0,strpos($type,';'));
574 if((! $link) || (strpos($link,'http') !== 0))
580 $type = 'application/octet-stream';
582 $att_arr[] = '[attach]href="' . $link . '" length="' . $len . '" type="' . $type . '" title="' . $title . '"[/attach]';
584 $res['attach'] = implode(',', $att_arr);
587 $rawobj = $item->get_item_tags(NAMESPACE_ACTIVITY, 'object');
590 $res['object'] = '<object>' . "\n";
591 $child = $rawobj[0]['child'];
592 if($child[NAMESPACE_ACTIVITY]['object-type'][0]['data']) {
593 $res['object-type'] = $child[NAMESPACE_ACTIVITY]['object-type'][0]['data'];
594 $res['object'] .= '<type>' . $child[NAMESPACE_ACTIVITY]['object-type'][0]['data'] . '</type>' . "\n";
596 if(x($child[SIMPLEPIE_NAMESPACE_ATOM_10], 'id') && $child[SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'])
597 $res['object'] .= '<id>' . $child[SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'] . '</id>' . "\n";
598 if(x($child[SIMPLEPIE_NAMESPACE_ATOM_10], 'link') && $child[SIMPLEPIE_NAMESPACE_ATOM_10]['link'])
599 $res['object'] .= '<link>' . encode_rel_links($child[SIMPLEPIE_NAMESPACE_ATOM_10]['link']) . '</link>' . "\n";
600 if(x($child[SIMPLEPIE_NAMESPACE_ATOM_10], 'title') && $child[SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'])
601 $res['object'] .= '<title>' . $child[SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'] . '</title>' . "\n";
602 if(x($child[SIMPLEPIE_NAMESPACE_ATOM_10], 'content') && $child[SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data']) {
603 $body = $child[SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data'];
605 $body = $child[SIMPLEPIE_NAMESPACE_ATOM_10]['summary'][0]['data'];
606 // preserve a copy of the original body content in case we later need to parse out any microformat information, e.g. events
607 $res['object'] .= '<orig>' . xmlify($body) . '</orig>' . "\n";
608 if((strpos($body,'<') !== false) || (strpos($body,'>') !== false)) {
610 $body = html2bb_video($body);
612 $config = HTMLPurifier_Config::createDefault();
613 $config->set('Cache.DefinitionImpl', null);
615 $purifier = new HTMLPurifier($config);
616 $body = $purifier->purify($body);
617 $body = html2bbcode($body);
620 $res['object'] .= '<content>' . $body . '</content>' . "\n";
623 $res['object'] .= '</object>' . "\n";
626 $rawobj = $item->get_item_tags(NAMESPACE_ACTIVITY, 'target');
629 $res['target'] = '<target>' . "\n";
630 $child = $rawobj[0]['child'];
631 if($child[NAMESPACE_ACTIVITY]['object-type'][0]['data']) {
632 $res['target'] .= '<type>' . $child[NAMESPACE_ACTIVITY]['object-type'][0]['data'] . '</type>' . "\n";
634 if(x($child[SIMPLEPIE_NAMESPACE_ATOM_10], 'id') && $child[SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'])
635 $res['target'] .= '<id>' . $child[SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'] . '</id>' . "\n";
636 if(x($child[SIMPLEPIE_NAMESPACE_ATOM_10], 'link') && $child[SIMPLEPIE_NAMESPACE_ATOM_10]['link'])
637 $res['target'] .= '<link>' . encode_rel_links($child[SIMPLEPIE_NAMESPACE_ATOM_10]['link']) . '</link>' . "\n";
638 if(x($child[SIMPLEPIE_NAMESPACE_ATOM_10], 'data') && $child[SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'])
639 $res['target'] .= '<title>' . $child[SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'] . '</title>' . "\n";
640 if(x($child[SIMPLEPIE_NAMESPACE_ATOM_10], 'data') && $child[SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data']) {
641 $body = $child[SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data'];
643 $body = $child[SIMPLEPIE_NAMESPACE_ATOM_10]['summary'][0]['data'];
644 // preserve a copy of the original body content in case we later need to parse out any microformat information, e.g. events
645 $res['target'] .= '<orig>' . xmlify($body) . '</orig>' . "\n";
646 if((strpos($body,'<') !== false) || (strpos($body,'>') !== false)) {
648 $body = html2bb_video($body);
650 $config = HTMLPurifier_Config::createDefault();
651 $config->set('Cache.DefinitionImpl', null);
653 $purifier = new HTMLPurifier($config);
654 $body = $purifier->purify($body);
655 $body = html2bbcode($body);
658 $res['target'] .= '<content>' . $body . '</content>' . "\n";
661 $res['target'] .= '</target>' . "\n";
664 $arr = array('feed' => $feed, 'item' => $item, 'result' => $res);
666 call_hooks('parse_atom', $arr);
671 function encode_rel_links($links) {
673 if(! ((is_array($links)) && (count($links))))
675 foreach($links as $link) {
677 if($link['attribs']['']['rel'])
678 $o .= 'rel="' . $link['attribs']['']['rel'] . '" ';
679 if($link['attribs']['']['type'])
680 $o .= 'type="' . $link['attribs']['']['type'] . '" ';
681 if($link['attribs']['']['href'])
682 $o .= 'href="' . $link['attribs']['']['href'] . '" ';
683 if( (x($link['attribs'],NAMESPACE_MEDIA)) && $link['attribs'][NAMESPACE_MEDIA]['width'])
684 $o .= 'media:width="' . $link['attribs'][NAMESPACE_MEDIA]['width'] . '" ';
685 if( (x($link['attribs'],NAMESPACE_MEDIA)) && $link['attribs'][NAMESPACE_MEDIA]['height'])
686 $o .= 'media:height="' . $link['attribs'][NAMESPACE_MEDIA]['height'] . '" ';
692 function item_store($arr,$force_parent = false) {
694 // If a Diaspora signature structure was passed in, pull it out of the
695 // item array and set it aside for later storage.
698 if(x($arr,'dsprsig')) {
699 $dsprsig = json_decode(base64_decode($arr['dsprsig']));
700 unset($arr['dsprsig']);
703 if(x($arr, 'gravity'))
704 $arr['gravity'] = intval($arr['gravity']);
705 elseif($arr['parent-uri'] === $arr['uri'])
707 elseif(activity_match($arr['verb'],ACTIVITY_POST))
710 $arr['gravity'] = 6; // extensible catchall
713 $arr['type'] = 'remote';
715 // Shouldn't happen but we want to make absolutely sure it doesn't leak from a plugin.
717 if((strpos($arr['body'],'<') !== false) || (strpos($arr['body'],'>') !== false))
718 $arr['body'] = strip_tags($arr['body']);
721 $arr['wall'] = ((x($arr,'wall')) ? intval($arr['wall']) : 0);
722 $arr['uri'] = ((x($arr,'uri')) ? notags(trim($arr['uri'])) : random_string());
723 $arr['extid'] = ((x($arr,'extid')) ? notags(trim($arr['extid'])) : '');
724 $arr['author-name'] = ((x($arr,'author-name')) ? notags(trim($arr['author-name'])) : '');
725 $arr['author-link'] = ((x($arr,'author-link')) ? notags(trim($arr['author-link'])) : '');
726 $arr['author-avatar'] = ((x($arr,'author-avatar')) ? notags(trim($arr['author-avatar'])) : '');
727 $arr['owner-name'] = ((x($arr,'owner-name')) ? notags(trim($arr['owner-name'])) : '');
728 $arr['owner-link'] = ((x($arr,'owner-link')) ? notags(trim($arr['owner-link'])) : '');
729 $arr['owner-avatar'] = ((x($arr,'owner-avatar')) ? notags(trim($arr['owner-avatar'])) : '');
730 $arr['created'] = ((x($arr,'created') !== false) ? datetime_convert('UTC','UTC',$arr['created']) : datetime_convert());
731 $arr['edited'] = ((x($arr,'edited') !== false) ? datetime_convert('UTC','UTC',$arr['edited']) : datetime_convert());
732 $arr['commented'] = datetime_convert();
733 $arr['received'] = datetime_convert();
734 $arr['changed'] = datetime_convert();
735 $arr['title'] = ((x($arr,'title')) ? notags(trim($arr['title'])) : '');
736 $arr['location'] = ((x($arr,'location')) ? notags(trim($arr['location'])) : '');
737 $arr['coord'] = ((x($arr,'coord')) ? notags(trim($arr['coord'])) : '');
738 $arr['last-child'] = ((x($arr,'last-child')) ? intval($arr['last-child']) : 0 );
739 $arr['visible'] = ((x($arr,'visible') !== false) ? intval($arr['visible']) : 1 );
741 $arr['parent-uri'] = ((x($arr,'parent-uri')) ? notags(trim($arr['parent-uri'])) : '');
742 $arr['verb'] = ((x($arr,'verb')) ? notags(trim($arr['verb'])) : '');
743 $arr['object-type'] = ((x($arr,'object-type')) ? notags(trim($arr['object-type'])) : '');
744 $arr['object'] = ((x($arr,'object')) ? trim($arr['object']) : '');
745 $arr['target-type'] = ((x($arr,'target-type')) ? notags(trim($arr['target-type'])) : '');
746 $arr['target'] = ((x($arr,'target')) ? trim($arr['target']) : '');
747 $arr['plink'] = ((x($arr,'plink')) ? notags(trim($arr['plink'])) : '');
748 $arr['allow_cid'] = ((x($arr,'allow_cid')) ? trim($arr['allow_cid']) : '');
749 $arr['allow_gid'] = ((x($arr,'allow_gid')) ? trim($arr['allow_gid']) : '');
750 $arr['deny_cid'] = ((x($arr,'deny_cid')) ? trim($arr['deny_cid']) : '');
751 $arr['deny_gid'] = ((x($arr,'deny_gid')) ? trim($arr['deny_gid']) : '');
752 $arr['private'] = ((x($arr,'private')) ? intval($arr['private']) : 0 );
753 $arr['bookmark'] = ((x($arr,'bookmark')) ? intval($arr['bookmark']) : 0 );
754 $arr['body'] = ((x($arr,'body')) ? trim($arr['body']) : '');
755 $arr['tag'] = ((x($arr,'tag')) ? notags(trim($arr['tag'])) : '');
756 $arr['attach'] = ((x($arr,'attach')) ? notags(trim($arr['attach'])) : '');
757 $arr['app'] = ((x($arr,'app')) ? notags(trim($arr['app'])) : '');
758 $arr['origin'] = ((x($arr,'origin')) ? intval($arr['origin']) : 0 );
759 $arr['guid'] = ((x($arr,'guid')) ? notags(trim($arr['guid'])) : get_guid());
761 if($arr['parent-uri'] === $arr['uri']) {
764 $allow_cid = $arr['allow_cid'];
765 $allow_gid = $arr['allow_gid'];
766 $deny_cid = $arr['deny_cid'];
767 $deny_gid = $arr['deny_gid'];
771 // find the parent and snarf the item id and ACL's
772 // and anything else we need to inherit
774 $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d ORDER BY `id` ASC LIMIT 1",
775 dbesc($arr['parent-uri']),
781 // is the new message multi-level threaded?
782 // even though we don't support it now, preserve the info
783 // and re-attach to the conversation parent.
785 if($r[0]['uri'] != $r[0]['parent-uri']) {
786 $arr['thr-parent'] = $arr['parent-uri'];
787 $arr['parent-uri'] = $r[0]['parent-uri'];
788 $z = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `parent-uri` = '%s' AND `uid` = %d
789 ORDER BY `id` ASC LIMIT 1",
790 dbesc($r[0]['parent-uri']),
791 dbesc($r[0]['parent-uri']),
798 $parent_id = $r[0]['id'];
799 $parent_deleted = $r[0]['deleted'];
800 $allow_cid = $r[0]['allow_cid'];
801 $allow_gid = $r[0]['allow_gid'];
802 $deny_cid = $r[0]['deny_cid'];
803 $deny_gid = $r[0]['deny_gid'];
804 $arr['wall'] = $r[0]['wall'];
808 // Allow one to see reply tweets from status.net even when
809 // we don't have or can't see the original post.
812 logger('item_store: $force_parent=true, reply converted to top-level post.');
814 $arr['thr-parent'] = $arr['parent-uri'];
815 $arr['parent-uri'] = $arr['uri'];
819 logger('item_store: item parent was not found - ignoring item');
827 $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
831 if($r && count($r)) {
832 logger('item-store: duplicate item ignored. ' . print_r($arr,true));
836 call_hooks('post_remote',$arr);
838 if(x($arr,'cancel')) {
839 logger('item_store: post cancelled by plugin.');
845 logger('item_store: ' . print_r($arr,true), LOGGER_DATA);
847 $r = dbq("INSERT INTO `item` (`"
848 . implode("`, `", array_keys($arr))
850 . implode("', '", array_values($arr))
853 // find the item we just created
855 $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = %d ORDER BY `id` ASC ",
856 $arr['uri'], // already dbesc'd
861 $current_post = $r[0]['id'];
862 logger('item_store: created item ' . $current_post);
865 logger('item_store: could not locate created item');
869 logger('item_store: duplicated post occurred. Removing duplicates.');
870 q("DELETE FROM `item` WHERE `uri` = '%s' AND `uid` = %d AND `id` != %d ",
873 intval($current_post)
877 if((! $parent_id) || ($arr['parent-uri'] === $arr['uri']))
878 $parent_id = $current_post;
880 if(strlen($allow_cid) || strlen($allow_gid) || strlen($deny_cid) || strlen($deny_gid))
883 $private = $arr['private'];
885 // Set parent id - and also make sure to inherit the parent's ACL's.
887 $r = q("UPDATE `item` SET `parent` = %d, `allow_cid` = '%s', `allow_gid` = '%s',
888 `deny_cid` = '%s', `deny_gid` = '%s', `private` = %d, `deleted` = %d WHERE `id` = %d LIMIT 1",
895 intval($parent_deleted),
896 intval($current_post)
899 // update the commented timestamp on the parent
901 q("UPDATE `item` set `commented` = '%s', `changed` = '%s' WHERE `id` = %d LIMIT 1",
902 dbesc(datetime_convert()),
903 dbesc(datetime_convert()),
908 q("insert into sign (`iid`,`signed_text`,`signature`,`signer`) values (%d,'%s','%s','%s') ",
909 intval($current_post),
910 dbesc($dsprsig->signed_text),
911 dbesc($dsprsig->signature),
912 dbesc($dsprsig->signer)
918 * If this is now the last-child, force all _other_ children of this parent to *not* be last-child
921 if($arr['last-child']) {
922 $r = q("UPDATE `item` SET `last-child` = 0 WHERE `parent-uri` = '%s' AND `uid` = %d AND `id` != %d",
925 intval($current_post)
929 tag_deliver($arr['uid'],$current_post);
931 return $current_post;
934 function get_item_contact($item,$contacts) {
935 if(! count($contacts) || (! is_array($item)))
937 foreach($contacts as $contact) {
938 if($contact['id'] == $item['contact-id']) {
947 function tag_deliver($uid,$item_id) {
949 // look for mention tags and setup a second delivery chain for forum/community posts if appropriate
955 $u = q("select uid, nickname, language, username, email, `page-flags`, `notify-flags` from user where uid = %d limit 1",
961 $community_page = (($u[0]['page-flags'] == PAGE_COMMUNITY) ? true : false);
963 $i = q("select * from item where id = %d and uid = %d limit 1",
972 $link = normalise_link($a->get_baseurl() . '/profile/' . $u[0]['nickname']);
974 // Diaspora uses their own hardwired link URL in @-tags
975 // instead of the one we supply with webfinger
977 $dlink = normalise_link($a->get_baseurl() . '/u/' . $u[0]['nickname']);
979 $cnt = preg_match_all('/[\@\!]\[url\=(.*?)\](.*?)\[\/url\]/ism',$item['body'],$matches,PREG_SET_ORDER);
981 foreach($matches as $mtch) {
982 if(link_compare($link,$mtch[1]) || link_compare($dlink,$mtch[1])) {
984 logger('tag_deliver: mention found: ' . $mtch[2]);
992 // send a notification
994 require_once('include/enotify.php');
996 'type' => NOTIFY_TAGSELF,
997 'notify_flags' => $u[0]['notify-flags'],
998 'language' => $u[0]['language'],
999 'to_name' => $u[0]['username'],
1000 'to_email' => $u[0]['email'],
1001 'uid' => $u[0]['uid'],
1003 'link' => $a->get_baseurl() . '/display/' . $u[0]['nickname'] . '/' . $item['id'],
1004 'source_name' => $item['author-name'],
1005 'source_link' => $item['author-link'],
1006 'source_photo' => $item['author-avatar'],
1007 'verb' => ACTIVITY_TAG,
1011 if(! $community_page)
1014 // tgroup delivery - setup a second delivery chain
1015 // prevent delivery looping - only proceed
1016 // if the message originated elsewhere and is a top-level post
1018 if(($item['wall']) || ($item['origin']) || ($item['id'] != $item['parent']))
1021 // now change this copy of the post to a forum head message and deliver to all the tgroup members
1024 $c = q("select name, url, thumb from contact where self = 1 and uid = %d limit 1",
1025 intval($u[0]['uid'])
1030 q("update item set wall = 1, origin = 1, forum_mode = 1, `owner-name` = '%s', `owner-link` = '%s', `owner-avatar` = '%s' where id = %d limit 1",
1031 dbesc($c[0]['name']),
1032 dbesc($c[0]['url']),
1033 dbesc($c[0]['thumb']),
1037 proc_run('php','include/notifier.php','tgroup',$item_id);
1046 function dfrn_deliver($owner,$contact,$atom, $dissolve = false) {
1050 // if((! strlen($contact['issued-id'])) && (! $contact['duplex']) && (! ($owner['page-flags'] == PAGE_COMMUNITY)))
1053 $idtosend = $orig_id = (($contact['dfrn-id']) ? $contact['dfrn-id'] : $contact['issued-id']);
1055 if($contact['duplex'] && $contact['dfrn-id'])
1056 $idtosend = '0:' . $orig_id;
1057 if($contact['duplex'] && $contact['issued-id'])
1058 $idtosend = '1:' . $orig_id;
1060 $rino = ((function_exists('mcrypt_encrypt')) ? 1 : 0);
1062 $rino_enable = get_config('system','rino_encrypt');
1067 $ssl_val = intval(get_config('system','ssl_policy'));
1071 case SSL_POLICY_FULL:
1072 $ssl_policy = 'full';
1074 case SSL_POLICY_SELFSIGN:
1075 $ssl_policy = 'self';
1077 case SSL_POLICY_NONE:
1079 $ssl_policy = 'none';
1083 $url = $contact['notify'] . '&dfrn_id=' . $idtosend . '&dfrn_version=' . DFRN_PROTOCOL_VERSION . (($rino) ? '&rino=1' : '');
1085 logger('dfrn_deliver: ' . $url);
1087 $xml = fetch_url($url);
1089 $curl_stat = $a->get_curl_code();
1091 return(-1); // timed out
1093 logger('dfrn_deliver: ' . $xml, LOGGER_DATA);
1098 if(strpos($xml,'<?xml') === false) {
1099 logger('dfrn_deliver: no valid XML returned');
1100 logger('dfrn_deliver: returned XML: ' . $xml, LOGGER_DATA);
1104 $res = parse_xml_string($xml);
1106 if((intval($res->status) != 0) || (! strlen($res->challenge)) || (! strlen($res->dfrn_id)))
1107 return (($res->status) ? $res->status : 3);
1109 $postvars = array();
1110 $sent_dfrn_id = hex2bin((string) $res->dfrn_id);
1111 $challenge = hex2bin((string) $res->challenge);
1112 $perm = (($res->perm) ? $res->perm : null);
1113 $dfrn_version = (float) (($res->dfrn_version) ? $res->dfrn_version : 2.0);
1114 $rino_allowed = ((intval($res->rino) === 1) ? 1 : 0);
1115 $page = (($owner['page-flags'] == PAGE_COMMUNITY) ? 1 : 0);
1117 $final_dfrn_id = '';
1120 if((($perm == 'rw') && (! intval($contact['writable'])))
1121 || (($perm == 'r') && (intval($contact['writable'])))) {
1122 q("update contact set writable = %d where id = %d limit 1",
1123 intval(($perm == 'rw') ? 1 : 0),
1124 intval($contact['id'])
1126 $contact['writable'] = (string) 1 - intval($contact['writable']);
1130 if(($contact['duplex'] && strlen($contact['pubkey']))
1131 || ($owner['page-flags'] == PAGE_COMMUNITY && strlen($contact['pubkey']))
1132 || ($contact['rel'] == CONTACT_IS_SHARING && strlen($contact['pubkey']))) {
1133 openssl_public_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['pubkey']);
1134 openssl_public_decrypt($challenge,$postvars['challenge'],$contact['pubkey']);
1137 openssl_private_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['prvkey']);
1138 openssl_private_decrypt($challenge,$postvars['challenge'],$contact['prvkey']);
1141 $final_dfrn_id = substr($final_dfrn_id, 0, strpos($final_dfrn_id, '.'));
1143 if(strpos($final_dfrn_id,':') == 1)
1144 $final_dfrn_id = substr($final_dfrn_id,2);
1146 if($final_dfrn_id != $orig_id) {
1147 logger('dfrn_deliver: wrong dfrn_id.');
1148 // did not decode properly - cannot trust this site
1152 $postvars['dfrn_id'] = $idtosend;
1153 $postvars['dfrn_version'] = DFRN_PROTOCOL_VERSION;
1155 $postvars['dissolve'] = '1';
1158 if((($contact['rel']) && ($contact['rel'] != CONTACT_IS_SHARING) && (! $contact['blocked'])) || ($owner['page-flags'] == PAGE_COMMUNITY)) {
1159 $postvars['data'] = $atom;
1160 $postvars['perm'] = 'rw';
1163 $postvars['data'] = str_replace('<dfrn:comment-allow>1','<dfrn:comment-allow>0',$atom);
1164 $postvars['perm'] = 'r';
1167 $postvars['ssl_policy'] = $ssl_policy;
1170 $postvars['page'] = '1';
1172 if($rino && $rino_allowed && (! $dissolve)) {
1173 $key = substr(random_string(),0,16);
1174 $data = bin2hex(aes_encrypt($postvars['data'],$key));
1175 $postvars['data'] = $data;
1176 logger('rino: sent key = ' . $key, LOGGER_DEBUG);
1179 if($dfrn_version >= 2.1) {
1180 if(($contact['duplex'] && strlen($contact['pubkey']))
1181 || ($owner['page-flags'] == PAGE_COMMUNITY && strlen($contact['pubkey']))
1182 || ($contact['rel'] == CONTACT_IS_SHARING && strlen($contact['pubkey']))) {
1184 openssl_public_encrypt($key,$postvars['key'],$contact['pubkey']);
1187 openssl_private_encrypt($key,$postvars['key'],$contact['prvkey']);
1191 if(($contact['duplex'] && strlen($contact['prvkey'])) || ($owner['page-flags'] == PAGE_COMMUNITY)) {
1192 openssl_private_encrypt($key,$postvars['key'],$contact['prvkey']);
1195 openssl_public_encrypt($key,$postvars['key'],$contact['pubkey']);
1199 logger('md5 rawkey ' . md5($postvars['key']));
1201 $postvars['key'] = bin2hex($postvars['key']);
1204 logger('dfrn_deliver: ' . "SENDING: " . print_r($postvars,true), LOGGER_DATA);
1206 $xml = post_url($contact['notify'],$postvars);
1208 logger('dfrn_deliver: ' . "RECEIVED: " . $xml, LOGGER_DATA);
1210 $curl_stat = $a->get_curl_code();
1211 if((! $curl_stat) || (! strlen($xml)))
1212 return(-1); // timed out
1214 if(($curl_stat == 503) && (stristr($a->get_curl_headers(),'retry-after')))
1217 if(strpos($xml,'<?xml') === false) {
1218 logger('dfrn_deliver: phase 2: no valid XML returned');
1219 logger('dfrn_deliver: phase 2: returned XML: ' . $xml, LOGGER_DATA);
1223 $res = parse_xml_string($xml);
1225 return $res->status;
1231 * consume_feed - process atom feed and update anything/everything we might need to update
1233 * $xml = the (atom) feed to consume - RSS isn't as fully supported but may work for simple feeds.
1235 * $importer = the contact_record (joined to user_record) of the local user who owns this relationship.
1236 * It is this person's stuff that is going to be updated.
1237 * $contact = the person who is sending us stuff. If not set, we MAY be processing a "follow" activity
1238 * from an external network and MAY create an appropriate contact record. Otherwise, we MUST
1239 * have a contact record.
1240 * $hub = should we find a hub declation in the feed, pass it back to our calling process, who might (or
1241 * might not) try and subscribe to it.
1242 * $datedir sorts in reverse order
1243 * $pass - by default ($pass = 0) we cannot guarantee that a parent item has been
1244 * imported prior to its children being seen in the stream unless we are certain
1245 * of how the feed is arranged/ordered.
1246 * With $pass = 1, we only pull parent items out of the stream.
1247 * With $pass = 2, we only pull children (comments/likes).
1249 * So running this twice, first with pass 1 and then with pass 2 will do the right
1250 * thing regardless of feed ordering. This won't be adequate in a fully-threaded
1251 * model where comments can have sub-threads. That would require some massive sorting
1252 * to get all the feed items into a mostly linear ordering, and might still require
1256 function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0) {
1258 require_once('library/simplepie/simplepie.inc');
1260 if(! strlen($xml)) {
1261 logger('consume_feed: empty input');
1265 $feed = new SimplePie();
1266 $feed->set_raw_data($xml);
1268 $feed->enable_order_by_date(true);
1270 $feed->enable_order_by_date(false);
1274 logger('consume_feed: Error parsing XML: ' . $feed->error());
1276 $permalink = $feed->get_permalink();
1278 // Check at the feed level for updated contact name and/or photo
1282 $photo_timestamp = '';
1286 $hubs = $feed->get_links('hub');
1289 $hub = implode(',', $hubs);
1291 $rawtags = $feed->get_feed_tags( NAMESPACE_DFRN, 'owner');
1293 $rawtags = $feed->get_feed_tags( SIMPLEPIE_NAMESPACE_ATOM_10, 'author');
1295 $elems = $rawtags[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10];
1296 if($elems['name'][0]['attribs'][NAMESPACE_DFRN]['updated']) {
1297 $name_updated = $elems['name'][0]['attribs'][NAMESPACE_DFRN]['updated'];
1298 $new_name = $elems['name'][0]['data'];
1300 if((x($elems,'link')) && ($elems['link'][0]['attribs']['']['rel'] === 'photo') && ($elems['link'][0]['attribs'][NAMESPACE_DFRN]['updated'])) {
1301 $photo_timestamp = datetime_convert('UTC','UTC',$elems['link'][0]['attribs'][NAMESPACE_DFRN]['updated']);
1302 $photo_url = $elems['link'][0]['attribs']['']['href'];
1305 if((x($rawtags[0]['child'], NAMESPACE_DFRN)) && (x($rawtags[0]['child'][NAMESPACE_DFRN],'birthday'))) {
1306 $birthday = datetime_convert('UTC','UTC', $rawtags[0]['child'][NAMESPACE_DFRN]['birthday'][0]['data']);
1310 if((is_array($contact)) && ($photo_timestamp) && (strlen($photo_url)) && ($photo_timestamp > $contact['avatar-date'])) {
1311 logger('consume_feed: Updating photo for ' . $contact['name']);
1312 require_once("Photo.php");
1313 $photo_failure = false;
1314 $have_photo = false;
1316 $r = q("SELECT `resource-id` FROM `photo` WHERE `contact-id` = %d AND `uid` = %d LIMIT 1",
1317 intval($contact['id']),
1318 intval($contact['uid'])
1321 $resource_id = $r[0]['resource-id'];
1325 $resource_id = photo_new_resource();
1328 $img_str = fetch_url($photo_url,true);
1329 $img = new Photo($img_str);
1330 if($img->is_valid()) {
1332 q("DELETE FROM `photo` WHERE `resource-id` = '%s' AND `contact-id` = %d AND `uid` = %d",
1333 dbesc($resource_id),
1334 intval($contact['id']),
1335 intval($contact['uid'])
1339 $img->scaleImageSquare(175);
1341 $hash = $resource_id;
1342 $r = $img->store($contact['uid'], $contact['id'], $hash, basename($photo_url), 'Contact Photos', 4);
1344 $img->scaleImage(80);
1345 $r = $img->store($contact['uid'], $contact['id'], $hash, basename($photo_url), 'Contact Photos', 5);
1347 $img->scaleImage(48);
1348 $r = $img->store($contact['uid'], $contact['id'], $hash, basename($photo_url), 'Contact Photos', 6);
1352 q("UPDATE `contact` SET `avatar-date` = '%s', `photo` = '%s', `thumb` = '%s', `micro` = '%s'
1353 WHERE `uid` = %d AND `id` = %d LIMIT 1",
1354 dbesc(datetime_convert()),
1355 dbesc($a->get_baseurl() . '/photo/' . $hash . '-4.jpg'),
1356 dbesc($a->get_baseurl() . '/photo/' . $hash . '-5.jpg'),
1357 dbesc($a->get_baseurl() . '/photo/' . $hash . '-6.jpg'),
1358 intval($contact['uid']),
1359 intval($contact['id'])
1364 if((is_array($contact)) && ($name_updated) && (strlen($new_name)) && ($name_updated > $contact['name-date'])) {
1365 $r = q("select * from contact where uid = %d and id = %d limit 1",
1366 intval($contact['uid']),
1367 intval($contact['id'])
1370 $x = q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s' WHERE `uid` = %d AND `id` = %d LIMIT 1",
1371 dbesc(notags(trim($new_name))),
1372 dbesc(datetime_convert()),
1373 intval($contact['uid']),
1374 intval($contact['id'])
1377 // do our best to update the name on content items
1380 q("update item set `author-name` = '%s' where `author-name` = '%s' and `author-link` = '%s' and uid = %d",
1381 dbesc(notags(trim($new_name))),
1382 dbesc($r[0]['name']),
1383 dbesc($r[0]['url']),
1384 intval($contact['uid'])
1389 if(strlen($birthday)) {
1390 if(substr($birthday,0,4) != $contact['bdyear']) {
1391 logger('consume_feed: updating birthday: ' . $birthday);
1395 * Add new birthday event for this person
1397 * $bdtext is just a readable placeholder in case the event is shared
1398 * with others. We will replace it during presentation to our $importer
1399 * to contain a sparkle link and perhaps a photo.
1403 $bdtext = t('Birthday:') . ' [url=' . $contact['url'] . ']' . $contact['name'] . '[/url]' ;
1406 $r = q("INSERT INTO `event` (`uid`,`cid`,`created`,`edited`,`start`,`finish`,`desc`,`type`)
1407 VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s' ) ",
1408 intval($contact['uid']),
1409 intval($contact['id']),
1410 dbesc(datetime_convert()),
1411 dbesc(datetime_convert()),
1412 dbesc(datetime_convert('UTC','UTC', $birthday)),
1413 dbesc(datetime_convert('UTC','UTC', $birthday . ' + 1 day ')),
1421 q("UPDATE `contact` SET `bdyear` = '%s' WHERE `uid` = %d AND `id` = %d LIMIT 1",
1422 dbesc(substr($birthday,0,4)),
1423 intval($contact['uid']),
1424 intval($contact['id'])
1427 // This function is called twice without reloading the contact
1428 // Make sure we only create one event. This is why &$contact
1429 // is a reference var in this function
1431 $contact['bdyear'] = substr($birthday,0,4);
1436 $community_page = 0;
1437 $rawtags = $feed->get_feed_tags( NAMESPACE_DFRN, 'community');
1439 $community_page = intval($rawtags[0]['data']);
1441 if(is_array($contact) && intval($contact['forum']) != $community_page) {
1442 q("update contact set forum = %d where id = %d limit 1",
1443 intval($community_page),
1444 intval($contact['id'])
1446 $contact['forum'] = (string) $community_page;
1450 // process any deleted entries
1452 $del_entries = $feed->get_feed_tags(NAMESPACE_TOMB, 'deleted-entry');
1453 if(is_array($del_entries) && count($del_entries) && $pass != 2) {
1454 foreach($del_entries as $dentry) {
1456 if(isset($dentry['attribs']['']['ref'])) {
1457 $uri = $dentry['attribs']['']['ref'];
1459 if(isset($dentry['attribs']['']['when'])) {
1460 $when = $dentry['attribs']['']['when'];
1461 $when = datetime_convert('UTC','UTC', $when, 'Y-m-d H:i:s');
1464 $when = datetime_convert('UTC','UTC','now','Y-m-d H:i:s');
1466 if($deleted && is_array($contact)) {
1467 $r = q("SELECT `item`.*, `contact`.`self` FROM `item` left join `contact` on `item`.`contact-id` = `contact`.`id`
1468 WHERE `uri` = '%s' AND `item`.`uid` = %d AND `contact-id` = %d AND NOT `item`.`file` LIKE '%%[%%' LIMIT 1",
1470 intval($importer['uid']),
1471 intval($contact['id'])
1476 if(! $item['deleted'])
1477 logger('consume_feed: deleting item ' . $item['id'] . ' uri=' . $item['uri'], LOGGER_DEBUG);
1479 if(($item['verb'] === ACTIVITY_TAG) && ($item['object-type'] === ACTIVITY_OBJ_TAGTERM)) {
1480 $xo = parse_xml_string($item['object'],false);
1481 $xt = parse_xml_string($item['target'],false);
1482 if($xt->type === ACTIVITY_OBJ_NOTE) {
1483 $i = q("select * from `item` where uri = '%s' and uid = %d limit 1",
1485 intval($importer['importer_uid'])
1489 // For tags, the owner cannot remove the tag on the author's copy of the post.
1491 $owner_remove = (($item['contact-id'] == $i[0]['contact-id']) ? true: false);
1492 $author_remove = (($item['origin'] && $item['self']) ? true : false);
1493 $author_copy = (($item['origin']) ? true : false);
1495 if($owner_remove && $author_copy)
1497 if($author_remove || $owner_remove) {
1498 $tags = explode(',',$i[0]['tag']);
1501 foreach($tags as $tag)
1502 if(trim($tag) !== trim($xo->body))
1503 $newtags[] = trim($tag);
1505 q("update item set tag = '%s' where id = %d limit 1",
1506 dbesc(implode(',',$newtags)),
1514 if($item['uri'] == $item['parent-uri']) {
1515 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s',
1516 `body` = '', `title` = ''
1517 WHERE `parent-uri` = '%s' AND `uid` = %d",
1519 dbesc(datetime_convert()),
1520 dbesc($item['uri']),
1521 intval($importer['uid'])
1525 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s',
1526 `body` = '', `title` = ''
1527 WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1529 dbesc(datetime_convert()),
1531 intval($importer['uid'])
1533 if($item['last-child']) {
1534 // ensure that last-child is set in case the comment that had it just got wiped.
1535 q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d ",
1536 dbesc(datetime_convert()),
1537 dbesc($item['parent-uri']),
1538 intval($item['uid'])
1540 // who is the last child now?
1541 $r = q("SELECT `id` FROM `item` WHERE `parent-uri` = '%s' AND `type` != 'activity' AND `deleted` = 0 AND `moderated` = 0 AND `uid` = %d
1542 ORDER BY `created` DESC LIMIT 1",
1543 dbesc($item['parent-uri']),
1544 intval($importer['uid'])
1547 q("UPDATE `item` SET `last-child` = 1 WHERE `id` = %d LIMIT 1",
1558 // Now process the feed
1560 if($feed->get_item_quantity()) {
1562 logger('consume_feed: feed item count = ' . $feed->get_item_quantity());
1564 // in inverse date order
1566 $items = array_reverse($feed->get_items());
1568 $items = $feed->get_items();
1571 foreach($items as $item) {
1574 $item_id = $item->get_id();
1575 $rawthread = $item->get_item_tags( NAMESPACE_THREAD,'in-reply-to');
1576 if(isset($rawthread[0]['attribs']['']['ref'])) {
1578 $parent_uri = $rawthread[0]['attribs']['']['ref'];
1581 if(($is_reply) && is_array($contact)) {
1586 // Have we seen it? If not, import it.
1588 $item_id = $item->get_id();
1589 $datarray = get_atom_elements($feed,$item);
1592 if((! x($datarray,'author-name')) && ($contact['network'] != NETWORK_DFRN))
1593 $datarray['author-name'] = $contact['name'];
1594 if((! x($datarray,'author-link')) && ($contact['network'] != NETWORK_DFRN))
1595 $datarray['author-link'] = $contact['url'];
1596 if((! x($datarray,'author-avatar')) && ($contact['network'] != NETWORK_DFRN))
1597 $datarray['author-avatar'] = $contact['thumb'];
1599 if((! x($datarray,'author-name')) || (! x($datarray,'author-link'))) {
1600 logger('consume_feed: no author information! ' . print_r($datarray,true));
1604 $r = q("SELECT `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1606 intval($importer['uid'])
1609 // Update content if 'updated' changes
1612 if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) {
1613 $r = q("UPDATE `item` SET `title` = '%s', `body` = '%s', `tag` = '%s', `edited` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1614 dbesc($datarray['title']),
1615 dbesc($datarray['body']),
1616 dbesc($datarray['tag']),
1617 dbesc(datetime_convert('UTC','UTC',$datarray['edited'])),
1619 intval($importer['uid'])
1623 // update last-child if it changes
1625 $allow = $item->get_item_tags( NAMESPACE_DFRN, 'comment-allow');
1626 if(($allow) && ($allow[0]['data'] != $r[0]['last-child'])) {
1627 $r = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d",
1628 dbesc(datetime_convert()),
1630 intval($importer['uid'])
1632 $r = q("UPDATE `item` SET `last-child` = %d , `changed` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1633 intval($allow[0]['data']),
1634 dbesc(datetime_convert()),
1636 intval($importer['uid'])
1642 $force_parent = false;
1643 if($contact['network'] === NETWORK_OSTATUS || stristr($contact['url'],'twitter.com')) {
1644 if($contact['network'] === NETWORK_OSTATUS)
1645 $force_parent = true;
1646 if(strlen($datarray['title']))
1647 unset($datarray['title']);
1648 $r = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d",
1649 dbesc(datetime_convert()),
1651 intval($importer['uid'])
1653 $datarray['last-child'] = 1;
1656 if(($contact['network'] === NETWORK_FEED) || (! strlen($contact['notify']))) {
1657 // one way feed - no remote comment ability
1658 $datarray['last-child'] = 0;
1660 $datarray['parent-uri'] = $parent_uri;
1661 $datarray['uid'] = $importer['uid'];
1662 $datarray['contact-id'] = $contact['id'];
1663 if((activity_match($datarray['verb'],ACTIVITY_LIKE)) || (activity_match($datarray['verb'],ACTIVITY_DISLIKE))) {
1664 $datarray['type'] = 'activity';
1665 $datarray['gravity'] = GRAVITY_LIKE;
1666 // only one like or dislike per person
1667 $r = q("select id from item where uid = %d and `contact-id` = %d and verb ='%s' and deleted = 0 limit 1",
1668 intval($datarray['uid']),
1669 intval($datarray['contact-id']),
1670 dbesc($datarray['verb'])
1676 if(($datarray['verb'] === ACTIVITY_TAG) && ($datarray['object-type'] === ACTIVITY_OBJ_TAGTERM)) {
1677 $xo = parse_xml_string($datarray['object'],false);
1678 $xt = parse_xml_string($datarray['target'],false);
1680 if($xt->type == ACTIVITY_OBJ_NOTE) {
1681 $r = q("select * from item where `uri` = '%s' AND `uid` = %d limit 1",
1683 intval($importer['importer_uid'])
1688 // extract tag, if not duplicate, add to parent item
1689 if($xo->id && $xo->content) {
1690 $newtag = '#[url=' . $xo->id . ']'. $xo->content . '[/url]';
1691 if(! (stristr($r[0]['tag'],$newtag))) {
1692 q("UPDATE item SET tag = '%s' WHERE id = %d LIMIT 1",
1693 dbesc($r[0]['tag'] . (strlen($r[0]['tag']) ? ',' : '') . $newtag),
1701 $r = item_store($datarray,$force_parent);
1707 // Head post of a conversation. Have we seen it? If not, import it.
1709 $item_id = $item->get_id();
1711 $datarray = get_atom_elements($feed,$item);
1713 if(is_array($contact)) {
1714 if((! x($datarray,'author-name')) && ($contact['network'] != NETWORK_DFRN))
1715 $datarray['author-name'] = $contact['name'];
1716 if((! x($datarray,'author-link')) && ($contact['network'] != NETWORK_DFRN))
1717 $datarray['author-link'] = $contact['url'];
1718 if((! x($datarray,'author-avatar')) && ($contact['network'] != NETWORK_DFRN))
1719 $datarray['author-avatar'] = $contact['thumb'];
1722 if((! x($datarray,'author-name')) || (! x($datarray,'author-link'))) {
1723 logger('consume_feed: no author information! ' . print_r($datarray,true));
1727 // special handling for events
1729 if((x($datarray,'object-type')) && ($datarray['object-type'] === ACTIVITY_OBJ_EVENT)) {
1730 $ev = bbtoevent($datarray['body']);
1731 if(x($ev,'desc') && x($ev,'start')) {
1732 $ev['uid'] = $importer['uid'];
1733 $ev['uri'] = $item_id;
1734 $ev['edited'] = $datarray['edited'];
1735 $ev['private'] = $datarray['private'];
1737 if(is_array($contact))
1738 $ev['cid'] = $contact['id'];
1739 $r = q("SELECT * FROM `event` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1741 intval($importer['uid'])
1744 $ev['id'] = $r[0]['id'];
1745 $xyz = event_store($ev);
1750 $r = q("SELECT `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1752 intval($importer['uid'])
1755 // Update content if 'updated' changes
1758 if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) {
1759 $r = q("UPDATE `item` SET `title` = '%s', `body` = '%s', `tag` = '%s', `edited` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1760 dbesc($datarray['title']),
1761 dbesc($datarray['body']),
1762 dbesc($datarray['tag']),
1763 dbesc(datetime_convert('UTC','UTC',$datarray['edited'])),
1765 intval($importer['uid'])
1769 // update last-child if it changes
1771 $allow = $item->get_item_tags( NAMESPACE_DFRN, 'comment-allow');
1772 if($allow && $allow[0]['data'] != $r[0]['last-child']) {
1773 $r = q("UPDATE `item` SET `last-child` = %d , `changed` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1774 intval($allow[0]['data']),
1775 dbesc(datetime_convert()),
1777 intval($importer['uid'])
1783 if(activity_match($datarray['verb'],ACTIVITY_FOLLOW)) {
1784 logger('consume-feed: New follower');
1785 new_follower($importer,$contact,$datarray,$item);
1788 if(activity_match($datarray['verb'],ACTIVITY_UNFOLLOW)) {
1789 lose_follower($importer,$contact,$datarray,$item);
1793 if(activity_match($datarray['verb'],ACTIVITY_REQ_FRIEND)) {
1794 logger('consume-feed: New friend request');
1795 new_follower($importer,$contact,$datarray,$item,true);
1798 if(activity_match($datarray['verb'],ACTIVITY_UNFRIEND)) {
1799 lose_sharer($importer,$contact,$datarray,$item);
1804 if(! is_array($contact))
1807 if($contact['network'] === NETWORK_OSTATUS || stristr($contact['url'],'twitter.com')) {
1808 if(strlen($datarray['title']))
1809 unset($datarray['title']);
1810 $datarray['last-child'] = 1;
1813 if(($contact['network'] === NETWORK_FEED) || (! strlen($contact['notify']))) {
1814 // one way feed - no remote comment ability
1815 $datarray['last-child'] = 0;
1818 // This is my contact on another system, but it's really me.
1819 // Turn this into a wall post.
1821 if($contact['remote_self'])
1822 $datarray['wall'] = 1;
1824 $datarray['parent-uri'] = $item_id;
1825 $datarray['uid'] = $importer['uid'];
1826 $datarray['contact-id'] = $contact['id'];
1828 if(! link_compare($datarray['owner-link'],$contact['url'])) {
1829 // The item owner info is not our contact. It's OK and is to be expected if this is a tgroup delivery,
1830 // but otherwise there's a possible data mixup on the sender's system.
1831 // the tgroup delivery code called from item_store will correct it if it's a forum,
1832 // but we're going to unconditionally correct it here so that the post will always be owned by our contact.
1833 logger('consume_feed: Correcting item owner.', LOGGER_DEBUG);
1834 $datarray['owner-name'] = $contact['name'];
1835 $datarray['owner-link'] = $contact['url'];
1836 $datarray['owner-avatar'] = $contact['thumb'];
1839 $r = item_store($datarray);
1847 function local_delivery($importer,$data) {
1851 if($importer['readonly']) {
1852 // We aren't receiving stuff from this person. But we will quietly ignore them
1853 // rather than a blatant "go away" message.
1854 logger('local_delivery: ignoring');
1859 // Consume notification feed. This may differ from consuming a public feed in several ways
1860 // - might contain email or friend suggestions
1861 // - might contain remote followup to our message
1862 // - in which case we need to accept it and then notify other conversants
1863 // - we may need to send various email notifications
1865 $feed = new SimplePie();
1866 $feed->set_raw_data($data);
1867 $feed->enable_order_by_date(false);
1871 // Currently unsupported - needs a lot of work
1872 $reloc = $feed->get_feed_tags( NAMESPACE_DFRN, 'relocate' );
1873 if(isset($reloc[0]['child'][NAMESPACE_DFRN])) {
1874 $base = $reloc[0]['child'][NAMESPACE_DFRN];
1876 $newloc['uid'] = $importer['importer_uid'];
1877 $newloc['cid'] = $importer['id'];
1878 $newloc['name'] = notags(unxmlify($base['name'][0]['data']));
1879 $newloc['photo'] = notags(unxmlify($base['photo'][0]['data']));
1880 $newloc['url'] = notags(unxmlify($base['url'][0]['data']));
1881 $newloc['request'] = notags(unxmlify($base['request'][0]['data']));
1882 $newloc['confirm'] = notags(unxmlify($base['confirm'][0]['data']));
1883 $newloc['notify'] = notags(unxmlify($base['notify'][0]['data']));
1884 $newloc['poll'] = notags(unxmlify($base['poll'][0]['data']));
1885 $newloc['site-pubkey'] = notags(unxmlify($base['site-pubkey'][0]['data']));
1886 $newloc['pubkey'] = notags(unxmlify($base['pubkey'][0]['data']));
1887 $newloc['prvkey'] = notags(unxmlify($base['prvkey'][0]['data']));
1890 // merge with current record, current contents have priority
1891 // update record, set url-updated
1892 // update profile photos
1898 // handle friend suggestion notification
1900 $sugg = $feed->get_feed_tags( NAMESPACE_DFRN, 'suggest' );
1901 if(isset($sugg[0]['child'][NAMESPACE_DFRN])) {
1902 $base = $sugg[0]['child'][NAMESPACE_DFRN];
1904 $fsugg['uid'] = $importer['importer_uid'];
1905 $fsugg['cid'] = $importer['id'];
1906 $fsugg['name'] = notags(unxmlify($base['name'][0]['data']));
1907 $fsugg['photo'] = notags(unxmlify($base['photo'][0]['data']));
1908 $fsugg['url'] = notags(unxmlify($base['url'][0]['data']));
1909 $fsugg['request'] = notags(unxmlify($base['request'][0]['data']));
1910 $fsugg['body'] = escape_tags(unxmlify($base['note'][0]['data']));
1912 // Does our member already have a friend matching this description?
1914 $r = q("SELECT * FROM `contact` WHERE `name` = '%s' AND `nurl` = '%s' AND `uid` = %d LIMIT 1",
1915 dbesc($fsugg['name']),
1916 dbesc(normalise_link($fsugg['url'])),
1917 intval($fsugg['uid'])
1922 // Do we already have an fcontact record for this person?
1925 $r = q("SELECT * FROM `fcontact` WHERE `url` = '%s' AND `name` = '%s' AND `request` = '%s' LIMIT 1",
1926 dbesc($fsugg['url']),
1927 dbesc($fsugg['name']),
1928 dbesc($fsugg['request'])
1933 // OK, we do. Do we already have an introduction for this person ?
1934 $r = q("select id from intro where uid = %d and fid = %d limit 1",
1935 intval($fsugg['uid']),
1942 $r = q("INSERT INTO `fcontact` ( `name`,`url`,`photo`,`request` ) VALUES ( '%s', '%s', '%s', '%s' ) ",
1943 dbesc($fsugg['name']),
1944 dbesc($fsugg['url']),
1945 dbesc($fsugg['photo']),
1946 dbesc($fsugg['request'])
1948 $r = q("SELECT * FROM `fcontact` WHERE `url` = '%s' AND `name` = '%s' AND `request` = '%s' LIMIT 1",
1949 dbesc($fsugg['url']),
1950 dbesc($fsugg['name']),
1951 dbesc($fsugg['request'])
1956 // database record did not get created. Quietly give up.
1961 $hash = random_string();
1963 $r = q("INSERT INTO `intro` ( `uid`, `fid`, `contact-id`, `note`, `hash`, `datetime`, `blocked` )
1964 VALUES( %d, %d, %d, '%s', '%s', '%s', %d )",
1965 intval($fsugg['uid']),
1967 intval($fsugg['cid']),
1968 dbesc($fsugg['body']),
1970 dbesc(datetime_convert()),
1975 'type' => NOTIFY_SUGGEST,
1976 'notify_flags' => $importer['notify-flags'],
1977 'language' => $importer['language'],
1978 'to_name' => $importer['username'],
1979 'to_email' => $importer['email'],
1980 'uid' => $importer['importer_uid'],
1982 'link' => $a->get_baseurl() . '/notifications/intros',
1983 'source_name' => $importer['name'],
1984 'source_link' => $importer['url'],
1985 'source_photo' => $importer['photo'],
1986 'verb' => ACTIVITY_REQ_FRIEND,
1995 $rawmail = $feed->get_feed_tags( NAMESPACE_DFRN, 'mail' );
1996 if(isset($rawmail[0]['child'][NAMESPACE_DFRN])) {
1998 logger('local_delivery: private message received');
2001 $base = $rawmail[0]['child'][NAMESPACE_DFRN];
2004 $msg['uid'] = $importer['importer_uid'];
2005 $msg['from-name'] = notags(unxmlify($base['sender'][0]['child'][NAMESPACE_DFRN]['name'][0]['data']));
2006 $msg['from-photo'] = notags(unxmlify($base['sender'][0]['child'][NAMESPACE_DFRN]['avatar'][0]['data']));
2007 $msg['from-url'] = notags(unxmlify($base['sender'][0]['child'][NAMESPACE_DFRN]['uri'][0]['data']));
2008 $msg['contact-id'] = $importer['id'];
2009 $msg['title'] = notags(unxmlify($base['subject'][0]['data']));
2010 $msg['body'] = escape_tags(unxmlify($base['content'][0]['data']));
2012 $msg['replied'] = 0;
2013 $msg['uri'] = notags(unxmlify($base['id'][0]['data']));
2014 $msg['parent-uri'] = notags(unxmlify($base['in-reply-to'][0]['data']));
2015 $msg['created'] = datetime_convert(notags(unxmlify('UTC','UTC',$base['sentdate'][0]['data'])));
2019 $r = dbq("INSERT INTO `mail` (`" . implode("`, `", array_keys($msg))
2020 . "`) VALUES ('" . implode("', '", array_values($msg)) . "')" );
2022 // send notifications.
2024 require_once('include/enotify.php');
2026 $notif_params = array(
2027 'type' => NOTIFY_MAIL,
2028 'notify_flags' => $importer['notify-flags'],
2029 'language' => $importer['language'],
2030 'to_name' => $importer['username'],
2031 'to_email' => $importer['email'],
2032 'uid' => $importer['importer_uid'],
2034 'source_name' => $msg['from-name'],
2035 'source_link' => $importer['url'],
2036 'source_photo' => $importer['thumb'],
2037 'verb' => ACTIVITY_POST,
2041 notification($notif_params);
2047 $community_page = 0;
2048 $rawtags = $feed->get_feed_tags( NAMESPACE_DFRN, 'community');
2050 $community_page = intval($rawtags[0]['data']);
2052 if(intval($importer['forum']) != $community_page) {
2053 q("update contact set forum = %d where id = %d limit 1",
2054 intval($community_page),
2055 intval($importer['id'])
2057 $importer['forum'] = (string) $community_page;
2060 logger('local_delivery: feed item count = ' . $feed->get_item_quantity());
2062 // process any deleted entries
2064 $del_entries = $feed->get_feed_tags(NAMESPACE_TOMB, 'deleted-entry');
2065 if(is_array($del_entries) && count($del_entries)) {
2066 foreach($del_entries as $dentry) {
2068 if(isset($dentry['attribs']['']['ref'])) {
2069 $uri = $dentry['attribs']['']['ref'];
2071 if(isset($dentry['attribs']['']['when'])) {
2072 $when = $dentry['attribs']['']['when'];
2073 $when = datetime_convert('UTC','UTC', $when, 'Y-m-d H:i:s');
2076 $when = datetime_convert('UTC','UTC','now','Y-m-d H:i:s');
2080 $r = q("SELECT `item`.*, `contact`.`self` FROM `item` left join contact on `item`.`contact-id` = `contact`.`id`
2081 WHERE `uri` = '%s' AND `item`.`uid` = %d AND `contact-id` = %d AND NOT `item`.`file` LIKE '%%[%%' LIMIT 1",
2083 intval($importer['importer_uid']),
2084 intval($importer['id'])
2090 if($item['deleted'])
2093 logger('local_delivery: deleting item ' . $item['id'] . ' uri=' . $item['uri'], LOGGER_DEBUG);
2095 if(($item['verb'] === ACTIVITY_TAG) && ($item['object-type'] === ACTIVITY_OBJ_TAGTERM)) {
2096 $xo = parse_xml_string($item['object'],false);
2097 $xt = parse_xml_string($item['target'],false);
2099 if($xt->type === ACTIVITY_OBJ_NOTE) {
2100 $i = q("select * from `item` where uri = '%s' and uid = %d limit 1",
2102 intval($importer['importer_uid'])
2106 // For tags, the owner cannot remove the tag on the author's copy of the post.
2108 $owner_remove = (($item['contact-id'] == $i[0]['contact-id']) ? true: false);
2109 $author_remove = (($item['origin'] && $item['self']) ? true : false);
2110 $author_copy = (($item['origin']) ? true : false);
2112 if($owner_remove && $author_copy)
2114 if($author_remove || $owner_remove) {
2115 $tags = explode(',',$i[0]['tag']);
2118 foreach($tags as $tag)
2119 if(trim($tag) !== trim($xo->body))
2120 $newtags[] = trim($tag);
2122 q("update item set tag = '%s' where id = %d limit 1",
2123 dbesc(implode(',',$newtags)),
2131 if($item['uri'] == $item['parent-uri']) {
2132 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s'
2133 WHERE `parent-uri` = '%s' AND `uid` = %d",
2135 dbesc(datetime_convert()),
2136 dbesc($item['uri']),
2137 intval($importer['importer_uid'])
2141 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s'
2142 WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2144 dbesc(datetime_convert()),
2146 intval($importer['importer_uid'])
2148 if($item['last-child']) {
2149 // ensure that last-child is set in case the comment that had it just got wiped.
2150 q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d ",
2151 dbesc(datetime_convert()),
2152 dbesc($item['parent-uri']),
2153 intval($item['uid'])
2155 // who is the last child now?
2156 $r = q("SELECT `id` FROM `item` WHERE `parent-uri` = '%s' AND `type` != 'activity' AND `deleted` = 0 AND `uid` = %d
2157 ORDER BY `created` DESC LIMIT 1",
2158 dbesc($item['parent-uri']),
2159 intval($importer['importer_uid'])
2162 q("UPDATE `item` SET `last-child` = 1 WHERE `id` = %d LIMIT 1",
2174 foreach($feed->get_items() as $item) {
2177 $item_id = $item->get_id();
2178 $rawthread = $item->get_item_tags( NAMESPACE_THREAD, 'in-reply-to');
2179 if(isset($rawthread[0]['attribs']['']['ref'])) {
2181 $parent_uri = $rawthread[0]['attribs']['']['ref'];
2187 if($importer['page-flags'] == PAGE_COMMUNITY) {
2190 logger('local_delivery: possible community reply');
2193 $sql_extra = " and contact.self = 1 and item.wall = 1 ";
2195 // was the top-level post for this reply written by somebody on this site?
2196 // Specifically, the recipient?
2198 $is_a_remote_comment = false;
2200 $r = q("select `item`.`id`, `item`.`uri`, `item`.`tag`, `item`.`forum_mode`,`item`.`origin`,`item`.`wall`,
2201 `contact`.`name`, `contact`.`url`, `contact`.`thumb` from `item`
2202 LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
2203 WHERE `item`.`uri` = '%s' AND `item`.`parent-uri` = '%s'
2204 AND `item`.`uid` = %d
2209 intval($importer['importer_uid'])
2212 $is_a_remote_comment = true;
2214 // Does this have the characteristics of a community comment?
2215 // If it's a reply to a wall post on a community page it's a
2216 // valid community comment. Also forum_mode makes it valid for sure.
2217 // If neither, it's not.
2219 if($is_a_remote_comment && $community) {
2220 if((! $r[0]['forum_mode']) && (! $r[0]['wall'])) {
2221 $is_a_remote_comment = false;
2222 logger('local_delivery: not a community reply');
2226 if($is_a_remote_comment) {
2227 logger('local_delivery: received remote comment');
2229 // remote reply to our post. Import and then notify everybody else.
2230 $datarray = get_atom_elements($feed,$item);
2233 $r = q("SELECT `id`, `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2235 intval($importer['importer_uid'])
2238 // Update content if 'updated' changes
2242 if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) {
2243 logger('received updated comment' , LOGGER_DEBUG);
2244 $r = q("UPDATE `item` SET `title` = '%s', `body` = '%s', `tag` = '%s', `edited` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2245 dbesc($datarray['title']),
2246 dbesc($datarray['body']),
2247 dbesc($datarray['tag']),
2248 dbesc(datetime_convert('UTC','UTC',$datarray['edited'])),
2250 intval($importer['importer_uid'])
2253 proc_run('php',"include/notifier.php","comment-import",$iid);
2261 // TODO: make this next part work against both delivery threads of a community post
2263 // if((! link_compare($datarray['author-link'],$importer['url'])) && (! $community)) {
2264 // logger('local_delivery: received relay claiming to be from ' . $importer['url'] . ' however comment author url is ' . $datarray['author-link'] );
2265 // they won't know what to do so don't report an error. Just quietly die.
2269 $datarray['type'] = 'remote-comment';
2270 $datarray['wall'] = 1;
2271 $datarray['parent-uri'] = $parent_uri;
2272 $datarray['uid'] = $importer['importer_uid'];
2273 $datarray['owner-name'] = $r[0]['name'];
2274 $datarray['owner-link'] = $r[0]['url'];
2275 $datarray['owner-avatar'] = $r[0]['thumb'];
2276 $datarray['contact-id'] = $importer['id'];
2277 if(($datarray['verb'] === ACTIVITY_LIKE) || ($datarray['verb'] === ACTIVITY_DISLIKE)) {
2279 $datarray['type'] = 'activity';
2280 $datarray['gravity'] = GRAVITY_LIKE;
2281 $datarray['last-child'] = 0;
2282 // only one like or dislike per person
2283 $r = q("select id from item where uid = %d and `contact-id` = %d and verb ='%s' and deleted = 0 limit 1",
2284 intval($datarray['uid']),
2285 intval($datarray['contact-id']),
2286 dbesc($datarray['verb'])
2292 if(($datarray['verb'] === ACTIVITY_TAG) && ($datarray['object-type'] === ACTIVITY_OBJ_TAGTERM)) {
2295 $xo = parse_xml_string($datarray['object'],false);
2296 $xt = parse_xml_string($datarray['target'],false);
2298 if(($xt->type == ACTIVITY_OBJ_NOTE) && ($xt->id == $r[0]['uri'])) {
2300 // extract tag, if not duplicate, and this user allows tags, add to parent item
2302 if($xo->id && $xo->content) {
2303 $newtag = '#[url=' . $xo->id . ']'. $xo->content . '[/url]';
2305 if(! (stristr($r[0]['tag'],$newtag))) {
2306 $i = q("SELECT `blocktags` FROM `user` where `uid` = %d LIMIT 1",
2307 intval($importer['importer_uid'])
2309 if(count($i) && ! ($i[0]['blocktags'])) {
2310 q("UPDATE item SET tag = '%s' WHERE id = %d LIMIT 1",
2311 dbesc($r[0]['tag'] . (strlen($r[0]['tag']) ? ',' : '') . $newtag),
2321 // $newtag = '@[url=' . $a->get_baseurl() . '/profile/' . $importer['nickname'] . ']' . $importer['username'] . '[/url]';
2322 // if(! stristr($datarray['tag'],$newtag)) {
2323 // if(strlen($datarray['tag']))
2324 // $datarray['tag'] .= ',';
2325 // $datarray['tag'] .= $newtag;
2330 $posted_id = item_store($datarray);
2334 $r = q("SELECT `parent` FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1",
2336 intval($importer['importer_uid'])
2339 $parent = $r[0]['parent'];
2342 $r1 = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `uid` = %d AND `parent` = %d",
2343 dbesc(datetime_convert()),
2344 intval($importer['importer_uid']),
2345 intval($r[0]['parent'])
2348 $r2 = q("UPDATE `item` SET `last-child` = 1, `changed` = '%s' WHERE `uid` = %d AND `id` = %d LIMIT 1",
2349 dbesc(datetime_convert()),
2350 intval($importer['importer_uid']),
2355 if($posted_id && $parent) {
2357 proc_run('php',"include/notifier.php","comment-import","$posted_id");
2359 if((! $is_like) && (! $importer['self'])) {
2361 require_once('include/enotify.php');
2364 'type' => NOTIFY_COMMENT,
2365 'notify_flags' => $importer['notify-flags'],
2366 'language' => $importer['language'],
2367 'to_name' => $importer['username'],
2368 'to_email' => $importer['email'],
2369 'uid' => $importer['importer_uid'],
2370 'item' => $datarray,
2371 'link' => $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $posted_id,
2372 'source_name' => stripslashes($datarray['author-name']),
2373 'source_link' => $datarray['author-link'],
2374 'source_photo' => ((link_compare($datarray['author-link'],$importer['url']))
2375 ? $importer['thumb'] : $datarray['author-avatar']),
2376 'verb' => ACTIVITY_POST,
2378 'parent' => $parent,
2391 // regular comment that is part of this total conversation. Have we seen it? If not, import it.
2393 $item_id = $item->get_id();
2394 $datarray = get_atom_elements($feed,$item);
2396 $r = q("SELECT `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2398 intval($importer['importer_uid'])
2401 // Update content if 'updated' changes
2404 if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) {
2405 $r = q("UPDATE `item` SET `title` = '%s', `body` = '%s', `tag` = '%s', `edited` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2406 dbesc($datarray['title']),
2407 dbesc($datarray['body']),
2408 dbesc($datarray['tag']),
2409 dbesc(datetime_convert('UTC','UTC',$datarray['edited'])),
2411 intval($importer['importer_uid'])
2415 // update last-child if it changes
2417 $allow = $item->get_item_tags( NAMESPACE_DFRN, 'comment-allow');
2418 if(($allow) && ($allow[0]['data'] != $r[0]['last-child'])) {
2419 $r = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d",
2420 dbesc(datetime_convert()),
2422 intval($importer['importer_uid'])
2424 $r = q("UPDATE `item` SET `last-child` = %d , `changed` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2425 intval($allow[0]['data']),
2426 dbesc(datetime_convert()),
2428 intval($importer['importer_uid'])
2434 $datarray['parent-uri'] = $parent_uri;
2435 $datarray['uid'] = $importer['importer_uid'];
2436 $datarray['contact-id'] = $importer['id'];
2437 if(($datarray['verb'] == ACTIVITY_LIKE) || ($datarray['verb'] == ACTIVITY_DISLIKE)) {
2438 $datarray['type'] = 'activity';
2439 $datarray['gravity'] = GRAVITY_LIKE;
2440 // only one like or dislike per person
2441 $r = q("select id from item where uid = %d and `contact-id` = %d and verb ='%s' and deleted = 0 limit 1",
2442 intval($datarray['uid']),
2443 intval($datarray['contact-id']),
2444 dbesc($datarray['verb'])
2451 if(($datarray['verb'] === ACTIVITY_TAG) && ($datarray['object-type'] === ACTIVITY_OBJ_TAGTERM)) {
2453 $xo = parse_xml_string($datarray['object'],false);
2454 $xt = parse_xml_string($datarray['target'],false);
2456 if($xt->type == ACTIVITY_OBJ_NOTE) {
2457 $r = q("select * from item where `uri` = '%s' AND `uid` = %d limit 1",
2459 intval($importer['importer_uid'])
2464 // extract tag, if not duplicate, add to parent item
2466 if(! (stristr($r[0]['tag'],trim($xo->content)))) {
2467 q("UPDATE item SET tag = '%s' WHERE id = %d LIMIT 1",
2468 dbesc($r[0]['tag'] . (strlen($r[0]['tag']) ? ',' : '') . '#[url=' . $xo->id . ']'. $xo->content . '[/url]'),
2476 $posted_id = item_store($datarray);
2478 // find out if our user is involved in this conversation and wants to be notified.
2480 if(!x($datarray['type']) || $datarray['type'] != 'activity') {
2482 $myconv = q("SELECT `author-link`, `author-avatar`, `parent` FROM `item` WHERE `parent-uri` = '%s' AND `uid` = %d AND `parent` != 0 AND `deleted` = 0",
2484 intval($importer['importer_uid'])
2487 if(count($myconv)) {
2488 $importer_url = $a->get_baseurl() . '/profile/' . $importer['nickname'];
2490 // first make sure this isn't our own post coming back to us from a wall-to-wall event
2491 if(! link_compare($datarray['author-link'],$importer_url)) {
2494 foreach($myconv as $conv) {
2496 // now if we find a match, it means we're in this conversation
2498 if(! link_compare($conv['author-link'],$importer_url))
2501 require_once('include/enotify.php');
2503 $conv_parent = $conv['parent'];
2506 'type' => NOTIFY_COMMENT,
2507 'notify_flags' => $importer['notify-flags'],
2508 'language' => $importer['language'],
2509 'to_name' => $importer['username'],
2510 'to_email' => $importer['email'],
2511 'uid' => $importer['importer_uid'],
2512 'item' => $datarray,
2513 'link' => $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $posted_id,
2514 'source_name' => stripslashes($datarray['author-name']),
2515 'source_link' => $datarray['author-link'],
2516 'source_photo' => ((link_compare($datarray['author-link'],$importer['url']))
2517 ? $importer['thumb'] : $datarray['author-avatar']),
2518 'verb' => ACTIVITY_POST,
2520 'parent' => $conv_parent,
2524 // only send one notification
2536 // Head post of a conversation. Have we seen it? If not, import it.
2539 $item_id = $item->get_id();
2540 $datarray = get_atom_elements($feed,$item);
2542 if((x($datarray,'object-type')) && ($datarray['object-type'] === ACTIVITY_OBJ_EVENT)) {
2543 $ev = bbtoevent($datarray['body']);
2544 if(x($ev,'desc') && x($ev,'start')) {
2545 $ev['cid'] = $importer['id'];
2546 $ev['uid'] = $importer['uid'];
2547 $ev['uri'] = $item_id;
2548 $ev['edited'] = $datarray['edited'];
2549 $ev['private'] = $datarray['private'];
2551 $r = q("SELECT * FROM `event` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2553 intval($importer['uid'])
2556 $ev['id'] = $r[0]['id'];
2557 $xyz = event_store($ev);
2562 $r = q("SELECT `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2564 intval($importer['importer_uid'])
2567 // Update content if 'updated' changes
2570 if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) {
2571 $r = q("UPDATE `item` SET `title` = '%s', `body` = '%s', `tag` = '%s', `edited` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2572 dbesc($datarray['title']),
2573 dbesc($datarray['body']),
2574 dbesc($datarray['tag']),
2575 dbesc(datetime_convert('UTC','UTC',$datarray['edited'])),
2577 intval($importer['importer_uid'])
2581 // update last-child if it changes
2583 $allow = $item->get_item_tags( NAMESPACE_DFRN, 'comment-allow');
2584 if($allow && $allow[0]['data'] != $r[0]['last-child']) {
2585 $r = q("UPDATE `item` SET `last-child` = %d , `changed` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2586 intval($allow[0]['data']),
2587 dbesc(datetime_convert()),
2589 intval($importer['importer_uid'])
2595 // This is my contact on another system, but it's really me.
2596 // Turn this into a wall post.
2598 if($importer['remote_self'])
2599 $datarray['wall'] = 1;
2601 $datarray['parent-uri'] = $item_id;
2602 $datarray['uid'] = $importer['importer_uid'];
2603 $datarray['contact-id'] = $importer['id'];
2605 if(! link_compare($datarray['owner-link'],$contact['url'])) {
2606 // The item owner info is not our contact. It's OK and is to be expected if this is a tgroup delivery,
2607 // but otherwise there's a possible data mixup on the sender's system.
2608 // the tgroup delivery code called from item_store will correct it if it's a forum,
2609 // but we're going to unconditionally correct it here so that the post will always be owned by our contact.
2610 logger('local_delivery: Correcting item owner.', LOGGER_DEBUG);
2611 $datarray['owner-name'] = $importer['senderName'];
2612 $datarray['owner-link'] = $importer['url'];
2613 $datarray['owner-avatar'] = $importer['thumb'];
2616 $r = item_store($datarray);
2627 function new_follower($importer,$contact,$datarray,$item,$sharing = false) {
2628 $url = notags(trim($datarray['author-link']));
2629 $name = notags(trim($datarray['author-name']));
2630 $photo = notags(trim($datarray['author-avatar']));
2632 $rawtag = $item->get_item_tags(NAMESPACE_ACTIVITY,'actor');
2633 if($rawtag && $rawtag[0]['child'][NAMESPACE_POCO]['preferredUsername'][0]['data'])
2634 $nick = $rawtag[0]['child'][NAMESPACE_POCO]['preferredUsername'][0]['data'];
2636 if(is_array($contact)) {
2637 if(($contact['network'] == NETWORK_OSTATUS && $contact['rel'] == CONTACT_IS_SHARING)
2638 || ($sharing && $contact['rel'] == CONTACT_IS_FOLLOWER)) {
2639 $r = q("UPDATE `contact` SET `rel` = %d WHERE `id` = %d AND `uid` = %d LIMIT 1",
2640 intval(CONTACT_IS_FRIEND),
2641 intval($contact['id']),
2642 intval($importer['uid'])
2645 // send email notification to owner?
2649 // create contact record
2651 $r = q("INSERT INTO `contact` ( `uid`, `created`, `url`, `nurl`, `name`, `nick`, `photo`, `network`, `rel`,
2652 `blocked`, `readonly`, `pending`, `writable` )
2653 VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, 0, 0, 1, 1 ) ",
2654 intval($importer['uid']),
2655 dbesc(datetime_convert()),
2657 dbesc(normalise_link($url)),
2661 dbesc(($sharing) ? NETWORK_ZOT : NETWORK_OSTATUS),
2662 intval(($sharing) ? CONTACT_IS_SHARING : CONTACT_IS_FOLLOWER)
2664 $r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `url` = '%s' AND `pending` = 1 LIMIT 1",
2665 intval($importer['uid']),
2669 $contact_record = $r[0];
2671 // create notification
2672 $hash = random_string();
2674 if(is_array($contact_record)) {
2675 $ret = q("INSERT INTO `intro` ( `uid`, `contact-id`, `blocked`, `knowyou`, `hash`, `datetime`)
2676 VALUES ( %d, %d, 0, 0, '%s', '%s' )",
2677 intval($importer['uid']),
2678 intval($contact_record['id']),
2680 dbesc(datetime_convert())
2683 $r = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
2684 intval($importer['uid'])
2688 if(($r[0]['notify-flags'] & NOTIFY_INTRO) && ($r[0]['page-flags'] == PAGE_NORMAL)) {
2689 $email_tpl = get_intltext_template('follow_notify_eml.tpl');
2690 $email = replace_macros($email_tpl, array(
2691 '$requestor' => ((strlen($name)) ? $name : t('[Name Withheld]')),
2693 '$myname' => $r[0]['username'],
2694 '$siteurl' => $a->get_baseurl(),
2695 '$sitename' => $a->config['sitename']
2697 $res = mail($r[0]['email'],
2698 (($sharing) ? t('A new person is sharing with you at ') : t("You have a new follower at ")) . $a->config['sitename'],
2700 'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] . "\n"
2701 . 'Content-type: text/plain; charset=UTF-8' . "\n"
2702 . 'Content-transfer-encoding: 8bit' );
2709 function lose_follower($importer,$contact,$datarray,$item) {
2711 if(($contact['rel'] == CONTACT_IS_FRIEND) || ($contact['rel'] == CONTACT_IS_SHARING)) {
2712 q("UPDATE `contact` SET `rel` = %d WHERE `id` = %d LIMIT 1",
2713 intval(CONTACT_IS_SHARING),
2714 intval($contact['id'])
2718 contact_remove($contact['id']);
2722 function lose_sharer($importer,$contact,$datarray,$item) {
2724 if(($contact['rel'] == CONTACT_IS_FRIEND) || ($contact['rel'] == CONTACT_IS_FOLLOWER)) {
2725 q("UPDATE `contact` SET `rel` = %d WHERE `id` = %d LIMIT 1",
2726 intval(CONTACT_IS_FOLLOWER),
2727 intval($contact['id'])
2731 contact_remove($contact['id']);
2736 function subscribe_to_hub($url,$importer,$contact,$hubmode = 'subscribe') {
2738 if(is_array($importer)) {
2739 $r = q("SELECT `nickname` FROM `user` WHERE `uid` = %d LIMIT 1",
2740 intval($importer['uid'])
2744 // Diaspora has different message-ids in feeds than they do
2745 // through the direct Diaspora protocol. If we try and use
2746 // the feed, we'll get duplicates. So don't.
2748 if((! count($r)) || $contact['network'] === NETWORK_DIASPORA)
2751 $push_url = get_config('system','url') . '/pubsub/' . $r[0]['nickname'] . '/' . $contact['id'];
2753 // Use a single verify token, even if multiple hubs
2755 $verify_token = ((strlen($contact['hub-verify'])) ? $contact['hub-verify'] : random_string());
2757 $params= 'hub.mode=' . $hubmode . '&hub.callback=' . urlencode($push_url) . '&hub.topic=' . urlencode($contact['poll']) . '&hub.verify=async&hub.verify_token=' . $verify_token;
2759 logger('subscribe_to_hub: ' . $hubmode . ' ' . $contact['name'] . ' to hub ' . $url . ' endpoint: ' . $push_url . ' with verifier ' . $verify_token);
2761 if(! strlen($contact['hub-verify'])) {
2762 $r = q("UPDATE `contact` SET `hub-verify` = '%s' WHERE `id` = %d LIMIT 1",
2763 dbesc($verify_token),
2764 intval($contact['id'])
2768 post_url($url,$params);
2774 function atom_author($tag,$name,$uri,$h,$w,$photo) {
2778 $name = xmlify($name);
2779 $uri = xmlify($uri);
2782 $photo = xmlify($photo);
2786 $o .= "<name>$name</name>\r\n";
2787 $o .= "<uri>$uri</uri>\r\n";
2788 $o .= '<link rel="photo" type="image/jpeg" media:width="' . $w . '" media:height="' . $h . '" href="' . $photo . '" />' . "\r\n";
2789 $o .= '<link rel="avatar" type="image/jpeg" media:width="' . $w . '" media:height="' . $h . '" href="' . $photo . '" />' . "\r\n";
2791 call_hooks('atom_author', $o);
2793 $o .= "</$tag>\r\n";
2797 function atom_entry($item,$type,$author,$owner,$comment = false) {
2801 if(! $item['parent'])
2804 if($item['deleted'])
2805 return '<at:deleted-entry ref="' . xmlify($item['uri']) . '" when="' . xmlify(datetime_convert('UTC','UTC',$item['edited'] . '+00:00',ATOM_TIME)) . '" />' . "\r\n";
2808 if($item['allow_cid'] || $item['allow_gid'] || $item['deny_cid'] || $item['deny_gid'])
2809 $body = fix_private_photos($item['body'],$owner['uid']);
2811 $body = $item['body'];
2814 $o = "\r\n\r\n<entry>\r\n";
2816 if(is_array($author))
2817 $o .= atom_author('author',$author['name'],$author['url'],80,80,$author['thumb']);
2819 $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']));
2820 if(strlen($item['owner-name']))
2821 $o .= atom_author('dfrn:owner',$item['owner-name'],$item['owner-link'],80,80,$item['owner-avatar']);
2823 if(($item['parent'] != $item['id']) || ($item['parent-uri'] !== $item['uri']))
2824 $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";
2826 $o .= '<id>' . xmlify($item['uri']) . '</id>' . "\r\n";
2827 $o .= '<title>' . xmlify($item['title']) . '</title>' . "\r\n";
2828 $o .= '<published>' . xmlify(datetime_convert('UTC','UTC',$item['created'] . '+00:00',ATOM_TIME)) . '</published>' . "\r\n";
2829 $o .= '<updated>' . xmlify(datetime_convert('UTC','UTC',$item['edited'] . '+00:00',ATOM_TIME)) . '</updated>' . "\r\n";
2830 $o .= '<dfrn:env>' . base64url_encode($body, true) . '</dfrn:env>' . "\r\n";
2831 $o .= '<content type="' . $type . '" >' . xmlify((($type === 'html') ? bbcode($body) : $body)) . '</content>' . "\r\n";
2832 $o .= '<link rel="alternate" type="text/html" href="' . xmlify($a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id']) . '" />' . "\r\n";
2834 $o .= '<dfrn:comment-allow>' . intval($item['last-child']) . '</dfrn:comment-allow>' . "\r\n";
2836 if($item['location']) {
2837 $o .= '<dfrn:location>' . xmlify($item['location']) . '</dfrn:location>' . "\r\n";
2838 $o .= '<poco:address><poco:formatted>' . xmlify($item['location']) . '</poco:formatted></poco:address>' . "\r\n";
2842 $o .= '<georss:point>' . xmlify($item['coord']) . '</georss:point>' . "\r\n";
2844 if(($item['private']) || strlen($item['allow_cid']) || strlen($item['allow_gid']) || strlen($item['deny_cid']) || strlen($item['deny_gid']))
2845 $o .= '<dfrn:private>1</dfrn:private>' . "\r\n";
2848 $o .= '<dfrn:extid>' . xmlify($item['extid']) . '</dfrn:extid>' . "\r\n";
2849 if($item['bookmark'])
2850 $o .= '<dfrn:bookmark>true</dfrn:bookmark>' . "\r\n";
2853 $o .= '<statusnet:notice_info local_id="' . $item['id'] . '" source="' . xmlify($item['app']) . '" ></statusnet:notice_info>' . "\r\n";
2856 $o .= '<dfrn:diaspora_guid>' . $item['guid'] . '</dfrn:diaspora_guid>' . "\r\n";
2858 if($item['signed_text']) {
2859 $sign = base64_encode(json_encode(array('signed_text' => $item['signed_text'],'signature' => $item['signature'],'signer' => $item['signer'])));
2860 $o .= '<dfrn:diaspora_signature>' . xmlify($sign) . '</dfrn:diaspora_signature>' . "\r\n";
2863 $verb = construct_verb($item);
2864 $o .= '<as:verb>' . xmlify($verb) . '</as:verb>' . "\r\n";
2865 $actobj = construct_activity_object($item);
2868 $actarg = construct_activity_target($item);
2872 $tags = item_getfeedtags($item);
2874 foreach($tags as $t) {
2875 $o .= '<category scheme="X-DFRN:' . xmlify($t[0]) . ':' . xmlify($t[1]) . '" term="' . xmlify($t[2]) . '" />' . "\r\n";
2879 $o .= item_getfeedattach($item);
2881 $mentioned = get_mentions($item);
2885 call_hooks('atom_entry', $o);
2887 $o .= '</entry>' . "\r\n";
2892 function fix_private_photos($s,$uid) {
2894 logger('fix_private_photos');
2896 if(preg_match("/\[img\](.*?)\[\/img\]/is",$s,$matches)) {
2897 $image = $matches[1];
2898 logger('fix_private_photos: found photo ' . $image);
2899 if(stristr($image ,$a->get_baseurl() . '/photo/')) {
2900 $i = basename($image);
2901 $i = str_replace('.jpg','',$i);
2902 $x = strpos($i,'-');
2904 $res = substr($i,$x+1);
2905 $i = substr($i,0,$x);
2906 $r = q("SELECT * FROM `photo` WHERE `resource-id` = '%s' AND `scale` = %d AND `uid` = %d",
2912 logger('replacing photo');
2913 $s = str_replace($image, 'data:image/jpg;base64,' . base64_encode($r[0]['data']), $s);
2916 logger('fix_private_photos: replaced: ' . $s, LOGGER_DATA);
2924 function item_getfeedtags($item) {
2927 $cnt = preg_match_all('|\#\[url\=(.*?)\](.*?)\[\/url\]|',$item['tag'],$matches);
2929 for($x = 0; $x < $cnt; $x ++) {
2931 $ret[] = array('#',$matches[1][$x], $matches[2][$x]);
2935 $cnt = preg_match_all('|\@\[url\=(.*?)\](.*?)\[\/url\]|',$item['tag'],$matches);
2937 for($x = 0; $x < $cnt; $x ++) {
2939 $ret[] = array('@',$matches[1][$x], $matches[2][$x]);
2945 function item_getfeedattach($item) {
2947 $arr = explode(',',$item['attach']);
2949 foreach($arr as $r) {
2951 $cnt = preg_match('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"\[\/attach\]|',$r,$matches);
2953 $ret .= '<link rel="enclosure" href="' . xmlify($matches[1]) . '" type="' . xmlify($matches[3]) . '" ';
2954 if(intval($matches[2]))
2955 $ret .= 'length="' . intval($matches[2]) . '" ';
2956 if($matches[4] !== ' ')
2957 $ret .= 'title="' . xmlify(trim($matches[4])) . '" ';
2958 $ret .= ' />' . "\r\n";
2967 function item_expire($uid,$days) {
2969 if((! $uid) || (! $days))
2972 $r = q("SELECT * FROM `item`
2974 AND `created` < UTC_TIMESTAMP() - INTERVAL %d DAY
2984 $expire_items = get_pconfig($uid, 'expire','items');
2985 $expire_items = (($expire_items===false)?1:intval($expire_items)); // default if not set: 1
2987 $expire_notes = get_pconfig($uid, 'expire','notes');
2988 $expire_notes = (($expire_notes===false)?1:intval($expire_notes)); // default if not set: 1
2990 $expire_starred = get_pconfig($uid, 'expire','starred');
2991 $expire_starred = (($expire_starred===false)?1:intval($expire_starred)); // default if not set: 1
2993 $expire_photos = get_pconfig($uid, 'expire','photos');
2994 $expire_photos = (($expire_photos===false)?0:intval($expire_photos)); // default if not set: 0
2996 logger('expire: # items=' . count($r). "; expire items: $expire_items, expire notes: $expire_notes, expire starred: $expire_starred, expire photos: $expire_photos");
2998 foreach($r as $item) {
3000 // don't expire filed items
3002 if(strpos($item['file'],'[') !== false)
3005 // Only expire posts, not photos and photo comments
3007 if($expire_photos==0 && strlen($item['resource-id']))
3009 if($expire_starred==0 && intval($item['starred']))
3011 if($expire_notes==0 && $item['type']=='note')
3013 if($expire_items==0 && $item['type']!='note')
3017 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s' WHERE `id` = %d LIMIT 1",
3018 dbesc(datetime_convert()),
3019 dbesc(datetime_convert()),
3023 $r = q("DELETE FROM item_id where iid in (select id from item where parent = %d) and uid = %d",
3024 intval($item['id']),
3028 $r = q("DELETE FROM sign where iid in (select id from item where parent = %d) and uid = %d",
3029 intval($item['id']),
3035 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d ",
3036 dbesc(datetime_convert()),
3037 dbesc(datetime_convert()),
3038 dbesc($item['parent-uri']),
3039 intval($item['uid'])
3044 proc_run('php',"include/notifier.php","expire","$uid");
3049 function drop_items($items) {
3052 if(! local_user() && ! remote_user())
3056 foreach($items as $item) {
3057 $owner = drop_item($item,false);
3058 if($owner && ! $uid)
3063 // multiple threads may have been deleted, send an expire notification
3066 proc_run('php',"include/notifier.php","expire","$uid");
3070 function drop_item($id,$interactive = true) {
3074 // locate item to be deleted
3076 $r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1",
3083 notice( t('Item not found.') . EOL);
3084 goaway($a->get_baseurl() . '/' . $_SESSION['return_url']);
3089 $owner = $item['uid'];
3091 // check if logged in user is either the author or owner of this item
3093 if((local_user() == $item['uid']) || (remote_user() == $item['contact-id'])) {
3097 $r = q("UPDATE `item` SET `deleted` = 1, `title` = '', `body` = '', `edited` = '%s', `changed` = '%s' WHERE `id` = %d LIMIT 1",
3098 dbesc(datetime_convert()),
3099 dbesc(datetime_convert()),
3103 // If item is a link to a photo resource, nuke all the associated photos
3104 // (visitors will not have photo resources)
3105 // This only applies to photos uploaded from the photos page. Photos inserted into a post do not
3106 // generate a resource-id and therefore aren't intimately linked to the item.
3108 if(strlen($item['resource-id'])) {
3109 q("DELETE FROM `photo` WHERE `resource-id` = '%s' AND `uid` = %d ",
3110 dbesc($item['resource-id']),
3111 intval($item['uid'])
3113 // ignore the result
3116 // If item is a link to an event, nuke the event record.
3118 if(intval($item['event-id'])) {
3119 q("DELETE FROM `event` WHERE `id` = %d AND `uid` = %d LIMIT 1",
3120 intval($item['event-id']),
3121 intval($item['uid'])
3123 // ignore the result
3127 // If it's the parent of a comment thread, kill all the kids
3129 if($item['uri'] == $item['parent-uri']) {
3130 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s', `body` = '' , `title` = ''
3131 WHERE `parent-uri` = '%s' AND `uid` = %d ",
3132 dbesc(datetime_convert()),
3133 dbesc(datetime_convert()),
3134 dbesc($item['parent-uri']),
3135 intval($item['uid'])
3137 // ignore the result
3140 // ensure that last-child is set in case the comment that had it just got wiped.
3141 q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d ",
3142 dbesc(datetime_convert()),
3143 dbesc($item['parent-uri']),
3144 intval($item['uid'])
3146 // who is the last child now?
3147 $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",
3148 dbesc($item['parent-uri']),
3149 intval($item['uid'])
3152 q("UPDATE `item` SET `last-child` = 1 WHERE `id` = %d LIMIT 1",
3157 $drop_id = intval($item['id']);
3159 // send the notification upstream/downstream as the case may be
3164 proc_run('php',"include/notifier.php","drop","$drop_id");
3165 goaway($a->get_baseurl() . '/' . $_SESSION['return_url']);
3171 notice( t('Permission denied.') . EOL);
3172 goaway($a->get_baseurl() . '/' . $_SESSION['return_url']);