2016-02-03 12:05:26 -05:00
|
|
|
<?php
|
2017-11-21 07:20:22 -05:00
|
|
|
/**
|
|
|
|
* @file src/Content/ForumManager.php
|
|
|
|
* @brief ForumManager class with its methods related to forum functionality
|
|
|
|
*/
|
|
|
|
namespace Friendica\Content;
|
2016-02-03 12:05:26 -05:00
|
|
|
|
2018-08-25 12:38:26 -04:00
|
|
|
use Friendica\Core\Protocol;
|
2018-11-05 21:06:26 -05:00
|
|
|
use Friendica\Content\Text\HTML;
|
2018-01-22 09:54:13 -05:00
|
|
|
use Friendica\Core\L10n;
|
2018-10-31 10:35:50 -04:00
|
|
|
use Friendica\Core\Renderer;
|
2017-08-26 03:32:10 -04:00
|
|
|
use Friendica\Core\System;
|
2018-07-20 08:19:26 -04:00
|
|
|
use Friendica\Database\DBA;
|
2018-07-19 22:15:21 -04:00
|
|
|
use Friendica\Model\Contact;
|
2018-07-30 22:06:22 -04:00
|
|
|
use Friendica\Util\Proxy as ProxyUtils;
|
2017-04-30 00:07:00 -04:00
|
|
|
|
2016-02-03 12:05:26 -05:00
|
|
|
/**
|
2017-11-21 07:20:22 -05:00
|
|
|
* @brief This class handles methods related to the forum functionality
|
2016-02-03 12:05:26 -05:00
|
|
|
*/
|
2017-11-21 07:20:22 -05:00
|
|
|
class ForumManager
|
|
|
|
{
|
2016-02-03 12:05:26 -05:00
|
|
|
/**
|
|
|
|
* @brief Function to list all forums a user is connected with
|
|
|
|
*
|
2017-11-21 07:20:22 -05:00
|
|
|
* @param int $uid of the profile owner
|
|
|
|
* @param boolean $lastitem Sort by lastitem
|
|
|
|
* @param boolean $showhidden Show frorums which are not hidden
|
|
|
|
* @param boolean $showprivate Show private groups
|
2016-02-03 12:05:26 -05:00
|
|
|
*
|
2017-11-21 07:20:22 -05:00
|
|
|
* @return array
|
2019-01-06 16:06:53 -05:00
|
|
|
* 'url' => forum url
|
|
|
|
* 'name' => forum name
|
|
|
|
* 'id' => number of the key from the array
|
|
|
|
* 'micro' => contact photo in format micro
|
|
|
|
* 'thumb' => contact photo in format thumb
|
|
|
|
* @throws \Exception
|
2016-02-03 12:05:26 -05:00
|
|
|
*/
|
2017-11-21 07:20:22 -05:00
|
|
|
public static function getList($uid, $lastitem, $showhidden = true, $showprivate = false)
|
|
|
|
{
|
2018-08-25 12:38:26 -04:00
|
|
|
if ($lastitem) {
|
|
|
|
$params = ['order' => ['last-item' => true]];
|
|
|
|
} else {
|
|
|
|
$params = ['order' => ['name']];
|
|
|
|
}
|
|
|
|
|
|
|
|
$condition_str = "`network` = ? AND `uid` = ? AND NOT `blocked` AND NOT `pending` AND NOT `archive` AND `success_update` > `failure_update` AND ";
|
2016-02-03 12:05:26 -05:00
|
|
|
|
|
|
|
if ($showprivate) {
|
2018-08-25 12:38:26 -04:00
|
|
|
$condition_str .= '(`forum` OR `prv`)';
|
|
|
|
} else {
|
|
|
|
$condition_str .= '`forum`';
|
2016-02-03 12:05:26 -05:00
|
|
|
}
|
|
|
|
|
2018-08-25 12:38:26 -04:00
|
|
|
if (!$showhidden) {
|
|
|
|
$condition_str .= ' AND NOT `hidden`';
|
|
|
|
}
|
|
|
|
|
|
|
|
$forumlist = [];
|
2016-02-03 12:05:26 -05:00
|
|
|
|
2018-08-25 12:38:26 -04:00
|
|
|
$fields = ['id', 'url', 'name', 'micro', 'thumb'];
|
|
|
|
$condition = [$condition_str, Protocol::DFRN, $uid];
|
|
|
|
$contacts = DBA::select('contact', $fields, $condition, $params);
|
2017-11-21 07:20:22 -05:00
|
|
|
if (!$contacts) {
|
2016-02-03 12:05:26 -05:00
|
|
|
return($forumlist);
|
2017-11-21 07:20:22 -05:00
|
|
|
}
|
2016-02-03 12:05:26 -05:00
|
|
|
|
2018-07-20 08:19:26 -04:00
|
|
|
while ($contact = DBA::fetch($contacts)) {
|
2018-01-15 08:05:12 -05:00
|
|
|
$forumlist[] = [
|
2016-02-03 12:05:26 -05:00
|
|
|
'url' => $contact['url'],
|
|
|
|
'name' => $contact['name'],
|
|
|
|
'id' => $contact['id'],
|
|
|
|
'micro' => $contact['micro'],
|
2016-07-02 03:32:42 -04:00
|
|
|
'thumb' => $contact['thumb'],
|
2018-01-15 08:05:12 -05:00
|
|
|
];
|
2016-02-03 12:05:26 -05:00
|
|
|
}
|
2018-07-20 08:19:26 -04:00
|
|
|
DBA::close($contacts);
|
2017-08-11 15:26:08 -04:00
|
|
|
|
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
|
2017-11-21 07:20:22 -05:00
|
|
|
* @param int $cid The contact id which is used to mark a forum as "selected"
|
2016-02-03 12:05:26 -05:00
|
|
|
* @return string
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
2016-02-03 12:05:26 -05:00
|
|
|
*/
|
2017-11-21 07:20:22 -05:00
|
|
|
public static function widget($uid, $cid = 0)
|
|
|
|
{
|
2016-02-03 12:05:26 -05:00
|
|
|
$o = '';
|
|
|
|
|
|
|
|
//sort by last updated item
|
|
|
|
$lastitem = true;
|
|
|
|
|
2017-11-21 07:20:22 -05:00
|
|
|
$contacts = self::getList($uid, $lastitem, true, true);
|
2016-02-03 12:05:26 -05:00
|
|
|
$total = count($contacts);
|
|
|
|
$visible_forums = 10;
|
|
|
|
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($contacts)) {
|
2016-02-03 12:05:26 -05:00
|
|
|
$id = 0;
|
2016-02-17 02:08:28 -05:00
|
|
|
|
2019-01-21 16:53:03 -05:00
|
|
|
$entries = [];
|
|
|
|
|
2017-11-21 07:20:22 -05:00
|
|
|
foreach ($contacts as $contact) {
|
2016-02-03 12:05:26 -05:00
|
|
|
$selected = (($cid == $contact['id']) ? ' forum-selected' : '');
|
|
|
|
|
2018-01-15 08:05:12 -05:00
|
|
|
$entry = [
|
2016-02-16 18:01:24 -05:00
|
|
|
'url' => 'network?f=&cid=' . $contact['id'],
|
2018-06-02 04:05:06 -04:00
|
|
|
'external_url' => Contact::magicLink($contact['url']),
|
2016-02-03 12:05:26 -05:00
|
|
|
'name' => $contact['name'],
|
|
|
|
'cid' => $contact['id'],
|
|
|
|
'selected' => $selected,
|
2018-07-30 22:06:22 -04:00
|
|
|
'micro' => System::removedBaseUrl(ProxyUtils::proxifyUrl($contact['micro'], false, ProxyUtils::SIZE_MICRO)),
|
2016-02-03 12:05:26 -05:00
|
|
|
'id' => ++$id,
|
2018-01-15 08:05:12 -05:00
|
|
|
];
|
2016-02-03 12:05:26 -05:00
|
|
|
$entries[] = $entry;
|
|
|
|
}
|
|
|
|
|
2018-10-31 10:44:06 -04:00
|
|
|
$tpl = Renderer::getMarkupTemplate('widget_forumlist.tpl');
|
2016-02-03 12:05:26 -05:00
|
|
|
|
2018-10-31 10:35:50 -04:00
|
|
|
$o .= Renderer::replaceMacros(
|
2017-11-21 07:20:22 -05:00
|
|
|
$tpl,
|
2018-01-15 08:05:12 -05:00
|
|
|
[
|
2018-01-22 09:54:13 -05:00
|
|
|
'$title' => L10n::t('Forums'),
|
2017-11-21 07:20:22 -05:00
|
|
|
'$forums' => $entries,
|
2018-01-22 09:54:13 -05:00
|
|
|
'$link_desc' => L10n::t('External link to forum'),
|
2017-11-21 07:20:22 -05:00
|
|
|
'$total' => $total,
|
|
|
|
'$visible_forums' => $visible_forums,
|
2018-01-22 09:54:13 -05:00
|
|
|
'$showmore' => L10n::t('show more')]
|
2017-11-21 07:20:22 -05:00
|
|
|
);
|
2016-02-03 12:05:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
2016-02-03 12:05:26 -05:00
|
|
|
*/
|
2017-11-21 07:20:22 -05:00
|
|
|
public static function profileAdvanced($uid)
|
|
|
|
{
|
2017-12-04 09:01:27 -05:00
|
|
|
$profile = intval(Feature::isEnabled($uid, 'forumlist_profile'));
|
2017-11-21 07:20:22 -05:00
|
|
|
if (! $profile) {
|
2016-02-03 12:05:26 -05:00
|
|
|
return;
|
2017-11-21 07:20:22 -05:00
|
|
|
}
|
2016-02-03 12:05:26 -05:00
|
|
|
|
|
|
|
$o = '';
|
|
|
|
|
|
|
|
// place holder in case somebody wants configurability
|
|
|
|
$show_total = 9999;
|
|
|
|
|
|
|
|
//don't sort by last updated item
|
|
|
|
$lastitem = false;
|
|
|
|
|
2017-11-21 07:20:22 -05:00
|
|
|
$contacts = self::getList($uid, $lastitem, false, false);
|
2016-02-03 12:05:26 -05:00
|
|
|
|
|
|
|
$total_shown = 0;
|
2017-12-17 15:31:37 -05:00
|
|
|
$forumlist = '';
|
2017-11-21 07:20:22 -05:00
|
|
|
foreach ($contacts as $contact) {
|
2019-02-04 17:18:51 -05:00
|
|
|
$forumlist .= HTML::micropro($contact, true, 'forumlist-profile-advanced');
|
2016-02-03 12:05:26 -05:00
|
|
|
$total_shown ++;
|
2017-11-21 07:20:22 -05:00
|
|
|
if ($total_shown == $show_total) {
|
2016-02-03 12:05:26 -05:00
|
|
|
break;
|
2017-11-21 07:20:22 -05:00
|
|
|
}
|
2016-02-03 12:05:26 -05:00
|
|
|
}
|
|
|
|
|
2017-11-21 07:20:22 -05:00
|
|
|
if (count($contacts) > 0) {
|
2016-02-03 12:05:26 -05:00
|
|
|
$o .= $forumlist;
|
2017-03-21 12:02:59 -04:00
|
|
|
return $o;
|
2017-11-21 07:20:22 -05:00
|
|
|
}
|
2016-02-03 12:05:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief count unread forum items
|
|
|
|
*
|
|
|
|
* Count unread items of connected forums and private groups
|
|
|
|
*
|
|
|
|
* @return array
|
2019-01-07 10:24:06 -05:00
|
|
|
* 'id' => contact id
|
|
|
|
* 'name' => contact/forum name
|
|
|
|
* 'count' => counted unseen forum items
|
|
|
|
* @throws \Exception
|
2016-02-03 12:05:26 -05:00
|
|
|
*/
|
2017-11-21 07:20:22 -05:00
|
|
|
public static function countUnseenItems()
|
|
|
|
{
|
|
|
|
$r = q(
|
|
|
|
"SELECT `contact`.`id`, `contact`.`name`, COUNT(*) AS `count` FROM `item`
|
2016-02-03 12:05:26 -05:00
|
|
|
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
|
|
|
}
|