3 * @copyright Copyright (C) 2020, Friendica
5 * @license GNU AGPL version 3 or any later version
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as
9 * published by the Free Software Foundation, either version 3 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
22 namespace Friendica\Content;
24 use Friendica\Content\Text\HTML;
25 use Friendica\Core\Protocol;
26 use Friendica\Core\Renderer;
27 use Friendica\Database\DBA;
29 use Friendica\Model\Contact;
32 * This class handles methods related to the forum functionality
37 * Function to list all forums a user is connected with
39 * @param int $uid of the profile owner
40 * @param boolean $lastitem Sort by lastitem
41 * @param boolean $showhidden Show frorums which are not hidden
42 * @param boolean $showprivate Show private groups
46 * 'name' => forum name
47 * 'id' => number of the key from the array
48 * 'micro' => contact photo in format micro
49 * 'thumb' => contact photo in format thumb
52 public static function getList($uid, $lastitem, $showhidden = true, $showprivate = false)
55 $params = ['order' => ['last-item' => true]];
57 $params = ['order' => ['name']];
60 $condition_str = "`network` IN (?, ?) AND `uid` = ? AND NOT `blocked` AND NOT `pending` AND NOT `archive` AND ";
63 $condition_str .= '(`forum` OR `prv`)';
65 $condition_str .= '`forum`';
69 $condition_str .= ' AND NOT `hidden`';
74 $fields = ['id', 'url', 'name', 'micro', 'thumb', 'avatar'];
75 $condition = [$condition_str, Protocol::DFRN, Protocol::ACTIVITYPUB, $uid];
76 $contacts = DBA::select('contact', $fields, $condition, $params);
81 while ($contact = DBA::fetch($contacts)) {
83 'url' => $contact['url'],
84 'name' => $contact['name'],
85 'id' => $contact['id'],
86 'micro' => $contact['micro'],
87 'thumb' => $contact['thumb'],
90 DBA::close($contacts);
99 * Sidebar widget to show subcribed friendica forums. If activated
100 * in the settings, it appears at the notwork page sidebar
102 * @param int $uid The ID of the User
103 * @param int $cid The contact id which is used to mark a forum as "selected"
105 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
106 * @throws \ImagickException
108 public static function widget($uid, $cid = 0)
112 //sort by last updated item
115 $contacts = self::getList($uid, $lastitem, true, true);
116 $total = count($contacts);
117 $visible_forums = 10;
119 if (DBA::isResult($contacts)) {
124 foreach ($contacts as $contact) {
125 $selected = (($cid == $contact['id']) ? ' forum-selected' : '');
128 'url' => 'network?contactid=' . $contact['id'],
129 'external_url' => Contact::magicLink($contact['url']),
130 'name' => $contact['name'],
131 'cid' => $contact['id'],
132 'selected' => $selected,
133 'micro' => DI::baseUrl()->remove(Contact::getMicro($contact)),
139 $tpl = Renderer::getMarkupTemplate('widget_forumlist.tpl');
141 $o .= Renderer::replaceMacros(
144 '$title' => DI::l10n()->t('Forums'),
145 '$forums' => $entries,
146 '$link_desc' => DI::l10n()->t('External link to forum'),
148 '$visible_forums' => $visible_forums,
149 '$showmore' => DI::l10n()->t('show more')]
157 * Format forumlist as contact block
159 * This function is used to show the forumlist in
160 * the advanced profile.
162 * @param int $uid The ID of the User
164 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
165 * @throws \ImagickException
167 public static function profileAdvanced($uid)
169 $profile = intval(Feature::isEnabled($uid, 'forumlist_profile'));
176 // place holder in case somebody wants configurability
179 //don't sort by last updated item
182 $contacts = self::getList($uid, $lastitem, false, false);
185 foreach ($contacts as $contact) {
186 $o .= HTML::micropro($contact, true, 'forumlist-profile-advanced');
188 if ($total_shown == $show_total) {
197 * count unread forum items
199 * Count unread items of connected forums and private groups
203 * 'name' => contact/forum name
204 * 'count' => counted unseen forum items
207 public static function countUnseenItems()
209 $stmtContacts = DBA::p(
210 "SELECT `contact`.`id`, `contact`.`name`, COUNT(*) AS `count` FROM `item`
211 INNER JOIN `contact` ON `item`.`contact-id` = `contact`.`id`
212 WHERE `item`.`uid` = ? AND `item`.`visible` AND NOT `item`.`deleted` AND `item`.`unseen`
213 AND `contact`.`network`= 'dfrn' AND (`contact`.`forum` OR `contact`.`prv`)
214 AND NOT `contact`.`blocked` AND NOT `contact`.`hidden`
215 AND NOT `contact`.`pending` AND NOT `contact`.`archive`
216 GROUP BY `contact`.`id` ",
220 return DBA::toArray($stmtContacts);