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];
29 // default permissions - anonymous user
31 $sql_extra = " AND `allow_cid` = '' AND `allow_gid` = '' AND `deny_cid` = '' AND `deny_gid` = '' ";
33 $r = q("SELECT `contact`.*, `user`.`uid` AS `user_uid`, `user`.`nickname`, `user`.`timezone`, `user`.`page-flags`
34 FROM `contact` LEFT JOIN `user` ON `user`.`uid` = `contact`.`uid`
35 WHERE `contact`.`self` = 1 AND `user`.`nickname` = '%s' LIMIT 1",
43 $owner_id = $owner['user_uid'];
44 $owner_nick = $owner['nickname'];
46 $birthday = feed_birthday($owner_id,$owner['timezone']);
53 $sql_extra = sprintf(" AND `issued-id` = '%s' ", dbesc($dfrn_id));
57 $sql_extra = sprintf(" AND `issued-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id));
58 $my_id = '1:' . $dfrn_id;
61 $sql_extra = sprintf(" AND `dfrn-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id));
62 $my_id = '0:' . $dfrn_id;
69 $r = q("SELECT * FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `contact`.`uid` = %d $sql_extra LIMIT 1",
77 $groups = init_groups_visitor($contact['id']);
80 for($x = 0; $x < count($groups); $x ++)
81 $groups[$x] = '<' . intval($groups[$x]) . '>' ;
82 $gs = implode('|', $groups);
85 $gs = '<<>>' ; // Impossible to match
87 $sql_extra = sprintf("
88 AND ( `allow_cid` = '' OR `allow_cid` REGEXP '<%d>' )
89 AND ( `deny_cid` = '' OR NOT `deny_cid` REGEXP '<%d>' )
90 AND ( `allow_gid` = '' OR `allow_gid` REGEXP '%s' )
91 AND ( `deny_gid` = '' OR NOT `deny_gid` REGEXP '%s')
93 intval($contact['id']),
94 intval($contact['id']),
105 if(! strlen($last_update))
106 $last_update = 'now -30 days';
108 if(isset($category)) {
109 $sql_extra .= file_tag_file_query('item',$category,'category');
114 $sql_extra .= " AND `contact`.`self` = 1 ";
117 $check_date = datetime_convert('UTC','UTC',$last_update,'Y-m-d H:i:s');
119 $r = q("SELECT `item`.*, `item`.`id` AS `item_id`,
120 `contact`.`name`, `contact`.`network`, `contact`.`photo`, `contact`.`url`,
121 `contact`.`name-date`, `contact`.`uri-date`, `contact`.`avatar-date`,
122 `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`,
123 `contact`.`id` AS `contact-id`, `contact`.`uid` AS `contact-uid`,
124 `sign`.`signed_text`, `sign`.`signature`, `sign`.`signer`
125 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
126 LEFT JOIN `sign` ON `sign`.`iid` = `item`.`id`
127 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 and `item`.`moderated` = 0 AND `item`.`parent` != 0
128 AND `item`.`wall` = 1 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
129 AND ( `item`.`edited` > '%s' OR `item`.`changed` > '%s' )
131 ORDER BY `parent` %s, `created` ASC LIMIT 0, 300",
138 // Will check further below if this actually returned results.
139 // We will provide an empty feed if that is the case.
143 $feed_template = get_markup_template(($dfrn_id) ? 'atom_feed_dfrn.tpl' : 'atom_feed.tpl');
147 $hubxml = feed_hublinks();
149 $salmon = feed_salmonlinks($owner_nick);
151 $atom .= replace_macros($feed_template, array(
152 '$version' => xmlify(FRIENDICA_VERSION),
153 '$feed_id' => xmlify($a->get_baseurl() . '/profile/' . $owner_nick),
154 '$feed_title' => xmlify($owner['name']),
155 '$feed_updated' => xmlify(datetime_convert('UTC', 'UTC', 'now' , ATOM_TIME)) ,
157 '$salmon' => $salmon,
158 '$name' => xmlify($owner['name']),
159 '$profile_page' => xmlify($owner['url']),
160 '$photo' => xmlify($owner['photo']),
161 '$thumb' => xmlify($owner['thumb']),
162 '$picdate' => xmlify(datetime_convert('UTC','UTC',$owner['avatar-date'] . '+00:00' , ATOM_TIME)) ,
163 '$uridate' => xmlify(datetime_convert('UTC','UTC',$owner['uri-date'] . '+00:00' , ATOM_TIME)) ,
164 '$namdate' => xmlify(datetime_convert('UTC','UTC',$owner['name-date'] . '+00:00' , ATOM_TIME)) ,
165 '$birthday' => ((strlen($birthday)) ? '<dfrn:birthday>' . xmlify($birthday) . '</dfrn:birthday>' : ''),
166 '$community' => (($owner['page-flags'] == PAGE_COMMUNITY) ? '<dfrn:community>1</dfrn:community>' : '')
169 call_hooks('atom_feed', $atom);
171 if(! count($items)) {
173 call_hooks('atom_feed_end', $atom);
175 $atom .= '</feed>' . "\r\n";
179 foreach($items as $item) {
181 // prevent private email from leaking.
182 if($item['network'] === NETWORK_MAIL)
185 // public feeds get html, our own nodes use bbcode
189 // catch any email that's in a public conversation and make sure it doesn't leak
197 $atom .= atom_entry($item,$type,null,$owner,true);
200 call_hooks('atom_feed_end', $atom);
202 $atom .= '</feed>' . "\r\n";
208 function construct_verb($item) {
210 return $item['verb'];
211 return ACTIVITY_POST;
214 function construct_activity_object($item) {
216 if($item['object']) {
217 $o = '<as:object>' . "\r\n";
218 $r = parse_xml_string($item['object'],false);
224 $o .= '<as:object-type>' . xmlify($r->type) . '</as:object-type>' . "\r\n";
226 $o .= '<id>' . xmlify($r->id) . '</id>' . "\r\n";
228 $o .= '<title>' . xmlify($r->title) . '</title>' . "\r\n";
230 if(substr($r->link,0,1) === '<') {
231 // patch up some facebook "like" activity objects that got stored incorrectly
232 // for a couple of months prior to 9-Jun-2011 and generated bad XML.
233 // we can probably remove this hack here and in the following function in a few months time.
234 if(strstr($r->link,'&') && (! strstr($r->link,'&')))
235 $r->link = str_replace('&','&', $r->link);
236 $r->link = preg_replace('/\<link(.*?)\"\>/','<link$1"/>',$r->link);
240 $o .= '<link rel="alternate" type="text/html" href="' . xmlify($r->link) . '" />' . "\r\n";
243 $o .= '<content type="html" >' . xmlify(bbcode($r->content)) . '</content>' . "\r\n";
244 $o .= '</as:object>' . "\r\n";
251 function construct_activity_target($item) {
253 if($item['target']) {
254 $o = '<as:target>' . "\r\n";
255 $r = parse_xml_string($item['target'],false);
259 $o .= '<as:object-type>' . xmlify($r->type) . '</as:object-type>' . "\r\n";
261 $o .= '<id>' . xmlify($r->id) . '</id>' . "\r\n";
263 $o .= '<title>' . xmlify($r->title) . '</title>' . "\r\n";
265 if(substr($r->link,0,1) === '<') {
266 if(strstr($r->link,'&') && (! strstr($r->link,'&')))
267 $r->link = str_replace('&','&', $r->link);
268 $r->link = preg_replace('/\<link(.*?)\"\>/','<link$1"/>',$r->link);
272 $o .= '<link rel="alternate" type="text/html" href="' . xmlify($r->link) . '" />' . "\r\n";
275 $o .= '<content type="html" >' . xmlify(bbcode($r->content)) . '</content>' . "\r\n";
276 $o .= '</as:target>' . "\r\n";
286 function get_atom_elements($feed,$item) {
288 require_once('library/HTMLPurifier.auto.php');
289 require_once('include/html2bbcode.php');
291 $best_photo = array();
295 $author = $item->get_author();
297 $res['author-name'] = unxmlify($author->get_name());
298 $res['author-link'] = unxmlify($author->get_link());
301 $res['author-name'] = unxmlify($feed->get_title());
302 $res['author-link'] = unxmlify($feed->get_permalink());
304 $res['uri'] = unxmlify($item->get_id());
305 $res['title'] = unxmlify($item->get_title());
306 $res['body'] = unxmlify($item->get_content());
307 $res['plink'] = unxmlify($item->get_link(0));
310 $base_url = implode('/', array_slice(explode('/',$res['plink']),0,3));
314 // look for a photo. We should check media size and find the best one,
315 // but for now let's just find any author photo
317 $rawauthor = $item->get_item_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'author');
319 if($rawauthor && $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) {
320 $base = $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
321 foreach($base as $link) {
322 if(!x($res, 'author-avatar') || !$res['author-avatar']) {
323 if($link['attribs']['']['rel'] === 'photo' || $link['attribs']['']['rel'] === 'avatar')
324 $res['author-avatar'] = unxmlify($link['attribs']['']['href']);
329 $rawactor = $item->get_item_tags(NAMESPACE_ACTIVITY, 'actor');
331 if($rawactor && activity_match($rawactor[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'],ACTIVITY_OBJ_PERSON)) {
332 $base = $rawactor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
333 if($base && count($base)) {
334 foreach($base as $link) {
335 if($link['attribs']['']['rel'] === 'alternate' && (! $res['author-link']))
336 $res['author-link'] = unxmlify($link['attribs']['']['href']);
337 if(!x($res, 'author-avatar') || !$res['author-avatar']) {
338 if($link['attribs']['']['rel'] === 'avatar' || $link['attribs']['']['rel'] === 'photo')
339 $res['author-avatar'] = unxmlify($link['attribs']['']['href']);
345 // No photo/profile-link on the item - look at the feed level
347 if((! (x($res,'author-link'))) || (! (x($res,'author-avatar')))) {
348 $rawauthor = $feed->get_feed_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'author');
349 if($rawauthor && $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) {
350 $base = $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
351 foreach($base as $link) {
352 if($link['attribs']['']['rel'] === 'alternate' && (! $res['author-link']))
353 $res['author-link'] = unxmlify($link['attribs']['']['href']);
354 if(! $res['author-avatar']) {
355 if($link['attribs']['']['rel'] === 'photo' || $link['attribs']['']['rel'] === 'avatar')
356 $res['author-avatar'] = unxmlify($link['attribs']['']['href']);
361 $rawactor = $feed->get_feed_tags(NAMESPACE_ACTIVITY, 'subject');
363 if($rawactor && activity_match($rawactor[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'],ACTIVITY_OBJ_PERSON)) {
364 $base = $rawactor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
366 if($base && count($base)) {
367 foreach($base as $link) {
368 if($link['attribs']['']['rel'] === 'alternate' && (! $res['author-link']))
369 $res['author-link'] = unxmlify($link['attribs']['']['href']);
370 if(! (x($res,'author-avatar'))) {
371 if($link['attribs']['']['rel'] === 'avatar' || $link['attribs']['']['rel'] === 'photo')
372 $res['author-avatar'] = unxmlify($link['attribs']['']['href']);
379 $apps = $item->get_item_tags(NAMESPACE_STATUSNET,'notice_info');
380 if($apps && $apps[0]['attribs']['']['source']) {
381 $res['app'] = strip_tags(unxmlify($apps[0]['attribs']['']['source']));
382 if($res['app'] === 'web')
383 $res['app'] = 'OStatus';
386 // base64 encoded json structure representing Diaspora signature
388 $dsig = $item->get_item_tags(NAMESPACE_DFRN,'diaspora_signature');
390 $res['dsprsig'] = unxmlify($dsig[0]['data']);
393 $dguid = $item->get_item_tags(NAMESPACE_DFRN,'diaspora_guid');
395 $res['guid'] = unxmlify($dguid[0]['data']);
397 $bm = $item->get_item_tags(NAMESPACE_DFRN,'bookmark');
399 $res['bookmark'] = ((unxmlify($bm[0]['data']) === 'true') ? 1 : 0);
403 * If there's a copy of the body content which is guaranteed to have survived mangling in transit, use it.
406 $have_real_body = false;
408 $rawenv = $item->get_item_tags(NAMESPACE_DFRN, 'env');
410 $have_real_body = true;
411 $res['body'] = $rawenv[0]['data'];
412 $res['body'] = str_replace(array(' ',"\t","\r","\n"), array('','','',''),$res['body']);
413 // make sure nobody is trying to sneak some html tags by us
414 $res['body'] = notags(base64url_decode($res['body']));
417 $maxlen = get_max_import_size();
418 if($maxlen && (strlen($res['body']) > $maxlen))
419 $res['body'] = substr($res['body'],0, $maxlen);
421 // It isn't certain at this point whether our content is plaintext or html and we'd be foolish to trust
422 // the content type. Our own network only emits text normally, though it might have been converted to
423 // html if we used a pubsubhubbub transport. But if we see even one html tag in our text, we will
424 // have to assume it is all html and needs to be purified.
426 // It doesn't matter all that much security wise - because before this content is used anywhere, we are
427 // going to escape any tags we find regardless, but this lets us import a limited subset of html from
428 // the wild, by sanitising it and converting supported tags to bbcode before we rip out any remaining
431 if((strpos($res['body'],'<') !== false) && (strpos($res['body'],'>') !== false)) {
433 $res['body'] = reltoabs($res['body'],$base_url);
435 $res['body'] = html2bb_video($res['body']);
437 $res['body'] = oembed_html2bbcode($res['body']);
439 $config = HTMLPurifier_Config::createDefault();
440 $config->set('Cache.DefinitionImpl', null);
442 // we shouldn't need a whitelist, because the bbcode converter
443 // will strip out any unsupported tags.
445 $purifier = new HTMLPurifier($config);
446 $res['body'] = $purifier->purify($res['body']);
448 $res['body'] = @html2bbcode($res['body']);
450 elseif(! $have_real_body) {
452 // it's not one of our messages and it has no tags
453 // so it's probably just text. We'll escape it just to be safe.
455 $res['body'] = escape_tags($res['body']);
458 // this tag is obsolete but we keep it for really old sites
460 $allow = $item->get_item_tags(NAMESPACE_DFRN,'comment-allow');
461 if($allow && $allow[0]['data'] == 1)
462 $res['last-child'] = 1;
464 $res['last-child'] = 0;
466 $private = $item->get_item_tags(NAMESPACE_DFRN,'private');
467 if($private && $private[0]['data'] == 1)
472 $extid = $item->get_item_tags(NAMESPACE_DFRN,'extid');
473 if($extid && $extid[0]['data'])
474 $res['extid'] = $extid[0]['data'];
476 $rawlocation = $item->get_item_tags(NAMESPACE_DFRN, 'location');
478 $res['location'] = unxmlify($rawlocation[0]['data']);
481 $rawcreated = $item->get_item_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'published');
483 $res['created'] = unxmlify($rawcreated[0]['data']);
486 $rawedited = $item->get_item_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'updated');
488 $res['edited'] = unxmlify($rawedited[0]['data']);
490 if((x($res,'edited')) && (! (x($res,'created'))))
491 $res['created'] = $res['edited'];
493 if(! $res['created'])
494 $res['created'] = $item->get_date('c');
497 $res['edited'] = $item->get_date('c');
500 // Disallow time travelling posts
502 $d1 = strtotime($res['created']);
503 $d2 = strtotime($res['edited']);
504 $d3 = strtotime('now');
507 $res['created'] = datetime_convert();
509 $res['edited'] = datetime_convert();
511 $rawowner = $item->get_item_tags(NAMESPACE_DFRN, 'owner');
512 if($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['name'][0]['data'])
513 $res['owner-name'] = unxmlify($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['name'][0]['data']);
514 elseif($rawowner[0]['child'][NAMESPACE_DFRN]['name'][0]['data'])
515 $res['owner-name'] = unxmlify($rawowner[0]['child'][NAMESPACE_DFRN]['name'][0]['data']);
516 if($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]['data'])
517 $res['owner-link'] = unxmlify($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]['data']);
518 elseif($rawowner[0]['child'][NAMESPACE_DFRN]['uri'][0]['data'])
519 $res['owner-link'] = unxmlify($rawowner[0]['child'][NAMESPACE_DFRN]['uri'][0]['data']);
521 if($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) {
522 $base = $rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
524 foreach($base as $link) {
525 if(!x($res, 'owner-avatar') || !$res['owner-avatar']) {
526 if($link['attribs']['']['rel'] === 'photo' || $link['attribs']['']['rel'] === 'avatar')
527 $res['owner-avatar'] = unxmlify($link['attribs']['']['href']);
532 $rawgeo = $item->get_item_tags(NAMESPACE_GEORSS,'point');
534 $res['coord'] = unxmlify($rawgeo[0]['data']);
537 $rawverb = $item->get_item_tags(NAMESPACE_ACTIVITY, 'verb');
539 // select between supported verbs
542 $res['verb'] = unxmlify($rawverb[0]['data']);
545 // translate OStatus unfollow to activity streams if it happened to get selected
547 if((x($res,'verb')) && ($res['verb'] === 'http://ostatus.org/schema/1.0/unfollow'))
548 $res['verb'] = ACTIVITY_UNFOLLOW;
550 $cats = $item->get_categories();
553 foreach($cats as $cat) {
554 $term = $cat->get_term();
556 $term = $cat->get_label();
557 $scheme = $cat->get_scheme();
558 if($scheme && $term && stristr($scheme,'X-DFRN:'))
559 $tag_arr[] = substr($scheme,7,1) . '[url=' . unxmlify(substr($scheme,9)) . ']' . unxmlify($term) . '[/url]';
561 $tag_arr[] = notags(trim($term));
563 $res['tag'] = implode(',', $tag_arr);
566 $attach = $item->get_enclosures();
569 foreach($attach as $att) {
570 $len = intval($att->get_length());
571 $link = str_replace(array(',','"'),array('%2D','%22'),notags(trim(unxmlify($att->get_link()))));
572 $title = str_replace(array(',','"'),array('%2D','%22'),notags(trim(unxmlify($att->get_title()))));
573 $type = str_replace(array(',','"'),array('%2D','%22'),notags(trim(unxmlify($att->get_type()))));
574 if(strpos($type,';'))
575 $type = substr($type,0,strpos($type,';'));
576 if((! $link) || (strpos($link,'http') !== 0))
582 $type = 'application/octet-stream';
584 $att_arr[] = '[attach]href="' . $link . '" length="' . $len . '" type="' . $type . '" title="' . $title . '"[/attach]';
586 $res['attach'] = implode(',', $att_arr);
589 $rawobj = $item->get_item_tags(NAMESPACE_ACTIVITY, 'object');
592 $res['object'] = '<object>' . "\n";
593 $child = $rawobj[0]['child'];
594 if($child[NAMESPACE_ACTIVITY]['object-type'][0]['data']) {
595 $res['object-type'] = $child[NAMESPACE_ACTIVITY]['object-type'][0]['data'];
596 $res['object'] .= '<type>' . $child[NAMESPACE_ACTIVITY]['object-type'][0]['data'] . '</type>' . "\n";
598 if(x($child[SIMPLEPIE_NAMESPACE_ATOM_10], 'id') && $child[SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'])
599 $res['object'] .= '<id>' . $child[SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'] . '</id>' . "\n";
600 if(x($child[SIMPLEPIE_NAMESPACE_ATOM_10], 'link') && $child[SIMPLEPIE_NAMESPACE_ATOM_10]['link'])
601 $res['object'] .= '<link>' . encode_rel_links($child[SIMPLEPIE_NAMESPACE_ATOM_10]['link']) . '</link>' . "\n";
602 if(x($child[SIMPLEPIE_NAMESPACE_ATOM_10], 'title') && $child[SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'])
603 $res['object'] .= '<title>' . $child[SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'] . '</title>' . "\n";
604 if(x($child[SIMPLEPIE_NAMESPACE_ATOM_10], 'content') && $child[SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data']) {
605 $body = $child[SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data'];
607 $body = $child[SIMPLEPIE_NAMESPACE_ATOM_10]['summary'][0]['data'];
608 // preserve a copy of the original body content in case we later need to parse out any microformat information, e.g. events
609 $res['object'] .= '<orig>' . xmlify($body) . '</orig>' . "\n";
610 if((strpos($body,'<') !== false) || (strpos($body,'>') !== false)) {
612 $body = html2bb_video($body);
614 $config = HTMLPurifier_Config::createDefault();
615 $config->set('Cache.DefinitionImpl', null);
617 $purifier = new HTMLPurifier($config);
618 $body = $purifier->purify($body);
619 $body = html2bbcode($body);
622 $res['object'] .= '<content>' . $body . '</content>' . "\n";
625 $res['object'] .= '</object>' . "\n";
628 $rawobj = $item->get_item_tags(NAMESPACE_ACTIVITY, 'target');
631 $res['target'] = '<target>' . "\n";
632 $child = $rawobj[0]['child'];
633 if($child[NAMESPACE_ACTIVITY]['object-type'][0]['data']) {
634 $res['target'] .= '<type>' . $child[NAMESPACE_ACTIVITY]['object-type'][0]['data'] . '</type>' . "\n";
636 if(x($child[SIMPLEPIE_NAMESPACE_ATOM_10], 'id') && $child[SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'])
637 $res['target'] .= '<id>' . $child[SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'] . '</id>' . "\n";
638 if(x($child[SIMPLEPIE_NAMESPACE_ATOM_10], 'link') && $child[SIMPLEPIE_NAMESPACE_ATOM_10]['link'])
639 $res['target'] .= '<link>' . encode_rel_links($child[SIMPLEPIE_NAMESPACE_ATOM_10]['link']) . '</link>' . "\n";
640 if(x($child[SIMPLEPIE_NAMESPACE_ATOM_10], 'data') && $child[SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'])
641 $res['target'] .= '<title>' . $child[SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'] . '</title>' . "\n";
642 if(x($child[SIMPLEPIE_NAMESPACE_ATOM_10], 'data') && $child[SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data']) {
643 $body = $child[SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data'];
645 $body = $child[SIMPLEPIE_NAMESPACE_ATOM_10]['summary'][0]['data'];
646 // preserve a copy of the original body content in case we later need to parse out any microformat information, e.g. events
647 $res['target'] .= '<orig>' . xmlify($body) . '</orig>' . "\n";
648 if((strpos($body,'<') !== false) || (strpos($body,'>') !== false)) {
650 $body = html2bb_video($body);
652 $config = HTMLPurifier_Config::createDefault();
653 $config->set('Cache.DefinitionImpl', null);
655 $purifier = new HTMLPurifier($config);
656 $body = $purifier->purify($body);
657 $body = html2bbcode($body);
660 $res['target'] .= '<content>' . $body . '</content>' . "\n";
663 $res['target'] .= '</target>' . "\n";
666 $arr = array('feed' => $feed, 'item' => $item, 'result' => $res);
668 call_hooks('parse_atom', $arr);
673 function encode_rel_links($links) {
675 if(! ((is_array($links)) && (count($links))))
677 foreach($links as $link) {
679 if($link['attribs']['']['rel'])
680 $o .= 'rel="' . $link['attribs']['']['rel'] . '" ';
681 if($link['attribs']['']['type'])
682 $o .= 'type="' . $link['attribs']['']['type'] . '" ';
683 if($link['attribs']['']['href'])
684 $o .= 'href="' . $link['attribs']['']['href'] . '" ';
685 if( (x($link['attribs'],NAMESPACE_MEDIA)) && $link['attribs'][NAMESPACE_MEDIA]['width'])
686 $o .= 'media:width="' . $link['attribs'][NAMESPACE_MEDIA]['width'] . '" ';
687 if( (x($link['attribs'],NAMESPACE_MEDIA)) && $link['attribs'][NAMESPACE_MEDIA]['height'])
688 $o .= 'media:height="' . $link['attribs'][NAMESPACE_MEDIA]['height'] . '" ';
696 function item_store($arr,$force_parent = false) {
698 // If a Diaspora signature structure was passed in, pull it out of the
699 // item array and set it aside for later storage.
702 if(x($arr,'dsprsig')) {
703 $dsprsig = json_decode(base64_decode($arr['dsprsig']));
704 unset($arr['dsprsig']);
707 if(x($arr, 'gravity'))
708 $arr['gravity'] = intval($arr['gravity']);
709 elseif($arr['parent-uri'] === $arr['uri'])
711 elseif(activity_match($arr['verb'],ACTIVITY_POST))
714 $arr['gravity'] = 6; // extensible catchall
717 $arr['type'] = 'remote';
719 // Shouldn't happen but we want to make absolutely sure it doesn't leak from a plugin.
721 if((strpos($arr['body'],'<') !== false) || (strpos($arr['body'],'>') !== false))
722 $arr['body'] = strip_tags($arr['body']);
725 $arr['wall'] = ((x($arr,'wall')) ? intval($arr['wall']) : 0);
726 $arr['uri'] = ((x($arr,'uri')) ? notags(trim($arr['uri'])) : random_string());
727 $arr['extid'] = ((x($arr,'extid')) ? notags(trim($arr['extid'])) : '');
728 $arr['author-name'] = ((x($arr,'author-name')) ? notags(trim($arr['author-name'])) : '');
729 $arr['author-link'] = ((x($arr,'author-link')) ? notags(trim($arr['author-link'])) : '');
730 $arr['author-avatar'] = ((x($arr,'author-avatar')) ? notags(trim($arr['author-avatar'])) : '');
731 $arr['owner-name'] = ((x($arr,'owner-name')) ? notags(trim($arr['owner-name'])) : '');
732 $arr['owner-link'] = ((x($arr,'owner-link')) ? notags(trim($arr['owner-link'])) : '');
733 $arr['owner-avatar'] = ((x($arr,'owner-avatar')) ? notags(trim($arr['owner-avatar'])) : '');
734 $arr['created'] = ((x($arr,'created') !== false) ? datetime_convert('UTC','UTC',$arr['created']) : datetime_convert());
735 $arr['edited'] = ((x($arr,'edited') !== false) ? datetime_convert('UTC','UTC',$arr['edited']) : datetime_convert());
736 $arr['commented'] = datetime_convert();
737 $arr['received'] = datetime_convert();
738 $arr['changed'] = datetime_convert();
739 $arr['title'] = ((x($arr,'title')) ? notags(trim($arr['title'])) : '');
740 $arr['location'] = ((x($arr,'location')) ? notags(trim($arr['location'])) : '');
741 $arr['coord'] = ((x($arr,'coord')) ? notags(trim($arr['coord'])) : '');
742 $arr['last-child'] = ((x($arr,'last-child')) ? intval($arr['last-child']) : 0 );
743 $arr['visible'] = ((x($arr,'visible') !== false) ? intval($arr['visible']) : 1 );
745 $arr['parent-uri'] = ((x($arr,'parent-uri')) ? notags(trim($arr['parent-uri'])) : '');
746 $arr['verb'] = ((x($arr,'verb')) ? notags(trim($arr['verb'])) : '');
747 $arr['object-type'] = ((x($arr,'object-type')) ? notags(trim($arr['object-type'])) : '');
748 $arr['object'] = ((x($arr,'object')) ? trim($arr['object']) : '');
749 $arr['target-type'] = ((x($arr,'target-type')) ? notags(trim($arr['target-type'])) : '');
750 $arr['target'] = ((x($arr,'target')) ? trim($arr['target']) : '');
751 $arr['plink'] = ((x($arr,'plink')) ? notags(trim($arr['plink'])) : '');
752 $arr['allow_cid'] = ((x($arr,'allow_cid')) ? trim($arr['allow_cid']) : '');
753 $arr['allow_gid'] = ((x($arr,'allow_gid')) ? trim($arr['allow_gid']) : '');
754 $arr['deny_cid'] = ((x($arr,'deny_cid')) ? trim($arr['deny_cid']) : '');
755 $arr['deny_gid'] = ((x($arr,'deny_gid')) ? trim($arr['deny_gid']) : '');
756 $arr['private'] = ((x($arr,'private')) ? intval($arr['private']) : 0 );
757 $arr['bookmark'] = ((x($arr,'bookmark')) ? intval($arr['bookmark']) : 0 );
758 $arr['body'] = ((x($arr,'body')) ? trim($arr['body']) : '');
759 $arr['tag'] = ((x($arr,'tag')) ? notags(trim($arr['tag'])) : '');
760 $arr['attach'] = ((x($arr,'attach')) ? notags(trim($arr['attach'])) : '');
761 $arr['app'] = ((x($arr,'app')) ? notags(trim($arr['app'])) : '');
762 $arr['origin'] = ((x($arr,'origin')) ? intval($arr['origin']) : 0 );
763 $arr['guid'] = ((x($arr,'guid')) ? notags(trim($arr['guid'])) : get_guid());
765 if($arr['parent-uri'] === $arr['uri']) {
768 $allow_cid = $arr['allow_cid'];
769 $allow_gid = $arr['allow_gid'];
770 $deny_cid = $arr['deny_cid'];
771 $deny_gid = $arr['deny_gid'];
775 // find the parent and snarf the item id and ACL's
776 // and anything else we need to inherit
778 $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d ORDER BY `id` ASC LIMIT 1",
779 dbesc($arr['parent-uri']),
785 // is the new message multi-level threaded?
786 // even though we don't support it now, preserve the info
787 // and re-attach to the conversation parent.
789 if($r[0]['uri'] != $r[0]['parent-uri']) {
790 $arr['thr-parent'] = $arr['parent-uri'];
791 $arr['parent-uri'] = $r[0]['parent-uri'];
792 $z = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `parent-uri` = '%s' AND `uid` = %d
793 ORDER BY `id` ASC LIMIT 1",
794 dbesc($r[0]['parent-uri']),
795 dbesc($r[0]['parent-uri']),
802 $parent_id = $r[0]['id'];
803 $parent_deleted = $r[0]['deleted'];
804 $allow_cid = $r[0]['allow_cid'];
805 $allow_gid = $r[0]['allow_gid'];
806 $deny_cid = $r[0]['deny_cid'];
807 $deny_gid = $r[0]['deny_gid'];
808 $arr['wall'] = $r[0]['wall'];
810 // if the parent is private, force privacy for the entire conversation
811 // This differs from the above settings as it subtly allows comments from
812 // email correspondents to be private even if the overall thread is not.
820 // Allow one to see reply tweets from status.net even when
821 // we don't have or can't see the original post.
824 logger('item_store: $force_parent=true, reply converted to top-level post.');
826 $arr['thr-parent'] = $arr['parent-uri'];
827 $arr['parent-uri'] = $arr['uri'];
831 logger('item_store: item parent was not found - ignoring item');
839 $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
843 if($r && count($r)) {
844 logger('item-store: duplicate item ignored. ' . print_r($arr,true));
848 call_hooks('post_remote',$arr);
850 if(x($arr,'cancel')) {
851 logger('item_store: post cancelled by plugin.');
857 logger('item_store: ' . print_r($arr,true), LOGGER_DATA);
859 $r = dbq("INSERT INTO `item` (`"
860 . implode("`, `", array_keys($arr))
862 . implode("', '", array_values($arr))
865 // find the item we just created
867 $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = %d ORDER BY `id` ASC ",
868 $arr['uri'], // already dbesc'd
873 $current_post = $r[0]['id'];
874 logger('item_store: created item ' . $current_post);
877 logger('item_store: could not locate created item');
881 logger('item_store: duplicated post occurred. Removing duplicates.');
882 q("DELETE FROM `item` WHERE `uri` = '%s' AND `uid` = %d AND `id` != %d ",
885 intval($current_post)
889 if((! $parent_id) || ($arr['parent-uri'] === $arr['uri']))
890 $parent_id = $current_post;
892 if(strlen($allow_cid) || strlen($allow_gid) || strlen($deny_cid) || strlen($deny_gid))
895 $private = $arr['private'];
897 // Set parent id - and also make sure to inherit the parent's ACL's.
899 $r = q("UPDATE `item` SET `parent` = %d, `allow_cid` = '%s', `allow_gid` = '%s',
900 `deny_cid` = '%s', `deny_gid` = '%s', `private` = %d, `deleted` = %d WHERE `id` = %d LIMIT 1",
907 intval($parent_deleted),
908 intval($current_post)
911 $arr['id'] = $current_post;
912 $arr['parent'] = $parent_id;
913 $arr['allow_cid'] = $allow_cid;
914 $arr['allow_gid'] = $allow_gid;
915 $arr['deny_cid'] = $deny_cid;
916 $arr['deny_gid'] = $deny_gid;
917 $arr['private'] = $private;
918 $arr['deleted'] = $parent_deleted;
919 call_hooks('post_remote_end',$arr);
921 // update the commented timestamp on the parent
923 q("UPDATE `item` set `commented` = '%s', `changed` = '%s' WHERE `id` = %d LIMIT 1",
924 dbesc(datetime_convert()),
925 dbesc(datetime_convert()),
930 q("insert into sign (`iid`,`signed_text`,`signature`,`signer`) values (%d,'%s','%s','%s') ",
931 intval($current_post),
932 dbesc($dsprsig->signed_text),
933 dbesc($dsprsig->signature),
934 dbesc($dsprsig->signer)
940 * If this is now the last-child, force all _other_ children of this parent to *not* be last-child
943 if($arr['last-child']) {
944 $r = q("UPDATE `item` SET `last-child` = 0 WHERE `parent-uri` = '%s' AND `uid` = %d AND `id` != %d",
947 intval($current_post)
951 tag_deliver($arr['uid'],$current_post);
953 return $current_post;
956 function get_item_contact($item,$contacts) {
957 if(! count($contacts) || (! is_array($item)))
959 foreach($contacts as $contact) {
960 if($contact['id'] == $item['contact-id']) {
969 function tag_deliver($uid,$item_id) {
971 // look for mention tags and setup a second delivery chain for forum/community posts if appropriate
977 $u = q("select * from user where uid = %d limit 1",
983 $community_page = (($u[0]['page-flags'] == PAGE_COMMUNITY) ? true : false);
984 $prvgroup = (($u[0]['page-flags'] == PAGE_PRVGROUP) ? true : false);
987 $i = q("select * from item where id = %d and uid = %d limit 1",
996 $link = normalise_link($a->get_baseurl() . '/profile/' . $u[0]['nickname']);
998 // Diaspora uses their own hardwired link URL in @-tags
999 // instead of the one we supply with webfinger
1001 $dlink = normalise_link($a->get_baseurl() . '/u/' . $u[0]['nickname']);
1003 $cnt = preg_match_all('/[\@\!]\[url\=(.*?)\](.*?)\[\/url\]/ism',$item['body'],$matches,PREG_SET_ORDER);
1005 foreach($matches as $mtch) {
1006 if(link_compare($link,$mtch[1]) || link_compare($dlink,$mtch[1])) {
1008 logger('tag_deliver: mention found: ' . $mtch[2]);
1016 // send a notification
1018 require_once('include/enotify.php');
1020 'type' => NOTIFY_TAGSELF,
1021 'notify_flags' => $u[0]['notify-flags'],
1022 'language' => $u[0]['language'],
1023 'to_name' => $u[0]['username'],
1024 'to_email' => $u[0]['email'],
1025 'uid' => $u[0]['uid'],
1027 'link' => $a->get_baseurl() . '/display/' . $u[0]['nickname'] . '/' . $item['id'],
1028 'source_name' => $item['author-name'],
1029 'source_link' => $item['author-link'],
1030 'source_photo' => $item['author-avatar'],
1031 'verb' => ACTIVITY_TAG,
1035 if((! $community_page) && (! $prvgroup))
1039 // tgroup delivery - setup a second delivery chain
1040 // prevent delivery looping - only proceed
1041 // if the message originated elsewhere and is a top-level post
1043 if(($item['wall']) || ($item['origin']) || ($item['id'] != $item['parent']))
1046 // now change this copy of the post to a forum head message and deliver to all the tgroup members
1049 $c = q("select name, url, thumb from contact where self = 1 and uid = %d limit 1",
1050 intval($u[0]['uid'])
1055 // also reset all the privacy bits to the forum default permissions
1057 $private = ($u[0]['allow_cid'] || $u[0]['allow_gid'] || $u[0]['deny_cid'] || $u[0]['deny_gid']) ? 1 : 0;
1059 $forum_mode = (($prvgroup) ? 2 : 1);
1061 q("update item set wall = 1, origin = 1, forum_mode = %d, `owner-name` = '%s', `owner-link` = '%s', `owner-avatar` = '%s',
1062 `private` = %d, `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s' where id = %d limit 1",
1063 intval($forum_mode),
1064 dbesc($c[0]['name']),
1065 dbesc($c[0]['url']),
1066 dbesc($c[0]['thumb']),
1068 dbesc($u[0]['allow_cid']),
1069 dbesc($u[0]['allow_gid']),
1070 dbesc($u[0]['deny_cid']),
1071 dbesc($u[0]['deny_gid']),
1075 proc_run('php','include/notifier.php','tgroup',$item_id);
1084 function dfrn_deliver($owner,$contact,$atom, $dissolve = false) {
1088 $idtosend = $orig_id = (($contact['dfrn-id']) ? $contact['dfrn-id'] : $contact['issued-id']);
1090 if($contact['duplex'] && $contact['dfrn-id'])
1091 $idtosend = '0:' . $orig_id;
1092 if($contact['duplex'] && $contact['issued-id'])
1093 $idtosend = '1:' . $orig_id;
1095 $rino = ((function_exists('mcrypt_encrypt')) ? 1 : 0);
1097 $rino_enable = get_config('system','rino_encrypt');
1102 $ssl_val = intval(get_config('system','ssl_policy'));
1106 case SSL_POLICY_FULL:
1107 $ssl_policy = 'full';
1109 case SSL_POLICY_SELFSIGN:
1110 $ssl_policy = 'self';
1112 case SSL_POLICY_NONE:
1114 $ssl_policy = 'none';
1118 $url = $contact['notify'] . '&dfrn_id=' . $idtosend . '&dfrn_version=' . DFRN_PROTOCOL_VERSION . (($rino) ? '&rino=1' : '');
1120 logger('dfrn_deliver: ' . $url);
1122 $xml = fetch_url($url);
1124 $curl_stat = $a->get_curl_code();
1126 return(-1); // timed out
1128 logger('dfrn_deliver: ' . $xml, LOGGER_DATA);
1133 if(strpos($xml,'<?xml') === false) {
1134 logger('dfrn_deliver: no valid XML returned');
1135 logger('dfrn_deliver: returned XML: ' . $xml, LOGGER_DATA);
1139 $res = parse_xml_string($xml);
1141 if((intval($res->status) != 0) || (! strlen($res->challenge)) || (! strlen($res->dfrn_id)))
1142 return (($res->status) ? $res->status : 3);
1144 $postvars = array();
1145 $sent_dfrn_id = hex2bin((string) $res->dfrn_id);
1146 $challenge = hex2bin((string) $res->challenge);
1147 $perm = (($res->perm) ? $res->perm : null);
1148 $dfrn_version = (float) (($res->dfrn_version) ? $res->dfrn_version : 2.0);
1149 $rino_allowed = ((intval($res->rino) === 1) ? 1 : 0);
1150 $page = (($owner['page-flags'] == PAGE_COMMUNITY) ? 1 : 0);
1152 if($owner['page-flags'] == PAGE_PRVGROUP)
1155 $final_dfrn_id = '';
1158 if((($perm == 'rw') && (! intval($contact['writable'])))
1159 || (($perm == 'r') && (intval($contact['writable'])))) {
1160 q("update contact set writable = %d where id = %d limit 1",
1161 intval(($perm == 'rw') ? 1 : 0),
1162 intval($contact['id'])
1164 $contact['writable'] = (string) 1 - intval($contact['writable']);
1168 if(($contact['duplex'] && strlen($contact['pubkey']))
1169 || ($owner['page-flags'] == PAGE_COMMUNITY && strlen($contact['pubkey']))
1170 || ($contact['rel'] == CONTACT_IS_SHARING && strlen($contact['pubkey']))) {
1171 openssl_public_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['pubkey']);
1172 openssl_public_decrypt($challenge,$postvars['challenge'],$contact['pubkey']);
1175 openssl_private_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['prvkey']);
1176 openssl_private_decrypt($challenge,$postvars['challenge'],$contact['prvkey']);
1179 $final_dfrn_id = substr($final_dfrn_id, 0, strpos($final_dfrn_id, '.'));
1181 if(strpos($final_dfrn_id,':') == 1)
1182 $final_dfrn_id = substr($final_dfrn_id,2);
1184 if($final_dfrn_id != $orig_id) {
1185 logger('dfrn_deliver: wrong dfrn_id.');
1186 // did not decode properly - cannot trust this site
1190 $postvars['dfrn_id'] = $idtosend;
1191 $postvars['dfrn_version'] = DFRN_PROTOCOL_VERSION;
1193 $postvars['dissolve'] = '1';
1196 if((($contact['rel']) && ($contact['rel'] != CONTACT_IS_SHARING) && (! $contact['blocked'])) || ($owner['page-flags'] == PAGE_COMMUNITY)) {
1197 $postvars['data'] = $atom;
1198 $postvars['perm'] = 'rw';
1201 $postvars['data'] = str_replace('<dfrn:comment-allow>1','<dfrn:comment-allow>0',$atom);
1202 $postvars['perm'] = 'r';
1205 $postvars['ssl_policy'] = $ssl_policy;
1208 $postvars['page'] = $page;
1210 if($rino && $rino_allowed && (! $dissolve)) {
1211 $key = substr(random_string(),0,16);
1212 $data = bin2hex(aes_encrypt($postvars['data'],$key));
1213 $postvars['data'] = $data;
1214 logger('rino: sent key = ' . $key, LOGGER_DEBUG);
1217 if($dfrn_version >= 2.1) {
1218 if(($contact['duplex'] && strlen($contact['pubkey']))
1219 || ($owner['page-flags'] == PAGE_COMMUNITY && strlen($contact['pubkey']))
1220 || ($contact['rel'] == CONTACT_IS_SHARING && strlen($contact['pubkey']))) {
1222 openssl_public_encrypt($key,$postvars['key'],$contact['pubkey']);
1225 openssl_private_encrypt($key,$postvars['key'],$contact['prvkey']);
1229 if(($contact['duplex'] && strlen($contact['prvkey'])) || ($owner['page-flags'] == PAGE_COMMUNITY)) {
1230 openssl_private_encrypt($key,$postvars['key'],$contact['prvkey']);
1233 openssl_public_encrypt($key,$postvars['key'],$contact['pubkey']);
1237 logger('md5 rawkey ' . md5($postvars['key']));
1239 $postvars['key'] = bin2hex($postvars['key']);
1242 logger('dfrn_deliver: ' . "SENDING: " . print_r($postvars,true), LOGGER_DATA);
1244 $xml = post_url($contact['notify'],$postvars);
1246 logger('dfrn_deliver: ' . "RECEIVED: " . $xml, LOGGER_DATA);
1248 $curl_stat = $a->get_curl_code();
1249 if((! $curl_stat) || (! strlen($xml)))
1250 return(-1); // timed out
1252 if(($curl_stat == 503) && (stristr($a->get_curl_headers(),'retry-after')))
1255 if(strpos($xml,'<?xml') === false) {
1256 logger('dfrn_deliver: phase 2: no valid XML returned');
1257 logger('dfrn_deliver: phase 2: returned XML: ' . $xml, LOGGER_DATA);
1261 $res = parse_xml_string($xml);
1263 return $res->status;
1269 * consume_feed - process atom feed and update anything/everything we might need to update
1271 * $xml = the (atom) feed to consume - RSS isn't as fully supported but may work for simple feeds.
1273 * $importer = the contact_record (joined to user_record) of the local user who owns this relationship.
1274 * It is this person's stuff that is going to be updated.
1275 * $contact = the person who is sending us stuff. If not set, we MAY be processing a "follow" activity
1276 * from an external network and MAY create an appropriate contact record. Otherwise, we MUST
1277 * have a contact record.
1278 * $hub = should we find a hub declation in the feed, pass it back to our calling process, who might (or
1279 * might not) try and subscribe to it.
1280 * $datedir sorts in reverse order
1281 * $pass - by default ($pass = 0) we cannot guarantee that a parent item has been
1282 * imported prior to its children being seen in the stream unless we are certain
1283 * of how the feed is arranged/ordered.
1284 * With $pass = 1, we only pull parent items out of the stream.
1285 * With $pass = 2, we only pull children (comments/likes).
1287 * So running this twice, first with pass 1 and then with pass 2 will do the right
1288 * thing regardless of feed ordering. This won't be adequate in a fully-threaded
1289 * model where comments can have sub-threads. That would require some massive sorting
1290 * to get all the feed items into a mostly linear ordering, and might still require
1294 function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0) {
1296 require_once('library/simplepie/simplepie.inc');
1298 if(! strlen($xml)) {
1299 logger('consume_feed: empty input');
1303 $feed = new SimplePie();
1304 $feed->set_raw_data($xml);
1306 $feed->enable_order_by_date(true);
1308 $feed->enable_order_by_date(false);
1312 logger('consume_feed: Error parsing XML: ' . $feed->error());
1314 $permalink = $feed->get_permalink();
1316 // Check at the feed level for updated contact name and/or photo
1320 $photo_timestamp = '';
1324 $hubs = $feed->get_links('hub');
1325 logger('consume_feed: hubs: ' . print_r($hubs,true), LOGGER_DATA);
1328 $hub = implode(',', $hubs);
1330 $rawtags = $feed->get_feed_tags( NAMESPACE_DFRN, 'owner');
1332 $rawtags = $feed->get_feed_tags( SIMPLEPIE_NAMESPACE_ATOM_10, 'author');
1334 $elems = $rawtags[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10];
1335 if($elems['name'][0]['attribs'][NAMESPACE_DFRN]['updated']) {
1336 $name_updated = $elems['name'][0]['attribs'][NAMESPACE_DFRN]['updated'];
1337 $new_name = $elems['name'][0]['data'];
1339 if((x($elems,'link')) && ($elems['link'][0]['attribs']['']['rel'] === 'photo') && ($elems['link'][0]['attribs'][NAMESPACE_DFRN]['updated'])) {
1340 $photo_timestamp = datetime_convert('UTC','UTC',$elems['link'][0]['attribs'][NAMESPACE_DFRN]['updated']);
1341 $photo_url = $elems['link'][0]['attribs']['']['href'];
1344 if((x($rawtags[0]['child'], NAMESPACE_DFRN)) && (x($rawtags[0]['child'][NAMESPACE_DFRN],'birthday'))) {
1345 $birthday = datetime_convert('UTC','UTC', $rawtags[0]['child'][NAMESPACE_DFRN]['birthday'][0]['data']);
1349 if((is_array($contact)) && ($photo_timestamp) && (strlen($photo_url)) && ($photo_timestamp > $contact['avatar-date'])) {
1350 logger('consume_feed: Updating photo for ' . $contact['name']);
1351 require_once("Photo.php");
1352 $photo_failure = false;
1353 $have_photo = false;
1355 $r = q("SELECT `resource-id` FROM `photo` WHERE `contact-id` = %d AND `uid` = %d LIMIT 1",
1356 intval($contact['id']),
1357 intval($contact['uid'])
1360 $resource_id = $r[0]['resource-id'];
1364 $resource_id = photo_new_resource();
1367 $img_str = fetch_url($photo_url,true);
1368 // guess mimetype from headers or filename
1369 $type = guess_image_type($photo_url,true);
1372 $img = new Photo($img_str, $type);
1373 if($img->is_valid()) {
1375 q("DELETE FROM `photo` WHERE `resource-id` = '%s' AND `contact-id` = %d AND `uid` = %d",
1376 dbesc($resource_id),
1377 intval($contact['id']),
1378 intval($contact['uid'])
1382 $img->scaleImageSquare(175);
1384 $hash = $resource_id;
1385 $r = $img->store($contact['uid'], $contact['id'], $hash, basename($photo_url), 'Contact Photos', 4);
1387 $img->scaleImage(80);
1388 $r = $img->store($contact['uid'], $contact['id'], $hash, basename($photo_url), 'Contact Photos', 5);
1390 $img->scaleImage(48);
1391 $r = $img->store($contact['uid'], $contact['id'], $hash, basename($photo_url), 'Contact Photos', 6);
1395 q("UPDATE `contact` SET `avatar-date` = '%s', `photo` = '%s', `thumb` = '%s', `micro` = '%s'
1396 WHERE `uid` = %d AND `id` = %d LIMIT 1",
1397 dbesc(datetime_convert()),
1398 dbesc($a->get_baseurl() . '/photo/' . $hash . '-4.'.$img->getExt()),
1399 dbesc($a->get_baseurl() . '/photo/' . $hash . '-5.'.$img->getExt()),
1400 dbesc($a->get_baseurl() . '/photo/' . $hash . '-6.'.$img->getExt()),
1401 intval($contact['uid']),
1402 intval($contact['id'])
1407 if((is_array($contact)) && ($name_updated) && (strlen($new_name)) && ($name_updated > $contact['name-date'])) {
1408 $r = q("select * from contact where uid = %d and id = %d limit 1",
1409 intval($contact['uid']),
1410 intval($contact['id'])
1413 $x = q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s' WHERE `uid` = %d AND `id` = %d LIMIT 1",
1414 dbesc(notags(trim($new_name))),
1415 dbesc(datetime_convert()),
1416 intval($contact['uid']),
1417 intval($contact['id'])
1420 // do our best to update the name on content items
1423 q("update item set `author-name` = '%s' where `author-name` = '%s' and `author-link` = '%s' and uid = %d",
1424 dbesc(notags(trim($new_name))),
1425 dbesc($r[0]['name']),
1426 dbesc($r[0]['url']),
1427 intval($contact['uid'])
1432 if(strlen($birthday)) {
1433 if(substr($birthday,0,4) != $contact['bdyear']) {
1434 logger('consume_feed: updating birthday: ' . $birthday);
1438 * Add new birthday event for this person
1440 * $bdtext is just a readable placeholder in case the event is shared
1441 * with others. We will replace it during presentation to our $importer
1442 * to contain a sparkle link and perhaps a photo.
1446 $bdtext = t('Birthday:') . ' [url=' . $contact['url'] . ']' . $contact['name'] . '[/url]' ;
1449 $r = q("INSERT INTO `event` (`uid`,`cid`,`created`,`edited`,`start`,`finish`,`desc`,`type`)
1450 VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s' ) ",
1451 intval($contact['uid']),
1452 intval($contact['id']),
1453 dbesc(datetime_convert()),
1454 dbesc(datetime_convert()),
1455 dbesc(datetime_convert('UTC','UTC', $birthday)),
1456 dbesc(datetime_convert('UTC','UTC', $birthday . ' + 1 day ')),
1464 q("UPDATE `contact` SET `bdyear` = '%s' WHERE `uid` = %d AND `id` = %d LIMIT 1",
1465 dbesc(substr($birthday,0,4)),
1466 intval($contact['uid']),
1467 intval($contact['id'])
1470 // This function is called twice without reloading the contact
1471 // Make sure we only create one event. This is why &$contact
1472 // is a reference var in this function
1474 $contact['bdyear'] = substr($birthday,0,4);
1479 $community_page = 0;
1480 $rawtags = $feed->get_feed_tags( NAMESPACE_DFRN, 'community');
1482 $community_page = intval($rawtags[0]['data']);
1484 if(is_array($contact) && intval($contact['forum']) != $community_page) {
1485 q("update contact set forum = %d where id = %d limit 1",
1486 intval($community_page),
1487 intval($contact['id'])
1489 $contact['forum'] = (string) $community_page;
1493 // process any deleted entries
1495 $del_entries = $feed->get_feed_tags(NAMESPACE_TOMB, 'deleted-entry');
1496 if(is_array($del_entries) && count($del_entries) && $pass != 2) {
1497 foreach($del_entries as $dentry) {
1499 if(isset($dentry['attribs']['']['ref'])) {
1500 $uri = $dentry['attribs']['']['ref'];
1502 if(isset($dentry['attribs']['']['when'])) {
1503 $when = $dentry['attribs']['']['when'];
1504 $when = datetime_convert('UTC','UTC', $when, 'Y-m-d H:i:s');
1507 $when = datetime_convert('UTC','UTC','now','Y-m-d H:i:s');
1509 if($deleted && is_array($contact)) {
1510 $r = q("SELECT `item`.*, `contact`.`self` FROM `item` left join `contact` on `item`.`contact-id` = `contact`.`id`
1511 WHERE `uri` = '%s' AND `item`.`uid` = %d AND `contact-id` = %d AND NOT `item`.`file` LIKE '%%[%%' LIMIT 1",
1513 intval($importer['uid']),
1514 intval($contact['id'])
1519 if(! $item['deleted'])
1520 logger('consume_feed: deleting item ' . $item['id'] . ' uri=' . $item['uri'], LOGGER_DEBUG);
1522 if(($item['verb'] === ACTIVITY_TAG) && ($item['object-type'] === ACTIVITY_OBJ_TAGTERM)) {
1523 $xo = parse_xml_string($item['object'],false);
1524 $xt = parse_xml_string($item['target'],false);
1525 if($xt->type === ACTIVITY_OBJ_NOTE) {
1526 $i = q("select * from `item` where uri = '%s' and uid = %d limit 1",
1528 intval($importer['importer_uid'])
1532 // For tags, the owner cannot remove the tag on the author's copy of the post.
1534 $owner_remove = (($item['contact-id'] == $i[0]['contact-id']) ? true: false);
1535 $author_remove = (($item['origin'] && $item['self']) ? true : false);
1536 $author_copy = (($item['origin']) ? true : false);
1538 if($owner_remove && $author_copy)
1540 if($author_remove || $owner_remove) {
1541 $tags = explode(',',$i[0]['tag']);
1544 foreach($tags as $tag)
1545 if(trim($tag) !== trim($xo->body))
1546 $newtags[] = trim($tag);
1548 q("update item set tag = '%s' where id = %d limit 1",
1549 dbesc(implode(',',$newtags)),
1557 if($item['uri'] == $item['parent-uri']) {
1558 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s',
1559 `body` = '', `title` = ''
1560 WHERE `parent-uri` = '%s' AND `uid` = %d",
1562 dbesc(datetime_convert()),
1563 dbesc($item['uri']),
1564 intval($importer['uid'])
1568 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s',
1569 `body` = '', `title` = ''
1570 WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1572 dbesc(datetime_convert()),
1574 intval($importer['uid'])
1576 if($item['last-child']) {
1577 // ensure that last-child is set in case the comment that had it just got wiped.
1578 q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d ",
1579 dbesc(datetime_convert()),
1580 dbesc($item['parent-uri']),
1581 intval($item['uid'])
1583 // who is the last child now?
1584 $r = q("SELECT `id` FROM `item` WHERE `parent-uri` = '%s' AND `type` != 'activity' AND `deleted` = 0 AND `moderated` = 0 AND `uid` = %d
1585 ORDER BY `created` DESC LIMIT 1",
1586 dbesc($item['parent-uri']),
1587 intval($importer['uid'])
1590 q("UPDATE `item` SET `last-child` = 1 WHERE `id` = %d LIMIT 1",
1601 // Now process the feed
1603 if($feed->get_item_quantity()) {
1605 logger('consume_feed: feed item count = ' . $feed->get_item_quantity());
1607 // in inverse date order
1609 $items = array_reverse($feed->get_items());
1611 $items = $feed->get_items();
1614 foreach($items as $item) {
1617 $item_id = $item->get_id();
1618 $rawthread = $item->get_item_tags( NAMESPACE_THREAD,'in-reply-to');
1619 if(isset($rawthread[0]['attribs']['']['ref'])) {
1621 $parent_uri = $rawthread[0]['attribs']['']['ref'];
1624 if(($is_reply) && is_array($contact)) {
1629 // Have we seen it? If not, import it.
1631 $item_id = $item->get_id();
1632 $datarray = get_atom_elements($feed,$item);
1635 if((! x($datarray,'author-name')) && ($contact['network'] != NETWORK_DFRN))
1636 $datarray['author-name'] = $contact['name'];
1637 if((! x($datarray,'author-link')) && ($contact['network'] != NETWORK_DFRN))
1638 $datarray['author-link'] = $contact['url'];
1639 if((! x($datarray,'author-avatar')) && ($contact['network'] != NETWORK_DFRN))
1640 $datarray['author-avatar'] = $contact['thumb'];
1642 if((! x($datarray,'author-name')) || (! x($datarray,'author-link'))) {
1643 logger('consume_feed: no author information! ' . print_r($datarray,true));
1647 $r = q("SELECT `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1649 intval($importer['uid'])
1652 // Update content if 'updated' changes
1655 if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) {
1657 // do not accept (ignore) an earlier edit than one we currently have.
1658 if(datetime_convert('UTC','UTC',$datarray['edited']) < $r[0]['edited'])
1661 $r = q("UPDATE `item` SET `title` = '%s', `body` = '%s', `tag` = '%s', `edited` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1662 dbesc($datarray['title']),
1663 dbesc($datarray['body']),
1664 dbesc($datarray['tag']),
1665 dbesc(datetime_convert('UTC','UTC',$datarray['edited'])),
1667 intval($importer['uid'])
1671 // update last-child if it changes
1673 $allow = $item->get_item_tags( NAMESPACE_DFRN, 'comment-allow');
1674 if(($allow) && ($allow[0]['data'] != $r[0]['last-child'])) {
1675 $r = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d",
1676 dbesc(datetime_convert()),
1678 intval($importer['uid'])
1680 $r = q("UPDATE `item` SET `last-child` = %d , `changed` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1681 intval($allow[0]['data']),
1682 dbesc(datetime_convert()),
1684 intval($importer['uid'])
1690 $force_parent = false;
1691 if($contact['network'] === NETWORK_OSTATUS || stristr($contact['url'],'twitter.com')) {
1692 if($contact['network'] === NETWORK_OSTATUS)
1693 $force_parent = true;
1694 if(strlen($datarray['title']))
1695 unset($datarray['title']);
1696 $r = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d",
1697 dbesc(datetime_convert()),
1699 intval($importer['uid'])
1701 $datarray['last-child'] = 1;
1704 if(($contact['network'] === NETWORK_FEED) || (! strlen($contact['notify']))) {
1705 // one way feed - no remote comment ability
1706 $datarray['last-child'] = 0;
1708 $datarray['parent-uri'] = $parent_uri;
1709 $datarray['uid'] = $importer['uid'];
1710 $datarray['contact-id'] = $contact['id'];
1711 if((activity_match($datarray['verb'],ACTIVITY_LIKE)) || (activity_match($datarray['verb'],ACTIVITY_DISLIKE))) {
1712 $datarray['type'] = 'activity';
1713 $datarray['gravity'] = GRAVITY_LIKE;
1714 // only one like or dislike per person
1715 $r = q("select id from item where uid = %d and `contact-id` = %d and verb ='%s' and deleted = 0 limit 1",
1716 intval($datarray['uid']),
1717 intval($datarray['contact-id']),
1718 dbesc($datarray['verb'])
1724 if(($datarray['verb'] === ACTIVITY_TAG) && ($datarray['object-type'] === ACTIVITY_OBJ_TAGTERM)) {
1725 $xo = parse_xml_string($datarray['object'],false);
1726 $xt = parse_xml_string($datarray['target'],false);
1728 if($xt->type == ACTIVITY_OBJ_NOTE) {
1729 $r = q("select * from item where `uri` = '%s' AND `uid` = %d limit 1",
1731 intval($importer['importer_uid'])
1736 // extract tag, if not duplicate, add to parent item
1737 if($xo->id && $xo->content) {
1738 $newtag = '#[url=' . $xo->id . ']'. $xo->content . '[/url]';
1739 if(! (stristr($r[0]['tag'],$newtag))) {
1740 q("UPDATE item SET tag = '%s' WHERE id = %d LIMIT 1",
1741 dbesc($r[0]['tag'] . (strlen($r[0]['tag']) ? ',' : '') . $newtag),
1749 $r = item_store($datarray,$force_parent);
1755 // Head post of a conversation. Have we seen it? If not, import it.
1757 $item_id = $item->get_id();
1759 $datarray = get_atom_elements($feed,$item);
1761 if(is_array($contact)) {
1762 if((! x($datarray,'author-name')) && ($contact['network'] != NETWORK_DFRN))
1763 $datarray['author-name'] = $contact['name'];
1764 if((! x($datarray,'author-link')) && ($contact['network'] != NETWORK_DFRN))
1765 $datarray['author-link'] = $contact['url'];
1766 if((! x($datarray,'author-avatar')) && ($contact['network'] != NETWORK_DFRN))
1767 $datarray['author-avatar'] = $contact['thumb'];
1770 if((! x($datarray,'author-name')) || (! x($datarray,'author-link'))) {
1771 logger('consume_feed: no author information! ' . print_r($datarray,true));
1775 // special handling for events
1777 if((x($datarray,'object-type')) && ($datarray['object-type'] === ACTIVITY_OBJ_EVENT)) {
1778 $ev = bbtoevent($datarray['body']);
1779 if(x($ev,'desc') && x($ev,'start')) {
1780 $ev['uid'] = $importer['uid'];
1781 $ev['uri'] = $item_id;
1782 $ev['edited'] = $datarray['edited'];
1783 $ev['private'] = $datarray['private'];
1785 if(is_array($contact))
1786 $ev['cid'] = $contact['id'];
1787 $r = q("SELECT * FROM `event` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1789 intval($importer['uid'])
1792 $ev['id'] = $r[0]['id'];
1793 $xyz = event_store($ev);
1798 $r = q("SELECT `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1800 intval($importer['uid'])
1803 // Update content if 'updated' changes
1806 if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) {
1808 // do not accept (ignore) an earlier edit than one we currently have.
1809 if(datetime_convert('UTC','UTC',$datarray['edited']) < $r[0]['edited'])
1812 $r = q("UPDATE `item` SET `title` = '%s', `body` = '%s', `tag` = '%s', `edited` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1813 dbesc($datarray['title']),
1814 dbesc($datarray['body']),
1815 dbesc($datarray['tag']),
1816 dbesc(datetime_convert('UTC','UTC',$datarray['edited'])),
1818 intval($importer['uid'])
1822 // update last-child if it changes
1824 $allow = $item->get_item_tags( NAMESPACE_DFRN, 'comment-allow');
1825 if($allow && $allow[0]['data'] != $r[0]['last-child']) {
1826 $r = q("UPDATE `item` SET `last-child` = %d , `changed` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1827 intval($allow[0]['data']),
1828 dbesc(datetime_convert()),
1830 intval($importer['uid'])
1836 if(activity_match($datarray['verb'],ACTIVITY_FOLLOW)) {
1837 logger('consume-feed: New follower');
1838 new_follower($importer,$contact,$datarray,$item);
1841 if(activity_match($datarray['verb'],ACTIVITY_UNFOLLOW)) {
1842 lose_follower($importer,$contact,$datarray,$item);
1846 if(activity_match($datarray['verb'],ACTIVITY_REQ_FRIEND)) {
1847 logger('consume-feed: New friend request');
1848 new_follower($importer,$contact,$datarray,$item,true);
1851 if(activity_match($datarray['verb'],ACTIVITY_UNFRIEND)) {
1852 lose_sharer($importer,$contact,$datarray,$item);
1857 if(! is_array($contact))
1860 if($contact['network'] === NETWORK_OSTATUS || stristr($contact['url'],'twitter.com')) {
1861 if(strlen($datarray['title']))
1862 unset($datarray['title']);
1863 $datarray['last-child'] = 1;
1866 if(($contact['network'] === NETWORK_FEED) || (! strlen($contact['notify']))) {
1867 // one way feed - no remote comment ability
1868 $datarray['last-child'] = 0;
1870 if($contact['network'] === NETWORK_FEED)
1871 $datarray['private'] = 1;
1873 // This is my contact on another system, but it's really me.
1874 // Turn this into a wall post.
1876 if($contact['remote_self'])
1877 $datarray['wall'] = 1;
1879 $datarray['parent-uri'] = $item_id;
1880 $datarray['uid'] = $importer['uid'];
1881 $datarray['contact-id'] = $contact['id'];
1883 if(! link_compare($datarray['owner-link'],$contact['url'])) {
1884 // The item owner info is not our contact. It's OK and is to be expected if this is a tgroup delivery,
1885 // but otherwise there's a possible data mixup on the sender's system.
1886 // the tgroup delivery code called from item_store will correct it if it's a forum,
1887 // but we're going to unconditionally correct it here so that the post will always be owned by our contact.
1888 logger('consume_feed: Correcting item owner.', LOGGER_DEBUG);
1889 $datarray['owner-name'] = $contact['name'];
1890 $datarray['owner-link'] = $contact['url'];
1891 $datarray['owner-avatar'] = $contact['thumb'];
1894 $r = item_store($datarray);
1902 function local_delivery($importer,$data) {
1906 if($importer['readonly']) {
1907 // We aren't receiving stuff from this person. But we will quietly ignore them
1908 // rather than a blatant "go away" message.
1909 logger('local_delivery: ignoring');
1914 // Consume notification feed. This may differ from consuming a public feed in several ways
1915 // - might contain email or friend suggestions
1916 // - might contain remote followup to our message
1917 // - in which case we need to accept it and then notify other conversants
1918 // - we may need to send various email notifications
1920 $feed = new SimplePie();
1921 $feed->set_raw_data($data);
1922 $feed->enable_order_by_date(false);
1926 // Currently unsupported - needs a lot of work
1927 $reloc = $feed->get_feed_tags( NAMESPACE_DFRN, 'relocate' );
1928 if(isset($reloc[0]['child'][NAMESPACE_DFRN])) {
1929 $base = $reloc[0]['child'][NAMESPACE_DFRN];
1931 $newloc['uid'] = $importer['importer_uid'];
1932 $newloc['cid'] = $importer['id'];
1933 $newloc['name'] = notags(unxmlify($base['name'][0]['data']));
1934 $newloc['photo'] = notags(unxmlify($base['photo'][0]['data']));
1935 $newloc['url'] = notags(unxmlify($base['url'][0]['data']));
1936 $newloc['request'] = notags(unxmlify($base['request'][0]['data']));
1937 $newloc['confirm'] = notags(unxmlify($base['confirm'][0]['data']));
1938 $newloc['notify'] = notags(unxmlify($base['notify'][0]['data']));
1939 $newloc['poll'] = notags(unxmlify($base['poll'][0]['data']));
1940 $newloc['site-pubkey'] = notags(unxmlify($base['site-pubkey'][0]['data']));
1941 $newloc['pubkey'] = notags(unxmlify($base['pubkey'][0]['data']));
1942 $newloc['prvkey'] = notags(unxmlify($base['prvkey'][0]['data']));
1945 // merge with current record, current contents have priority
1946 // update record, set url-updated
1947 // update profile photos
1953 // handle friend suggestion notification
1955 $sugg = $feed->get_feed_tags( NAMESPACE_DFRN, 'suggest' );
1956 if(isset($sugg[0]['child'][NAMESPACE_DFRN])) {
1957 $base = $sugg[0]['child'][NAMESPACE_DFRN];
1959 $fsugg['uid'] = $importer['importer_uid'];
1960 $fsugg['cid'] = $importer['id'];
1961 $fsugg['name'] = notags(unxmlify($base['name'][0]['data']));
1962 $fsugg['photo'] = notags(unxmlify($base['photo'][0]['data']));
1963 $fsugg['url'] = notags(unxmlify($base['url'][0]['data']));
1964 $fsugg['request'] = notags(unxmlify($base['request'][0]['data']));
1965 $fsugg['body'] = escape_tags(unxmlify($base['note'][0]['data']));
1967 // Does our member already have a friend matching this description?
1969 $r = q("SELECT * FROM `contact` WHERE `name` = '%s' AND `nurl` = '%s' AND `uid` = %d LIMIT 1",
1970 dbesc($fsugg['name']),
1971 dbesc(normalise_link($fsugg['url'])),
1972 intval($fsugg['uid'])
1977 // Do we already have an fcontact record for this person?
1980 $r = q("SELECT * FROM `fcontact` WHERE `url` = '%s' AND `name` = '%s' AND `request` = '%s' LIMIT 1",
1981 dbesc($fsugg['url']),
1982 dbesc($fsugg['name']),
1983 dbesc($fsugg['request'])
1988 // OK, we do. Do we already have an introduction for this person ?
1989 $r = q("select id from intro where uid = %d and fid = %d limit 1",
1990 intval($fsugg['uid']),
1997 $r = q("INSERT INTO `fcontact` ( `name`,`url`,`photo`,`request` ) VALUES ( '%s', '%s', '%s', '%s' ) ",
1998 dbesc($fsugg['name']),
1999 dbesc($fsugg['url']),
2000 dbesc($fsugg['photo']),
2001 dbesc($fsugg['request'])
2003 $r = q("SELECT * FROM `fcontact` WHERE `url` = '%s' AND `name` = '%s' AND `request` = '%s' LIMIT 1",
2004 dbesc($fsugg['url']),
2005 dbesc($fsugg['name']),
2006 dbesc($fsugg['request'])
2011 // database record did not get created. Quietly give up.
2016 $hash = random_string();
2018 $r = q("INSERT INTO `intro` ( `uid`, `fid`, `contact-id`, `note`, `hash`, `datetime`, `blocked` )
2019 VALUES( %d, %d, %d, '%s', '%s', '%s', %d )",
2020 intval($fsugg['uid']),
2022 intval($fsugg['cid']),
2023 dbesc($fsugg['body']),
2025 dbesc(datetime_convert()),
2030 'type' => NOTIFY_SUGGEST,
2031 'notify_flags' => $importer['notify-flags'],
2032 'language' => $importer['language'],
2033 'to_name' => $importer['username'],
2034 'to_email' => $importer['email'],
2035 'uid' => $importer['importer_uid'],
2037 'link' => $a->get_baseurl() . '/notifications/intros',
2038 'source_name' => $importer['name'],
2039 'source_link' => $importer['url'],
2040 'source_photo' => $importer['photo'],
2041 'verb' => ACTIVITY_REQ_FRIEND,
2050 $rawmail = $feed->get_feed_tags( NAMESPACE_DFRN, 'mail' );
2051 if(isset($rawmail[0]['child'][NAMESPACE_DFRN])) {
2053 logger('local_delivery: private message received');
2056 $base = $rawmail[0]['child'][NAMESPACE_DFRN];
2059 $msg['uid'] = $importer['importer_uid'];
2060 $msg['from-name'] = notags(unxmlify($base['sender'][0]['child'][NAMESPACE_DFRN]['name'][0]['data']));
2061 $msg['from-photo'] = notags(unxmlify($base['sender'][0]['child'][NAMESPACE_DFRN]['avatar'][0]['data']));
2062 $msg['from-url'] = notags(unxmlify($base['sender'][0]['child'][NAMESPACE_DFRN]['uri'][0]['data']));
2063 $msg['contact-id'] = $importer['id'];
2064 $msg['title'] = notags(unxmlify($base['subject'][0]['data']));
2065 $msg['body'] = escape_tags(unxmlify($base['content'][0]['data']));
2067 $msg['replied'] = 0;
2068 $msg['uri'] = notags(unxmlify($base['id'][0]['data']));
2069 $msg['parent-uri'] = notags(unxmlify($base['in-reply-to'][0]['data']));
2070 $msg['created'] = datetime_convert(notags(unxmlify('UTC','UTC',$base['sentdate'][0]['data'])));
2074 $r = dbq("INSERT INTO `mail` (`" . implode("`, `", array_keys($msg))
2075 . "`) VALUES ('" . implode("', '", array_values($msg)) . "')" );
2077 // send notifications.
2079 require_once('include/enotify.php');
2081 $notif_params = array(
2082 'type' => NOTIFY_MAIL,
2083 'notify_flags' => $importer['notify-flags'],
2084 'language' => $importer['language'],
2085 'to_name' => $importer['username'],
2086 'to_email' => $importer['email'],
2087 'uid' => $importer['importer_uid'],
2089 'source_name' => $msg['from-name'],
2090 'source_link' => $importer['url'],
2091 'source_photo' => $importer['thumb'],
2092 'verb' => ACTIVITY_POST,
2096 notification($notif_params);
2102 $community_page = 0;
2103 $rawtags = $feed->get_feed_tags( NAMESPACE_DFRN, 'community');
2105 $community_page = intval($rawtags[0]['data']);
2107 if(intval($importer['forum']) != $community_page) {
2108 q("update contact set forum = %d where id = %d limit 1",
2109 intval($community_page),
2110 intval($importer['id'])
2112 $importer['forum'] = (string) $community_page;
2115 logger('local_delivery: feed item count = ' . $feed->get_item_quantity());
2117 // process any deleted entries
2119 $del_entries = $feed->get_feed_tags(NAMESPACE_TOMB, 'deleted-entry');
2120 if(is_array($del_entries) && count($del_entries)) {
2121 foreach($del_entries as $dentry) {
2123 if(isset($dentry['attribs']['']['ref'])) {
2124 $uri = $dentry['attribs']['']['ref'];
2126 if(isset($dentry['attribs']['']['when'])) {
2127 $when = $dentry['attribs']['']['when'];
2128 $when = datetime_convert('UTC','UTC', $when, 'Y-m-d H:i:s');
2131 $when = datetime_convert('UTC','UTC','now','Y-m-d H:i:s');
2135 $r = q("SELECT `item`.*, `contact`.`self` FROM `item` left join contact on `item`.`contact-id` = `contact`.`id`
2136 WHERE `uri` = '%s' AND `item`.`uid` = %d AND `contact-id` = %d AND NOT `item`.`file` LIKE '%%[%%' LIMIT 1",
2138 intval($importer['importer_uid']),
2139 intval($importer['id'])
2145 if($item['deleted'])
2148 logger('local_delivery: deleting item ' . $item['id'] . ' uri=' . $item['uri'], LOGGER_DEBUG);
2150 if(($item['verb'] === ACTIVITY_TAG) && ($item['object-type'] === ACTIVITY_OBJ_TAGTERM)) {
2151 $xo = parse_xml_string($item['object'],false);
2152 $xt = parse_xml_string($item['target'],false);
2154 if($xt->type === ACTIVITY_OBJ_NOTE) {
2155 $i = q("select * from `item` where uri = '%s' and uid = %d limit 1",
2157 intval($importer['importer_uid'])
2161 // For tags, the owner cannot remove the tag on the author's copy of the post.
2163 $owner_remove = (($item['contact-id'] == $i[0]['contact-id']) ? true: false);
2164 $author_remove = (($item['origin'] && $item['self']) ? true : false);
2165 $author_copy = (($item['origin']) ? true : false);
2167 if($owner_remove && $author_copy)
2169 if($author_remove || $owner_remove) {
2170 $tags = explode(',',$i[0]['tag']);
2173 foreach($tags as $tag)
2174 if(trim($tag) !== trim($xo->body))
2175 $newtags[] = trim($tag);
2177 q("update item set tag = '%s' where id = %d limit 1",
2178 dbesc(implode(',',$newtags)),
2186 if($item['uri'] == $item['parent-uri']) {
2187 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s'
2188 WHERE `parent-uri` = '%s' AND `uid` = %d",
2190 dbesc(datetime_convert()),
2191 dbesc($item['uri']),
2192 intval($importer['importer_uid'])
2196 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s'
2197 WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2199 dbesc(datetime_convert()),
2201 intval($importer['importer_uid'])
2203 if($item['last-child']) {
2204 // ensure that last-child is set in case the comment that had it just got wiped.
2205 q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d ",
2206 dbesc(datetime_convert()),
2207 dbesc($item['parent-uri']),
2208 intval($item['uid'])
2210 // who is the last child now?
2211 $r = q("SELECT `id` FROM `item` WHERE `parent-uri` = '%s' AND `type` != 'activity' AND `deleted` = 0 AND `uid` = %d
2212 ORDER BY `created` DESC LIMIT 1",
2213 dbesc($item['parent-uri']),
2214 intval($importer['importer_uid'])
2217 q("UPDATE `item` SET `last-child` = 1 WHERE `id` = %d LIMIT 1",
2229 foreach($feed->get_items() as $item) {
2232 $item_id = $item->get_id();
2233 $rawthread = $item->get_item_tags( NAMESPACE_THREAD, 'in-reply-to');
2234 if(isset($rawthread[0]['attribs']['']['ref'])) {
2236 $parent_uri = $rawthread[0]['attribs']['']['ref'];
2242 if($importer['page-flags'] == PAGE_COMMUNITY || $importer['page-flags'] == PAGE_PRVGROUP ) {
2245 logger('local_delivery: possible community reply');
2248 $sql_extra = " and contact.self = 1 and item.wall = 1 ";
2250 // was the top-level post for this reply written by somebody on this site?
2251 // Specifically, the recipient?
2253 $is_a_remote_comment = false;
2255 $r = q("select `item`.`id`, `item`.`uri`, `item`.`tag`, `item`.`forum_mode`,`item`.`origin`,`item`.`wall`,
2256 `contact`.`name`, `contact`.`url`, `contact`.`thumb` from `item`
2257 LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
2258 WHERE `item`.`uri` = '%s' AND `item`.`parent-uri` = '%s'
2259 AND `item`.`uid` = %d
2264 intval($importer['importer_uid'])
2267 $is_a_remote_comment = true;
2269 // Does this have the characteristics of a community or private group comment?
2270 // If it's a reply to a wall post on a community/prvgroup page it's a
2271 // valid community comment. Also forum_mode makes it valid for sure.
2272 // If neither, it's not.
2274 if($is_a_remote_comment && $community) {
2275 if((! $r[0]['forum_mode']) && (! $r[0]['wall'])) {
2276 $is_a_remote_comment = false;
2277 logger('local_delivery: not a community reply');
2281 if($is_a_remote_comment) {
2282 logger('local_delivery: received remote comment');
2284 // remote reply to our post. Import and then notify everybody else.
2286 $datarray = get_atom_elements($feed,$item);
2288 $r = q("SELECT `id`, `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2290 intval($importer['importer_uid'])
2293 // Update content if 'updated' changes
2297 if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) {
2299 // do not accept (ignore) an earlier edit than one we currently have.
2300 if(datetime_convert('UTC','UTC',$datarray['edited']) < $r[0]['edited'])
2303 logger('received updated comment' , LOGGER_DEBUG);
2304 $r = q("UPDATE `item` SET `title` = '%s', `body` = '%s', `tag` = '%s', `edited` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2305 dbesc($datarray['title']),
2306 dbesc($datarray['body']),
2307 dbesc($datarray['tag']),
2308 dbesc(datetime_convert('UTC','UTC',$datarray['edited'])),
2310 intval($importer['importer_uid'])
2313 proc_run('php',"include/notifier.php","comment-import",$iid);
2321 // TODO: make this next part work against both delivery threads of a community post
2323 // if((! link_compare($datarray['author-link'],$importer['url'])) && (! $community)) {
2324 // logger('local_delivery: received relay claiming to be from ' . $importer['url'] . ' however comment author url is ' . $datarray['author-link'] );
2325 // they won't know what to do so don't report an error. Just quietly die.
2329 // our user with $importer['importer_uid'] is the owner
2331 $own = q("select name,url,thumb from contact where uid = %d and self = 1 limit 1",
2332 intval($importer['importer_uid'])
2336 $datarray['type'] = 'remote-comment';
2337 $datarray['wall'] = 1;
2338 $datarray['parent-uri'] = $parent_uri;
2339 $datarray['uid'] = $importer['importer_uid'];
2340 $datarray['owner-name'] = $own[0]['name'];
2341 $datarray['owner-link'] = $own[0]['url'];
2342 $datarray['owner-avatar'] = $own[0]['thumb'];
2343 $datarray['contact-id'] = $importer['id'];
2345 if(($datarray['verb'] === ACTIVITY_LIKE) || ($datarray['verb'] === ACTIVITY_DISLIKE)) {
2347 $datarray['type'] = 'activity';
2348 $datarray['gravity'] = GRAVITY_LIKE;
2349 $datarray['last-child'] = 0;
2350 // only one like or dislike per person
2351 $r = q("select id from item where uid = %d and `contact-id` = %d and verb ='%s' and deleted = 0 limit 1",
2352 intval($datarray['uid']),
2353 intval($datarray['contact-id']),
2354 dbesc($datarray['verb'])
2360 if(($datarray['verb'] === ACTIVITY_TAG) && ($datarray['object-type'] === ACTIVITY_OBJ_TAGTERM)) {
2362 $xo = parse_xml_string($datarray['object'],false);
2363 $xt = parse_xml_string($datarray['target'],false);
2365 if(($xt->type == ACTIVITY_OBJ_NOTE) && ($xt->id)) {
2367 // fetch the parent item
2369 $tagp = q("select * from item where uri = '%s' and uid = %d limit 1",
2371 intval($importer['importer_uid'])
2376 // extract tag, if not duplicate, and this user allows tags, add to parent item
2378 if($xo->id && $xo->content) {
2379 $newtag = '#[url=' . $xo->id . ']'. $xo->content . '[/url]';
2380 if(! (stristr($tagp[0]['tag'],$newtag))) {
2381 $i = q("SELECT `blocktags` FROM `user` where `uid` = %d LIMIT 1",
2382 intval($importer['importer_uid'])
2384 if(count($i) && ! intval($i[0]['blocktags'])) {
2385 q("UPDATE item SET tag = '%s', `edited` = '%s' WHERE id = %d LIMIT 1",
2386 dbesc($tagp[0]['tag'] . (strlen($tagp[0]['tag']) ? ',' : '') . $newtag),
2387 intval($tagp[0]['id']),
2388 dbesc(datetime_convert())
2397 // $newtag = '@[url=' . $a->get_baseurl() . '/profile/' . $importer['nickname'] . ']' . $importer['username'] . '[/url]';
2398 // if(! stristr($datarray['tag'],$newtag)) {
2399 // if(strlen($datarray['tag']))
2400 // $datarray['tag'] .= ',';
2401 // $datarray['tag'] .= $newtag;
2406 $posted_id = item_store($datarray);
2410 $r = q("SELECT `parent` FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1",
2412 intval($importer['importer_uid'])
2415 $parent = $r[0]['parent'];
2418 $r1 = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `uid` = %d AND `parent` = %d",
2419 dbesc(datetime_convert()),
2420 intval($importer['importer_uid']),
2421 intval($r[0]['parent'])
2424 $r2 = q("UPDATE `item` SET `last-child` = 1, `changed` = '%s' WHERE `uid` = %d AND `id` = %d LIMIT 1",
2425 dbesc(datetime_convert()),
2426 intval($importer['importer_uid']),
2431 if($posted_id && $parent) {
2433 proc_run('php',"include/notifier.php","comment-import","$posted_id");
2435 if((! $is_like) && (! $importer['self'])) {
2437 require_once('include/enotify.php');
2440 'type' => NOTIFY_COMMENT,
2441 'notify_flags' => $importer['notify-flags'],
2442 'language' => $importer['language'],
2443 'to_name' => $importer['username'],
2444 'to_email' => $importer['email'],
2445 'uid' => $importer['importer_uid'],
2446 'item' => $datarray,
2447 'link' => $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $posted_id,
2448 'source_name' => stripslashes($datarray['author-name']),
2449 'source_link' => $datarray['author-link'],
2450 'source_photo' => ((link_compare($datarray['author-link'],$importer['url']))
2451 ? $importer['thumb'] : $datarray['author-avatar']),
2452 'verb' => ACTIVITY_POST,
2454 'parent' => $parent,
2467 // regular comment that is part of this total conversation. Have we seen it? If not, import it.
2469 $item_id = $item->get_id();
2470 $datarray = get_atom_elements($feed,$item);
2472 $r = q("SELECT `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2474 intval($importer['importer_uid'])
2477 // Update content if 'updated' changes
2480 if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) {
2482 // do not accept (ignore) an earlier edit than one we currently have.
2483 if(datetime_convert('UTC','UTC',$datarray['edited']) < $r[0]['edited'])
2486 $r = q("UPDATE `item` SET `title` = '%s', `body` = '%s', `tag` = '%s', `edited` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2487 dbesc($datarray['title']),
2488 dbesc($datarray['body']),
2489 dbesc($datarray['tag']),
2490 dbesc(datetime_convert('UTC','UTC',$datarray['edited'])),
2492 intval($importer['importer_uid'])
2496 // update last-child if it changes
2498 $allow = $item->get_item_tags( NAMESPACE_DFRN, 'comment-allow');
2499 if(($allow) && ($allow[0]['data'] != $r[0]['last-child'])) {
2500 $r = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d",
2501 dbesc(datetime_convert()),
2503 intval($importer['importer_uid'])
2505 $r = q("UPDATE `item` SET `last-child` = %d , `changed` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2506 intval($allow[0]['data']),
2507 dbesc(datetime_convert()),
2509 intval($importer['importer_uid'])
2515 $datarray['parent-uri'] = $parent_uri;
2516 $datarray['uid'] = $importer['importer_uid'];
2517 $datarray['contact-id'] = $importer['id'];
2518 if(($datarray['verb'] == ACTIVITY_LIKE) || ($datarray['verb'] == ACTIVITY_DISLIKE)) {
2519 $datarray['type'] = 'activity';
2520 $datarray['gravity'] = GRAVITY_LIKE;
2521 // only one like or dislike per person
2522 $r = q("select id from item where uid = %d and `contact-id` = %d and verb ='%s' and deleted = 0 limit 1",
2523 intval($datarray['uid']),
2524 intval($datarray['contact-id']),
2525 dbesc($datarray['verb'])
2532 if(($datarray['verb'] === ACTIVITY_TAG) && ($datarray['object-type'] === ACTIVITY_OBJ_TAGTERM)) {
2534 $xo = parse_xml_string($datarray['object'],false);
2535 $xt = parse_xml_string($datarray['target'],false);
2537 if($xt->type == ACTIVITY_OBJ_NOTE) {
2538 $r = q("select * from item where `uri` = '%s' AND `uid` = %d limit 1",
2540 intval($importer['importer_uid'])
2545 // extract tag, if not duplicate, add to parent item
2547 if(! (stristr($r[0]['tag'],trim($xo->content)))) {
2548 q("UPDATE item SET tag = '%s' WHERE id = %d LIMIT 1",
2549 dbesc($r[0]['tag'] . (strlen($r[0]['tag']) ? ',' : '') . '#[url=' . $xo->id . ']'. $xo->content . '[/url]'),
2557 $posted_id = item_store($datarray);
2559 // find out if our user is involved in this conversation and wants to be notified.
2561 if(!x($datarray['type']) || $datarray['type'] != 'activity') {
2563 $myconv = q("SELECT `author-link`, `author-avatar`, `parent` FROM `item` WHERE `parent-uri` = '%s' AND `uid` = %d AND `parent` != 0 AND `deleted` = 0",
2565 intval($importer['importer_uid'])
2568 if(count($myconv)) {
2569 $importer_url = $a->get_baseurl() . '/profile/' . $importer['nickname'];
2571 // first make sure this isn't our own post coming back to us from a wall-to-wall event
2572 if(! link_compare($datarray['author-link'],$importer_url)) {
2575 foreach($myconv as $conv) {
2577 // now if we find a match, it means we're in this conversation
2579 if(! link_compare($conv['author-link'],$importer_url))
2582 require_once('include/enotify.php');
2584 $conv_parent = $conv['parent'];
2587 'type' => NOTIFY_COMMENT,
2588 'notify_flags' => $importer['notify-flags'],
2589 'language' => $importer['language'],
2590 'to_name' => $importer['username'],
2591 'to_email' => $importer['email'],
2592 'uid' => $importer['importer_uid'],
2593 'item' => $datarray,
2594 'link' => $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $posted_id,
2595 'source_name' => stripslashes($datarray['author-name']),
2596 'source_link' => $datarray['author-link'],
2597 'source_photo' => ((link_compare($datarray['author-link'],$importer['url']))
2598 ? $importer['thumb'] : $datarray['author-avatar']),
2599 'verb' => ACTIVITY_POST,
2601 'parent' => $conv_parent,
2605 // only send one notification
2617 // Head post of a conversation. Have we seen it? If not, import it.
2620 $item_id = $item->get_id();
2621 $datarray = get_atom_elements($feed,$item);
2623 if((x($datarray,'object-type')) && ($datarray['object-type'] === ACTIVITY_OBJ_EVENT)) {
2624 $ev = bbtoevent($datarray['body']);
2625 if(x($ev,'desc') && x($ev,'start')) {
2626 $ev['cid'] = $importer['id'];
2627 $ev['uid'] = $importer['uid'];
2628 $ev['uri'] = $item_id;
2629 $ev['edited'] = $datarray['edited'];
2630 $ev['private'] = $datarray['private'];
2632 $r = q("SELECT * FROM `event` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2634 intval($importer['uid'])
2637 $ev['id'] = $r[0]['id'];
2638 $xyz = event_store($ev);
2643 $r = q("SELECT `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2645 intval($importer['importer_uid'])
2648 // Update content if 'updated' changes
2651 if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) {
2653 // do not accept (ignore) an earlier edit than one we currently have.
2654 if(datetime_convert('UTC','UTC',$datarray['edited']) < $r[0]['edited'])
2657 $r = q("UPDATE `item` SET `title` = '%s', `body` = '%s', `tag` = '%s', `edited` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2658 dbesc($datarray['title']),
2659 dbesc($datarray['body']),
2660 dbesc($datarray['tag']),
2661 dbesc(datetime_convert('UTC','UTC',$datarray['edited'])),
2663 intval($importer['importer_uid'])
2667 // update last-child if it changes
2669 $allow = $item->get_item_tags( NAMESPACE_DFRN, 'comment-allow');
2670 if($allow && $allow[0]['data'] != $r[0]['last-child']) {
2671 $r = q("UPDATE `item` SET `last-child` = %d , `changed` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2672 intval($allow[0]['data']),
2673 dbesc(datetime_convert()),
2675 intval($importer['importer_uid'])
2681 // This is my contact on another system, but it's really me.
2682 // Turn this into a wall post.
2684 if($importer['remote_self'])
2685 $datarray['wall'] = 1;
2687 $datarray['parent-uri'] = $item_id;
2688 $datarray['uid'] = $importer['importer_uid'];
2689 $datarray['contact-id'] = $importer['id'];
2691 if(! link_compare($datarray['owner-link'],$contact['url'])) {
2692 // The item owner info is not our contact. It's OK and is to be expected if this is a tgroup delivery,
2693 // but otherwise there's a possible data mixup on the sender's system.
2694 // the tgroup delivery code called from item_store will correct it if it's a forum,
2695 // but we're going to unconditionally correct it here so that the post will always be owned by our contact.
2696 logger('local_delivery: Correcting item owner.', LOGGER_DEBUG);
2697 $datarray['owner-name'] = $importer['senderName'];
2698 $datarray['owner-link'] = $importer['url'];
2699 $datarray['owner-avatar'] = $importer['thumb'];
2702 $r = item_store($datarray);
2713 function new_follower($importer,$contact,$datarray,$item,$sharing = false) {
2714 $url = notags(trim($datarray['author-link']));
2715 $name = notags(trim($datarray['author-name']));
2716 $photo = notags(trim($datarray['author-avatar']));
2718 $rawtag = $item->get_item_tags(NAMESPACE_ACTIVITY,'actor');
2719 if($rawtag && $rawtag[0]['child'][NAMESPACE_POCO]['preferredUsername'][0]['data'])
2720 $nick = $rawtag[0]['child'][NAMESPACE_POCO]['preferredUsername'][0]['data'];
2722 if(is_array($contact)) {
2723 if(($contact['network'] == NETWORK_OSTATUS && $contact['rel'] == CONTACT_IS_SHARING)
2724 || ($sharing && $contact['rel'] == CONTACT_IS_FOLLOWER)) {
2725 $r = q("UPDATE `contact` SET `rel` = %d WHERE `id` = %d AND `uid` = %d LIMIT 1",
2726 intval(CONTACT_IS_FRIEND),
2727 intval($contact['id']),
2728 intval($importer['uid'])
2731 // send email notification to owner?
2735 // create contact record
2737 $r = q("INSERT INTO `contact` ( `uid`, `created`, `url`, `nurl`, `name`, `nick`, `photo`, `network`, `rel`,
2738 `blocked`, `readonly`, `pending`, `writable` )
2739 VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, 0, 0, 1, 1 ) ",
2740 intval($importer['uid']),
2741 dbesc(datetime_convert()),
2743 dbesc(normalise_link($url)),
2747 dbesc(($sharing) ? NETWORK_ZOT : NETWORK_OSTATUS),
2748 intval(($sharing) ? CONTACT_IS_SHARING : CONTACT_IS_FOLLOWER)
2750 $r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `url` = '%s' AND `pending` = 1 LIMIT 1",
2751 intval($importer['uid']),
2755 $contact_record = $r[0];
2757 // create notification
2758 $hash = random_string();
2760 if(is_array($contact_record)) {
2761 $ret = q("INSERT INTO `intro` ( `uid`, `contact-id`, `blocked`, `knowyou`, `hash`, `datetime`)
2762 VALUES ( %d, %d, 0, 0, '%s', '%s' )",
2763 intval($importer['uid']),
2764 intval($contact_record['id']),
2766 dbesc(datetime_convert())
2769 $r = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
2770 intval($importer['uid'])
2775 if(intval($r[0]['def_gid'])) {
2776 require_once('include/group.php');
2777 group_add_member($r[0]['uid'],'',$contact_record['id'],$r[0]['def_gid']);
2780 if(($r[0]['notify-flags'] & NOTIFY_INTRO) && ($r[0]['page-flags'] == PAGE_NORMAL)) {
2781 $email_tpl = get_intltext_template('follow_notify_eml.tpl');
2782 $email = replace_macros($email_tpl, array(
2783 '$requestor' => ((strlen($name)) ? $name : t('[Name Withheld]')),
2785 '$myname' => $r[0]['username'],
2786 '$siteurl' => $a->get_baseurl(),
2787 '$sitename' => $a->config['sitename']
2789 $res = mail($r[0]['email'],
2790 (($sharing) ? t('A new person is sharing with you at ') : t("You have a new follower at ")) . $a->config['sitename'],
2792 'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] . "\n"
2793 . 'Content-type: text/plain; charset=UTF-8' . "\n"
2794 . 'Content-transfer-encoding: 8bit' );
2801 function lose_follower($importer,$contact,$datarray,$item) {
2803 if(($contact['rel'] == CONTACT_IS_FRIEND) || ($contact['rel'] == CONTACT_IS_SHARING)) {
2804 q("UPDATE `contact` SET `rel` = %d WHERE `id` = %d LIMIT 1",
2805 intval(CONTACT_IS_SHARING),
2806 intval($contact['id'])
2810 contact_remove($contact['id']);
2814 function lose_sharer($importer,$contact,$datarray,$item) {
2816 if(($contact['rel'] == CONTACT_IS_FRIEND) || ($contact['rel'] == CONTACT_IS_FOLLOWER)) {
2817 q("UPDATE `contact` SET `rel` = %d WHERE `id` = %d LIMIT 1",
2818 intval(CONTACT_IS_FOLLOWER),
2819 intval($contact['id'])
2823 contact_remove($contact['id']);
2828 function subscribe_to_hub($url,$importer,$contact,$hubmode = 'subscribe') {
2832 if(is_array($importer)) {
2833 $r = q("SELECT `nickname` FROM `user` WHERE `uid` = %d LIMIT 1",
2834 intval($importer['uid'])
2838 // Diaspora has different message-ids in feeds than they do
2839 // through the direct Diaspora protocol. If we try and use
2840 // the feed, we'll get duplicates. So don't.
2842 if((! count($r)) || $contact['network'] === NETWORK_DIASPORA)
2845 $push_url = get_config('system','url') . '/pubsub/' . $r[0]['nickname'] . '/' . $contact['id'];
2847 // Use a single verify token, even if multiple hubs
2849 $verify_token = ((strlen($contact['hub-verify'])) ? $contact['hub-verify'] : random_string());
2851 $params= 'hub.mode=' . $hubmode . '&hub.callback=' . urlencode($push_url) . '&hub.topic=' . urlencode($contact['poll']) . '&hub.verify=async&hub.verify_token=' . $verify_token;
2853 logger('subscribe_to_hub: ' . $hubmode . ' ' . $contact['name'] . ' to hub ' . $url . ' endpoint: ' . $push_url . ' with verifier ' . $verify_token);
2855 if(! strlen($contact['hub-verify'])) {
2856 $r = q("UPDATE `contact` SET `hub-verify` = '%s' WHERE `id` = %d LIMIT 1",
2857 dbesc($verify_token),
2858 intval($contact['id'])
2862 post_url($url,$params);
2864 logger('subscribe_to_hub: returns: ' . $a->get_curl_code(), LOGGER_DEBUG);
2871 function atom_author($tag,$name,$uri,$h,$w,$photo) {
2875 $name = xmlify($name);
2876 $uri = xmlify($uri);
2879 $photo = xmlify($photo);
2883 $o .= "<name>$name</name>\r\n";
2884 $o .= "<uri>$uri</uri>\r\n";
2885 $o .= '<link rel="photo" type="image/jpeg" media:width="' . $w . '" media:height="' . $h . '" href="' . $photo . '" />' . "\r\n";
2886 $o .= '<link rel="avatar" type="image/jpeg" media:width="' . $w . '" media:height="' . $h . '" href="' . $photo . '" />' . "\r\n";
2888 call_hooks('atom_author', $o);
2890 $o .= "</$tag>\r\n";
2894 function atom_entry($item,$type,$author,$owner,$comment = false,$cid = 0) {
2898 if(! $item['parent'])
2901 if($item['deleted'])
2902 return '<at:deleted-entry ref="' . xmlify($item['uri']) . '" when="' . xmlify(datetime_convert('UTC','UTC',$item['edited'] . '+00:00',ATOM_TIME)) . '" />' . "\r\n";
2905 if($item['allow_cid'] || $item['allow_gid'] || $item['deny_cid'] || $item['deny_gid'])
2906 $body = fix_private_photos($item['body'],$owner['uid'],$item,$cid);
2908 $body = $item['body'];
2911 $o = "\r\n\r\n<entry>\r\n";
2913 if(is_array($author))
2914 $o .= atom_author('author',$author['name'],$author['url'],80,80,$author['thumb']);
2916 $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']));
2917 if(strlen($item['owner-name']))
2918 $o .= atom_author('dfrn:owner',$item['owner-name'],$item['owner-link'],80,80,$item['owner-avatar']);
2920 if(($item['parent'] != $item['id']) || ($item['parent-uri'] !== $item['uri']))
2921 $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";
2923 $o .= '<id>' . xmlify($item['uri']) . '</id>' . "\r\n";
2924 $o .= '<title>' . xmlify($item['title']) . '</title>' . "\r\n";
2925 $o .= '<published>' . xmlify(datetime_convert('UTC','UTC',$item['created'] . '+00:00',ATOM_TIME)) . '</published>' . "\r\n";
2926 $o .= '<updated>' . xmlify(datetime_convert('UTC','UTC',$item['edited'] . '+00:00',ATOM_TIME)) . '</updated>' . "\r\n";
2927 $o .= '<dfrn:env>' . base64url_encode($body, true) . '</dfrn:env>' . "\r\n";
2928 $o .= '<content type="' . $type . '" >' . xmlify((($type === 'html') ? bbcode($body) : $body)) . '</content>' . "\r\n";
2929 $o .= '<link rel="alternate" type="text/html" href="' . xmlify($a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id']) . '" />' . "\r\n";
2931 $o .= '<dfrn:comment-allow>' . intval($item['last-child']) . '</dfrn:comment-allow>' . "\r\n";
2933 if($item['location']) {
2934 $o .= '<dfrn:location>' . xmlify($item['location']) . '</dfrn:location>' . "\r\n";
2935 $o .= '<poco:address><poco:formatted>' . xmlify($item['location']) . '</poco:formatted></poco:address>' . "\r\n";
2939 $o .= '<georss:point>' . xmlify($item['coord']) . '</georss:point>' . "\r\n";
2941 if(($item['private']) || strlen($item['allow_cid']) || strlen($item['allow_gid']) || strlen($item['deny_cid']) || strlen($item['deny_gid']))
2942 $o .= '<dfrn:private>1</dfrn:private>' . "\r\n";
2945 $o .= '<dfrn:extid>' . xmlify($item['extid']) . '</dfrn:extid>' . "\r\n";
2946 if($item['bookmark'])
2947 $o .= '<dfrn:bookmark>true</dfrn:bookmark>' . "\r\n";
2950 $o .= '<statusnet:notice_info local_id="' . $item['id'] . '" source="' . xmlify($item['app']) . '" ></statusnet:notice_info>' . "\r\n";
2953 $o .= '<dfrn:diaspora_guid>' . $item['guid'] . '</dfrn:diaspora_guid>' . "\r\n";
2955 if($item['signed_text']) {
2956 $sign = base64_encode(json_encode(array('signed_text' => $item['signed_text'],'signature' => $item['signature'],'signer' => $item['signer'])));
2957 $o .= '<dfrn:diaspora_signature>' . xmlify($sign) . '</dfrn:diaspora_signature>' . "\r\n";
2960 $verb = construct_verb($item);
2961 $o .= '<as:verb>' . xmlify($verb) . '</as:verb>' . "\r\n";
2962 $actobj = construct_activity_object($item);
2965 $actarg = construct_activity_target($item);
2969 $tags = item_getfeedtags($item);
2971 foreach($tags as $t) {
2972 $o .= '<category scheme="X-DFRN:' . xmlify($t[0]) . ':' . xmlify($t[1]) . '" term="' . xmlify($t[2]) . '" />' . "\r\n";
2976 $o .= item_getfeedattach($item);
2978 $mentioned = get_mentions($item);
2982 call_hooks('atom_entry', $o);
2984 $o .= '</entry>' . "\r\n";
2989 function fix_private_photos($s,$uid, $item = null, $cid = 0) {
2992 logger('fix_private_photos', LOGGER_DEBUG);
2993 $site = substr($a->get_baseurl(),strpos($a->get_baseurl(),'://'));
2995 if(preg_match("/\[img(.*?)\](.*?)\[\/img\]/is",$s,$matches)) {
2996 $image = $matches[2];
2997 logger('fix_private_photos: found photo ' . $image, LOGGER_DEBUG);
2998 if(stristr($image , $site . '/photo/')) {
3000 $i = basename($image);
3001 $i = str_replace(array('.jpg','.png'),array('',''),$i);
3002 $x = strpos($i,'-');
3004 $res = substr($i,$x+1);
3005 $i = substr($i,0,$x);
3006 $r = q("SELECT * FROM `photo` WHERE `resource-id` = '%s' AND `scale` = %d AND `uid` = %d",
3013 // Check to see if we should replace this photo link with an embedded image
3014 // 1. No need to do so if the photo is public
3015 // 2. If there's a contact-id provided, see if they're in the access list
3016 // for the photo. If so, embed it.
3017 // 3. Otherwise, if we have an item, see if the item permissions match the photo
3018 // permissions, regardless of order but first check to see if they're an exact
3019 // match to save some processing overhead.
3021 // Currently we only embed one private photo per message so as not to hit import
3022 // size limits at the receiving end.
3024 // To embed multiples, we would need to parse out the embedded photos on message
3025 // receipt and limit size based only on the text component. Would also need to
3026 // ignore all photos during bbcode translation and item localisation, as these
3027 // will hit internal regex backtrace limits.
3029 if(has_permissions($r[0])) {
3031 $recips = enumerate_permissions($r[0]);
3032 if(in_array($cid, $recips)) {
3037 if(compare_permissions($item,$r[0]))
3042 logger('fix_private_photos: replacing photo', LOGGER_DEBUG);
3043 $s = str_replace($image, 'data:' . $r[0]['type'] . ';base64,' . base64_encode($r[0]['data']), $s);
3044 logger('fix_private_photos: replaced: ' . $s, LOGGER_DATA);
3054 function has_permissions($obj) {
3055 if(($obj['allow_cid'] != '') || ($obj['allow_gid'] != '') || ($obj['deny_cid'] != '') || ($obj['deny_gid'] != ''))
3060 function compare_permissions($obj1,$obj2) {
3061 // first part is easy. Check that these are exactly the same.
3062 if(($obj1['allow_cid'] == $obj2['allow_cid'])
3063 && ($obj1['allow_gid'] == $obj2['allow_gid'])
3064 && ($obj1['deny_cid'] == $obj2['deny_cid'])
3065 && ($obj1['deny_gid'] == $obj2['deny_gid']))
3068 // This is harder. Parse all the permissions and compare the resulting set.
3070 $recipients1 = enumerate_permissions($obj1);
3071 $recipients2 = enumerate_permissions($obj2);
3074 if($recipients1 == $recipients2)
3079 // returns an array of contact-ids that are allowed to see this object
3081 function enumerate_permissions($obj) {
3082 require_once('include/group.php');
3083 $allow_people = expand_acl($obj['allow_cid']);
3084 $allow_groups = expand_groups(expand_acl($obj['allow_gid']));
3085 $deny_people = expand_acl($obj['deny_cid']);
3086 $deny_groups = expand_groups(expand_acl($obj['deny_gid']));
3087 $recipients = array_unique(array_merge($allow_people,$allow_groups));
3088 $deny = array_unique(array_merge($deny_people,$deny_groups));
3089 $recipients = array_diff($recipients,$deny);
3093 function item_getfeedtags($item) {
3096 $cnt = preg_match_all('|\#\[url\=(.*?)\](.*?)\[\/url\]|',$item['tag'],$matches);
3098 for($x = 0; $x < $cnt; $x ++) {
3100 $ret[] = array('#',$matches[1][$x], $matches[2][$x]);
3104 $cnt = preg_match_all('|\@\[url\=(.*?)\](.*?)\[\/url\]|',$item['tag'],$matches);
3106 for($x = 0; $x < $cnt; $x ++) {
3108 $ret[] = array('@',$matches[1][$x], $matches[2][$x]);
3114 function item_getfeedattach($item) {
3116 $arr = explode(',',$item['attach']);
3118 foreach($arr as $r) {
3120 $cnt = preg_match('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"\[\/attach\]|',$r,$matches);
3122 $ret .= '<link rel="enclosure" href="' . xmlify($matches[1]) . '" type="' . xmlify($matches[3]) . '" ';
3123 if(intval($matches[2]))
3124 $ret .= 'length="' . intval($matches[2]) . '" ';
3125 if($matches[4] !== ' ')
3126 $ret .= 'title="' . xmlify(trim($matches[4])) . '" ';
3127 $ret .= ' />' . "\r\n";
3136 function item_expire($uid,$days) {
3138 if((! $uid) || ($days < 1))
3141 // $expire_network_only = save your own wall posts
3142 // and just expire conversations started by others
3144 $expire_network_only = get_pconfig($uid,'expire','network_only');
3145 $sql_extra = ((intval($expire_network_only)) ? " AND wall = 0 " : "");
3147 $r = q("SELECT * FROM `item`
3149 AND `created` < UTC_TIMESTAMP() - INTERVAL %d DAY
3160 $expire_items = get_pconfig($uid, 'expire','items');
3161 $expire_items = (($expire_items===false)?1:intval($expire_items)); // default if not set: 1
3163 $expire_notes = get_pconfig($uid, 'expire','notes');
3164 $expire_notes = (($expire_notes===false)?1:intval($expire_notes)); // default if not set: 1
3166 $expire_starred = get_pconfig($uid, 'expire','starred');
3167 $expire_starred = (($expire_starred===false)?1:intval($expire_starred)); // default if not set: 1
3169 $expire_photos = get_pconfig($uid, 'expire','photos');
3170 $expire_photos = (($expire_photos===false)?0:intval($expire_photos)); // default if not set: 0
3172 logger('expire: # items=' . count($r). "; expire items: $expire_items, expire notes: $expire_notes, expire starred: $expire_starred, expire photos: $expire_photos");
3174 foreach($r as $item) {
3176 // don't expire filed items
3178 if(strpos($item['file'],'[') !== false)
3181 // Only expire posts, not photos and photo comments
3183 if($expire_photos==0 && strlen($item['resource-id']))
3185 if($expire_starred==0 && intval($item['starred']))
3187 if($expire_notes==0 && $item['type']=='note')
3189 if($expire_items==0 && $item['type']!='note')
3192 drop_item($item['id'],false);
3195 proc_run('php',"include/notifier.php","expire","$uid");
3200 function drop_items($items) {
3203 if(! local_user() && ! remote_user())
3207 foreach($items as $item) {
3208 $owner = drop_item($item,false);
3209 if($owner && ! $uid)
3214 // multiple threads may have been deleted, send an expire notification
3217 proc_run('php',"include/notifier.php","expire","$uid");
3221 function drop_item($id,$interactive = true) {
3225 // locate item to be deleted
3227 $r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1",
3234 notice( t('Item not found.') . EOL);
3235 goaway($a->get_baseurl() . '/' . $_SESSION['return_url']);
3240 $owner = $item['uid'];
3242 // check if logged in user is either the author or owner of this item
3244 if((local_user() == $item['uid']) || (remote_user() == $item['contact-id'])) {
3248 $r = q("UPDATE `item` SET `deleted` = 1, `title` = '', `body` = '', `edited` = '%s', `changed` = '%s' WHERE `id` = %d LIMIT 1",
3249 dbesc(datetime_convert()),
3250 dbesc(datetime_convert()),
3254 // clean up categories and tags so they don't end up as orphans
3257 $cnt = preg_match_all('/<(.*?)>/',$item['file'],$matches,PREG_SET_ORDER);
3259 foreach($matches as $mtch) {
3260 file_tag_unsave_file($item['uid'],$item['id'],$mtch[1],true);
3266 $cnt = preg_match_all('/\[(.*?)\]/',$item['file'],$matches,PREG_SET_ORDER);
3268 foreach($matches as $mtch) {
3269 file_tag_unsave_file($item['uid'],$item['id'],$mtch[1],false);
3273 // If item is a link to a photo resource, nuke all the associated photos
3274 // (visitors will not have photo resources)
3275 // This only applies to photos uploaded from the photos page. Photos inserted into a post do not
3276 // generate a resource-id and therefore aren't intimately linked to the item.
3278 if(strlen($item['resource-id'])) {
3279 q("DELETE FROM `photo` WHERE `resource-id` = '%s' AND `uid` = %d ",
3280 dbesc($item['resource-id']),
3281 intval($item['uid'])
3283 // ignore the result
3286 // If item is a link to an event, nuke the event record.
3288 if(intval($item['event-id'])) {
3289 q("DELETE FROM `event` WHERE `id` = %d AND `uid` = %d LIMIT 1",
3290 intval($item['event-id']),
3291 intval($item['uid'])
3293 // ignore the result
3296 // clean up item_id and sign meta-data tables
3298 $r = q("DELETE FROM item_id where iid in (select id from item where parent = %d and uid = %d)",
3299 intval($item['id']),
3300 intval($item['uid'])
3303 $r = q("DELETE FROM sign where iid in (select id from item where parent = %d and uid = %d)",
3304 intval($item['id']),
3305 intval($item['uid'])
3308 // If it's the parent of a comment thread, kill all the kids
3310 if($item['uri'] == $item['parent-uri']) {
3311 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s', `body` = '' , `title` = ''
3312 WHERE `parent-uri` = '%s' AND `uid` = %d ",
3313 dbesc(datetime_convert()),
3314 dbesc(datetime_convert()),
3315 dbesc($item['parent-uri']),
3316 intval($item['uid'])
3318 // ignore the result
3321 // ensure that last-child is set in case the comment that had it just got wiped.
3322 q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d ",
3323 dbesc(datetime_convert()),
3324 dbesc($item['parent-uri']),
3325 intval($item['uid'])
3327 // who is the last child now?
3328 $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",
3329 dbesc($item['parent-uri']),
3330 intval($item['uid'])
3333 q("UPDATE `item` SET `last-child` = 1 WHERE `id` = %d LIMIT 1",
3338 // Add a relayable_retraction signature for Diaspora. Note that we can't add a target_author_signature
3339 // if the comment was deleted by a remote user. That should be ok, because if a remote user is deleting
3340 // the comment, that means we're the home of the post, and Diaspora will only
3341 // check the parent_author_signature of retractions that it doesn't have to relay further
3343 // I don't think this function gets called for an "unlike," but I'll check anyway
3344 $signed_text = $item['guid'] . ';' . ( ($item['verb'] === ACTIVITY_LIKE) ? 'Like' : 'Comment');
3346 if(local_user() == $item['uid']) {
3348 $handle = $a->user['nickname'] . '@' . substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
3349 $authorsig = base64_encode(rsa_sign($signed_text,$a->user['prvkey'],'sha256'));
3352 $r = q("SELECT `nick`, `url` FROM `contact` WHERE `id` = '%d' LIMIT 1",
3356 // The below handle only works for NETWORK_DFRN. I think that's ok, because this function
3357 // only handles DFRN deletes
3358 $handle_baseurl_start = strpos($r['url'],'://') + 3;
3359 $handle_baseurl_length = strpos($r['url'],'/profile') - $handle_baseurl_start;
3360 $handle = $r['nick'] . '@' . substr($r['url'], $handle_baseurl_start, $handle_baseurl_length);
3366 q("insert into sign (`retract_iid`,`signed_text`,`signature`,`signer`) values (%d,'%s','%s','%s') ",
3367 intval($item['id']),
3368 dbesc($signed_text),
3373 $drop_id = intval($item['id']);
3375 // send the notification upstream/downstream as the case may be
3380 proc_run('php',"include/notifier.php","drop","$drop_id");
3381 goaway($a->get_baseurl() . '/' . $_SESSION['return_url']);
3387 notice( t('Permission denied.') . EOL);
3388 goaway($a->get_baseurl() . '/' . $_SESSION['return_url']);
3395 function first_post_date($uid,$wall = false) {
3396 $r = q("select id, created from item
3397 where uid = %d and wall = %d and deleted = 0 and visible = 1 AND moderated = 0
3399 order by created asc limit 1",
3401 intval($wall ? 1 : 0)
3404 // logger('first_post_date: ' . $r[0]['id'] . ' ' . $r[0]['created'], LOGGER_DATA);
3405 return substr($r[0]['created'],0,10);
3410 function posted_dates($uid,$wall) {
3411 $dnow = datetime_convert('','','now','Y-m-d');
3413 $dthen = first_post_date($uid,$wall);
3418 while($dnow >= $dthen) {
3419 $start_month = datetime_convert('','','first day of ' . $dnow,'Y-m-d');
3420 $end_month = datetime_convert('','','last day of ' . $dnow,'Y-m-d');
3421 $str = day_translate(datetime_convert('','',$dnow,'F Y'));
3422 $ret[] = array($str,$end_month,$start_month);
3423 if($start_month < $dthen)
3425 $dnow = datetime_convert('','',$dnow . ' -1 month', 'Y-m-d');
3431 function posted_date_widget($url,$uid,$wall) {
3433 $ret = posted_dates($uid,$wall);
3437 $o = replace_macros(get_markup_template('posted_date_widget.tpl'),array(
3438 '$title' => t('Archives'),
3439 '$size' => ((count($ret) > 6) ? 6 : count($ret)),