streams/include/conversation.php

1958 lines
57 KiB
PHP
Raw Normal View History

2013-02-26 01:09:40 +00:00
<?php /** @file */
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);
}
function item_redir_and_replace_images($body, $images, $cid) {
2012-07-08 00:47:13 +00:00
$origbody = $body;
$newbody = '';
2016-03-31 23:06:03 +00:00
$observer = 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){
if (activity_match($item['verb'],ACTIVITY_LIKE) || activity_match($item['verb'],ACTIVITY_DISLIKE)){
if(! $item['obj'])
return;
2014-06-23 05:16:26 +00:00
if(intval($item['item_thread_top']))
2014-06-23 05:16:26 +00:00
return;
2016-07-14 05:11:06 +00:00
$obj = json_decode($item['obj'],true);
if((! $obj) && ($item['obj'])) {
logger('localize_item: failed to decode object: ' . print_r($item['obj'],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');
$Bphoto = '';
switch($obj['type']) {
case ACTIVITY_OBJ_PHOTO:
$post_type = t('photo');
break;
case ACTIVITY_OBJ_EVENT:
$post_type = t('event');
break;
case ACTIVITY_OBJ_PERSON:
$post_type = t('channel');
$author_name = $obj['title'];
if($obj['link']) {
$author_link = get_rel_link($obj['link'],'alternate');
$Bphoto = get_rel_link($obj['link'],'photo');
}
break;
case ACTIVITY_OBJ_THING:
$post_type = $obj['title'];
if($obj['owner']) {
if(array_key_exists('name',$obj['owner']))
$obj['owner']['name'];
if(array_key_exists('link',$obj['owner']))
$author_link = get_rel_link($obj['owner']['link'],'alternate');
}
if($obj['link']) {
$Bphoto = get_rel_link($obj['link'],'photo');
}
break;
case ACTIVITY_OBJ_NOTE:
default:
$post_type = t('status');
if($obj['id'] != $obj['parent'])
$post_type = t('comment');
break;
}
// 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 = '[zrl=' . chanlink_url($item['author']['xchan_url']) . ']' . $item['author']['xchan_name'] . '[/zrl]';
$objauthor = '[zrl=' . chanlink_url($author_link) . ']' . $author_name . '[/zrl]';
2011-04-18 15:37:02 +00:00
$plink = '[zrl=' . zid($item_url) . ']' . $post_type . '[/zrl]';
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');
}
// short version, in notification strings the author will be displayed separately
if(activity_match($item['verb'],ACTIVITY_LIKE)) {
$shortbodyverb = t('likes %1$s\'s %2$s');
}
elseif(activity_match($item['verb'],ACTIVITY_DISLIKE)) {
$shortbodyverb = t('doesn\'t like %1$s\'s %2$s');
}
$item['shortlocalize'] = sprintf($shortbodyverb, $objauthor, $plink);
2012-11-14 03:32:59 +00:00
$item['body'] = $item['localize'] = sprintf($bodyverb, $author, $objauthor, $plink);
if($Bphoto != "")
$item['body'] .= "\n\n\n" . '[zrl=' . chanlink_url($author_link) . '][zmg=80x80]' . $Bphoto . '[/zmg][/zrl]';
2012-09-11 05:00:56 +00:00
2011-04-18 15:37:02 +00:00
}
else {
logger('localize_item like failed: link ' . $author_link . ' name ' . $author_name . ' url ' . $item_url);
}
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
2014-07-31 09:33:34 +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
2016-07-14 05:11:06 +00:00
$obj= json_decode($item['obj'],true);
2012-11-14 03:32:59 +00:00
$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 = '[zrl=' . chanlink_url($Alink) . ']' . $Aname . '[/zrl]';
$B = '[zrl=' . chanlink_url($Blink) . ']' . $Bname . '[/zrl]';
if ($Bphoto!="") $Bphoto = '[zrl=' . chanlink_url($Blink) . '][zmg=80x80]' . $Bphoto . '[/zmg][/zrl]';
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
if (stristr($item['verb'], ACTIVITY_POKE)) {
2013-12-08 07:29:26 +00:00
/** @FIXME for obscured private posts, until then leave untranslated */
2013-12-08 07:29:26 +00:00
return;
2012-07-20 01:53:26 +00:00
$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
2016-07-14 05:11:06 +00:00
$obj= json_decode($item['obj'],true);
2012-11-14 03:32:59 +00:00
$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 = '[zrl=' . chanlink_url($Alink) . ']' . $Aname . '[/zrl]';
$B = '[zrl=' . chanlink_url($Blink) . ']' . $Bname . '[/zrl]';
if ($Bphoto!="") $Bphoto = '[zrl=' . chanlink_url($Blink) . '][zmg=80x80]' . $Bphoto . '[/zmg][/zrl]';
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 = '[zrl=' . chanlink_url($Alink) . ']' . $Aname . '[/zrl]';
2012-08-24 03:00:10 +00:00
$txt = t('%1$s is %2$s','mood');
2012-08-24 03:00:10 +00:00
$item['body'] = sprintf($txt, $A, t($verb));
}
2015-01-09 14:18:45 +00:00
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)) {
$r = q("SELECT * from item,contact WHERE
item.contact-id=contact.id AND item.mid='%s';",
dbesc($item['parent_mid']));
2011-11-15 16:41:38 +00:00
if(count($r)==0) return;
$obj=$r[0];
$author = '[zrl=' . zid($item['author-link']) . ']' . $item['author-name'] . '[/zrl]';
$objauthor = '[zrl=' . zid($obj['author-link']) . ']' . $obj['author-name'] . '[/zrl]';
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');
$m=array(); preg_match("/\[[zu]rl=([^]]*)\]/", $obj['body'], $m);
2011-11-15 16:41:38 +00:00
$rr['plink'] = $m[1];
} else {
$post_type = t('status');
}
}
$plink = '[zrl=' . $obj['plink'] . ']' . $post_type . '[/zrl]';
2012-09-11 05:00:56 +00:00
// $parsedobj = parse_xml_string($xmlhead.$item['obj']);
2012-09-11 05:00:56 +00:00
$tag = sprintf('#[zrl=%s]%s[/zrl]', $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
// $obj = parse_xml_string($xmlhead.$item['obj']);
2012-01-25 00:23:30 +00:00
if(strlen($obj->id)) {
$r = q("select * from item where mid = '%s' and uid = %d limit 1",
2012-01-25 00:23:30 +00:00
dbesc($obj->id),
intval($item['uid'])
);
if(count($r) && $r[0]['plink']) {
$target = $r[0];
$Bname = $target['author-name'];
$Blink = $target['author-link'];
$A = '[zrl=' . zid($Alink) . ']' . $Aname . '[/zrl]';
$B = '[zrl=' . zid($Blink) . ']' . $Bname . '[/zrl]';
$P = '[zrl=' . $target['plink'] . ']' . t('post/item') . '[/zrl]';
2012-01-25 00:23:30 +00:00
$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;
if(strpos($item['body'],'[zrl') !== false) {
if(preg_match_all('/@\[zrl=(.*?)\]/is',$item['body'],$matches,PREG_SET_ORDER)) {
2013-02-09 11:40:56 +00:00
foreach($matches as $mtch) {
if(! strpos($mtch[1],'zid='))
$item['body'] = str_replace($mtch[0],'@[zrl=' . zid($mtch[1]). ']',$item['body']);
2013-02-09 11:40:56 +00:00
}
2012-03-30 04:08:10 +00:00
}
}
if(strpos($item['body'],'[zmg') !== false) {
2013-02-09 11:40:56 +00:00
// add zid's to public images
if(preg_match_all('/\[zrl=(.*?)\/photos\/(.*?)\/image\/(.*?)\]\[zmg(.*?)\]h(.*?)\[\/zmg\]\[\/zrl\]/is',$item['body'],$matches,PREG_SET_ORDER)) {
2013-02-09 11:40:56 +00:00
foreach($matches as $mtch) {
$item['body'] = str_replace($mtch[0],'[zrl=' . zid( $mtch[1] . '/photos/' . $mtch[2] . '/image/' . $mtch[3]) . '][zmg' . $mtch[4] . ']h' . $mtch[5] . '[/zmg][/zrl]',$item['body']);
2013-02-09 11:40:56 +00:00
}
}
}
*/
2011-04-18 15:37:02 +00:00
}
/**
* @brief Count the total of comments on this item and its desendants.
*
* @param array $item an assoziative item-array which provides:
* * \e array \b children
* @return number
*/
2017-03-24 04:49:20 +00:00
function count_descendants($item) {
$total = count($item['children']);
2017-03-24 04:49:20 +00:00
if($total > 0) {
foreach($item['children'] as $child) {
if(! visible_activity($child))
$total --;
$total += count_descendants($child);
}
}
return $total;
}
/**
* @brief Check if the activity of the item is visible.
*
* likes (etc.) can apply to other things besides posts. Check if they are post
2015-08-27 00:49:57 +00:00
* children, in which case we handle them specially. Activities which are unrecognised
* as having special meaning and hidden will be treated as posts or comments and visible
* in the stream.
*
* @param array $item
* @return boolean
*/
function visible_activity($item) {
2018-07-17 06:40:09 +00:00
$hidden_activities = [ ACTIVITY_LIKE, ACTIVITY_DISLIKE, ACTIVITY_POLLRESPONSE ];
if(intval($item['item_notshown']))
return false;
2015-08-27 00:49:57 +00:00
2017-03-24 04:49:20 +00:00
foreach($hidden_activities as $act) {
if((activity_match($item['verb'], $act)) && ($item['mid'] != $item['parent_mid'])) {
return false;
}
}
2018-07-18 00:30:00 +00:00
if(in_array($item['obj_type'],[ 'Event', 'Invite' ]) && in_array($item['verb'], [ 'Accept', 'Reject', 'TentativeAccept', 'TentativeReject', 'Ignore' ])) {
return false;
2018-07-17 06:40:09 +00:00
}
2016-10-25 23:21:56 +00:00
return true;
}
/**
* @brief "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.
*
* @param array $items
* @param string $mode
* @param boolean $update
* @param string $page_mode default traditional
* @param string $prepared_item
* @return string
*/
function conversation($items, $mode, $update, $page_mode = 'traditional', $prepared_item = '') {
$content_html = '';
$o = '';
require_once('bbcode.php');
2015-01-29 04:56:04 +00:00
$ssl_state = ((local_channel()) ? true : false);
2012-03-15 04:20:20 +00:00
if (local_channel())
2015-01-29 04:56:04 +00:00
load_pconfig(local_channel(),'');
$profile_owner = 0;
$page_writeable = false;
$live_update_div = '';
$jsreload = '';
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 ' : '');
$preview_lbl = t('This is an unsaved preview');
2012-01-10 04:03:00 +00:00
if (in_array($mode, [ 'network', 'pubstream'])) {
2013-02-09 11:40:56 +00:00
2015-01-29 04:56:04 +00:00
$profile_owner = local_channel();
$page_writeable = ((local_channel()) ? true : false);
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']
2016-03-31 23:06:03 +00:00
. "; var netargs = '" . substr(App::$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'] : '')
. ((x($_GET,'uri')) ? '&uri=' . $_GET['uri'] : '')
2018-06-07 21:24:36 +00:00
. ((x($_GET,'pf')) ? '&pf=' . $_GET['pf'] : '')
2016-03-31 23:06:03 +00:00
. "'; var profile_page = " . App::$pager['page'] . "; </script>\r\n";
}
2011-04-11 06:01:38 +00:00
}
2017-11-24 14:01:34 +00:00
elseif ($mode === 'hq') {
$profile_owner = local_channel();
$page_writeable = true;
$live_update_div = '<div id="live-hq"></div>' . "\r\n";
}
elseif ($mode === 'channel') {
2016-03-31 23:06:03 +00:00
$profile_owner = App::$profile['profile_uid'];
2015-01-29 04:56:04 +00:00
$page_writeable = ($profile_owner == local_channel());
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"
2016-03-31 23:06:03 +00:00
. "<script> var profile_uid = " . App::$profile['profile_uid']
. "; var netargs = '?f='; var profile_page = " . App::$pager['page'] . "; </script>\r\n";
}
}
2011-05-20 08:15:02 +00:00
}
elseif ($mode === 'cards') {
$profile_owner = App::$profile['profile_uid'];
$page_writeable = ($profile_owner == local_channel());
$live_update_div = '<div id="live-cards"></div>' . "\r\n"
. "<script> var profile_uid = " . App::$profile['profile_uid']
. "; var netargs = '?f='; var profile_page = " . App::$pager['page'] . "; </script>\r\n";
$jsreload = $_SESSION['return_url'];
}
2017-11-22 23:39:06 +00:00
elseif ($mode === 'articles') {
$profile_owner = App::$profile['profile_uid'];
$page_writeable = ($profile_owner == local_channel());
$live_update_div = '<div id="live-articles"></div>' . "\r\n"
. "<script> var profile_uid = " . App::$profile['profile_uid']
. "; var netargs = '?f='; var profile_page = " . App::$pager['page'] . "; </script>\r\n";
$jsreload = $_SESSION['return_url'];
}
elseif ($mode === 'display') {
2015-01-29 04:56:04 +00:00
$profile_owner = local_channel();
$page_writeable = false;
$live_update_div = '<div id="live-display"></div>' . "\r\n";
}
elseif ($mode === 'page') {
2016-03-31 23:06:03 +00:00
$profile_owner = App::$profile['uid'];
2015-01-29 04:56:04 +00:00
$page_writeable = ($profile_owner == local_channel());
$live_update_div = '<div id="live-page"></div>' . "\r\n";
}
elseif ($mode === 'search') {
$live_update_div = '<div id="live-search"></div>' . "\r\n";
}
elseif ($mode === 'moderate') {
$profile_owner = local_channel();
}
elseif ($mode === 'photos') {
2017-08-10 00:35:03 +00:00
$profile_owner = App::$profile['profile_uid'];
2015-01-29 04:56:04 +00:00
$page_writeable = ($profile_owner == local_channel());
$live_update_div = '<div id="live-photos"></div>' . "\r\n";
// for photos we've already formatted the top-level item (the photo)
2016-03-31 23:06:03 +00:00
$content_html = App::$data['photo_html'];
}
2012-07-25 05:06:21 +00:00
2015-01-29 04:56:04 +00:00
$page_dropping = ((local_channel() && local_channel() == $profile_owner) ? true : false);
if (! feature_enabled($profile_owner,'multi_delete'))
$page_dropping = false;
$uploading = false;
if(local_channel()) {
$cur_channel = App::get_channel();
if($cur_channel['channel_allow_cid'] === '' && $cur_channel['channel_allow_gid'] === ''
&& $cur_channel['channel_deny_cid'] === '' && $cur_channel['channel_deny_gid'] === ''
&& intval(\Zotlabs\Access\PermissionLimits::Get(local_channel(),'view_storage')) === PERMS_PUBLIC) {
$uploading = true;
}
}
2016-03-31 23:06:03 +00:00
$channel = App::get_channel();
$observer = App::get_observer();
2012-07-25 05:06:21 +00:00
if($update)
$return_url = $_SESSION['return_url'];
else
2016-03-31 23:06:03 +00:00
$return_url = $_SESSION['return_url'] = App::$query_string;
2011-04-11 06:01:38 +00:00
2015-01-29 04:56:04 +00:00
load_contact_links(local_channel());
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'];
$conv_responses = [
'like' => [ 'title' => t('Likes','title') ],
'dislike' => [ 'title' => t('Dislikes','title') ],
'attendyes' => [ 'title' => t('Attending','title') ],
'attendno' => [ 'title' => t('Not attending','title') ],
'attendmaybe' => [ 'title' => t('Might attend' ,'title') ]
];
2015-02-10 22:47:09 +00:00
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(in_array($mode, [ 'network-new', 'search', 'community', 'moderate' ])) {
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 = 'search_item.tpl';
2011-04-11 22:45:19 +00:00
foreach($items as $item) {
$x = [
'mode' => $mode,
'item' => $item
];
call_hooks('stream_item',$x);
if($x['item']['blocked'])
continue;
$item = $x['item'];
2011-10-03 07:38:58 +00:00
$threadsid++;
$comment = '';
$owner_url = '';
$owner_photo = '';
$owner_name = '';
$sparkle = '';
$is_new = false;
if($mode === 'search' || $mode === 'community') {
if(((activity_match($item['verb'],ACTIVITY_LIKE)) || (activity_match($item['verb'],ACTIVITY_DISLIKE)))
&& ($item['id'] != $item['parent']))
continue;
}
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);
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
2018-06-07 21:24:36 +00:00
$star = array(
'toggle' => t("Toggle Star Status"),
'isstarred' => ((intval($item['item_starred'])) ? true : false),
);
$lock = (($item['item_private'] || strlen($item['allow_cid']) || strlen($item['allow_gid']) || strlen($item['deny_cid']) || strlen($item['deny_gid']))
? t('Private Message')
: false
);
$likebuttons = false;
$shareable = false;
2011-05-25 03:41:29 +00:00
2015-01-23 02:41:10 +00:00
$verified = (intval($item['item_verified']) ? t('Message signature validated') : '');
$forged = ((($item['sig']) && (! intval($item['item_verified']))) ? t('Message signature incorrect') : '');
2014-10-16 23:19:19 +00:00
2013-10-03 04:04:48 +00:00
$unverified = '';
// $tags=array();
// $terms = get_terms_oftype($item['term'],array(TERM_HASHTAG,TERM_MENTION,TERM_UNKNOWN,TERM_COMMUNITYTAG));
// if(count($terms))
// foreach($terms as $tag)
// $tags[] = format_term_for_display($tag);
2012-07-17 04:20:04 +00:00
2011-05-25 03:45:02 +00:00
$body = prepare_body($item,true);
$has_tags = (($body['tags'] || $body['categories'] || $body['mentions'] || $body['attachments'] || $body['folders']) ? true : false);
if(strcmp(datetime_convert('UTC','UTC',$item['created']),datetime_convert('UTC','UTC','now - 12 hours')) > 0)
$is_new = true;
$conv_link_mid = (($mode == 'moderate') ? $item['parent_mid'] : $item['mid']);
2017-11-22 23:39:06 +00:00
$conv_link = ((in_array($item['item_type'],[ ITEM_TYPE_CARD, ITEM_TYPE_ARTICLE] )) ? $item['plink'] : z_root() . '/display/' . gen_link_id($conv_link_mid));
2017-08-25 01:15:19 +00:00
$tmp_item = array(
'template' => $tpl,
'toplevel' => 'toplevel_item',
2017-09-06 01:32:37 +00:00
'item_type' => intval($item['item_type']),
'mode' => $mode,
'approve' => t('Approve'),
'delete' => t('Delete'),
'preview_lbl' => $preview_lbl,
'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,
'thread_action_menu' => thread_action_menu($item,$mode),
'thread_author_menu' => thread_author_menu($item,$mode),
'name' => $profile_name,
'sparkle' => $sparkle,
'lock' => $lock,
'thumb' => $profile_avatar,
'title' => $item['title'],
'body' => $body['html'],
2015-11-26 11:26:27 +00:00
'event' => $body['event'],
'photo' => $body['photo'],
'tags' => $body['tags'],
'categories' => $body['categories'],
'mentions' => $body['mentions'],
'attachments' => $body['attachments'],
'folders' => $body['folders'],
2013-10-03 04:04:48 +00:00
'verified' => $verified,
'unverified' => $unverified,
2014-10-16 23:19:19 +00:00
'forged' => $forged,
'txt_cats' => t('Categories:'),
'txt_folders' => t('Filed under:'),
2017-12-14 21:10:56 +00:00
'has_cats' => (($body['categories']) ? 'true' : ''),
'has_folders' => (($body['folders']) ? 'true' : ''),
'text' => strip_tags($body['html']),
'ago' => relative_date($item['created']),
'app' => $item['app'],
'str_app' => sprintf( t('from %s'), $item['app']),
'isotime' => datetime_convert('UTC', date_default_timezone_get(), $item['created'], 'c'),
'localtime' => datetime_convert('UTC', date_default_timezone_get(), $item['created'], 'r'),
'editedtime' => (($item['edited'] != $item['created']) ? sprintf( t('last edited: %s'), datetime_convert('UTC', date_default_timezone_get(), $item['edited'], 'r')) : ''),
2016-09-26 00:06:13 +00:00
'expiretime' => (($item['expires'] > NULL_DATE) ? sprintf( t('Expires: %s'), datetime_convert('UTC', date_default_timezone_get(), $item['expires'], 'r')):''),
'location' => $location,
'divider' => false,
'indent' => '',
'owner_name' => $owner_name,
'owner_url' => $owner_url,
'owner_photo' => $owner_photo,
2014-01-10 00:23:58 +00:00
'plink' => get_plink($item,false),
'edpost' => false,
2018-06-07 21:24:36 +00:00
'star' => ((feature_enabled(local_channel(),'star_posts')) ? $star : ''),
'drop' => $drop,
'vote' => $likebuttons,
'like' => '',
'dislike' => '',
'comment' => '',
2017-08-25 01:15:19 +00:00
'conv' => (($preview) ? '' : array('href'=> $conv_link, 'title'=> t('View in context'))),
'previewing' => $previewing,
'wait' => t('Please wait'),
2012-08-12 01:54:23 +00:00
'thread_level' => 1,
'has_tags' => $has_tags,
'is_new' => $is_new
);
$arr = array('item' => $item, 'output' => $tmp_item);
call_hooks('display_item', $arr);
// $threads[$threadsid]['id'] = $item['item_id'];
$threads[] = $arr['output'];
}
}
else {
// Normal View
// logger('conv: items: ' . print_r($items,true));
$conv = new Zotlabs\Lib\ThreadStream($mode, $preview, $uploading, $prepared_item);
// In the display mode we don't have a profile owner.
if($mode === 'display' && $items)
$conv->set_profile_owner($items[0]['uid']);
// 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) {
2013-08-21 02:51:58 +00:00
// Check for any blocked authors
$x = [ 'mode' => $mode, 'item' => $item ];
call_hooks('stream_item',$x);
if($x['item']['blocked'])
continue;
2013-08-21 02:51:58 +00:00
$item = $x['item'];
2013-08-21 02:51:58 +00:00
2015-02-10 22:47:09 +00:00
builtin_activity_puller($item, $conv_responses);
if(! visible_activity($item)) {
continue;
}
2016-08-09 23:59:35 +00:00
$item['pagedrop'] = $page_dropping;
if($item['id'] == $item['parent']) {
2014-11-17 04:33:50 +00:00
$item_object = new Zotlabs\Lib\ThreadItem($item);
$conv->add_thread($item_object);
if(($page_mode === 'list') || ($page_mode === 'pager_list')) {
$item_object->set_template('conv_list.tpl');
2014-11-17 04:23:22 +00:00
$item_object->set_display_mode('list');
}
if($mode === 'cards' || $mode === 'articles') {
$item_object->set_reload($jsreload);
}
}
}
2014-11-17 04:33:50 +00:00
$threads = $conv->get_template_data($conv_responses);
if(!$threads) {
logger('[ERROR] conversation : Failed to get template data.', LOGGER_DEBUG);
$threads = array();
}
}
}
if(in_array($page_mode, [ 'traditional', 'preview', 'pager_list'] )) {
$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;
}
// if($page_mode === 'preview')
// logger('preview: ' . print_r($threads,true));
2013-01-06 12:07:10 +00:00
// Do not un-comment if smarty3 is in use
2013-02-05 07:54:59 +00:00
// logger('page_template: ' . $page_template);
// logger('nouveau: ' . print_r($threads,true));
$o .= replace_macros($page_template, array(
2016-03-31 05:13:24 +00:00
'$baseurl' => z_root(),
'$photo_item' => $content_html,
'$live_update' => $live_update_div,
'$remove' => t('remove'),
'$mode' => $mode,
2016-03-31 23:06:03 +00:00
'$user' => App::$user,
'$threads' => $threads,
'$wait' => t('Loading...'),
'$dropping' => ($page_dropping?t('Delete Selected Items'):False),
));
return $o;
}
function best_link_url($item) {
2011-05-06 13:30:33 +00:00
$best_url = '';
$sparkle = false;
$clean_url = normalise_link($item['author-link']);
2015-01-29 04:56:04 +00:00
if((local_channel()) && (local_channel() == $item['uid'])) {
2016-03-31 23:06:03 +00:00
if(isset(App::$contacts) && x(App::$contacts,$clean_url)) {
if(App::$contacts[$clean_url]['network'] === NETWORK_DFRN) {
$best_url = z_root() . '/redir/' . App::$contacts[$clean_url]['id'];
2011-05-06 13:30:33 +00:00
$sparkle = true;
}
2011-05-06 13:30:33 +00:00
else
2016-03-31 23:06:03 +00:00
$best_url = App::$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;
}
function thread_action_menu($item,$mode = '') {
$menu = [];
if((local_channel()) && local_channel() == $item['uid']) {
$menu[] = [
'menu' => 'view_source',
'title' => t('View Source'),
2018-04-23 09:37:39 +00:00
'icon' => 'code',
'action' => 'viewsrc(' . $item['id'] . '); return false;',
'href' => '#'
];
if(! in_array($mode, [ 'network-new', 'search', 'community'])) {
if($item['parent'] == $item['id'] && (get_observer_hash() != $item['author_xchan'])) {
$menu[] = [
'menu' => 'follow_thread',
'title' => t('Follow Thread'),
'icon' => 'plus',
'action' => 'dosubthread(' . $item['id'] . '); return false;',
'href' => '#'
];
}
$menu[] = [
'menu' => 'unfollow_thread',
'title' => t('Unfollow Thread'),
'icon' => 'minus',
'action' => 'dounsubthread(' . $item['id'] . '); return false;',
'href' => '#'
];
}
}
$args = [ 'item' => $item, 'mode' => $mode, 'menu' => $menu ];
call_hooks('thread_action_menu', $args);
return $args['menu'];
}
function author_is_pmable($xchan, $abook) {
$x = [ 'xchan' => $xchan, 'abook' => $abook, 'result' => 'unset' ];
call_hooks('author_is_pmable',$x);
if($x['result'] !== 'unset')
return $x['result'];
2018-07-09 05:28:15 +00:00
if($xchan['xchan_network'] === 'zot6' && get_observer_hash())
return true;
return false;
}
function thread_author_menu($item, $mode = '') {
$menu = [];
$local_channel = local_channel();
if($local_channel) {
if(! count(App::$contacts))
load_contact_links($local_channel);
$channel = App::get_channel();
$channel_hash = (($channel) ? $channel['channel_hash'] : '');
}
$profile_link = chanlink_hash($item['author_xchan']);
$contact = false;
if($channel['channel_hash'] !== $item['author_xchan']) {
if(App::$contacts && array_key_exists($item['author_xchan'],App::$contacts)) {
$contact = App::$contacts[$item['author_xchan']];
}
else {
if($local_channel && $item['author']['xchan_addr'] && (! in_array($item['author']['xchan_network'],[ 'rss', 'anon','unknown' ]))) {
$follow_url = z_root() . '/follow/?f=&url=' . urlencode($item['author']['xchan_addr']) . '&interactive=0';
}
}
if($item['uid'] > 0 && author_is_pmable($item['author'],$contact)) {
$pm_url = z_root() . '/mail/new/?f=&hash=' . urlencode($item['author_xchan']);
}
}
if($contact) {
$poke_link = z_root() . '/poke/?f=&c=' . $contact['abook_id'];
if (! intval($contact['abook_self']))
$contact_url = z_root() . '/connedit/' . $contact['abook_id'];
$posts_link = z_root() . '/network/?cid=' . $contact['abook_id'];
$clean_url = normalise_link($item['author-link']);
}
if($profile_link) {
$menu[] = [
'menu' => 'view_profile',
'title' => t('View Profile'),
'icon' => 'fw',
'action' => '',
'href' => $profile_link
];
}
if($posts_link) {
$menu[] = [
'menu' => 'view_posts',
'title' => t('Recent Activity'),
'icon' => 'fw',
'action' => '',
'href' => $posts_link
];
}
if($follow_url) {
$menu[] = [
'menu' => 'follow',
'title' => t('Connect'),
'icon' => 'fw',
'action' => 'doFollowAuthor(\'' . $follow_url . '\'); return false;',
'href' => '#',
];
}
if($contact_url) {
$menu[] = [
'menu' => 'connedit',
'title' => t('Edit Connection'),
'icon' => 'fw',
'action' => '',
'href' => $contact_url
];
}
if($pm_url) {
$menu[] = [
'menu' => 'prv_message',
'title' => t('Message'),
'icon' => 'fw',
'action' => '',
'href' => $pm_url
];
}
$args = [ 'item' => $item, 'mode' => $mode, 'menu' => $menu ];
call_hooks('thread_author_menu', $args);
return $args['menu'];
}
/**
2015-02-10 22:47:09 +00:00
* @brief Checks item to see if it is one of the builtin activities (like/dislike, event attendance, consensus items, etc.)
*
2015-02-10 22:47:09 +00:00
* Increments the count of each matching activity and adds a link to the author as needed.
*
* @param array $item
2015-02-10 22:47:09 +00:00
* @param array &$conv_responses (already created with builtin activity structure)
*/
2015-02-10 22:47:09 +00:00
function builtin_activity_puller($item, &$conv_responses) {
// if this item is a post or comment there's nothing for us to do here, just return.
if(in_array($item['verb'],['Create']))
return;
2015-02-10 22:47:09 +00:00
foreach($conv_responses as $mode => $v) {
2015-02-10 22:47:09 +00:00
$url = '';
2014-09-20 23:21:49 +00:00
2015-02-10 22:47:09 +00:00
switch($mode) {
case 'like':
$verb = ACTIVITY_LIKE;
break;
case 'dislike':
$verb = ACTIVITY_DISLIKE;
break;
case 'attendyes':
$verb = 'Accept';
2015-02-10 22:47:09 +00:00
break;
case 'attendno':
$verb = 'Reject';
2015-02-10 22:47:09 +00:00
break;
case 'attendmaybe':
$verb = 'TentativeAccept';
2015-02-10 22:47:09 +00:00
break;
default:
return;
break;
}
2012-06-23 11:44:48 +00:00
2015-02-10 22:47:09 +00:00
if((activity_match($item['verb'], $verb)) && ($item['id'] != $item['parent'])) {
2015-02-10 22:47:09 +00:00
$name = (($item['author']['xchan_name']) ? $item['author']['xchan_name'] : t('Unknown'));
$url = (($item['author_xchan'] && $item['author']['xchan_photo_s'])
2018-06-01 18:59:28 +00:00
? '<a class="dropdown-item" href="' . chanlink_hash($item['author_xchan']) . '">' . '<img class="menu-img-1" src="' . zid($item['author']['xchan_photo_s']) . '" alt="' . urlencode($name) . '" /> ' . $name . '</a>'
: '<a class="dropdown-item" href="#" class="disabled">' . $name . '</a>'
2015-02-10 22:47:09 +00:00
);
2012-06-23 11:44:48 +00:00
2015-02-10 22:47:09 +00:00
if(! $item['thr_parent'])
$item['thr_parent'] = $item['parent_mid'];
2015-02-10 22:47:09 +00:00
if(! ((isset($conv_responses[$mode][$item['thr_parent'] . '-l']))
&& (is_array($conv_responses[$mode][$item['thr_parent'] . '-l']))))
$conv_responses[$mode][$item['thr_parent'] . '-l'] = array();
2014-09-20 23:21:49 +00:00
2015-02-10 22:47:09 +00:00
// only list each unique author once
if(in_array($url,$conv_responses[$mode][$item['thr_parent'] . '-l']))
continue;
2014-09-20 23:21:49 +00:00
2015-02-10 22:47:09 +00:00
if(! isset($conv_responses[$mode][$item['thr_parent']]))
$conv_responses[$mode][$item['thr_parent']] = 1;
else
$conv_responses[$mode][$item['thr_parent']] ++;
$conv_responses[$mode][$item['thr_parent'] . '-l'][] = $url;
if(get_observer_hash() && get_observer_hash() === $item['author_xchan']) {
$conv_responses[$mode][$item['thr_parent'] . '-m'] = true;
}
// there can only be one activity verb per item so if we found anything, we can stop looking
return;
2015-02-10 22:47:09 +00:00
}
}
}
/**
* @brief Format the like/dislike text for a profile item.
*
* @param int $cnt number of people who like/dislike the item
* @param array $arr array of pre-linked names of likers/dislikers
* @param string $type one of 'like, 'dislike'
* @param int $id item id
* @return string formatted text
*/
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') ?
2013-11-28 11:24:37 +00:00
sprintf( tt('<span %1$s>%2$d people</span> like this.','<span %1$s>%2$d people</span> like this.',$cnt), $spanatts, $cnt)
2012-09-11 05:00:56 +00:00
:
2013-11-28 11:24:37 +00:00
sprintf( tt('<span %1$s>%2$d people</span> don\'t like this.','<span %1$s>%2$d people</span> don\'t like this.',$cnt), $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)
2013-11-28 11:24:37 +00:00
$str .= sprintf( tt(', and %d other people',', and %d other people',$total - MAX_LIKERS), $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
2015-11-13 01:47:38 +00:00
/**
* This is our general purpose content editor.
* It was once nicknamed "jot" and you may see references to "jot" littered throughout the code.
* They are referring to the content editor or components thereof.
*/
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
$c = channelx_by_n($x['profile_uid']);
if($c && $c['channel_moved'])
return $o;
$plaintext = true;
2011-04-20 12:48:12 +00:00
2018-07-09 05:28:15 +00:00
$feature_voting = false; // feature_enabled($x['profile_uid'], 'consensus_tools');
if(x($x, 'hide_voting'))
$feature_voting = false;
$feature_nocomment = feature_enabled($x['profile_uid'], 'disable_comments');
if(x($x, 'disable_comments'))
$feature_nocomment = false;
$feature_expire = ((feature_enabled($x['profile_uid'], 'content_expire') && (! $webpage)) ? true : false);
if(x($x, 'hide_expire'))
$feature_expire = false;
$feature_future = ((feature_enabled($x['profile_uid'], 'delayed_posting') && (! $webpage)) ? true : false);
if(x($x, 'hide_future'))
$feature_future = false;
$geotag = (($x['allow_location']) ? replace_macros(get_markup_template('jot_geotag.tpl'), array()) : '');
$setloc = t('Set your location');
$clearloc = ((get_pconfig($x['profile_uid'], 'system', 'use_browser_location')) ? t('Clear browser location') : '');
if(x($x, 'hide_location'))
$geotag = $setloc = $clearloc = '';
2015-02-11 03:10:18 +00:00
2016-05-07 21:05:48 +00:00
$mimetype = ((x($x,'mimetype')) ? $x['mimetype'] : 'text/bbcode');
$mimeselect = ((x($x,'mimeselect')) ? $x['mimeselect'] : false);
if($mimeselect)
$mimeselect = mimetype_select($x['profile_uid'], $mimetype);
else
$mimeselect = '<input type="hidden" name="mimetype" value="' . $mimetype . '" />';
2016-05-07 21:05:48 +00:00
$weblink = (($mimetype === 'text/bbcode') ? t('Insert web link') : false);
if(x($x, 'hide_weblink'))
2016-05-07 21:05:48 +00:00
$weblink = false;
$embedPhotos = t('Embed (existing) photo from your photo albums');
2016-05-07 21:05:48 +00:00
$writefiles = (($mimetype === 'text/bbcode') ? perm_is_allowed($x['profile_uid'], get_observer_hash(), 'write_storage') : false);
if(x($x, 'hide_attach'))
$writefiles = false;
$layout = ((x($x,'layout')) ? $x['layout'] : '');
$layoutselect = ((x($x,'layoutselect')) ? $x['layoutselect'] : false);
if($layoutselect)
$layoutselect = layout_select($x['profile_uid'], $layout);
else
$layoutselect = '<input type="hidden" name="layout_mid" value="' . $layout . '" />';
if(array_key_exists('channel_select',$x) && $x['channel_select']) {
require_once('include/channel.php');
$id_select = identity_selector();
}
else
$id_select = '';
2013-09-03 00:48:48 +00:00
$webpage = ((x($x,'webpage')) ? $x['webpage'] : '');
2018-05-20 07:23:44 +00:00
$reset = ((x($x,'reset')) ? $x['reset'] : '');
$feature_auto_save_draft = ((feature_enabled($x['profile_uid'], 'auto_save_draft')) ? "true" : "false");
$tpl = get_markup_template('jot-header.tpl');
2016-03-31 23:06:03 +00:00
App::$page['htmlhead'] .= replace_macros($tpl, array(
2016-03-31 05:13:24 +00:00
'$baseurl' => z_root(),
2018-07-31 06:55:09 +00:00
'$webpage' => $webpage,
'$editselect' => (($plaintext) ? 'none' : '/(profile-jot-text|prvmail-text)/'),
'$pretext' => ((x($x,'pretext')) ? $x['pretext'] : ''),
'$geotag' => $geotag,
'$nickname' => $x['nickname'],
'$linkurl' => t('Please enter a link URL:'),
'$term' => t('Tag term:'),
'$whereareu' => t('Where are you right now?'),
2016-04-09 10:16:42 +00:00
'$editor_autocomplete'=> ((x($x,'editor_autocomplete')) ? $x['editor_autocomplete'] : ''),
'$bbco_autocomplete'=> ((x($x,'bbco_autocomplete')) ? $x['bbco_autocomplete'] : ''),
'$modalchooseimages' => t('Choose images to embed'),
'$modalchoosealbum' => t('Choose an album'),
'$modaldiffalbum' => t('Choose a different album...'),
'$modalerrorlist' => t('Error getting album list'),
'$modalerrorlink' => t('Error getting photo link'),
'$modalerroralbum' => t('Error getting album'),
'$nocomment_enabled' => t('Comments enabled'),
'$nocomment_disabled' => t('Comments disabled'),
'$auto_save_draft' => $feature_auto_save_draft,
2018-05-20 07:23:44 +00:00
'$reset' => $reset
));
2011-04-20 12:48:12 +00:00
$tpl = get_markup_template('jot.tpl');
2012-09-11 05:00:56 +00:00
2014-12-17 09:01:22 +00:00
$preview = t('Preview');
if(x($x, 'hide_preview'))
$preview = '';
$defexpire = ((($z = get_pconfig($x['profile_uid'], 'system', 'default_post_expire')) && (! $webpage)) ? $z : '');
if($defexpire)
$defexpire = datetime_convert('UTC',date_default_timezone_get(),$defexpire,'Y-m-d H:i');
2015-10-25 23:54:18 +00:00
$defpublish = ((($z = get_pconfig($x['profile_uid'], 'system', 'default_post_publish')) && (! $webpage)) ? $z : '');
if($defpublish)
$defpublish = datetime_convert('UTC',date_default_timezone_get(),$defpublish,'Y-m-d H:i');
$cipher = get_pconfig($x['profile_uid'], 'system', 'default_cipher');
2013-11-12 02:42:49 +00:00
if(! $cipher)
$cipher = 'aes256';
2017-08-24 00:46:20 +00:00
if(array_key_exists('catsenabled',$x))
$catsenabled = $x['catsenabled'];
else
$catsenabled = ((feature_enabled($x['profile_uid'], 'categories') && (! $webpage)) ? 'categories' : '');
// avoid illegal offset errors
if(! array_key_exists('permissions',$x))
$x['permissions'] = [ 'allow_cid' => '', 'allow_gid' => '', 'deny_cid' => '', 'deny_gid' => '' ];
$jotplugins = '';
call_hooks('jot_tool', $jotplugins);
$jotnets = '';
if(x($x,'jotnets')) {
call_hooks('jot_networks', $jotnets);
}
$sharebutton = (x($x,'button') ? $x['button'] : t('Share'));
$placeholdtext = (x($x,'content_label') ? $x['content_label'] : $sharebutton);
$o .= replace_macros($tpl, array(
2016-03-31 23:06:03 +00:00
'$return_path' => ((x($x, 'return_path')) ? $x['return_path'] : App::$query_string),
2016-03-31 05:13:24 +00:00
'$action' => z_root() . '/item',
'$share' => $sharebutton,
'$placeholdtext' => $placeholdtext,
2013-09-03 00:48:48 +00:00
'$webpage' => $webpage,
2015-04-15 07:20:27 +00:00
'$placeholdpagetitle' => ((x($x,'ptlabel')) ? $x['ptlabel'] : t('Page link name')),
'$pagetitle' => (x($x,'pagetitle') ? $x['pagetitle'] : ''),
'$id_select' => $id_select,
'$id_seltext' => t('Post as'),
'$writefiles' => $writefiles,
'$bold' => t('Bold'),
'$italic' => t('Italic'),
'$underline' => t('Underline'),
'$quote' => t('Quote'),
'$code' => t('Code'),
'$attach' => t('Attach/Upload file'),
'$weblink' => $weblink,
'$embedPhotos' => $embedPhotos,
'$embedPhotosModalTitle' => t('Embed an image from your albums'),
'$embedPhotosModalCancel' => t('Cancel'),
'$embedPhotosModalOK' => t('OK'),
'$setloc' => $setloc,
2015-02-11 03:10:18 +00:00
'$voting' => t('Toggle voting'),
'$feature_voting' => $feature_voting,
'$consensus' => ((array_key_exists('item',$x)) ? $x['item']['item_consensus'] : 0),
'$nocommenttitle' => t('Disable comments'),
'$nocommenttitlesub' => t('Toggle comments'),
'$feature_nocomment' => $feature_nocomment,
'$nocomment' => ((array_key_exists('item',$x)) ? $x['item']['item_nocomment'] : 0),
'$clearloc' => $clearloc,
'$title' => ((x($x, 'title')) ? htmlspecialchars($x['title'], ENT_COMPAT,'UTF-8') : ''),
2015-04-25 20:35:24 +00:00
'$placeholdertitle' => ((x($x, 'placeholdertitle')) ? $x['placeholdertitle'] : t('Title (optional)')),
2017-08-24 00:46:20 +00:00
'$catsenabled' => $catsenabled,
'$category' => ((x($x, 'category')) ? $x['category'] : ''),
'$placeholdercategory' => t('Categories (optional, comma-separated list)'),
'$permset' => t('Permission settings'),
'$ptyp' => ((x($x, 'ptyp')) ? $x['ptyp'] : ''),
'$content' => ((x($x,'body')) ? htmlspecialchars($x['body'], ENT_COMPAT,'UTF-8') : ''),
'$attachment' => ((x($x, 'attachment')) ? $x['attachment'] : ''),
'$post_id' => ((x($x, 'post_id')) ? $x['post_id'] : ''),
'$defloc' => $x['default_location'],
'$visitor' => $x['visitor'],
'$lockstate' => $x['lockstate'],
'$acl' => $x['acl'],
2016-08-03 19:16:57 +00:00
'$allow_cid' => acl2json($x['permissions']['allow_cid']),
'$allow_gid' => acl2json($x['permissions']['allow_gid']),
'$deny_cid' => acl2json($x['permissions']['deny_cid']),
'$deny_gid' => acl2json($x['permissions']['deny_gid']),
'$mimeselect' => $mimeselect,
2013-09-03 03:25:33 +00:00
'$layoutselect' => $layoutselect,
'$showacl' => ((array_key_exists('showacl', $x)) ? $x['showacl'] : true),
'$bang' => $x['bang'],
'$profile_uid' => $x['profile_uid'],
'$preview' => $preview,
'$source' => ((x($x, 'source')) ? $x['source'] : ''),
'$jotplugins' => $jotplugins,
'$jotnets' => $jotnets,
'$jotnets_label' => t('Other networks and post services'),
'$defexpire' => $defexpire,
'$feature_expire' => $feature_expire,
'$expires' => t('Set expiration date'),
2015-10-25 23:54:18 +00:00
'$defpublish' => $defpublish,
'$feature_future' => $feature_future,
2015-10-25 23:54:18 +00:00
'$future_txt' => t('Set publish date'),
2018-07-09 05:28:15 +00:00
'$feature_encrypt' => false, // ((feature_enabled($x['profile_uid'], 'content_encrypt') && (! $webpage)) ? true : false),
2013-11-11 07:19:44 +00:00
'$encrypt' => t('Encrypt text'),
2013-11-12 02:42:49 +00:00
'$cipher' => $cipher,
2013-12-22 13:21:57 +00:00
'$expiryModalOK' => t('OK'),
'$expiryModalCANCEL' => t('Cancel'),
'$expanded' => ((x($x, 'expanded')) ? $x['expanded'] : false),
'$bbcode' => ((x($x, 'bbcode')) ? $x['bbcode'] : false),
2018-05-20 07:23:44 +00:00
'$parent' => ((array_key_exists('parent',$x) && $x['parent']) ? $x['parent'] : 0),
'$reset' => $reset
));
2011-04-20 12:48:12 +00:00
if ($popup === true) {
$o = '<div id="jot-popup" style="display:none">' . $o . '</div>';
}
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_mid if thr_parent is not set
$thr_parent = $item['thr_parent'];
if($thr_parent == '')
$thr_parent = $item['parent_mid'];
if($thr_parent == $parent['mid']) {
$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) {
2017-12-04 07:56:01 +00:00
if($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;
2017-12-04 07:56:01 +00:00
if($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();
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');
2017-08-24 03:02:28 +00:00
elseif(stristr($order,'updated'))
usort($parents,'sort_thr_updated');
2013-07-30 03:31:02 +00:00
elseif(stristr($order,'ascending'))
usort($parents,'sort_thr_created_rev');
2012-01-03 00:54:37 +00:00
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']);
}
2017-08-24 03:02:28 +00:00
function sort_thr_updated($a,$b) {
2017-08-24 03:12:40 +00:00
$indexa = (($a['changed'] > $a['edited']) ? $a['changed'] : $a['edited']);
$indexb = (($b['changed'] > $b['edited']) ? $b['changed'] : $b['edited']);
return strcmp($indexb,$indexa);
2017-08-24 03:02:28 +00:00
}
2012-01-03 00:54:37 +00:00
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) ? zidify_links(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)
2014-04-06 19:14:24 +00:00
$location .= '&nbsp;<span class="smalltext">(' . $coord . ')</span>';
2012-02-09 23:02:59 +00:00
else
$location = '<span class="smalltext">' . $coord . '</span>';
}
2012-02-09 23:02:59 +00:00
return $location;
}
2013-01-15 09:32:11 +00:00
function prepare_page($item) {
2016-05-25 03:49:23 +00:00
$naked = 1;
// $naked = ((get_pconfig($item['uid'],'system','nakedpage')) ? 1 : 0);
2016-03-31 23:06:03 +00:00
$observer = App::get_observer();
//240 chars is the longest we can have before we start hitting problems with suhosin sites
$preview = substr(urlencode($item['body']), 0, 240);
2016-03-31 23:06:03 +00:00
$link = z_root() . '/' . App::$cmd;
if(array_key_exists('webpage',App::$layout) && array_key_exists('authored',App::$layout['webpage'])) {
if(App::$layout['webpage']['authored'] === 'none')
$naked = 1;
// ... other possible options
}
2014-06-16 02:21:32 +00:00
2014-06-16 02:25:16 +00:00
// prepare_body calls unobscure() as a side effect. Do it here so that
// the template will get passed an unobscured title.
$body = prepare_body($item, [ 'newwin' => false ]);
if(App::$page['template'] == 'none') {
$tpl = 'page_display_empty.tpl';
return replace_macros(get_markup_template($tpl), array(
'$body' => $body['html']
));
}
$tpl = get_pconfig($item['uid'], 'system', 'pagetemplate');
if (! $tpl)
$tpl = 'page_display.tpl';
return replace_macros(get_markup_template($tpl), array(
'$author' => (($naked) ? '' : $item['author']['xchan_name']),
'$auth_url' => (($naked) ? '' : zid($item['author']['xchan_url'])),
'$date' => (($naked) ? '' : datetime_convert('UTC', date_default_timezone_get(), $item['created'], 'Y-m-d H:i')),
'$title' => zidify_links(smilies(bbcode($item['title']))),
2015-10-15 18:57:05 +00:00
'$body' => $body['html'],
'$preview' => $preview,
'$link' => $link,
2013-01-15 09:32:11 +00:00
));
}
function network_tabs() {
2016-05-25 03:49:23 +00:00
$no_active='';
$starred_active = '';
$new_active = '';
$all_active = '';
$search_active = '';
$conv_active = '';
$spam_active = '';
$postord_active = '';
if(x($_GET,'new')) {
$new_active = 'active';
}
if(x($_GET,'search')) {
$search_active = 'active';
}
if(x($_GET,'star')) {
$starred_active = 'active';
}
if(x($_GET,'conv')) {
$conv_active = 'active';
}
if(x($_GET,'spam')) {
$spam_active = 'active';
}
if (($new_active == '')
&& ($starred_active == '')
&& ($conv_active == '')
&& ($search_active == '')
&& ($spam_active == '')) {
$no_active = 'active';
}
if ($no_active=='active' && x($_GET,'order')) {
switch($_GET['order']){
case 'post': $postord_active = 'active'; $no_active=''; break;
case 'comment' : $all_active = 'active'; $no_active=''; break;
}
}
if ($no_active=='active') $all_active='active';
2016-03-31 23:06:03 +00:00
$cmd = App::$cmd;
// tabs
$tabs = array();
2014-03-30 06:43:31 +00:00
$tabs[] = array(
'label' => t('Commented Order'),
'url'=>z_root() . '/' . $cmd . '?f=&order=comment' . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : '') . ((x($_GET,'gid')) ? '&gid=' . $_GET['gid'] : ''),
2014-03-30 06:43:31 +00:00
'sel'=>$all_active,
'title'=> t('Sort by Comment Date'),
);
2014-03-30 06:43:31 +00:00
$tabs[] = array(
'label' => t('Posted Order'),
'url'=>z_root() . '/' . $cmd . '?f=&order=post' . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : '') . ((x($_GET,'gid')) ? '&gid=' . $_GET['gid'] : ''),
2014-03-30 06:43:31 +00:00
'sel'=>$postord_active,
'title' => t('Sort by Post Date'),
);
2015-01-29 04:56:04 +00:00
if(feature_enabled(local_channel(),'personal_tab')) {
$tabs[] = array(
'label' => t('Personal'),
'url' => z_root() . '/' . $cmd . '?f=' . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : '') . '&conv=1',
'sel' => $conv_active,
'title' => t('Posts that mention or involve you'),
2014-03-30 06:43:31 +00:00
);
}
if(feature_enabled(local_channel(),'new_tab')) {
2014-03-30 06:43:31 +00:00
$tabs[] = array(
'label' => t('New'),
'url' => z_root() . '/' . $cmd . '?f=' . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : '') . '&new=1' . ((x($_GET,'gid')) ? '&gid=' . $_GET['gid'] : ''),
'sel' => $new_active,
'title' => t('Activity Stream - by date'),
2014-03-30 06:43:31 +00:00
);
}
2015-01-29 04:56:04 +00:00
if(feature_enabled(local_channel(),'star_posts')) {
$tabs[] = array(
'label' => t('Starred'),
'url'=>z_root() . '/' . $cmd . '/?f=' . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : '') . '&star=1',
'sel'=>$starred_active,
'title' => t('Favourite Posts'),
);
2014-03-30 06:43:31 +00:00
}
// Not yet implemented
2015-01-29 04:56:04 +00:00
if(feature_enabled(local_channel(),'spam_filter')) {
$tabs[] = array(
'label' => t('Spam'),
'url'=> z_root() . '/network?f=&spam=1',
'sel'=> $spam_active,
'title' => t('Posts flagged as SPAM'),
2014-03-30 06:43:31 +00:00
);
}
$arr = array('tabs' => $tabs);
call_hooks('network_tabs', $arr);
$tpl = get_markup_template('common_tabs.tpl');
return replace_macros($tpl, array('$tabs' => $arr['tabs']));
}
/**
* @brief
*
* @param App $a
* @param boolean $is_owner default false
* @param string $nickname default null
* @return void|string
*/
function profile_tabs($a, $is_owner = false, $nickname = null){
2014-11-12 04:44:43 +00:00
// Don't provide any profile tabs if we're running as the sys channel
2016-03-31 23:06:03 +00:00
if (App::$is_sys)
2014-11-12 04:44:43 +00:00
return;
if (get_pconfig($uid, 'system', 'noprofiletabs'))
return;
2016-03-31 23:06:03 +00:00
$channel = App::get_channel();
if (is_null($nickname))
$nickname = $channel['channel_address'];
2014-04-06 10:47:53 +00:00
2016-02-25 02:54:52 +00:00
2016-03-31 23:06:03 +00:00
$uid = ((App::$profile['profile_uid']) ? App::$profile['profile_uid'] : local_channel());
2016-09-08 20:24:09 +00:00
$account_id = ((App::$profile['profile_uid']) ? App::$profile['channel_account_id'] : App::$channel['channel_account_id']);
if ($uid == local_channel())
return;
2016-02-25 02:54:52 +00:00
if($uid == local_channel()) {
$cal_link = '';
2016-02-25 02:54:52 +00:00
}
else {
$cal_link = '/cal/' . $nickname;
}
require_once('include/security.php');
$sql_options = item_permissions_sql($uid);
$r = q("select item.* from item left join iconfig on item.id = iconfig.iid
where item.uid = %d and iconfig.cat = 'system' and iconfig.v = '%s'
and item.item_delayed = 0 and item.item_deleted = 0
and ( iconfig.k = 'WEBPAGE' and item_type = %d )
$sql_options limit 1",
intval($uid),
dbesc('home'),
intval(ITEM_TYPE_WEBPAGE)
);
$has_webpages = (($r) ? true : false);
2016-02-25 02:54:52 +00:00
if (x($_GET, 'tab'))
$tab = notags(trim($_GET['tab']));
2016-03-31 05:13:24 +00:00
$url = z_root() . '/channel/' . $nickname;
$pr = z_root() . '/profile/' . $nickname;
$tabs = array(
array(
'label' => t('Channel'),
'url' => $url,
'sel' => ((argv(0) == 'channel') ? 'active' : ''),
'title' => t('Status Messages and Posts'),
'id' => 'status-tab',
'icon' => 'home'
),
);
2014-04-06 10:47:53 +00:00
$p = get_all_perms($uid,get_observer_hash());
if ($p['view_profile']) {
$tabs[] = array(
'label' => t('About'),
'url' => $pr,
'sel' => ((argv(0) == 'profile') ? 'active' : ''),
'title' => t('Profile Details'),
'id' => 'profile-tab',
'icon' => 'user'
);
}
if ($p['view_storage']) {
$tabs[] = array(
'label' => t('Photos'),
2016-03-31 05:13:24 +00:00
'url' => z_root() . '/photos/' . $nickname,
'sel' => ((argv(0) == 'photos') ? 'active' : ''),
'title' => t('Photo Albums'),
'id' => 'photo-tab',
'icon' => 'photo'
);
$tabs[] = array(
'label' => t('Files'),
2016-03-31 05:13:24 +00:00
'url' => z_root() . '/cloud/' . $nickname,
'sel' => ((argv(0) == 'cloud' || argv(0) == 'sharedwithme') ? 'active' : ''),
'title' => t('Files and Storage'),
'id' => 'files-tab',
'icon' => 'folder-open'
);
}
2014-02-06 03:16:12 +00:00
if($p['view_stream'] && $cal_link) {
2016-02-25 02:54:52 +00:00
$tabs[] = array(
'label' => t('Events'),
2016-03-31 05:13:24 +00:00
'url' => z_root() . $cal_link,
2016-02-25 02:54:52 +00:00
'sel' => ((argv(0) == 'cal' || argv(0) == 'events') ? 'active' : ''),
'title' => t('Events'),
'id' => 'event-tab',
'icon' => 'calendar'
2016-02-25 02:54:52 +00:00
);
}
if ($p['chat'] && feature_enabled($uid,'ajaxchat')) {
2016-05-23 03:54:52 +00:00
$has_chats = Zotlabs\Lib\Chatroom::list_count($uid);
if ($has_chats) {
$tabs[] = array(
'label' => t('Chatrooms'),
2016-03-31 05:13:24 +00:00
'url' => z_root() . '/chat/' . $nickname,
'sel' => ((argv(0) == 'chat') ? 'active' : '' ),
'title' => t('Chatrooms'),
'id' => 'chat-tab',
'icon' => 'comments-o'
);
}
2014-06-14 13:31:36 +00:00
}
2014-02-05 01:12:13 +00:00
require_once('include/menu.php');
2015-01-29 04:56:04 +00:00
$has_bookmarks = menu_list_count(local_channel(),'',MENU_BOOKMARK) + menu_list_count(local_channel(),'',MENU_SYSTEM|MENU_BOOKMARK);
2017-08-23 07:01:02 +00:00
if($is_owner && $has_bookmarks) {
2014-02-05 01:12:13 +00:00
$tabs[] = array(
'label' => t('Bookmarks'),
2016-03-31 05:13:24 +00:00
'url' => z_root() . '/bookmarks',
'sel' => ((argv(0) == 'bookmarks') ? 'active' : ''),
2014-02-05 01:12:13 +00:00
'title' => t('Saved Bookmarks'),
'id' => 'bookmarks-tab',
'icon' => 'bookmark'
2014-02-05 01:12:13 +00:00
);
}
2017-08-23 07:01:02 +00:00
if(feature_enabled($uid,'cards')) {
$tabs[] = array(
'label' => t('Cards'),
'url' => z_root() . '/cards/' . $nickname,
'sel' => ((argv(0) == 'cards') ? 'active' : ''),
'title' => t('View Cards'),
'id' => 'cards-tab',
'icon' => 'list'
);
}
2017-11-22 23:39:06 +00:00
if(feature_enabled($uid,'articles')) {
$tabs[] = array(
'label' => t('articles'),
'url' => z_root() . '/articles/' . $nickname,
'sel' => ((argv(0) == 'articles') ? 'active' : ''),
'title' => t('View Articles'),
'id' => 'articles-tab',
'icon' => 'file-text-o'
);
}
2017-08-23 07:01:02 +00:00
if($has_webpages && feature_enabled($uid,'webpages')) {
$tabs[] = array(
'label' => t('Webpages'),
'url' => z_root() . '/page/' . $nickname . '/home',
'sel' => ((argv(0) == 'webpages') ? 'active' : ''),
'title' => t('View Webpages'),
'id' => 'webpages-tab',
'icon' => 'newspaper-o'
);
}
2017-08-23 07:01:02 +00:00
if ($p['view_wiki']) {
2018-07-31 06:55:09 +00:00
if(feature_enabled($uid,'wiki')) {
$tabs[] = array(
'label' => t('Wikis'),
'url' => z_root() . '/wiki/' . $nickname,
'sel' => ((argv(0) == 'wiki') ? 'active' : ''),
'title' => t('Wiki'),
'id' => 'wiki-tab',
'icon' => 'pencil-square-o'
);
}
}
$arr = array('is_owner' => $is_owner, 'nickname' => $nickname, 'tab' => (($tab) ? $tab : false), 'tabs' => $tabs);
call_hooks('profile_tabs', $arr);
2017-03-20 16:24:48 +00:00
$tpl = get_markup_template('profile_tabs.tpl');
return replace_macros($tpl, array(
'$tabs' => $arr['tabs'],
'$name' => App::$profile['channel_name'],
'$thumb' => App::$profile['thumb']
));
}
function get_responses($conv_responses,$response_verbs,$ob,$item) {
2015-02-11 05:21:18 +00:00
$ret = array();
foreach($response_verbs as $v) {
$ret[$v] = array();
$ret[$v]['count'] = ((x($conv_responses[$v],$item['mid'])) ? $conv_responses[$v][$item['mid']] : '');
$ret[$v]['list'] = ((x($conv_responses[$v],$item['mid'])) ? $conv_responses[$v][$item['mid'] . '-l'] : '');
$ret[$v]['button'] = get_response_button_text($v,$ret[$v]['count']);
2015-02-10 22:47:09 +00:00
$ret[$v]['title'] = $conv_responses[$v]['title'];
if($ret[$v]['count'] > MAX_LIKERS) {
$ret[$v]['modal'] = true;
}
}
$count = 0;
foreach ($ret as $key) {
if ($key['count'] == true)
$count++;
}
$ret['count'] = $count;
2015-02-11 05:21:18 +00:00
//logger('ret: ' . print_r($ret,true));
return $ret;
}
function get_response_button_text($v,$count) {
switch($v) {
case 'like':
return tt('Like','Likes',$count,'noun');
break;
case 'dislike':
return tt('Dislike','Dislikes',$count,'noun');
break;
case 'attendyes':
return tt('Attending','Attending',$count,'noun');
break;
case 'attendno':
return tt('Not Attending','Not Attending',$count,'noun');
break;
case 'attendmaybe':
return tt('Undecided','Undecided',$count,'noun');
break;
case 'agree':
return tt('Agree','Agrees',$count,'noun');
break;
2015-02-11 09:53:17 +00:00
case 'disagree':
return tt('Disagree','Disagrees',$count,'noun');
break;
case 'abstain':
return tt('Abstain','Abstains',$count,'noun');
break;
default:
return '';
break;
}
}