2015-11-09 15:56:20 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file include/forums.php
|
2015-11-17 20:31:40 +01:00
|
|
|
* @brief Functions related to forum functionality *
|
2015-11-09 15:56:20 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2015-11-11 23:39:14 +01:00
|
|
|
* @brief Function to list all forums a user is connected with
|
2015-11-17 20:31:40 +01:00
|
|
|
*
|
2015-11-09 15:56:20 +01:00
|
|
|
* @param int $uid of the profile owner
|
|
|
|
* @param boolean $showhidden
|
2015-11-11 23:39:14 +01:00
|
|
|
* Show frorums which are not hidden
|
2015-11-09 15:56:20 +01:00
|
|
|
* @param boolean $lastitem
|
2015-11-11 23:39:14 +01:00
|
|
|
* Sort by lastitem
|
2015-11-09 15:56:20 +01:00
|
|
|
* @param boolean $showprivate
|
2015-11-11 23:39:14 +01:00
|
|
|
* Show private groups
|
2015-11-17 20:31:40 +01:00
|
|
|
*
|
2015-11-09 15:56:20 +01:00
|
|
|
* @returns array
|
|
|
|
* 'url' => forum url
|
|
|
|
* 'name' => forum name
|
|
|
|
* 'id' => number of the key from the array
|
|
|
|
* 'micro' => contact photo in format micro
|
|
|
|
*/
|
|
|
|
function get_forumlist($uid, $showhidden = true, $lastitem, $showprivate = false) {
|
|
|
|
|
|
|
|
$forumlist = array();
|
|
|
|
|
2015-11-17 20:31:40 +01:00
|
|
|
$order = (($showhidden) ? '' : ' AND NOT `hidden` ');
|
|
|
|
$order .= (($lastitem) ? ' ORDER BY `last-item` DESC ' : ' ORDER BY `name` ASC ');
|
|
|
|
$select = '`forum` ';
|
2015-11-09 15:56:20 +01:00
|
|
|
if ($showprivate) {
|
2015-11-17 20:31:40 +01:00
|
|
|
$select = '(`forum` OR `prv`)';
|
2015-11-09 15:56:20 +01:00
|
|
|
}
|
|
|
|
|
2015-11-17 20:31:40 +01:00
|
|
|
$contacts = q("SELECT `contact`.`id`, `contact`.`url`, `contact`.`name`, `contact`.`micro` FROM `contact`
|
2015-11-09 15:56:20 +01:00
|
|
|
WHERE `network`= 'dfrn' AND $select AND `uid` = %d
|
2015-11-17 20:31:40 +01:00
|
|
|
AND NOT `blocked` AND NOT `hidden` AND NOT `pending` AND NOT `archive`
|
|
|
|
AND `success_update` > `failure_update`
|
2015-11-09 15:56:20 +01:00
|
|
|
$order ",
|
|
|
|
intval($uid)
|
|
|
|
);
|
|
|
|
|
|
|
|
foreach($contacts as $contact) {
|
|
|
|
$forumlist[] = array(
|
|
|
|
'url' => $contact['url'],
|
|
|
|
'name' => $contact['name'],
|
|
|
|
'id' => $contact['id'],
|
|
|
|
'micro' => $contact['micro'],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return($forumlist);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-11-11 22:41:44 +01:00
|
|
|
/**
|
2015-11-11 23:39:14 +01:00
|
|
|
* @brief Forumlist widget
|
2015-11-27 21:18:54 +01:00
|
|
|
*
|
2015-11-09 15:56:20 +01:00
|
|
|
* Sidebar widget to show subcribed friendica forums. If activated
|
|
|
|
* in the settings, it appears at the notwork page sidebar
|
2015-11-27 21:18:54 +01:00
|
|
|
*
|
2015-11-28 23:52:12 +01:00
|
|
|
* @param int $uid
|
|
|
|
* @param int $cid
|
|
|
|
* The contact id which is used to mark a forum as "selected"
|
2015-11-09 15:56:20 +01:00
|
|
|
* @return string
|
|
|
|
*/
|
2015-11-28 23:52:12 +01:00
|
|
|
function widget_forumlist($uid,$cid = 0) {
|
2015-11-09 15:56:20 +01:00
|
|
|
|
2015-11-11 01:29:31 +01:00
|
|
|
if(! intval(feature_enabled(local_user(),'forumlist_widget')))
|
2015-11-09 15:56:20 +01:00
|
|
|
return;
|
|
|
|
|
|
|
|
$o = '';
|
|
|
|
|
|
|
|
//sort by last updated item
|
|
|
|
$lastitem = true;
|
|
|
|
|
2015-11-28 23:52:12 +01:00
|
|
|
$contacts = get_forumlist($uid,true,$lastitem, true);
|
2015-11-09 15:56:20 +01:00
|
|
|
$total = count($contacts);
|
|
|
|
$visible_forums = 10;
|
|
|
|
|
|
|
|
if(count($contacts)) {
|
|
|
|
|
|
|
|
$id = 0;
|
|
|
|
|
|
|
|
foreach($contacts as $contact) {
|
|
|
|
|
2015-11-28 23:52:12 +01:00
|
|
|
$selected = (($cid == $contact['id']) ? ' forum-selected' : '');
|
|
|
|
|
2015-11-09 15:56:20 +01:00
|
|
|
$entry = array(
|
2015-11-28 23:52:12 +01:00
|
|
|
'url' => z_root() . '/network?f=&cid=' . $contact['id'],
|
|
|
|
'external_url' => z_root() . '/redir/' . $contact['id'],
|
2015-11-09 15:56:20 +01:00
|
|
|
'name' => $contact['name'],
|
2015-11-24 22:14:26 +01:00
|
|
|
'cid' => $contact['id'],
|
2015-11-28 23:52:12 +01:00
|
|
|
'selected' => $selected,
|
2015-11-09 15:56:20 +01:00
|
|
|
'micro' => proxy_url($contact['micro'], false, PROXY_SIZE_MICRO),
|
|
|
|
'id' => ++$id,
|
|
|
|
);
|
|
|
|
$entries[] = $entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
$tpl = get_markup_template('widget_forumlist.tpl');
|
|
|
|
|
|
|
|
$o .= replace_macros($tpl,array(
|
2015-11-11 23:39:14 +01:00
|
|
|
'$title' => t('Forums'),
|
2015-11-09 15:56:20 +01:00
|
|
|
'$forums' => $entries,
|
|
|
|
'$link_desc' => t('External link to forum'),
|
|
|
|
'$total' => $total,
|
|
|
|
'$visible_forums' => $visible_forums,
|
|
|
|
'$showmore' => t('show more'),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
2015-11-11 22:41:44 +01:00
|
|
|
/**
|
2015-11-11 23:39:14 +01:00
|
|
|
* @brief Format forumlist as contact block
|
2015-11-27 21:18:54 +01:00
|
|
|
*
|
2015-11-09 15:56:20 +01:00
|
|
|
* This function is used to show the forumlist in
|
|
|
|
* the advanced profile.
|
2015-11-27 21:18:54 +01:00
|
|
|
*
|
2015-11-09 15:56:20 +01:00
|
|
|
* @param int $uid
|
|
|
|
* @return string
|
2015-11-27 21:18:54 +01:00
|
|
|
*
|
2015-11-09 15:56:20 +01:00
|
|
|
*/
|
|
|
|
function forumlist_profile_advanced($uid) {
|
|
|
|
|
|
|
|
$profile = intval(feature_enabled($uid,'forumlist_profile'));
|
|
|
|
if(! $profile)
|
|
|
|
return;
|
|
|
|
|
|
|
|
$o = '';
|
|
|
|
|
|
|
|
// place holder in case somebody wants configurability
|
|
|
|
$show_total = 9999;
|
|
|
|
|
|
|
|
//don't sort by last updated item
|
|
|
|
$lastitem = false;
|
|
|
|
|
|
|
|
$contacts = get_forumlist($uid,false,$lastitem,false);
|
|
|
|
|
|
|
|
$total_shown = 0;
|
|
|
|
|
|
|
|
foreach($contacts as $contact) {
|
|
|
|
$forumlist .= micropro($contact,false,'forumlist-profile-advanced');
|
|
|
|
$total_shown ++;
|
|
|
|
if($total_shown == $show_total)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(count($contacts) > 0)
|
|
|
|
$o .= $forumlist;
|
|
|
|
return $o;
|
2015-11-11 23:39:14 +01:00
|
|
|
}
|
2015-11-24 22:14:26 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief count unread forum items
|
|
|
|
*
|
|
|
|
* Count unread items of connected forums and private groups
|
2015-11-27 21:18:54 +01:00
|
|
|
*
|
2015-11-24 22:14:26 +01:00
|
|
|
* @return array
|
2015-11-24 22:34:23 +01:00
|
|
|
* 'id' => contact id
|
|
|
|
* 'name' => contact/forum name
|
|
|
|
* 'count' => counted unseen forum items
|
2015-11-27 21:18:54 +01:00
|
|
|
*
|
2015-11-24 22:14:26 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
function forums_count_unseen() {
|
2015-11-27 21:18:54 +01:00
|
|
|
$r = q("SELECT `contact`.`id`, `contact`.`name`, COUNT(*) AS `count` FROM `item`
|
2015-11-24 22:14:26 +01:00
|
|
|
INNER JOIN `contact` ON `item`.`contact-id` = `contact`.`id`
|
2015-11-27 21:18:54 +01:00
|
|
|
WHERE `item`.`uid` = %d AND `item`.`visible` AND NOT `item`.`deleted` AND `item`.`unseen`
|
2015-11-24 22:14:26 +01:00
|
|
|
AND `contact`.`network`= 'dfrn' AND (`contact`.`forum` OR `contact`.`prv`)
|
|
|
|
AND NOT `contact`.`blocked` AND NOT `contact`.`hidden`
|
|
|
|
AND NOT `contact`.`pending` AND NOT `contact`.`archive`
|
|
|
|
AND `contact`.`success_update` > `failure_update`
|
|
|
|
GROUP BY `contact`.`id` ",
|
|
|
|
intval(local_user())
|
|
|
|
);
|
|
|
|
|
|
|
|
return $r;
|
|
|
|
}
|