2016-02-03 12:05:26 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2016-04-07 08:43:56 -04:00
|
|
|
* @file include/ForumManager.php
|
2016-04-07 10:58:26 -04:00
|
|
|
* @brief ForumManager class with its methods related to forum functionality *
|
2016-02-03 12:05:26 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2016-04-07 08:43:56 -04:00
|
|
|
* @brief This class handles metheods related to the forum functionality
|
2016-02-03 12:05:26 -05:00
|
|
|
*/
|
2016-02-04 08:51:54 -05:00
|
|
|
class ForumManager {
|
2016-02-03 12:05:26 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Function to list all forums a user is connected with
|
|
|
|
*
|
|
|
|
* @param int $uid of the profile owner
|
|
|
|
* @param boolean $showhidden
|
|
|
|
* Show frorums which are not hidden
|
|
|
|
* @param boolean $lastitem
|
|
|
|
* Sort by lastitem
|
|
|
|
* @param boolean $showprivate
|
|
|
|
* Show private groups
|
|
|
|
*
|
|
|
|
* @returns array
|
|
|
|
* 'url' => forum url
|
|
|
|
* 'name' => forum name
|
|
|
|
* 'id' => number of the key from the array
|
|
|
|
* 'micro' => contact photo in format micro
|
2016-07-02 03:32:42 -04:00
|
|
|
* 'thumb' => contact photo in format thumb
|
2016-02-03 12:05:26 -05:00
|
|
|
*/
|
2016-02-04 08:47:20 -05:00
|
|
|
public static function get_list($uid, $showhidden = true, $lastitem, $showprivate = false) {
|
2016-02-03 12:05:26 -05:00
|
|
|
|
|
|
|
$forumlist = array();
|
|
|
|
|
|
|
|
$order = (($showhidden) ? '' : ' AND NOT `hidden` ');
|
|
|
|
$order .= (($lastitem) ? ' ORDER BY `last-item` DESC ' : ' ORDER BY `name` ASC ');
|
|
|
|
$select = '`forum` ';
|
|
|
|
if ($showprivate) {
|
|
|
|
$select = '(`forum` OR `prv`)';
|
|
|
|
}
|
|
|
|
|
2016-07-02 03:32:42 -04:00
|
|
|
$contacts = q("SELECT `contact`.`id`, `contact`.`url`, `contact`.`name`, `contact`.`micro`, `contact`.`thumb` FROM `contact`
|
2016-02-03 12:05:26 -05:00
|
|
|
WHERE `network`= 'dfrn' AND $select AND `uid` = %d
|
|
|
|
AND NOT `blocked` AND NOT `hidden` AND NOT `pending` AND NOT `archive`
|
|
|
|
AND `success_update` > `failure_update`
|
|
|
|
$order ",
|
|
|
|
intval($uid)
|
|
|
|
);
|
|
|
|
|
|
|
|
if (!$contacts)
|
|
|
|
return($forumlist);
|
|
|
|
|
|
|
|
foreach($contacts as $contact) {
|
|
|
|
$forumlist[] = array(
|
|
|
|
'url' => $contact['url'],
|
|
|
|
'name' => $contact['name'],
|
|
|
|
'id' => $contact['id'],
|
|
|
|
'micro' => $contact['micro'],
|
2016-07-02 03:32:42 -04:00
|
|
|
'thumb' => $contact['thumb'],
|
2016-02-03 12:05:26 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
return($forumlist);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Forumlist widget
|
|
|
|
*
|
|
|
|
* Sidebar widget to show subcribed friendica forums. If activated
|
|
|
|
* in the settings, it appears at the notwork page sidebar
|
|
|
|
*
|
|
|
|
* @param int $uid The ID of the User
|
|
|
|
* @param int $cid
|
|
|
|
* The contact id which is used to mark a forum as "selected"
|
|
|
|
* @return string
|
|
|
|
*/
|
2016-02-04 08:47:20 -05:00
|
|
|
public static function widget($uid,$cid = 0) {
|
2016-02-03 12:05:26 -05:00
|
|
|
|
|
|
|
if(! intval(feature_enabled(local_user(),'forumlist_widget')))
|
|
|
|
return;
|
|
|
|
|
|
|
|
$o = '';
|
|
|
|
|
|
|
|
//sort by last updated item
|
|
|
|
$lastitem = true;
|
|
|
|
|
2016-02-04 08:47:20 -05:00
|
|
|
$contacts = self::get_list($uid,true,$lastitem, true);
|
2016-02-03 12:05:26 -05:00
|
|
|
$total = count($contacts);
|
|
|
|
$visible_forums = 10;
|
|
|
|
|
2016-12-14 03:42:36 -05:00
|
|
|
if (dbm::is_result($contacts)) {
|
2016-02-03 12:05:26 -05:00
|
|
|
|
|
|
|
$id = 0;
|
2016-02-17 02:08:28 -05:00
|
|
|
|
2016-02-03 12:05:26 -05:00
|
|
|
foreach($contacts as $contact) {
|
|
|
|
|
|
|
|
$selected = (($cid == $contact['id']) ? ' forum-selected' : '');
|
|
|
|
|
|
|
|
$entry = array(
|
2016-02-16 18:01:24 -05:00
|
|
|
'url' => 'network?f=&cid=' . $contact['id'],
|
|
|
|
'external_url' => 'redir/' . $contact['id'],
|
2016-02-03 12:05:26 -05:00
|
|
|
'name' => $contact['name'],
|
|
|
|
'cid' => $contact['id'],
|
|
|
|
'selected' => $selected,
|
2016-02-17 02:08:28 -05:00
|
|
|
'micro' => App::remove_baseurl(proxy_url($contact['micro'], false, PROXY_SIZE_MICRO)),
|
2016-02-03 12:05:26 -05:00
|
|
|
'id' => ++$id,
|
|
|
|
);
|
|
|
|
$entries[] = $entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
$tpl = get_markup_template('widget_forumlist.tpl');
|
|
|
|
|
|
|
|
$o .= replace_macros($tpl,array(
|
|
|
|
'$title' => t('Forums'),
|
|
|
|
'$forums' => $entries,
|
|
|
|
'$link_desc' => t('External link to forum'),
|
|
|
|
'$total' => $total,
|
|
|
|
'$visible_forums' => $visible_forums,
|
|
|
|
'$showmore' => t('show more'),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Format forumlist as contact block
|
|
|
|
*
|
|
|
|
* This function is used to show the forumlist in
|
|
|
|
* the advanced profile.
|
|
|
|
*
|
|
|
|
* @param int $uid The ID of the User
|
|
|
|
* @return string
|
|
|
|
*
|
|
|
|
*/
|
2016-02-04 08:47:20 -05:00
|
|
|
public static function profile_advanced($uid) {
|
2016-02-03 12:05:26 -05:00
|
|
|
|
|
|
|
$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;
|
|
|
|
|
2016-02-04 08:47:20 -05:00
|
|
|
$contacts = self::get_list($uid,false,$lastitem,false);
|
2016-02-03 12:05:26 -05:00
|
|
|
|
|
|
|
$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;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief count unread forum items
|
|
|
|
*
|
|
|
|
* Count unread items of connected forums and private groups
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
* 'id' => contact id
|
|
|
|
* 'name' => contact/forum name
|
|
|
|
* 'count' => counted unseen forum items
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public static function count_unseen_items() {
|
|
|
|
$r = q("SELECT `contact`.`id`, `contact`.`name`, COUNT(*) AS `count` FROM `item`
|
|
|
|
INNER JOIN `contact` ON `item`.`contact-id` = `contact`.`id`
|
|
|
|
WHERE `item`.`uid` = %d AND `item`.`visible` AND NOT `item`.`deleted` AND `item`.`unseen`
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2016-02-16 18:01:24 -05:00
|
|
|
}
|