Merge pull request #14040 from annando/widget-lock
[friendica.git/.git] / src / Content / GroupManager.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2024, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
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.
11  *
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.
16  *
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/>.
19  *
20  */
21
22 namespace Friendica\Content;
23
24 use Friendica\Content\Text\HTML;
25 use Friendica\Core\Protocol;
26 use Friendica\Core\Renderer;
27 use Friendica\Database\DBA;
28 use Friendica\DI;
29 use Friendica\Model\Contact;
30
31 /**
32  * This class handles methods related to the group functionality
33  */
34 class GroupManager
35 {
36         /**
37          * Function to list all groups a user is connected with
38          *
39          * @param int     $uid         of the profile owner
40          * @param boolean $lastitem    Sort by lastitem
41          * @param boolean $showhidden  Show groups which are not hidden
42          * @param boolean $showprivate Show private groups
43          *
44          * @return array
45          *    'url'    => group url
46          *    'name'    => group name
47          *    'id'    => number of the key from the array
48          *    'micro' => contact photo in format micro
49          *    'thumb' => contact photo in format thumb
50          * @throws \Exception
51          */
52         public static function getList($uid, $lastitem, $showhidden = true, $showprivate = false)
53         {
54                 if ($lastitem) {
55                         $params = ['order' => ['last-item' => true]];
56                 } else {
57                         $params = ['order' => ['name']];
58                 }
59
60                 $condition = [
61                         'contact-type' => Contact::TYPE_COMMUNITY,
62                         'network' => [Protocol::DFRN, Protocol::ACTIVITYPUB],
63                         'uid' => $uid,
64                         'blocked' => false,
65                         'pending' => false,
66                         'archive' => false,
67                 ];
68
69                 $condition = DBA::mergeConditions($condition, ["`platform` != ?", 'peertube']);
70
71                 if (!$showprivate) {
72                         $condition = DBA::mergeConditions($condition, ['manually-approve' => false]);
73                 }
74
75                 if (!$showhidden) {
76                         $condition = DBA::mergeConditions($condition, ['hidden' => false]);
77                 }
78
79                 $groupList = [];
80
81                 $fields = ['id', 'url', 'alias', 'name', 'micro', 'thumb', 'avatar', 'network', 'uid'];
82                 $contacts = DBA::select('account-user-view', $fields, $condition, $params);
83                 if (!$contacts) {
84                         return $groupList;
85                 }
86
87                 while ($contact = DBA::fetch($contacts)) {
88                         $groupList[] = [
89                                 'url'   => $contact['url'],
90                                 'alias' => $contact['alias'],
91                                 'name'  => $contact['name'],
92                                 'id'    => $contact['id'],
93                                 'micro' => $contact['micro'],
94                                 'thumb' => $contact['thumb'],
95                         ];
96                 }
97                 DBA::close($contacts);
98
99                 return($groupList);
100         }
101
102
103         /**
104          * Group list widget
105          *
106          * Sidebar widget to show subscribed Friendica groups. If activated
107          * in the settings, it appears in the network page sidebar
108          *
109          * @param int $uid The ID of the User
110          * @return string
111          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
112          * @throws \ImagickException
113          */
114         public static function widget(int $uid)
115         {
116                 $o = '';
117
118                 //sort by last updated item
119                 $lastitem = true;
120
121                 $contacts = self::getList($uid, $lastitem, true, true);
122                 $total = count($contacts);
123                 $visibleGroups = 10;
124
125                 if (DBA::isResult($contacts)) {
126                         $id = 0;
127
128                         $entries = [];
129
130                         foreach ($contacts as $contact) {
131                                 $entry = [
132                                         'url' => 'contact/' . $contact['id'] . '/conversations',
133                                         'external_url' => Contact::magicLinkByContact($contact),
134                                         'name' => $contact['name'],
135                                         'cid' => $contact['id'],
136                                         'micro' => DI::baseUrl()->remove(Contact::getMicro($contact)),
137                                         'id' => ++$id,
138                                 ];
139                                 $entries[] = $entry;
140                         }
141
142                         $tpl = Renderer::getMarkupTemplate('widget/group_list.tpl');
143
144                         $o .= Renderer::replaceMacros(
145                                 $tpl,
146                                 [
147                                         '$title'        => DI::l10n()->t('Groups'),
148                                         '$groups'       => $entries,
149                                         '$link_desc'    => DI::l10n()->t('External link to group'),
150                                         '$new_group_page' => 'register/',
151                                         '$total'        => $total,
152                                         '$visible_groups' => $visibleGroups,
153                                         '$showless'     => DI::l10n()->t('show less'),
154                                         '$showmore'     => DI::l10n()->t('show more'),
155                                         '$create_new_group' => DI::l10n()->t('Create new group')]
156                         );
157                 }
158
159                 return $o;
160         }
161
162         /**
163          * Format group list as contact block
164          *
165          * This function is used to show the group list in
166          * the advanced profile.
167          *
168          * @param int $uid The ID of the User
169          * @return string
170          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
171          * @throws \ImagickException
172          */
173         public static function profileAdvanced($uid)
174         {
175                 if (!Feature::isEnabled($uid, Feature::GROUPS)) {
176                         return '';
177                 }
178
179                 $o = '';
180
181                 // placeholder in case somebody wants configurability
182                 $show_total = 9999;
183
184                 //don't sort by last updated item
185                 $lastitem = false;
186
187                 $contacts = self::getList($uid, $lastitem, false, false);
188
189                 $total_shown = 0;
190                 foreach ($contacts as $contact) {
191                         $o .= HTML::micropro($contact, true, 'grouplist-profile-advanced');
192                         $total_shown++;
193                         if ($total_shown == $show_total) {
194                                 break;
195                         }
196                 }
197
198                 return $o;
199         }
200
201         /**
202          * count unread group items
203          *
204          * Count unread items of connected groups and private groups
205          *
206          * @return array
207          *    'id' => contact id
208          *    'name' => contact/group name
209          *    'count' => counted unseen group items
210          * @throws \Exception
211          */
212         public static function countUnseenItems()
213         {
214                 $stmtContacts = DBA::p(
215                         "SELECT `contact`.`id`, `contact`.`name`, COUNT(*) AS `count` FROM `post-user-view`
216                                 INNER JOIN `contact` ON `post-user-view`.`contact-id` = `contact`.`id`
217                                 WHERE `post-user-view`.`uid` = ? AND `post-user-view`.`visible` AND NOT `post-user-view`.`deleted` AND `post-user-view`.`unseen`
218                                 AND `contact`.`network` IN (?, ?) AND `contact`.`contact-type` = ?
219                                 AND NOT `contact`.`blocked` AND NOT `contact`.`hidden`
220                                 AND NOT `contact`.`pending` AND NOT `contact`.`archive`
221                                 AND `contact`.`uid` = ?
222                                 GROUP BY `contact`.`id`",
223                         DI::userSession()->getLocalUserId(), Protocol::DFRN, Protocol::ACTIVITYPUB, Contact::TYPE_COMMUNITY, DI::userSession()->getLocalUserId()
224                 );
225
226                 return DBA::toArray($stmtContacts);
227         }
228 }