streams/include/conversation.php

1125 lines
33 KiB
PHP
Raw Normal View History

<?php
require_once('include/items.php');
// Note: the code in 'item_extract_images' and 'item_redir_and_replace_images'
// is identical to the code in mod/message.php for 'item_extract_images' and
// 'item_redir_and_replace_images'
if(! function_exists('item_extract_images')) {
function item_extract_images($body) {
$saved_image = array();
$orig_body = $body;
$new_body = '';
$cnt = 0;
$img_start = strpos($orig_body, '[img');
$img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
$img_end = ($img_start !== false ? strpos(substr($orig_body, $img_start), '[/img]') : false);
while(($img_st_close !== false) && ($img_end !== false)) {
$img_st_close++; // make it point to AFTER the closing bracket
$img_end += $img_start;
if(! strcmp(substr($orig_body, $img_start + $img_st_close, 5), 'data:')) {
// This is an embedded image
2012-07-08 00:47:13 +00:00
$saved_image[$cnt] = substr($orig_body, $img_start + $img_st_close, $img_end - ($img_start + $img_st_close));
$new_body = $new_body . substr($orig_body, 0, $img_start) . '[!#saved_image' . $cnt . '#!]';
2012-07-08 00:47:13 +00:00
$cnt++;
}
else
$new_body = $new_body . substr($orig_body, 0, $img_end + strlen('[/img]'));
$orig_body = substr($orig_body, $img_end + strlen('[/img]'));
if($orig_body === false) // in case the body ends on a closing image tag
$orig_body = '';
$img_start = strpos($orig_body, '[img');
$img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
$img_end = ($img_start !== false ? strpos(substr($orig_body, $img_start), '[/img]') : false);
}
$new_body = $new_body . $orig_body;
return array('body' => $new_body, 'images' => $saved_image);
}}
if(! function_exists('item_redir_and_replace_images')) {
function item_redir_and_replace_images($body, $images, $cid) {
2012-07-08 00:47:13 +00:00
$origbody = $body;
$newbody = '';
$observer = get_app()->get_observer();
$obhash = (($observer) ? $observer['xchan_hash'] : '');
$obaddr = (($observer) ? $observer['xchan_addr'] : '');
for($i = 0; $i < count($images); $i++) {
$search = '/\[url\=(.*?)\]\[!#saved_image' . $i . '#!\]\[\/url\]' . '/is';
$replace = '[url=' . magiclink_url($obhash,$obaddr,'$1') . '][!#saved_image' . $i . '#!][/url]' ;
2012-07-08 00:47:13 +00:00
$img_end = strpos($origbody, '[!#saved_image' . $i . '#!][/url]') + strlen('[!#saved_image' . $i . '#!][/url]');
$process_part = substr($origbody, 0, $img_end);
$origbody = substr($origbody, $img_end);
$process_part = preg_replace($search, $replace, $process_part);
$newbody = $newbody . $process_part;
}
2012-07-08 00:47:13 +00:00
$newbody = $newbody . $origbody;
$cnt = 0;
foreach($images as $image) {
// We're depending on the property of 'foreach' (specified on the PHP website) that
// it loops over the array starting from the first element and going sequentially
// to the last element
2012-07-08 00:47:13 +00:00
$newbody = str_replace('[!#saved_image' . $cnt . '#!]', '[img]' . $image . '[/img]', $newbody);
$cnt++;
}
return $newbody;
}}
2011-04-18 15:37:02 +00:00
/**
* Render actions localized
*/
2012-11-14 03:32:59 +00:00
function localize_item(&$item){
$extracted = item_extract_images($item['body']);
if($extracted['images'])
$item['body'] = item_redir_and_replace_images($extracted['body'], $extracted['images'], $item['contact-id']);
if (activity_match($item['verb'],ACTIVITY_LIKE) || activity_match($item['verb'],ACTIVITY_DISLIKE)){
2011-04-18 15:37:02 +00:00
2012-11-14 03:32:59 +00:00
$obj= json_decode($item['object'],true);
2011-04-18 15:37:02 +00:00
2012-11-14 03:32:59 +00:00
if($obj['author'] && $obj['author']['link'])
$author_link = get_rel_link($obj['author']['link'],'alternate');
else
$author_link = '';
2012-11-14 03:32:59 +00:00
$author_name = (($obj['author'] && $obj['author']['name']) ? $obj['author']['name'] : '');
2012-11-14 03:32:59 +00:00
$item_url = get_rel_link($obj['link'],'alternate');
// If we couldn't parse something useful, don't bother translating.
2012-11-09 03:07:19 +00:00
// We need something better than zid here, probably magic_link(), but it needs writing
if($author_link && $author_name && $item_url) {
$author = '[url=' . chanlink_url($item['author']['xchan_url']) . ']' . $item['author']['xchan_name'] . '[/url]';
$objauthor = '[url=' . chanlink_url($author_link) . ']' . $author_name . '[/url]';
2011-04-18 15:37:02 +00:00
switch($obj->type) {
case ACTIVITY_OBJ_PHOTO:
$post_type = t('photo');
break;
case ACTIVITY_OBJ_EVENT:
$post_type = t('event');
break;
case ACTIVITY_OBJ_NOTE:
default:
if(! ($item_flags & ITEM_THREAD_TOP))
$post_type = t('comment');
else
$post_type = t('status');
break;
}
2012-09-11 05:00:56 +00:00
2012-11-09 03:07:19 +00:00
$plink = '[url=' . zid($item_url) . ']' . $post_type . '[/url]';
if(activity_match($item['verb'],ACTIVITY_LIKE)) {
$bodyverb = t('%1$s likes %2$s\'s %3$s');
}
elseif(activity_match($item['verb'],ACTIVITY_DISLIKE)) {
$bodyverb = t('%1$s doesn\'t like %2$s\'s %3$s');
}
2012-11-14 03:32:59 +00:00
$item['body'] = $item['localize'] = sprintf($bodyverb, $author, $objauthor, $plink);
2012-09-11 05:00:56 +00:00
2011-04-18 15:37:02 +00:00
}
2012-09-11 05:00:56 +00:00
2011-04-18 15:37:02 +00:00
}
if (activity_match($item['verb'],ACTIVITY_FRIEND)) {
2011-04-18 15:37:02 +00:00
if ($item['obj_type']=="" || $item['obj_type']!== ACTIVITY_OBJ_PERSON) return;
2012-11-14 03:32:59 +00:00
$Aname = $item['author']['xchan_name'];
$Alink = $item['author']['xchan_url'];
2012-09-11 05:00:56 +00:00
2012-11-14 03:32:59 +00:00
$obj= json_decode($item['object'],true);
$Blink = $Bphoto = '';
2012-09-11 05:00:56 +00:00
2012-11-14 03:32:59 +00:00
if($obj['link']) {
$Blink = get_rel_link($obj['link'],'alternate');
$Bphoto = get_rel_link($obj['link'],'photo');
}
2012-11-14 03:32:59 +00:00
$Bname = $obj['title'];
2012-09-11 05:00:56 +00:00
$A = '[url=' . chanlink_url($Alink) . ']' . $Aname . '[/url]';
$B = '[url=' . chanlink_url($Blink) . ']' . $Bname . '[/url]';
if ($Bphoto!="") $Bphoto = '[url=' . chanlink_url($Blink) . '][img=80x80]' . $Bphoto . '[/img][/url]';
2011-04-18 15:37:02 +00:00
$item['body'] = $item['localize'] = sprintf( t('%1$s is now connected with %2$s'), $A, $B);
2012-11-14 03:32:59 +00:00
$item['body'] .= "\n\n\n" . $Bphoto;
}
2012-11-14 03:32:59 +00:00
2012-07-20 01:53:26 +00:00
if (stristr($item['verb'],ACTIVITY_POKE)) {
$verb = urldecode(substr($item['verb'],strpos($item['verb'],'#')+1));
if(! $verb)
return;
if ($item['obj_type']=="" || $item['obj_type']!== ACTIVITY_OBJ_PERSON) return;
2012-07-20 01:53:26 +00:00
2012-11-14 03:32:59 +00:00
$Aname = $item['author']['xchan_name'];
$Alink = $item['author']['xchan_url'];
2012-09-11 05:00:56 +00:00
2012-11-14 03:32:59 +00:00
$obj= json_decode($item['object'],true);
$Blink = $Bphoto = '';
2012-09-11 05:00:56 +00:00
2012-11-14 03:32:59 +00:00
if($obj['link']) {
$Blink = get_rel_link($obj['link'],'alternate');
$Bphoto = get_rel_link($obj['link'],'photo');
2012-07-20 01:53:26 +00:00
}
2012-11-14 03:32:59 +00:00
$Bname = $obj['title'];
2012-09-11 05:00:56 +00:00
$A = '[url=' . chanlink_url($Alink) . ']' . $Aname . '[/url]';
$B = '[url=' . chanlink_url($Blink) . ']' . $Bname . '[/url]';
if ($Bphoto!="") $Bphoto = '[url=' . chanlink_url($Blink) . '][img=80x80]' . $Bphoto . '[/img][/url]';
2012-07-20 01:53:26 +00:00
// we can't have a translation string with three positions but no distinguishable text
// So here is the translate string.
$txt = t('%1$s poked %2$s');
// now translate the verb
$txt = str_replace( t('poked'), t($verb), $txt);
// then do the sprintf on the translation string
2012-11-14 03:32:59 +00:00
$item['body'] = $item['localize'] = sprintf($txt, $A, $B);
$item['body'] .= "\n\n\n" . $Bphoto;
2012-07-20 01:53:26 +00:00
}
2012-08-24 03:00:10 +00:00
if (stristr($item['verb'],ACTIVITY_MOOD)) {
$verb = urldecode(substr($item['verb'],strpos($item['verb'],'#')+1));
if(! $verb)
return;
2012-11-14 03:32:59 +00:00
$Aname = $item['author']['xchan_name'];
$Alink = $item['author']['xchan_url'];
$A = '[url=' . chanlink_url($Alink) . ']' . $Aname . '[/url]';
2012-08-24 03:00:10 +00:00
$txt = t('%1$s is currently %2$s');
$item['body'] = sprintf($txt, $A, t($verb));
}
2012-11-14 03:32:59 +00:00
/*
// FIXME store parent item as object or target
// (and update to json storage)
2012-08-24 03:00:10 +00:00
if (activity_match($item['verb'],ACTIVITY_TAG)) {
2011-11-15 16:41:38 +00:00
$r = q("SELECT * from `item`,`contact` WHERE
`item`.`contact-id`=`contact`.`id` AND `item`.`uri`='%s';",
dbesc($item['parent_uri']));
2011-11-15 16:41:38 +00:00
if(count($r)==0) return;
$obj=$r[0];
2012-11-09 03:07:19 +00:00
$author = '[url=' . zid($item['author-link']) . ']' . $item['author-name'] . '[/url]';
$objauthor = '[url=' . zid($obj['author-link']) . ']' . $obj['author-name'] . '[/url]';
2011-11-15 16:41:38 +00:00
switch($obj['verb']){
case ACTIVITY_POST:
switch ($obj['obj_type']){
2011-11-15 16:41:38 +00:00
case ACTIVITY_OBJ_EVENT:
$post_type = t('event');
break;
default:
$post_type = t('status');
}
break;
default:
if($obj['resource_id']){
2011-11-15 16:41:38 +00:00
$post_type = t('photo');
2012-09-11 05:00:56 +00:00
$m=array(); preg_match("/\[url=([^]]*)\]/", $obj['body'], $m);
2011-11-15 16:41:38 +00:00
$rr['plink'] = $m[1];
} else {
$post_type = t('status');
}
}
$plink = '[url=' . $obj['plink'] . ']' . $post_type . '[/url]';
2012-09-11 05:00:56 +00:00
2011-11-15 16:41:38 +00:00
$parsedobj = parse_xml_string($xmlhead.$item['object']);
2012-09-11 05:00:56 +00:00
2011-11-16 10:27:20 +00:00
$tag = sprintf('#[url=%s]%s[/url]', $parsedobj->id, $parsedobj->content);
2011-11-15 16:41:38 +00:00
$item['body'] = sprintf( t('%1$s tagged %2$s\'s %3$s with %4$s'), $author, $objauthor, $plink, $tag );
2012-09-11 05:00:56 +00:00
2011-11-15 16:41:38 +00:00
}
2012-11-14 03:32:59 +00:00
if (activity_match($item['verb'],ACTIVITY_FAVORITE)){
2012-01-25 00:23:30 +00:00
if ($item['obj_type']== "")
2012-01-25 00:23:30 +00:00
return;
2012-11-14 03:32:59 +00:00
$Aname = $item['author']['xchan_name'];
$Alink = $item['author']['xchan_url'];
2012-09-11 05:00:56 +00:00
2012-01-25 00:23:30 +00:00
$xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">";
2012-09-11 05:00:56 +00:00
2012-01-25 00:23:30 +00:00
$obj = parse_xml_string($xmlhead.$item['object']);
if(strlen($obj->id)) {
$r = q("select * from item where uri = '%s' and uid = %d limit 1",
dbesc($obj->id),
intval($item['uid'])
);
if(count($r) && $r[0]['plink']) {
$target = $r[0];
$Bname = $target['author-name'];
$Blink = $target['author-link'];
2012-11-09 03:07:19 +00:00
$A = '[url=' . zid($Alink) . ']' . $Aname . '[/url]';
$B = '[url=' . zid($Blink) . ']' . $Bname . '[/url]';
2012-01-25 00:23:30 +00:00
$P = '[url=' . $target['plink'] . ']' . t('post/item') . '[/url]';
$item['body'] = sprintf( t('%1$s marked %2$s\'s %3$s as favorite'), $A, $B, $P)."\n";
}
}
}
2012-11-14 03:32:59 +00:00
*/
2012-03-30 04:08:10 +00:00
$matches = null;
2012-03-30 04:18:47 +00:00
if(preg_match_all('/@\[url=(.*?)\]/is',$item['body'],$matches,PREG_SET_ORDER)) {
2012-03-30 04:08:10 +00:00
foreach($matches as $mtch) {
2012-11-09 03:07:19 +00:00
if(! strpos($mtch[1],'zid='))
$item['body'] = str_replace($mtch[0],'@[url=' . zid($mtch[1]). ']',$item['body']);
2012-03-30 04:08:10 +00:00
}
}
2012-11-09 03:07:19 +00:00
// add zid's to public images
if(preg_match_all('/\[url=(.*?)\/photos\/(.*?)\/image\/(.*?)\]\[img(.*?)\]h(.*?)\[\/img\]\[\/url\]/is',$item['body'],$matches,PREG_SET_ORDER)) {
foreach($matches as $mtch) {
$item['body'] = str_replace($mtch[0],'[url=' . zid( $mtch[1] . '/photos/' . $mtch[2] . '/image/' . $mtch[3]) . '][img' . $mtch[4] . ']h' . $mtch[5] . '[/img][/url]',$item['body']);
}
}
2011-08-26 22:21:21 +00:00
// add sparkle links to appropriate permalinks
// $x = stristr($item['plink'],'/display/');
// if($x) {
// $sparkle = false;
// $y = best_link_url($item,$sparkle,true);
// if($sparkle)
// $item['plink'] = $y . '?f=&url=' . $item['plink'];
// }
2011-04-18 15:37:02 +00:00
}
/**
* Count the total of comments on this item and its desendants
*/
function count_descendants($item) {
$total = count($item['children']);
if($total > 0) {
foreach($item['children'] as $child) {
if(! visible_activity($child))
$total --;
$total += count_descendants($child);
}
}
return $total;
}
function visible_activity($item) {
if(activity_match($item['verb'],ACTIVITY_LIKE) || activity_match($item['verb'],ACTIVITY_DISLIKE))
return false;
return true;
}
/**
* "Render" a conversation or list of items for HTML display.
* There are two major forms of display:
* - Sequential or unthreaded ("New Item View" or search results)
* - conversation view
* The $mode parameter decides between the various renderings and also
2012-09-11 05:00:56 +00:00
* figures out how to determine page owner and other contextual items
* that are based on unique features of the calling module.
*
*/
if(!function_exists('conversation')) {
function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional') {
2012-07-26 05:55:43 +00:00
$tstart = dba_timer();
require_once('bbcode.php');
2012-03-15 04:20:20 +00:00
$ssl_state = ((local_user()) ? true : false);
2011-04-11 06:01:38 +00:00
$profile_owner = 0;
$page_writeable = false;
$live_update_div = '';
2011-04-11 06:01:38 +00:00
$preview = (($page_mode === 'preview') ? true : false);
2012-01-10 04:03:00 +00:00
$previewing = (($preview) ? ' preview ' : '');
2011-04-11 06:01:38 +00:00
if($mode === 'network') {
$profile_owner = local_user();
$page_writeable = true;
if(!$update) {
// The special div is needed for liveUpdate to kick in for this page.
// We only launch liveUpdate if you aren't filtering in some incompatible
// way and also you aren't writing a comment (discovered in javascript).
$live_update_div = '<div id="live-network"></div>' . "\r\n"
. "<script> var profile_uid = " . $_SESSION['uid']
. "; var netargs = '" . substr($a->cmd,8)
. '?f='
. ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : '')
. ((x($_GET,'search')) ? '&search=' . $_GET['search'] : '')
. ((x($_GET,'star')) ? '&star=' . $_GET['star'] : '')
. ((x($_GET,'order')) ? '&order=' . $_GET['order'] : '')
. ((x($_GET,'bmark')) ? '&bmark=' . $_GET['bmark'] : '')
. ((x($_GET,'liked')) ? '&liked=' . $_GET['liked'] : '')
. ((x($_GET,'conv')) ? '&conv=' . $_GET['conv'] : '')
. ((x($_GET,'spam')) ? '&spam=' . $_GET['spam'] : '')
. ((x($_GET,'nets')) ? '&nets=' . $_GET['nets'] : '')
. ((x($_GET,'cmin')) ? '&cmin=' . $_GET['cmin'] : '')
. ((x($_GET,'cmax')) ? '&cmax=' . $_GET['cmax'] : '')
. ((x($_GET,'file')) ? '&file=' . $_GET['file'] : '')
. "'; var profile_page = " . $a->pager['page'] . "; </script>\r\n";
}
2011-04-11 06:01:38 +00:00
}
elseif($mode === 'channel') {
2011-04-11 06:01:38 +00:00
$profile_owner = $a->profile['profile_uid'];
$page_writeable = ($profile_owner == local_user());
2011-04-11 06:01:38 +00:00
if(!$update) {
$tab = notags(trim($_GET['tab']));
if($tab === 'posts') {
// This is ugly, but we can't pass the profile_uid through the session to the ajax updater,
// because browser prefetching might change it on us. We have to deliver it with the page.
$live_update_div = '<div id="live-channel"></div>' . "\r\n"
. "<script> var profile_uid = " . $a->profile['profile_uid']
. "; var netargs = '?f='; var profile_page = " . $a->pager['page'] . "; </script>\r\n";
}
}
2011-05-20 08:15:02 +00:00
}
elseif($mode === 'display') {
$profile_owner = $a->profile['uid'];
$page_writeable = ($profile_owner == local_user());
$live_update_div = '<div id="live-display"></div>' . "\r\n";
}
elseif($mode === 'page') {
$profile_owner = $a->profile['uid'];
$page_writeable = ($profile_owner == local_user());
$live_update_div = '<div id="live-page"></div>' . "\r\n";
}
else if($mode === 'search') {
$live_update_div = '<div id="live-search"></div>' . "\r\n";
}
2012-07-25 05:06:21 +00:00
$page_dropping = ((local_user() && local_user() == $profile_owner) ? true : false);
if(! feature_enabled($profile_owner,'multi_delete'))
$page_dropping = false;
$channel = $a->get_channel();
$observer = $a->get_observer();
2012-07-25 05:06:21 +00:00
if($update)
$return_url = $_SESSION['return_url'];
else
2012-03-06 22:27:53 +00:00
$return_url = $_SESSION['return_url'] = $a->query_string;
2011-04-11 06:01:38 +00:00
2011-05-06 13:30:33 +00:00
load_contact_links(local_user());
2012-01-11 01:47:11 +00:00
$cb = array('items' => $items, 'mode' => $mode, 'update' => $update, 'preview' => $preview);
call_hooks('conversation_start',$cb);
$items = $cb['items'];
2011-05-11 11:37:13 +00:00
$cmnt_tpl = get_markup_template('comment_item.tpl');
2011-11-23 00:00:05 +00:00
$hide_comments_tpl = get_markup_template('hide_comments.tpl');
$alike = array();
$dlike = array();
2012-09-11 05:00:56 +00:00
// array with html for each thread (parent+comments)
2011-10-03 07:38:58 +00:00
$threads = array();
$threadsid = -1;
$page_template = get_markup_template("conversation.tpl");
2012-09-11 05:00:56 +00:00
2013-01-06 12:07:10 +00:00
if($items) {
if($mode === 'network-new' || $mode === 'search' || $mode === 'community') {
2012-09-11 05:00:56 +00:00
// "New Item View" on network page or search page results
// - just loop through the items and format them minimally for display
//$tpl = get_markup_template('search_item.tpl');
$tpl = 'search_item.tpl';
2011-04-11 22:45:19 +00:00
foreach($items as $item) {
2011-10-03 07:38:58 +00:00
$threadsid++;
$comment = '';
$owner_url = '';
$owner_photo = '';
$owner_name = '';
$sparkle = '';
if($mode === 'search' || $mode === 'community') {
if(((activity_match($item['verb'],ACTIVITY_LIKE)) || (activity_match($item['verb'],ACTIVITY_DISLIKE)))
&& ($item['id'] != $item['parent']))
continue;
$nickname = $item['nickname'];
}
else
$nickname = $a->user['nickname'];
$profile_name = ((strlen($item['author-name'])) ? $item['author-name'] : $item['name']);
2011-12-04 11:50:26 +00:00
if($item['author-link'] && (! $item['author-name']))
$profile_name = $item['author-link'];
2011-05-06 13:30:33 +00:00
2012-11-03 12:46:56 +00:00
2012-03-30 03:58:32 +00:00
$tags=array();
$hashtags = array();
$mentions = array();
foreach(explode(',',$item['tag']) as $tag){
$tag = trim($tag);
if ($tag!="") {
$t = bbcode($tag);
$tags[] = $t;
if($t[0] == '#')
$hashtags[] = $t;
elseif($t[0] == '@')
$mentions[] = $t;
}
}
2011-05-06 13:30:33 +00:00
$sp = false;
$profile_link = best_link_url($item,$sp);
2012-03-30 03:58:32 +00:00
if($sp)
$sparkle = ' sparkle';
else
2012-11-09 03:07:19 +00:00
$profile_link = zid($profile_link);
2011-05-09 08:35:24 +00:00
$normalised = normalise_link((strlen($item['author-link'])) ? $item['author-link'] : $item['url']);
2012-08-27 06:05:00 +00:00
if(x($a->contacts,$normalised))
2011-05-09 08:35:24 +00:00
$profile_avatar = $a->contacts[$normalised]['thumb'];
else
$profile_avatar = ((strlen($item['author-avatar'])) ? $a->get_cached_avatar_image($item['author-avatar']) : $item['thumb']);
2011-05-09 08:35:24 +00:00
2012-11-03 12:46:56 +00:00
$profile_name = $item['author']['xchan_name'];
$profile_link = $item['author']['xchan_url'];
$profile_avatar = $item['author']['xchan_photo_m'];
$location = format_location($item);
2011-04-11 06:01:38 +00:00
2011-04-18 15:37:02 +00:00
localize_item($item);
if($mode === 'network-new')
$dropping = true;
else
$dropping = false;
$drop = array(
'pagedropping' => $page_dropping,
'dropping' => $dropping,
'select' => t('Select'),
'delete' => t('Delete'),
);
2011-04-11 06:01:38 +00:00
$star = false;
$isstarred = "unstarred";
$lock = false;
$likebuttons = false;
$shareable = false;
2011-05-25 03:41:29 +00:00
2012-07-17 04:20:04 +00:00
$tags=array();
$terms = get_terms_oftype($item['term'],array(TERM_HASHTAG,TERM_MENTION,TERM_UNKNOWN));
if(count($terms))
foreach($terms as $tag)
$tags[] = format_term_for_display($tag);
2011-05-25 03:45:02 +00:00
$body = prepare_body($item,true);
//$tmp_item = replace_macros($tpl,array(
$tmp_item = array(
'template' => $tpl,
2012-07-17 04:20:04 +00:00
'tags' => $tags,
'id' => (($preview) ? 'P0' : $item['item_id']),
2012-11-03 12:46:56 +00:00
'linktitle' => sprintf( t('View %s\'s profile @ %s'), $profile_name, $profile_url),
'profile_url' => $profile_link,
'item_photo_menu' => item_photo_menu($item),
'name' => template_escape($profile_name),
'sparkle' => $sparkle,
'lock' => $lock,
'thumb' => $profile_avatar,
'title' => template_escape($item['title']),
'body' => template_escape($body),
'tags' => template_escape($tags),
'hashtags' => template_escape($hashtags),
'mentions' => template_escape($mentions),
'txt_cats' => t('Categories:'),
'txt_folders' => t('Filed under:'),
'has_cats' => ((count($categories)) ? 'true' : ''),
'has_folders' => ((count($folders)) ? 'true' : ''),
'categories' => $categories,
'folders' => $folders,
'text' => strip_tags(template_escape($body)),
'ago' => relative_date($item['created']),
'app' => $item['app'],
'str_app' => sprintf( t(' from %s'), $item['app']),
'localtime' => datetime_convert('UTC', date_default_timezone_get(), $item['created'], 'c'),
'location' => template_escape($location),
'indent' => '',
'owner_name' => template_escape($owner_name),
'owner_url' => $owner_url,
'owner_photo' => $owner_photo,
'plink' => get_plink($item),
'edpost' => false,
'isstarred' => $isstarred,
'star' => $star,
'drop' => $drop,
'vote' => $likebuttons,
'like' => '',
'dislike' => '',
'comment' => '',
2012-03-15 04:20:20 +00:00
'conv' => (($preview) ? '' : array('href'=> $a->get_baseurl($ssl_state) . '/display/' . $nickname . '/' . $item['id'], 'title'=> t('View in context'))),
'previewing' => $previewing,
'wait' => t('Please wait'),
2012-08-12 01:54:23 +00:00
'thread_level' => 1,
);
$arr = array('item' => $item, 'output' => $tmp_item);
call_hooks('display_item', $arr);
$threads[$threadsid]['id'] = $item['item_id'];
$threads[$threadsid]['items'] = array($arr['output']);
}
}
else
{
// Normal View
require_once('include/ConversationObject.php');
require_once('include/ItemObject.php');
$conv = new Conversation($mode, $preview);
// get all the topmost parents
// this shouldn't be needed, as we should have only them in our array
// But for now, this array respects the old style, just in case
$threads = array();
foreach($items as $item) {
// Can we put this after the visibility check?
like_puller($a,$item,$alike,'like');
2012-11-04 06:39:38 +00:00
if(feature_enabled($profile_owner,'dislike'))
2012-11-04 06:39:38 +00:00
like_puller($a,$item,$dlike,'dislike');
// Only add what is visible
if($item['network'] === NETWORK_MAIL && local_user() != $item['uid']) {
continue;
}
if(! visible_activity($item)) {
continue;
}
$item['pagedrop'] = $page_dropping;
if($item['id'] == $item['parent']) {
$item_object = new Item($item);
$conv->add_thread($item_object);
}
}
$threads = $conv->get_template_data($alike, $dlike);
if(!$threads) {
logger('[ERROR] conversation : Failed to get template data.', LOGGER_DEBUG);
$threads = array();
}
}
}
if($page_mode === 'traditional' || $page_mode === 'preview') {
$page_template = get_markup_template("threaded_conversation.tpl");
}
elseif($update) {
$page_template = get_markup_template("convobj.tpl");
}
else {
$page_template = get_markup_template("conv_frame.tpl");
$threads = null;
}
2013-01-06 12:07:10 +00:00
if($page_mode === 'preview')
logger('preview: ' . print_r($threads,true));
$o = replace_macros($page_template, array(
'$baseurl' => $a->get_baseurl($ssl_state),
'$live_update' => $live_update_div,
'$remove' => t('remove'),
'$mode' => $mode,
'$user' => $a->user,
'$threads' => $threads,
'$wait' => t('Loading...'),
'$dropping' => ($page_dropping?t('Delete Selected Items'):False),
));
2013-01-06 12:07:10 +00:00
if($page_mode === 'preview')
logger('preview: ' . $o);
return $o;
}}
function best_link_url($item) {
2011-05-06 13:30:33 +00:00
$a = get_app();
$best_url = '';
$sparkle = false;
$clean_url = normalise_link($item['author-link']);
if((local_user()) && (local_user() == $item['uid'])) {
if(isset($a->contacts) && x($a->contacts,$clean_url)) {
if($a->contacts[$clean_url]['network'] === NETWORK_DFRN) {
2012-03-15 04:20:20 +00:00
$best_url = $a->get_baseurl($ssl_state) . '/redir/' . $a->contacts[$clean_url]['id'];
2011-05-06 13:30:33 +00:00
$sparkle = true;
}
2011-05-06 13:30:33 +00:00
else
$best_url = $a->contacts[$clean_url]['url'];
}
}
2011-05-06 13:30:33 +00:00
if(! $best_url) {
if(strlen($item['author-link']))
$best_url = $item['author-link'];
else
$best_url = $item['url'];
}
return $best_url;
}
if(! function_exists('item_photo_menu')){
function item_photo_menu($item){
$a = get_app();
$contact = null;
2011-05-06 13:30:33 +00:00
2012-03-15 04:20:20 +00:00
$ssl_state = false;
if(local_user()) {
$ssl_state = true;
if(! count($a->contacts))
2012-03-15 04:20:20 +00:00
load_contact_links(local_user());
$channel = $a->get_channel();
$channel_hash = (($channel) ? $channel['channel_hash'] : '');
2012-03-15 04:20:20 +00:00
}
$sub_link="";
2012-07-21 10:48:59 +00:00
$poke_link="";
$contact_url="";
$pm_url="";
if((local_user()) && local_user() == $item['uid'] && $item['parent'] == $item['id']
&& $channel && ($channel_hash != $item['author_xchan'])) {
$sub_link = 'javascript:dosubthread(' . $item['id'] . '); return false;';
}
$profile_link = z_root() . "/chanview/?f=&hash=" . $item['author_xchan'];
$pm_url = $a->get_baseurl($ssl_state) . '/message/new/?f=&hash=' . $item['author_xchan'];
2011-04-18 06:27:11 +00:00
if($a->contacts && array_key_exists($item['author_xchan'],$a->contacts))
$contact = $a->contacts[$item['author_xchan']];
if($contact) {
$poke_link = $a->get_baseurl($ssl_state) . '/poke/?f=&c=' . $contact['abook_id'];
2013-01-29 22:29:40 +00:00
$contact_url = $a->get_baseurl($ssl_state) . '/connections/' . $contact['abook_id'];
$posts_link = $a->get_baseurl($ssl_state) . '/network/?cid=' . $contact['abook_id'];
$clean_url = normalise_link($item['author-link']);
2011-05-06 13:30:33 +00:00
}
$menu = Array(
t("Follow Thread") => $sub_link,
2012-04-11 02:33:32 +00:00
t("View Status") => $status_link,
t("View Profile") => $profile_link,
t("View Photos") => $photos_link,
2012-09-11 05:00:56 +00:00
t("Network Posts") => $posts_link,
2012-04-11 02:33:32 +00:00
t("Edit Contact") => $contact_url,
t("Send PM") => $pm_url,
2012-07-21 10:48:59 +00:00
t("Poke") => $poke_link
);
2012-09-11 05:00:56 +00:00
2012-01-12 01:34:02 +00:00
$args = array('item' => $item, 'menu' => $menu);
2012-09-11 05:00:56 +00:00
call_hooks('item_photo_menu', $args);
2012-01-12 01:34:02 +00:00
2012-09-11 05:00:56 +00:00
$menu = $args['menu'];
2012-01-12 01:34:02 +00:00
$o = "";
foreach($menu as $k=>$v){
if(strpos($v,'javascript:') === 0) {
$v = substr($v,11);
$o .= "<li><a href=\"#\" onclick=\"$v\">$k</a></li>\n";
}
elseif ($v!="") $o .= "<li><a href=\"$v\">$k</a></li>\n";
}
return $o;
}}
if(! function_exists('like_puller')) {
function like_puller($a,$item,&$arr,$mode) {
$url = '';
$sparkle = '';
$verb = (($mode === 'like') ? ACTIVITY_LIKE : ACTIVITY_DISLIKE);
if((activity_match($item['verb'],$verb)) && ($item['id'] != $item['parent'])) {
$url = $item['author']['xchan_url'];
if((local_user()) && (local_user() == $item['uid']) && ($item['network'] === 'dfrn') && (! $item['self']) && (link_compare($item['author-link'],$item['url']))) {
2012-03-15 04:20:20 +00:00
$url = $a->get_baseurl(true) . '/redir/' . $item['contact-id'];
$sparkle = ' class="sparkle" ';
}
2012-03-30 03:58:32 +00:00
else
2012-11-09 03:07:19 +00:00
$url = zid($url);
2012-06-23 11:44:48 +00:00
if(! $item['thr_parent'])
$item['thr_parent'] = $item['parent_uri'];
2012-06-23 11:44:48 +00:00
if(! ((isset($arr[$item['thr_parent'] . '-l'])) && (is_array($arr[$item['thr_parent'] . '-l']))))
$arr[$item['thr_parent'] . '-l'] = array();
if(! isset($arr[$item['thr_parent']]))
$arr[$item['thr_parent']] = 1;
2012-09-11 05:00:56 +00:00
else
$arr[$item['thr_parent']] ++;
$arr[$item['thr_parent'] . '-l'][] = '<a href="'. $url . '"'. $sparkle .'>' . $item['author']['xchan_name'] . '</a>';
}
return;
}}
// Format the like/dislike text for a profile item
// $cnt = number of people who like/dislike the item
// $arr = array of pre-linked names of likers/dislikers
// $type = one of 'like, 'dislike'
// $id = item id
// returns formatted text
if(! function_exists('format_like')) {
function format_like($cnt,$arr,$type,$id) {
$o = '';
if($cnt == 1)
$o .= (($type === 'like') ? sprintf( t('%s likes this.'), $arr[0]) : sprintf( t('%s doesn\'t like this.'), $arr[0])) . EOL ;
else {
$spanatts = 'class="fakelink" onclick="openClose(\'' . $type . 'list-' . $id . '\');"';
2012-09-11 05:00:56 +00:00
$o .= (($type === 'like') ?
sprintf( t('<span %1$s>%2$d people</span> like this.'), $spanatts, $cnt)
2012-09-11 05:00:56 +00:00
:
sprintf( t('<span %1$s>%2$d people</span> don\'t like this.'), $spanatts, $cnt) );
$o .= EOL ;
$total = count($arr);
if($total >= MAX_LIKERS)
$arr = array_slice($arr, 0, MAX_LIKERS - 1);
if($total < MAX_LIKERS)
$arr[count($arr)-1] = t('and') . ' ' . $arr[count($arr)-1];
$str = implode(', ', $arr);
if($total >= MAX_LIKERS)
$str .= sprintf( t(', and %d other people'), $total - MAX_LIKERS );
$str = (($type === 'like') ? sprintf( t('%s like this.'), $str) : sprintf( t('%s don\'t like this.'), $str));
$o .= "\t" . '<div id="' . $type . 'list-' . $id . '" style="display: none;" >' . $str . '</div>';
}
return $o;
}}
2011-04-20 12:48:12 +00:00
function status_editor($a,$x,$popup=false) {
2011-04-20 12:48:12 +00:00
$o = '';
2012-09-11 05:00:56 +00:00
2013-01-06 21:42:51 +00:00
$geotag = (($x['allow_location']) ? replace_macros(get_markup_template('jot_geotag.tpl'), array()) : '');
2011-04-20 12:48:12 +00:00
$plaintext = true;
if(feature_enabled(local_user(),'richtext'))
$plaintext = false;
2011-04-20 12:48:12 +00:00
$tpl = get_markup_template('jot-header.tpl');
$a->page['htmlhead'] .= replace_macros($tpl, array(
'$newpost' => 'true',
2012-03-15 04:20:20 +00:00
'$baseurl' => $a->get_baseurl(true),
'$editselect' => (($plaintext) ? 'none' : '/(profile-jot-text|prvmail-text)/'),
'$geotag' => $geotag,
'$nickname' => $x['nickname'],
'$ispublic' => t('Visible to <strong>everybody</strong>'),
'$linkurl' => t('Please enter a link URL:'),
'$vidurl' => t("Please enter a video link/URL:"),
'$audurl' => t("Please enter an audio link/URL:"),
'$term' => t('Tag term:'),
2012-03-30 09:42:36 +00:00
'$fileas' => t('Save to Folder:'),
'$whereareu' => t('Where are you right now?')
));
2011-04-20 12:48:12 +00:00
$tpl = get_markup_template("jot.tpl");
2012-09-11 05:00:56 +00:00
$jotplugins = '';
$jotnets = '';
call_hooks('jot_tool', $jotplugins);
call_hooks('jot_networks', $jotnets);
$o .= replace_macros($tpl,array(
'$return_path' => $a->query_string,
2012-03-15 04:20:20 +00:00
'$action' => $a->get_baseurl(true) . '/item',
'$share' => (x($x,'button') ? $x['button'] : t('Share')),
'$upload' => t('Upload photo'),
'$shortupload' => t('upload photo'),
'$attach' => t('Attach file'),
'$shortattach' => t('attach file'),
'$weblink' => t('Insert web link'),
'$shortweblink' => t('web link'),
'$video' => t('Insert video link'),
'$shortvideo' => t('video link'),
'$audio' => t('Insert audio link'),
'$shortaudio' => t('audio link'),
'$setloc' => t('Set your location'),
'$shortsetloc' => t('set location'),
'$noloc' => t('Clear browser location'),
'$shortnoloc' => t('clear location'),
'$title' => "",
'$placeholdertitle' => t('Set title'),
'$catsenabled' => ((feature_enabled($x['profile_uid'],'categories')) ? 'categories' : ''),
'$category' => "",
'$placeholdercategory' => t('Categories (comma-separated list)'),
'$wait' => t('Please wait'),
'$permset' => t('Permission settings'),
'$shortpermset' => t('permissions'),
'$ptyp' => (($notes_cid) ? 'note' : 'wall'),
'$content' => '',
'$post_id' => '',
2012-03-15 04:20:20 +00:00
'$baseurl' => $a->get_baseurl(true),
'$defloc' => $x['default_location'],
'$visitor' => $x['visitor'],
'$pvisit' => (($notes_cid) ? 'none' : $x['visitor']),
'$public' => t('Public post'),
'$jotnets' => $jotnets,
'$emtitle' => t('Example: bob@example.com, mary@example.com'),
'$lockstate' => $x['lockstate'],
'$acl' => $x['acl'],
'$bang' => $x['bang'],
'$profile_uid' => $x['profile_uid'],
'$preview' => ((feature_enabled($x['profile_uid'],'preview')) ? t('Preview') : ''),
2012-08-06 04:41:58 +00:00
'$sourceapp' => t($a->sourcename),
'$jotplugins' => $jotplugins,
));
2011-04-20 12:48:12 +00:00
if ($popup==true){
$o = '<div id="jot-popup" style="display: none;">'.$o.'</div>';
2012-09-11 05:00:56 +00:00
}
2011-04-20 12:48:12 +00:00
return $o;
}
2012-01-03 00:54:37 +00:00
function get_item_children($arr, $parent) {
$children = array();
foreach($arr as $item) {
if($item['id'] != $item['parent']) {
if(get_config('system','thread_allow')) {
// Fallback to parent_uri if thr_parent is not set
$thr_parent = $item['thr_parent'];
if($thr_parent == '')
$thr_parent = $item['parent_uri'];
if($thr_parent == $parent['uri']) {
$item['children'] = get_item_children($arr, $item);
$children[] = $item;
}
}
else if($item['parent'] == $parent['id']) {
$children[] = $item;
}
}
}
return $children;
}
function sort_item_children($items) {
$result = $items;
usort($result,'sort_thr_created_rev');
foreach($result as $k => $i) {
if(count($result[$k]['children'])) {
$result[$k]['children'] = sort_item_children($result[$k]['children']);
}
}
return $result;
}
function add_children_to_list($children, &$arr) {
foreach($children as $y) {
$arr[] = $y;
if(count($y['children']))
add_children_to_list($y['children'], $arr);
}
}
function conv_sort($arr,$order) {
2012-01-03 00:54:37 +00:00
if((!(is_array($arr) && count($arr))))
return array();
$parents = array();
$children = array();
2012-01-03 00:54:37 +00:00
foreach($arr as $x)
if($x['id'] == $x['parent'])
$parents[] = $x;
if(stristr($order,'created'))
usort($parents,'sort_thr_created');
elseif(stristr($order,'commented'))
usort($parents,'sort_thr_commented');
2012-01-04 01:29:07 +00:00
if(count($parents))
2012-09-11 05:00:56 +00:00
foreach($parents as $i=>$_x)
$parents[$i]['children'] = get_item_children($arr, $_x);
2012-01-03 00:54:37 +00:00
2012-01-04 01:29:07 +00:00
if(count($parents)) {
foreach($parents as $k => $v) {
if(count($parents[$k]['children'])) {
$parents[$k]['children'] = sort_item_children($parents[$k]['children']);
2012-01-04 01:29:07 +00:00
}
2012-09-11 05:00:56 +00:00
}
}
2012-01-03 00:54:37 +00:00
$ret = array();
2012-01-04 01:29:07 +00:00
if(count($parents)) {
foreach($parents as $x) {
$ret[] = $x;
if(count($x['children']))
add_children_to_list($x['children'], $ret);
2012-01-04 01:29:07 +00:00
}
2012-01-03 00:54:37 +00:00
}
return $ret;
}
function sort_thr_created($a,$b) {
return strcmp($b['created'],$a['created']);
}
function sort_thr_created_rev($a,$b) {
return strcmp($a['created'],$b['created']);
}
function sort_thr_commented($a,$b) {
return strcmp($b['commented'],$a['commented']);
}
function find_thread_parent_index($arr,$x) {
foreach($arr as $k => $v)
if($v['id'] == $x['parent'])
return $k;
2012-01-04 01:29:07 +00:00
return false;
}
2012-02-09 23:02:59 +00:00
function format_location($item) {
if(strpos($item['location'],'#') === 0) {
$location = substr($item['location'],1);
$location = ((strpos($location,'[') !== false) ? bbcode($location) : $location);
}
else {
$locate = array('location' => $item['location'], 'coord' => $item['coord'], 'html' => '');
call_hooks('render_location',$locate);
$location = ((strlen($locate['html'])) ? $locate['html'] : render_location_default($locate));
}
return $location;
}
function render_location_default($item) {
$location = $item['location'];
$coord = $item['coord'];
2012-02-09 23:02:59 +00:00
if($coord) {
if($location)
$location .= '<br /><span class="smalltext">(' . $coord . ')</span>';
else
$location = '<span class="smalltext">' . $coord . '</span>';
}
return $location;
}
2013-01-15 09:32:11 +00:00
function prepare_page($item) {
return replace_macros(get_markup_template('page_display.tpl'),array(
'$author' => $item['author']['xchan_name'],
'$auth_url' => $item['author']['xchan_url'],
'$date' => datetime_convert('UTC',date_default_timezone_get(),$item['created'],'Y-m-d H:i'),
'$title' => smilies(bbcode($item['title'])),
'$body' => smilies(bbcode($item['body']))
));
}