3 // This is a purely experimental module and is not yet generally useful.
5 // The eventual goal is to provide a json backend to fetch content and fill the current page.
6 // The page will be filled in on the frontend using javascript.
7 // At the present time this page is based on "network", but the hope is to extend to serving
8 // any content (wall, community, search, etc.).
9 // All search parameters, etc. will be managed in javascript and sent as request params.
10 // Security will be managed on the backend.
11 // There is no "pagination query", but we will manage the "current page" on the client
12 // and provide a link to fetch the next page - until there are no pages left to fetch.
14 // With the exception of complex tag and text searches, this prototype is incredibly
15 // fast - e.g. one or two milliseconds to fetch parent items for the current content,
16 // and 10-20 milliseconds to fetch all the child items.
19 function content_content(&$a, $update = 0) {
21 require_once('include/conversation.php');
24 // Currently security is based on the logged in user
30 $arr = array('query' => $a->query_string);
32 call_hooks('content_content_init', $arr);
35 $datequery = $datequery2 = '';
42 for($x = 1; $x < $a->argc; $x ++) {
43 if(is_a_date_arg($a->argv[$x])) {
45 $datequery2 = escape_tags($a->argv[$x]);
47 $datequery = escape_tags($a->argv[$x]);
48 $_GET['order'] = 'post';
51 elseif($a->argv[$x] === 'new') {
54 elseif(intval($a->argv[$x])) {
55 $group = intval($a->argv[$x]);
56 $def_acl = array('allow_gid' => '<' . $group . '>');
66 $contact_id = $a->cid;
68 require_once('include/acl_selectors.php');
70 $cid = ((x($_GET,'cid')) ? intval($_GET['cid']) : 0);
71 $star = ((x($_GET,'star')) ? intval($_GET['star']) : 0);
72 $bmark = ((x($_GET,'bmark')) ? intval($_GET['bmark']) : 0);
73 $order = ((x($_GET,'order')) ? notags($_GET['order']) : 'comment');
74 $liked = ((x($_GET,'liked')) ? intval($_GET['liked']) : 0);
75 $conv = ((x($_GET,'conv')) ? intval($_GET['conv']) : 0);
76 $spam = ((x($_GET,'spam')) ? intval($_GET['spam']) : 0);
77 $nets = ((x($_GET,'nets')) ? $_GET['nets'] : '');
78 $cmin = ((x($_GET,'cmin')) ? intval($_GET['cmin']) : 0);
79 $cmax = ((x($_GET,'cmax')) ? intval($_GET['cmax']) : 99);
80 $file = ((x($_GET,'file')) ? $_GET['file'] : '');
84 if(x($_GET,'search') || x($_GET,'file'))
87 $def_acl = array('allow_cid' => '<' . intval($cid) . '>');
90 $r = q("select id from contact where uid = %d and network = '%s' and self = 0",
98 $str .= '<' . $rr['id'] . '>';
100 $def_acl = array('allow_cid' => $str);
104 $sql_options = (($star) ? " and starred = 1 " : '');
105 $sql_options .= (($bmark) ? " and bookmark = 1 " : '');
107 $sql_nets = (($nets) ? sprintf(" and `contact`.`network` = '%s' ", dbesc($nets)) : '');
109 $sql_extra = " AND `item`.`parent` IN ( SELECT `parent` FROM `item` WHERE `id` = `parent` $sql_options ) ";
112 $r = q("SELECT `name`, `id` FROM `group` WHERE `id` = %d AND `uid` = %d LIMIT 1",
114 intval($_SESSION['uid'])
119 notice( t('No such group') . EOL );
120 goaway($a->get_baseurl(true) . '/network');
124 $contacts = expand_groups(array($group));
125 if((is_array($contacts)) && count($contacts)) {
126 $contact_str = implode(',',$contacts);
129 $contact_str = ' 0 ';
130 info( t('Group is empty'));
133 $sql_extra = " AND `item`.`parent` IN ( SELECT DISTINCT(`parent`) FROM `item` WHERE 1 $sql_options AND ( `contact-id` IN ( $contact_str ) OR `allow_gid` like '" . protect_sprintf('%<' . intval($group) . '>%') . "' ) and deleted = 0 ) ";
134 $o = '<h2>' . t('Group: ') . $r[0]['name'] . '</h2>' . $o;
138 $r = q("SELECT `id`,`name`,`network`,`writable`,`nurl` FROM `contact` WHERE `id` = %d
139 AND `blocked` = 0 AND `pending` = 0 LIMIT 1",
143 $sql_extra = " AND `item`.`parent` IN ( SELECT DISTINCT(`parent`) FROM `item` WHERE 1 $sql_options AND `contact-id` = " . intval($cid) . " and deleted = 0 ) ";
155 $sql_extra3 .= protect_sprintf(sprintf(" AND item.created <= '%s' ", dbesc(datetime_convert(date_default_timezone_get(),'',$datequery))));
158 $sql_extra3 .= protect_sprintf(sprintf(" AND item.created >= '%s' ", dbesc(datetime_convert(date_default_timezone_get(),'',$datequery2))));
161 $sql_extra2 = (($nouveau) ? '' : " AND `item`.`parent` = `item`.`id` ");
162 $sql_extra3 = (($nouveau) ? '' : $sql_extra3);
163 $sql_table = "`item`";
165 if(x($_GET,'search')) {
166 $search = escape_tags($_GET['search']);
168 if(strpos($search,'#') === 0) {
170 $search = substr($search,1);
173 if (get_config('system','only_tag_search'))
177 //$sql_extra = sprintf(" AND `term`.`term` = '%s' AND `term`.`otype` = %d AND `term`.`type` = %d ",
178 // dbesc(protect_sprintf($search)), intval(TERM_OBJ_POST), intval(TERM_HASHTAG));
179 //$sql_table = "`term` INNER JOIN `item` ON `item`.`id` = `term`.`oid` AND `item`.`uid` = `term`.`uid` ";
182 $sql_table = sprintf("`item` INNER JOIN (SELECT `oid` FROM `term` WHERE `term` = '%s' AND `otype` = %d AND `type` = %d AND `uid` = %d ORDER BY `tid` DESC) AS `term` ON `item`.`id` = `term`.`oid` ",
183 dbesc(protect_sprintf($search)), intval(TERM_OBJ_POST), intval(TERM_HASHTAG), intval(local_user()));
186 if (get_config('system','use_fulltext_engine'))
187 $sql_extra = sprintf(" AND MATCH (`item`.`body`, `item`.`title`) AGAINST ('%s' in boolean mode) ", dbesc(protect_sprintf($search)));
189 $sql_extra = sprintf(" AND `item`.`body` REGEXP '%s' ", dbesc(protect_sprintf(preg_quote($search))));
194 $sql_extra .= file_tag_file_query('item',unxmlify($file));
198 $myurl = $a->get_baseurl() . '/profile/'. $a->user['nickname'];
199 $myurl = substr($myurl,strpos($myurl,'://')+3);
200 $myurl = str_replace('www.','',$myurl);
201 $diasp_url = str_replace('/profile/','/u/',$myurl);
203 $sql_extra .= sprintf(" AND `item`.`parent` IN (SELECT distinct(`parent`) from item where `author-link` IN ('https://%s', 'http://%s') OR `mention`)",
204 dbesc(protect_sprintf($myurl)),
205 dbesc(protect_sprintf($myurl))
209 $pager_sql = sprintf(" LIMIT %d, %d ",intval($a->pager['start']), intval($a->pager['itemspage']));
213 // "New Item View" - show all items unthreaded in reverse created date order
215 $items = q("SELECT `item`.*, `item`.`id` AS `item_id`,
216 `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`, `contact`.`writable`,
217 `contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`,
218 `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
219 FROM $sql_table INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
220 WHERE `item`.`uid` = %d AND `item`.`visible` = 1
221 AND `item`.`deleted` = 0 and `item`.`moderated` = 0
223 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
225 ORDER BY `item`.`received` DESC $pager_sql ",
226 intval($_SESSION['uid'])
232 // Normal conversation view
235 if($order === 'post')
236 $ordering = "`created`";
238 $ordering = "`commented`";
240 $start = dba_timer();
242 $r = q("SELECT `item`.`id` AS `item_id`, `contact`.`uid` AS `contact_uid`
243 FROM $sql_table INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
244 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
245 AND `item`.`moderated` = 0 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
246 AND `item`.`parent` = `item`.`id`
247 $sql_extra3 $sql_extra $sql_nets
248 ORDER BY `item`.$ordering DESC $pager_sql ",
252 $first = dba_timer();
255 // Then fetch all the children of the parents that are on this page
257 $parents_arr = array();
262 if(! in_array($rr['item_id'],$parents_arr))
263 $parents_arr[] = $rr['item_id'];
264 $parents_str = implode(', ', $parents_arr);
266 $items = q("SELECT `item`.*, `item`.`id` AS `item_id`,
267 `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`alias`, `contact`.`rel`, `contact`.`writable`,
268 `contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`,
269 `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
270 FROM $sql_table INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
271 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
272 AND `item`.`moderated` = 0
273 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
274 AND `item`.`parent` IN ( %s )
276 intval(local_user()),
280 $second = dba_timer();
282 $items = conv_sort($items,$ordering);
290 logger('parent dba_timer: ' . sprintf('%01.4f',$first - $start));
291 logger('child dba_timer: ' . sprintf('%01.4f',$second - $first));
293 // Set this so that the conversation function can find out contact info for our wall-wall items
294 $a->page_contact = $a->contact;
296 $mode = (($nouveau) ? 'network-new' : 'network');
298 $o = render_content($a,$items,$mode,false);
301 header('Content-type: application/json');
302 echo json_encode($o);
308 function render_content(&$a, $items, $mode, $update, $preview = false) {
310 require_once('include/bbcode.php');
311 require_once('mod/proxy.php');
313 $ssl_state = ((local_user()) ? true : false);
316 $page_writeable = false;
318 $previewing = (($preview) ? ' preview ' : '');
320 if($mode === 'network') {
321 $profile_owner = local_user();
322 $page_writeable = true;
325 if($mode === 'profile') {
326 $profile_owner = $a->profile['profile_uid'];
327 $page_writeable = can_write_wall($a,$profile_owner);
330 if($mode === 'notes') {
331 $profile_owner = local_user();
332 $page_writeable = true;
335 if($mode === 'display') {
336 $profile_owner = $a->profile['uid'];
337 $page_writeable = can_write_wall($a,$profile_owner);
340 if($mode === 'community') {
342 $page_writeable = false;
346 $return_url = $_SESSION['return_url'];
348 $return_url = $_SESSION['return_url'] = $a->query_string;
350 load_contact_links(local_user());
352 $cb = array('items' => $items, 'mode' => $mode, 'update' => $update, 'preview' => $preview);
353 call_hooks('conversation_start',$cb);
355 $items = $cb['items'];
357 $cmnt_tpl = get_markup_template('comment_item.tpl');
358 $tpl = 'wall_item.tpl';
359 $wallwall = 'wallwall_item.tpl';
360 $hide_comments_tpl = get_markup_template('hide_comments.tpl');
366 // array with html for each thread (parent+comments)
370 if($items && count($items)) {
372 if($mode === 'network-new' || $mode === 'search' || $mode === 'community') {
374 // "New Item View" on network page or search page results
375 // - just loop through the items and format them minimally for display
377 //$tpl = get_markup_template('search_item.tpl');
378 $tpl = 'search_item.tpl';
380 foreach($items as $item) {
389 if($mode === 'search' || $mode === 'community') {
390 if(((activity_match($item['verb'],ACTIVITY_LIKE)) || (activity_match($item['verb'],ACTIVITY_DISLIKE)))
391 && ($item['id'] != $item['parent']))
393 $nickname = $item['nickname'];
396 $nickname = $a->user['nickname'];
398 // prevent private email from leaking.
399 if($item['network'] === NETWORK_MAIL && local_user() != $item['uid'])
402 $profile_name = ((strlen($item['author-name'])) ? $item['author-name'] : $item['name']);
403 if($item['author-link'] && (! $item['author-name']))
404 $profile_name = $item['author-link'];
409 $profile_link = best_link_url($item,$sp);
410 if($profile_link === 'mailbox')
413 $sparkle = ' sparkle';
415 $profile_link = zrl($profile_link);
417 $normalised = normalise_link((strlen($item['author-link'])) ? $item['author-link'] : $item['url']);
418 if(($normalised != 'mailbox') && (x($a->contacts[$normalised])))
419 $profile_avatar = $a->contacts[$normalised]['thumb'];
421 $profile_avatar = ((strlen($item['author-avatar'])) ? $a->get_cached_avatar_image($item['author-avatar']) : $item['thumb']);
423 $locate = array('location' => $item['location'], 'coord' => $item['coord'], 'html' => '');
424 call_hooks('render_location',$locate);
426 $location = ((strlen($locate['html'])) ? $locate['html'] : render_location_google($locate));
428 localize_item($item);
429 if($mode === 'network-new')
436 'dropping' => $dropping,
437 'select' => t('Select'),
438 'delete' => t('Delete'),
442 $isstarred = "unstarred";
445 $likebuttons = false;
448 $body = prepare_body($item,true);
450 if($a->theme['template_engine'] === 'internal') {
451 $name_e = template_escape($profile_name);
452 $title_e = template_escape($item['title']);
453 $body_e = template_escape($body);
454 $text_e = strip_tags(template_escape($body));
455 $location_e = template_escape($location);
456 $owner_name_e = template_escape($owner_name);
459 $name_e = $profile_name;
460 $title_e = $item['title'];
462 $text_e = strip_tags($body);
463 $location_e = $location;
464 $owner_name_e = $owner_name;
467 //$tmp_item = replace_macros($tpl,array(
470 'id' => (($preview) ? 'P0' : $item['item_id']),
471 'linktitle' => sprintf( t('View %s\'s profile @ %s'), $profile_name, ((strlen($item['author-link'])) ? $item['author-link'] : $item['url'])),
472 'profile_url' => $profile_link,
473 'item_photo_menu' => item_photo_menu($item),
475 'sparkle' => $sparkle,
477 'thumb' => proxy_url($profile_avatar),
481 'ago' => (($item['app']) ? sprintf( t('%s from %s'),relative_date($item['created']),$item['app']) : relative_date($item['created'])),
482 'location' => $location_e,
484 'owner_name' => $owner_name_e,
485 'owner_url' => $owner_url,
486 'owner_photo' => proxy_url($owner_photo),
487 'plink' => get_plink($item),
489 'isstarred' => $isstarred,
492 'vote' => $likebuttons,
496 //'conv' => (($preview) ? '' : array('href'=> $a->get_baseurl($ssl_state) . '/display/' . $nickname . '/' . $item['id'], 'title'=> t('View in context'))),
497 'conv' => (($preview) ? '' : array('href'=> $a->get_baseurl($ssl_state).'/display/'.$item['guid'], 'title'=> t('View in context'))),
498 'previewing' => $previewing,
499 'wait' => t('Please wait'),
502 $arr = array('item' => $item, 'output' => $tmp_item);
503 call_hooks('display_item', $arr);
505 $threads[$threadsid]['id'] = $item['item_id'];
506 $threads[$threadsid]['items'] = array($arr['output']);
516 // Figure out how many comments each parent has
517 // (Comments all have gravity of 6)
518 // Store the result in the $comments array
521 foreach($items as $item) {
522 if((intval($item['gravity']) == 6) && ($item['id'] != $item['parent'])) {
523 if(! x($comments,$item['parent']))
524 $comments[$item['parent']] = 1;
526 $comments[$item['parent']] += 1;
527 } elseif(! x($comments,$item['parent']))
528 $comments[$item['parent']] = 0; // avoid notices later on
531 // map all the like/dislike activities for each parent item
532 // Store these in the $alike and $dlike arrays
534 foreach($items as $item) {
535 like_puller($a,$item,$alike,'like');
536 like_puller($a,$item,$dlike,'dislike');
539 $comments_collapsed = false;
541 $comment_lastcollapsed = false;
542 $comment_firstcollapsed = false;
547 foreach($items as $item) {
553 $owner_url = $owner_photo = $owner_name = '';
555 // We've already parsed out like/dislike for special treatment. We can ignore them now
557 if(((activity_match($item['verb'],ACTIVITY_LIKE))
558 || (activity_match($item['verb'],ACTIVITY_DISLIKE)))
559 && ($item['id'] != $item['parent']))
562 $toplevelpost = (($item['id'] == $item['parent']) ? true : false);
565 // Take care of author collapsing and comment collapsing
566 // (author collapsing is currently disabled)
567 // If a single author has more than 3 consecutive top-level posts, squash the remaining ones.
568 // If there are more than two comments, squash all but the last 2.
572 $item_writeable = (($item['writable'] || $item['self']) ? true : false);
575 $comments_collapsed = false;
576 $comment_lastcollapsed = false;
577 $comment_firstcollapsed = false;
580 $threads[$threadsid]['id'] = $item['item_id'];
581 $threads[$threadsid]['private'] = $item['private'];
582 $threads[$threadsid]['items'] = array();
587 // prevent private email reply to public conversation from leaking.
588 if($item['network'] === NETWORK_MAIL && local_user() != $item['uid'])
592 $comment_lastcollapsed = false;
593 $comment_firstcollapsed = false;
596 $override_comment_box = ((($page_writeable) && ($item_writeable)) ? true : false);
597 $show_comment_box = ((($page_writeable) && ($item_writeable) && ($comments_seen == $comments[$item['parent']])) ? true : false);
600 if(($comments[$item['parent']] > 2) && ($comments_seen <= ($comments[$item['parent']] - 2)) && ($item['gravity'] == 6)) {
602 if (!$comments_collapsed){
603 $threads[$threadsid]['num_comments'] = sprintf( tt('%d comment','%d comments',$comments[$item['parent']]),$comments[$item['parent']] );
604 $threads[$threadsid]['hidden_comments_num'] = $comments[$item['parent']];
605 $threads[$threadsid]['hidden_comments_text'] = tt('comment', 'comments', $comments[$item['parent']]);
606 $threads[$threadsid]['hide_text'] = t('show more');
607 $comments_collapsed = true;
608 $comment_firstcollapsed = true;
611 if(($comments[$item['parent']] > 2) && ($comments_seen == ($comments[$item['parent']] - 1))) {
613 $comment_lastcollapsed = true;
616 $redirect_url = $a->get_baseurl($ssl_state) . '/redir/' . $item['cid'] ;
618 $lock = ((($item['private'] == 1) || (($item['uid'] == local_user()) && (strlen($item['allow_cid']) || strlen($item['allow_gid'])
619 || strlen($item['deny_cid']) || strlen($item['deny_gid']))))
620 ? t('Private Message')
624 // Top-level wall post not written by the wall owner (wall-to-wall)
625 // First figure out who owns it.
629 if(($toplevelpost) && (! $item['self']) && ($mode !== 'profile')) {
633 // On the network page, I am the owner. On the display page it will be the profile owner.
634 // This will have been stored in $a->page_contact by our calling page.
635 // Put this person as the wall owner of the wall-to-wall notice.
637 $owner_url = zrl($a->page_contact['url']);
638 $owner_photo = $a->page_contact['thumb'];
639 $owner_name = $a->page_contact['name'];
640 $template = $wallwall;
644 if((! $item['wall']) && $item['owner-link']) {
646 $owner_linkmatch = (($item['owner-link']) && link_compare($item['owner-link'],$item['author-link']));
647 $alias_linkmatch = (($item['alias']) && link_compare($item['alias'],$item['author-link']));
648 $owner_namematch = (($item['owner-name']) && $item['owner-name'] == $item['author-name']);
649 if((! $owner_linkmatch) && (! $alias_linkmatch) && (! $owner_namematch)) {
651 // The author url doesn't match the owner (typically the contact)
652 // and also doesn't match the contact alias.
653 // The name match is a hack to catch several weird cases where URLs are
654 // all over the park. It can be tricked, but this prevents you from
655 // seeing "Bob Smith to Bob Smith via Wall-to-wall" and you know darn
656 // well that it's the same Bob Smith.
658 // But it could be somebody else with the same name. It just isn't highly likely.
661 $owner_url = $item['owner-link'];
662 $owner_photo = $item['owner-avatar'];
663 $owner_name = $item['owner-name'];
664 $template = $wallwall;
666 // If it is our contact, use a friendly redirect link
667 if((link_compare($item['owner-link'],$item['url']))
668 && ($item['network'] === NETWORK_DFRN)) {
669 $owner_url = $redirect_url;
670 $osparkle = ' sparkle';
673 $owner_url = zrl($owner_url);
679 $shareable = ((($profile_owner == local_user()) && ($item['private'] != 1)) ? true : false);
681 if($page_writeable) {
682 /* if($toplevelpost) { */
683 $likebuttons = array(
684 'like' => array( t("I like this \x28toggle\x29"), t("like")),
685 'dislike' => array( t("I don't like this \x28toggle\x29"), t("dislike")),
687 if ($shareable) $likebuttons['share'] = array( t('Share this'), t('share'));
690 $qc = $qcomment = null;
692 if(in_array('qcomment',$a->plugins)) {
693 $qc = ((local_user()) ? get_pconfig(local_user(),'qcomment','words') : null);
694 $qcomment = (($qc) ? explode("\n",$qc) : null);
697 if(($show_comment_box) || (($show_comment_box == false) && ($override_comment_box == false) && ($item['last-child']))) {
698 $comment = replace_macros($cmnt_tpl,array(
699 '$return_path' => '',
700 '$jsreload' => (($mode === 'display') ? $_SESSION['return_url'] : ''),
701 '$type' => (($mode === 'profile') ? 'wall-comment' : 'net-comment'),
702 '$id' => $item['item_id'],
703 '$parent' => $item['parent'],
704 '$qcomment' => $qcomment,
705 '$profile_uid' => $profile_owner,
706 '$mylink' => $a->contact['url'],
707 '$mytitle' => t('This is you'),
708 '$myphoto' => $a->contact['thumb'],
709 '$comment' => t('Comment'),
710 '$submit' => t('Submit'),
711 '$edbold' => t('Bold'),
712 '$editalic' => t('Italic'),
713 '$eduline' => t('Underline'),
714 '$edquote' => t('Quote'),
715 '$edcode' => t('Code'),
716 '$edimg' => t('Image'),
717 '$edurl' => t('Link'),
718 '$edvideo' => t('Video'),
719 '$preview' => t('Preview'),
720 '$sourceapp' => t($a->sourcename),
721 '$ww' => (($mode === 'network') ? $commentww : ''),
722 '$rand_num' => random_digits(12)
727 if(local_user() && link_compare($a->contact['url'],$item['author-link']))
728 $edpost = array($a->get_baseurl($ssl_state)."/editpost/".$item['id'], t("Edit"));
735 if((intval($item['contact-id']) && $item['contact-id'] == remote_user()) || ($item['uid'] == local_user()))
739 'dropping' => $dropping,
740 'select' => t('Select'),
741 'delete' => t('Delete'),
747 $isstarred = "unstarred";
748 if ($profile_owner == local_user()) {
750 $isstarred = (($item['starred']) ? "starred" : "unstarred");
753 'do' => t("add star"),
754 'undo' => t("remove star"),
755 'toggle' => t("toggle star status"),
756 'classdo' => (($item['starred']) ? "hidden" : ""),
757 'classundo' => (($item['starred']) ? "" : "hidden"),
758 'starred' => t('starred'),
759 'tagger' => t("add tag"),
763 $filer = t("save to folder");
767 $photo = $item['photo'];
768 $thumb = $item['thumb'];
770 // Post was remotely authored.
772 $diff_author = ((link_compare($item['url'],$item['author-link'])) ? false : true);
774 $profile_name = (((strlen($item['author-name'])) && $diff_author) ? $item['author-name'] : $item['name']);
776 if($item['author-link'] && (! $item['author-name']))
777 $profile_name = $item['author-link'];
780 $profile_link = best_link_url($item,$sp);
781 if($profile_link === 'mailbox')
784 $sparkle = ' sparkle';
786 $profile_link = zrl($profile_link);
788 $normalised = normalise_link((strlen($item['author-link'])) ? $item['author-link'] : $item['url']);
789 if(($normalised != 'mailbox') && (x($a->contacts,$normalised)))
790 $profile_avatar = $a->contacts[$normalised]['thumb'];
792 $profile_avatar = (((strlen($item['author-avatar'])) && $diff_author) ? $item['author-avatar'] : $a->get_cached_avatar_image($thumb));
794 $like = ((x($alike,$item['uri'])) ? format_like($alike[$item['uri']],$alike[$item['uri'] . '-l'],'like',$item['uri']) : '');
795 $dislike = ((x($dlike,$item['uri'])) ? format_like($dlike[$item['uri']],$dlike[$item['uri'] . '-l'],'dislike',$item['uri']) : '');
797 $locate = array('location' => $item['location'], 'coord' => $item['coord'], 'html' => '');
798 call_hooks('render_location',$locate);
800 $location = ((strlen($locate['html'])) ? $locate['html'] : render_location_google($locate));
802 $indent = (($toplevelpost) ? '' : ' comment');
805 if(strcmp(datetime_convert('UTC','UTC',$item['created']),datetime_convert('UTC','UTC','now - 12 hours')) > 0)
809 localize_item($item);
813 foreach(explode(',',$item['tag']) as $tag){
815 if ($tag!="") $tags[] = bbcode($tag);
820 $body = prepare_body($item,true);
821 //$tmp_item = replace_macros($template,
823 if($a->theme['template_engine'] === 'internal') {
824 $body_e = template_escape($body);
825 $text_e = strip_tags(template_escape($body));
826 $name_e = template_escape($profile_name);
827 $title_e = template_escape($item['title']);
828 $location_e = template_escape($location);
829 $owner_name_e = template_escape($owner_name);
833 $text_e = strip_tags($body);
834 $name_e = $profile_name;
835 $title_e = $item['title'];
836 $location_e = $location;
837 $owner_name_e = $owner_name;
841 // collapse comments in template. I don't like this much...
842 'comment_firstcollapsed' => $comment_firstcollapsed,
843 'comment_lastcollapsed' => $comment_lastcollapsed,
844 // template to use to render item (wall, walltowall, search)
845 'template' => $template,
847 'type' => implode("",array_slice(explode("/",$item['verb']),-1)),
851 'id' => $item['item_id'],
852 'linktitle' => sprintf( t('View %s\'s profile @ %s'), $profile_name, ((strlen($item['author-link'])) ? $item['author-link'] : $item['url'])),
853 'olinktitle' => sprintf( t('View %s\'s profile @ %s'), $profile_name, ((strlen($item['owner-link'])) ? $item['owner-link'] : $item['url'])),
855 'wall' => t('Wall-to-Wall'),
856 'vwall' => t('via Wall-To-Wall:'),
857 'profile_url' => $profile_link,
858 'item_photo_menu' => item_photo_menu($item),
860 'thumb' => proxy_url($profile_avatar),
861 'osparkle' => $osparkle,
862 'sparkle' => $sparkle,
864 'ago' => (($item['app']) ? sprintf( t('%s from %s'),relative_date($item['created']),$item['app']) : relative_date($item['created'])),
866 'location' => $location_e,
869 'owner_url' => $owner_url,
870 'owner_photo' => proxy_url($owner_photo),
871 'owner_name' => $owner_name_e,
872 'plink' => get_plink($item),
874 'isstarred' => $isstarred,
878 'vote' => $likebuttons,
880 'dislike' => $dislike,
881 'comment' => $comment,
882 'previewing' => $previewing,
883 'wait' => t('Please wait'),
888 $arr = array('item' => $item, 'output' => $tmp_item);
889 call_hooks('display_item', $arr);
891 $threads[$threadsid]['items'][] = $arr['output'];