2016-02-03 18:05:26 +01:00
|
|
|
<?php
|
2017-11-21 13:20:22 +01:00
|
|
|
/**
|
2022-01-02 08:27:47 +01:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 15:45:36 +01: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 13:20:22 +01:00
|
|
|
*/
|
2020-02-09 15:45:36 +01:00
|
|
|
|
2017-11-21 13:20:22 +01:00
|
|
|
namespace Friendica\Content;
|
2016-02-03 18:05:26 +01:00
|
|
|
|
2018-11-06 03:06:26 +01:00
|
|
|
use Friendica\Content\Text\HTML;
|
2019-11-05 14:20:27 +01:00
|
|
|
use Friendica\Core\Protocol;
|
2018-10-31 15:35:50 +01:00
|
|
|
use Friendica\Core\Renderer;
|
2018-07-20 14:19:26 +02:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-30 23:02:20 +01:00
|
|
|
use Friendica\DI;
|
2018-07-20 04:15:21 +02:00
|
|
|
use Friendica\Model\Contact;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2016-02-03 18:05:26 +01:00
|
|
|
/**
|
2020-01-19 07:05:23 +01:00
|
|
|
* This class handles methods related to the forum functionality
|
2016-02-03 18:05:26 +01:00
|
|
|
*/
|
2017-11-21 13:20:22 +01:00
|
|
|
class ForumManager
|
|
|
|
{
|
2016-02-03 18:05:26 +01:00
|
|
|
/**
|
2020-01-19 07:05:23 +01:00
|
|
|
* Function to list all forums a user is connected with
|
2016-02-03 18:05:26 +01:00
|
|
|
*
|
2017-11-21 13:20:22 +01: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 18:05:26 +01:00
|
|
|
*
|
2017-11-21 13:20:22 +01:00
|
|
|
* @return array
|
2019-01-06 22:06:53 +01: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 18:05:26 +01:00
|
|
|
*/
|
2017-11-21 13:20:22 +01:00
|
|
|
public static function getList($uid, $lastitem, $showhidden = true, $showprivate = false)
|
|
|
|
{
|
2018-08-25 18:38:26 +02:00
|
|
|
if ($lastitem) {
|
|
|
|
$params = ['order' => ['last-item' => true]];
|
|
|
|
} else {
|
|
|
|
$params = ['order' => ['name']];
|
|
|
|
}
|
|
|
|
|
2022-03-24 12:30:32 +01:00
|
|
|
$condition = [
|
|
|
|
'contact-type' => Contact::TYPE_COMMUNITY,
|
|
|
|
'network' => [Protocol::DFRN, Protocol::ACTIVITYPUB],
|
|
|
|
'uid' => $uid,
|
|
|
|
'blocked' => false,
|
|
|
|
'pending' => false,
|
|
|
|
'archive' => false,
|
|
|
|
];
|
2016-02-03 18:05:26 +01:00
|
|
|
|
2022-03-24 12:30:32 +01:00
|
|
|
$condition = DBA::mergeConditions($condition, ["`platform` != ?", 'peertube']);
|
|
|
|
|
|
|
|
if (!$showprivate) {
|
|
|
|
$condition = DBA::mergeConditions($condition, ['manually-approve' => false]);
|
2016-02-03 18:05:26 +01:00
|
|
|
}
|
|
|
|
|
2018-08-25 18:38:26 +02:00
|
|
|
if (!$showhidden) {
|
2022-03-24 12:30:32 +01:00
|
|
|
$condition = DBA::mergeConditions($condition, ['hidden' => false]);
|
2018-08-25 18:38:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$forumlist = [];
|
2016-02-03 18:05:26 +01:00
|
|
|
|
2021-02-17 19:59:19 +01:00
|
|
|
$fields = ['id', 'url', 'name', 'micro', 'thumb', 'avatar', 'network', 'uid'];
|
2022-03-24 12:30:32 +01:00
|
|
|
$contacts = DBA::select('account-user-view', $fields, $condition, $params);
|
2017-11-21 13:20:22 +01:00
|
|
|
if (!$contacts) {
|
2016-02-03 18:05:26 +01:00
|
|
|
return($forumlist);
|
2017-11-21 13:20:22 +01:00
|
|
|
}
|
2016-02-03 18:05:26 +01:00
|
|
|
|
2018-07-20 14:19:26 +02:00
|
|
|
while ($contact = DBA::fetch($contacts)) {
|
2018-01-15 14:05:12 +01:00
|
|
|
$forumlist[] = [
|
2016-02-03 18:05:26 +01:00
|
|
|
'url' => $contact['url'],
|
|
|
|
'name' => $contact['name'],
|
|
|
|
'id' => $contact['id'],
|
|
|
|
'micro' => $contact['micro'],
|
2016-07-02 09:32:42 +02:00
|
|
|
'thumb' => $contact['thumb'],
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2016-02-03 18:05:26 +01:00
|
|
|
}
|
2018-07-20 14:19:26 +02:00
|
|
|
DBA::close($contacts);
|
2017-08-11 21:26:08 +02:00
|
|
|
|
2016-02-03 18:05:26 +01:00
|
|
|
return($forumlist);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2020-01-19 07:05:23 +01:00
|
|
|
* Forumlist widget
|
2016-02-03 18:05:26 +01:00
|
|
|
*
|
|
|
|
* Sidebar widget to show subcribed friendica forums. If activated
|
|
|
|
* in the settings, it appears at the notwork page sidebar
|
|
|
|
*
|
2020-10-13 06:23:17 +02: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 18:05:26 +01:00
|
|
|
* @return string
|
2019-01-06 22:06:53 +01:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
2016-02-03 18:05:26 +01:00
|
|
|
*/
|
2020-10-13 06:23:17 +02:00
|
|
|
public static function widget(string $baseurl, int $uid, int $cid = 0)
|
2017-11-21 13:20:22 +01:00
|
|
|
{
|
2016-02-03 18:05:26 +01:00
|
|
|
$o = '';
|
|
|
|
|
|
|
|
//sort by last updated item
|
|
|
|
$lastitem = true;
|
|
|
|
|
2017-11-21 13:20:22 +01:00
|
|
|
$contacts = self::getList($uid, $lastitem, true, true);
|
2016-02-03 18:05:26 +01:00
|
|
|
$total = count($contacts);
|
|
|
|
$visible_forums = 10;
|
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($contacts)) {
|
2016-02-03 18:05:26 +01:00
|
|
|
$id = 0;
|
2016-02-17 08:08:28 +01:00
|
|
|
|
2019-01-21 22:53:03 +01:00
|
|
|
$entries = [];
|
|
|
|
|
2017-11-21 13:20:22 +01:00
|
|
|
foreach ($contacts as $contact) {
|
2016-02-03 18:05:26 +01:00
|
|
|
$selected = (($cid == $contact['id']) ? ' forum-selected' : '');
|
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$entry = [
|
2020-10-13 06:23:17 +02:00
|
|
|
'url' => $baseurl . '/' . $contact['id'],
|
2021-02-17 19:59:19 +01:00
|
|
|
'external_url' => Contact::magicLinkByContact($contact),
|
2016-02-03 18:05:26 +01:00
|
|
|
'name' => $contact['name'],
|
|
|
|
'cid' => $contact['id'],
|
|
|
|
'selected' => $selected,
|
2020-07-28 21:30:55 +02:00
|
|
|
'micro' => DI::baseUrl()->remove(Contact::getMicro($contact)),
|
2016-02-03 18:05:26 +01:00
|
|
|
'id' => ++$id,
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2016-02-03 18:05:26 +01:00
|
|
|
$entries[] = $entry;
|
|
|
|
}
|
|
|
|
|
2018-10-31 15:44:06 +01:00
|
|
|
$tpl = Renderer::getMarkupTemplate('widget_forumlist.tpl');
|
2016-02-03 18:05:26 +01:00
|
|
|
|
2018-10-31 15:35:50 +01:00
|
|
|
$o .= Renderer::replaceMacros(
|
2017-11-21 13:20:22 +01:00
|
|
|
$tpl,
|
2018-01-15 14:05:12 +01:00
|
|
|
[
|
2020-01-18 20:52:34 +01:00
|
|
|
'$title' => DI::l10n()->t('Forums'),
|
2017-11-21 13:20:22 +01:00
|
|
|
'$forums' => $entries,
|
2020-01-18 20:52:34 +01:00
|
|
|
'$link_desc' => DI::l10n()->t('External link to forum'),
|
2017-11-21 13:20:22 +01:00
|
|
|
'$total' => $total,
|
|
|
|
'$visible_forums' => $visible_forums,
|
2020-11-30 20:30:57 +01:00
|
|
|
'$showless' => DI::l10n()->t('show less'),
|
2020-01-18 20:52:34 +01:00
|
|
|
'$showmore' => DI::l10n()->t('show more')]
|
2017-11-21 13:20:22 +01:00
|
|
|
);
|
2016-02-03 18:05:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-19 07:05:23 +01:00
|
|
|
* Format forumlist as contact block
|
2016-02-03 18:05:26 +01: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 22:06:53 +01:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
2016-02-03 18:05:26 +01:00
|
|
|
*/
|
2017-11-21 13:20:22 +01:00
|
|
|
public static function profileAdvanced($uid)
|
|
|
|
{
|
2017-12-04 15:01:27 +01:00
|
|
|
$profile = intval(Feature::isEnabled($uid, 'forumlist_profile'));
|
2019-11-05 14:20:27 +01:00
|
|
|
if (!$profile) {
|
|
|
|
return '';
|
2017-11-21 13:20:22 +01:00
|
|
|
}
|
2016-02-03 18:05:26 +01:00
|
|
|
|
|
|
|
$o = '';
|
|
|
|
|
|
|
|
// place holder in case somebody wants configurability
|
|
|
|
$show_total = 9999;
|
|
|
|
|
|
|
|
//don't sort by last updated item
|
|
|
|
$lastitem = false;
|
|
|
|
|
2017-11-21 13:20:22 +01:00
|
|
|
$contacts = self::getList($uid, $lastitem, false, false);
|
2016-02-03 18:05:26 +01:00
|
|
|
|
|
|
|
$total_shown = 0;
|
2017-11-21 13:20:22 +01:00
|
|
|
foreach ($contacts as $contact) {
|
2019-11-05 14:20:27 +01:00
|
|
|
$o .= HTML::micropro($contact, true, 'forumlist-profile-advanced');
|
|
|
|
$total_shown++;
|
2017-11-21 13:20:22 +01:00
|
|
|
if ($total_shown == $show_total) {
|
2016-02-03 18:05:26 +01:00
|
|
|
break;
|
2017-11-21 13:20:22 +01:00
|
|
|
}
|
2016-02-03 18:05:26 +01:00
|
|
|
}
|
|
|
|
|
2019-11-05 14:20:27 +01:00
|
|
|
return $o;
|
2016-02-03 18:05:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-19 07:05:23 +01:00
|
|
|
* count unread forum items
|
2016-02-03 18:05:26 +01:00
|
|
|
*
|
|
|
|
* Count unread items of connected forums and private groups
|
|
|
|
*
|
|
|
|
* @return array
|
2019-01-07 16:24:06 +01:00
|
|
|
* 'id' => contact id
|
|
|
|
* 'name' => contact/forum name
|
|
|
|
* 'count' => counted unseen forum items
|
|
|
|
* @throws \Exception
|
2016-02-03 18:05:26 +01:00
|
|
|
*/
|
2017-11-21 13:20:22 +01:00
|
|
|
public static function countUnseenItems()
|
|
|
|
{
|
2019-03-01 17:15:34 +01:00
|
|
|
$stmtContacts = DBA::p(
|
2021-02-22 20:47:08 +01: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 21:32:13 +01:00
|
|
|
AND `contact`.`network` IN (?, ?) AND `contact`.`contact-type` = ?
|
2016-02-03 18:05:26 +01:00
|
|
|
AND NOT `contact`.`blocked` AND NOT `contact`.`hidden`
|
|
|
|
AND NOT `contact`.`pending` AND NOT `contact`.`archive`
|
2021-07-22 17:35:30 +02:00
|
|
|
AND `contact`.`uid` = ?
|
2021-01-17 21:32:13 +01:00
|
|
|
GROUP BY `contact`.`id`",
|
2022-10-20 21:22:47 +02:00
|
|
|
DI::userSession()->getLocalUserId(), Protocol::DFRN, Protocol::ACTIVITYPUB, Contact::TYPE_COMMUNITY, DI::userSession()->getLocalUserId()
|
2016-02-03 18:05:26 +01:00
|
|
|
);
|
|
|
|
|
2019-03-01 17:15:34 +01:00
|
|
|
return DBA::toArray($stmtContacts);
|
2016-02-03 18:05:26 +01:00
|
|
|
}
|
2016-02-17 00:01:24 +01:00
|
|
|
}
|