2016-02-03 17:05:26 +00:00
|
|
|
<?php
|
2017-11-21 12:20:22 +00:00
|
|
|
/**
|
2022-01-02 07:27:47 +00:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 14:45:36 +00:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2017-11-21 12:20:22 +00:00
|
|
|
*/
|
2020-02-09 14:45:36 +00:00
|
|
|
|
2017-11-21 12:20:22 +00:00
|
|
|
namespace Friendica\Content;
|
2016-02-03 17:05:26 +00:00
|
|
|
|
2018-11-06 02:06:26 +00:00
|
|
|
use Friendica\Content\Text\HTML;
|
2019-11-05 13:20:27 +00:00
|
|
|
use Friendica\Core\Protocol;
|
2018-10-31 14:35:50 +00:00
|
|
|
use Friendica\Core\Renderer;
|
2018-07-20 12:19:26 +00:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-30 22:02:20 +00:00
|
|
|
use Friendica\DI;
|
2018-07-20 02:15:21 +00:00
|
|
|
use Friendica\Model\Contact;
|
2017-04-30 04:07:00 +00:00
|
|
|
|
2016-02-03 17:05:26 +00:00
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* This class handles methods related to the forum functionality
|
2016-02-03 17:05:26 +00:00
|
|
|
*/
|
2017-11-21 12:20:22 +00:00
|
|
|
class ForumManager
|
|
|
|
{
|
2016-02-03 17:05:26 +00:00
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Function to list all forums a user is connected with
|
2016-02-03 17:05:26 +00:00
|
|
|
*
|
2017-11-21 12:20:22 +00: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 17:05:26 +00:00
|
|
|
*
|
2017-11-21 12:20:22 +00:00
|
|
|
* @return array
|
2019-01-06 21:06:53 +00: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 17:05:26 +00:00
|
|
|
*/
|
2017-11-21 12:20:22 +00:00
|
|
|
public static function getList($uid, $lastitem, $showhidden = true, $showprivate = false)
|
|
|
|
{
|
2018-08-25 16:38:26 +00:00
|
|
|
if ($lastitem) {
|
|
|
|
$params = ['order' => ['last-item' => true]];
|
|
|
|
} else {
|
|
|
|
$params = ['order' => ['name']];
|
|
|
|
}
|
|
|
|
|
2022-03-24 11:30:32 +00:00
|
|
|
$condition = [
|
|
|
|
'contact-type' => Contact::TYPE_COMMUNITY,
|
|
|
|
'network' => [Protocol::DFRN, Protocol::ACTIVITYPUB],
|
|
|
|
'uid' => $uid,
|
|
|
|
'blocked' => false,
|
|
|
|
'pending' => false,
|
|
|
|
'archive' => false,
|
|
|
|
];
|
2016-02-03 17:05:26 +00:00
|
|
|
|
2022-03-24 11:30:32 +00:00
|
|
|
$condition = DBA::mergeConditions($condition, ["`platform` != ?", 'peertube']);
|
|
|
|
|
|
|
|
if (!$showprivate) {
|
|
|
|
$condition = DBA::mergeConditions($condition, ['manually-approve' => false]);
|
2016-02-03 17:05:26 +00:00
|
|
|
}
|
|
|
|
|
2018-08-25 16:38:26 +00:00
|
|
|
if (!$showhidden) {
|
2022-03-24 11:30:32 +00:00
|
|
|
$condition = DBA::mergeConditions($condition, ['hidden' => false]);
|
2018-08-25 16:38:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$forumlist = [];
|
2016-02-03 17:05:26 +00:00
|
|
|
|
2021-02-17 18:59:19 +00:00
|
|
|
$fields = ['id', 'url', 'name', 'micro', 'thumb', 'avatar', 'network', 'uid'];
|
2022-03-24 11:30:32 +00:00
|
|
|
$contacts = DBA::select('account-user-view', $fields, $condition, $params);
|
2017-11-21 12:20:22 +00:00
|
|
|
if (!$contacts) {
|
2016-02-03 17:05:26 +00:00
|
|
|
return($forumlist);
|
2017-11-21 12:20:22 +00:00
|
|
|
}
|
2016-02-03 17:05:26 +00:00
|
|
|
|
2018-07-20 12:19:26 +00:00
|
|
|
while ($contact = DBA::fetch($contacts)) {
|
2018-01-15 13:05:12 +00:00
|
|
|
$forumlist[] = [
|
2016-02-03 17:05:26 +00:00
|
|
|
'url' => $contact['url'],
|
|
|
|
'name' => $contact['name'],
|
|
|
|
'id' => $contact['id'],
|
|
|
|
'micro' => $contact['micro'],
|
2016-07-02 07:32:42 +00:00
|
|
|
'thumb' => $contact['thumb'],
|
2018-01-15 13:05:12 +00:00
|
|
|
];
|
2016-02-03 17:05:26 +00:00
|
|
|
}
|
2018-07-20 12:19:26 +00:00
|
|
|
DBA::close($contacts);
|
2017-08-11 19:26:08 +00:00
|
|
|
|
2016-02-03 17:05:26 +00:00
|
|
|
return($forumlist);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Forumlist widget
|
2016-02-03 17:05:26 +00:00
|
|
|
*
|
|
|
|
* Sidebar widget to show subcribed friendica forums. If activated
|
|
|
|
* in the settings, it appears at the notwork page sidebar
|
|
|
|
*
|
2020-10-13 04:23:17 +00:00
|
|
|
* @param string $baseurl Base module path
|
|
|
|
* @param int $uid The ID of the User
|
|
|
|
* @param int $cid The contact id which is used to mark a forum as "selected"
|
2016-02-03 17:05:26 +00:00
|
|
|
* @return string
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
2016-02-03 17:05:26 +00:00
|
|
|
*/
|
2020-10-13 04:23:17 +00:00
|
|
|
public static function widget(string $baseurl, int $uid, int $cid = 0)
|
2017-11-21 12:20:22 +00:00
|
|
|
{
|
2016-02-03 17:05:26 +00:00
|
|
|
$o = '';
|
|
|
|
|
|
|
|
//sort by last updated item
|
|
|
|
$lastitem = true;
|
|
|
|
|
2017-11-21 12:20:22 +00:00
|
|
|
$contacts = self::getList($uid, $lastitem, true, true);
|
2016-02-03 17:05:26 +00:00
|
|
|
$total = count($contacts);
|
|
|
|
$visible_forums = 10;
|
|
|
|
|
2018-07-21 12:46:04 +00:00
|
|
|
if (DBA::isResult($contacts)) {
|
2016-02-03 17:05:26 +00:00
|
|
|
$id = 0;
|
2016-02-17 07:08:28 +00:00
|
|
|
|
2019-01-21 21:53:03 +00:00
|
|
|
$entries = [];
|
|
|
|
|
2017-11-21 12:20:22 +00:00
|
|
|
foreach ($contacts as $contact) {
|
2016-02-03 17:05:26 +00:00
|
|
|
$selected = (($cid == $contact['id']) ? ' forum-selected' : '');
|
|
|
|
|
2018-01-15 13:05:12 +00:00
|
|
|
$entry = [
|
2020-10-13 04:23:17 +00:00
|
|
|
'url' => $baseurl . '/' . $contact['id'],
|
2021-02-17 18:59:19 +00:00
|
|
|
'external_url' => Contact::magicLinkByContact($contact),
|
2016-02-03 17:05:26 +00:00
|
|
|
'name' => $contact['name'],
|
|
|
|
'cid' => $contact['id'],
|
|
|
|
'selected' => $selected,
|
2020-07-28 19:30:55 +00:00
|
|
|
'micro' => DI::baseUrl()->remove(Contact::getMicro($contact)),
|
2016-02-03 17:05:26 +00:00
|
|
|
'id' => ++$id,
|
2018-01-15 13:05:12 +00:00
|
|
|
];
|
2016-02-03 17:05:26 +00:00
|
|
|
$entries[] = $entry;
|
|
|
|
}
|
|
|
|
|
2018-10-31 14:44:06 +00:00
|
|
|
$tpl = Renderer::getMarkupTemplate('widget_forumlist.tpl');
|
2016-02-03 17:05:26 +00:00
|
|
|
|
2018-10-31 14:35:50 +00:00
|
|
|
$o .= Renderer::replaceMacros(
|
2017-11-21 12:20:22 +00:00
|
|
|
$tpl,
|
2018-01-15 13:05:12 +00:00
|
|
|
[
|
2020-01-18 19:52:34 +00:00
|
|
|
'$title' => DI::l10n()->t('Forums'),
|
2017-11-21 12:20:22 +00:00
|
|
|
'$forums' => $entries,
|
2020-01-18 19:52:34 +00:00
|
|
|
'$link_desc' => DI::l10n()->t('External link to forum'),
|
2017-11-21 12:20:22 +00:00
|
|
|
'$total' => $total,
|
|
|
|
'$visible_forums' => $visible_forums,
|
2020-11-30 19:30:57 +00:00
|
|
|
'$showless' => DI::l10n()->t('show less'),
|
2020-01-18 19:52:34 +00:00
|
|
|
'$showmore' => DI::l10n()->t('show more')]
|
2017-11-21 12:20:22 +00:00
|
|
|
);
|
2016-02-03 17:05:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Format forumlist as contact block
|
2016-02-03 17:05:26 +00:00
|
|
|
*
|
|
|
|
* 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 21:06:53 +00:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
2016-02-03 17:05:26 +00:00
|
|
|
*/
|
2017-11-21 12:20:22 +00:00
|
|
|
public static function profileAdvanced($uid)
|
|
|
|
{
|
2017-12-04 14:01:27 +00:00
|
|
|
$profile = intval(Feature::isEnabled($uid, 'forumlist_profile'));
|
2019-11-05 13:20:27 +00:00
|
|
|
if (!$profile) {
|
|
|
|
return '';
|
2017-11-21 12:20:22 +00:00
|
|
|
}
|
2016-02-03 17:05:26 +00:00
|
|
|
|
|
|
|
$o = '';
|
|
|
|
|
|
|
|
// place holder in case somebody wants configurability
|
|
|
|
$show_total = 9999;
|
|
|
|
|
|
|
|
//don't sort by last updated item
|
|
|
|
$lastitem = false;
|
|
|
|
|
2017-11-21 12:20:22 +00:00
|
|
|
$contacts = self::getList($uid, $lastitem, false, false);
|
2016-02-03 17:05:26 +00:00
|
|
|
|
|
|
|
$total_shown = 0;
|
2017-11-21 12:20:22 +00:00
|
|
|
foreach ($contacts as $contact) {
|
2019-11-05 13:20:27 +00:00
|
|
|
$o .= HTML::micropro($contact, true, 'forumlist-profile-advanced');
|
|
|
|
$total_shown++;
|
2017-11-21 12:20:22 +00:00
|
|
|
if ($total_shown == $show_total) {
|
2016-02-03 17:05:26 +00:00
|
|
|
break;
|
2017-11-21 12:20:22 +00:00
|
|
|
}
|
2016-02-03 17:05:26 +00:00
|
|
|
}
|
|
|
|
|
2019-11-05 13:20:27 +00:00
|
|
|
return $o;
|
2016-02-03 17:05:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* count unread forum items
|
2016-02-03 17:05:26 +00:00
|
|
|
*
|
|
|
|
* Count unread items of connected forums and private groups
|
|
|
|
*
|
|
|
|
* @return array
|
2019-01-07 15:24:06 +00:00
|
|
|
* 'id' => contact id
|
|
|
|
* 'name' => contact/forum name
|
|
|
|
* 'count' => counted unseen forum items
|
|
|
|
* @throws \Exception
|
2016-02-03 17:05:26 +00:00
|
|
|
*/
|
2017-11-21 12:20:22 +00:00
|
|
|
public static function countUnseenItems()
|
|
|
|
{
|
2019-03-01 16:15:34 +00:00
|
|
|
$stmtContacts = DBA::p(
|
2021-02-22 19:47:08 +00:00
|
|
|
"SELECT `contact`.`id`, `contact`.`name`, COUNT(*) AS `count` FROM `post-user-view`
|
|
|
|
INNER JOIN `contact` ON `post-user-view`.`contact-id` = `contact`.`id`
|
|
|
|
WHERE `post-user-view`.`uid` = ? AND `post-user-view`.`visible` AND NOT `post-user-view`.`deleted` AND `post-user-view`.`unseen`
|
2021-01-17 20:32:13 +00:00
|
|
|
AND `contact`.`network` IN (?, ?) AND `contact`.`contact-type` = ?
|
2016-02-03 17:05:26 +00:00
|
|
|
AND NOT `contact`.`blocked` AND NOT `contact`.`hidden`
|
|
|
|
AND NOT `contact`.`pending` AND NOT `contact`.`archive`
|
2021-07-22 15:35:30 +00:00
|
|
|
AND `contact`.`uid` = ?
|
2021-01-17 20:32:13 +00:00
|
|
|
GROUP BY `contact`.`id`",
|
2022-10-20 19:22:47 +00:00
|
|
|
DI::userSession()->getLocalUserId(), Protocol::DFRN, Protocol::ACTIVITYPUB, Contact::TYPE_COMMUNITY, DI::userSession()->getLocalUserId()
|
2016-02-03 17:05:26 +00:00
|
|
|
);
|
|
|
|
|
2019-03-01 16:15:34 +00:00
|
|
|
return DBA::toArray($stmtContacts);
|
2016-02-03 17:05:26 +00:00
|
|
|
}
|
2016-02-16 23:01:24 +00:00
|
|
|
}
|