]> git.mxchange.org Git - friendica.git/blob - src/Module/Conversation/Community.php
Mode depending control for the behaviour with blocked contacts
[friendica.git] / src / Module / Conversation / Community.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, 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  * See update_profile.php for documentation
21  */
22
23 namespace Friendica\Module\Conversation;
24
25 use Friendica\BaseModule;
26 use Friendica\Content\BoundariesPager;
27 use Friendica\Content\Conversation;
28 use Friendica\Content\Feature;
29 use Friendica\Content\Nav;
30 use Friendica\Content\Text\HTML;
31 use Friendica\Content\Widget;
32 use Friendica\Content\Widget\TrendingTags;
33 use Friendica\Core\Renderer;
34 use Friendica\Database\DBA;
35 use Friendica\DI;
36 use Friendica\Model\Item;
37 use Friendica\Model\Post;
38 use Friendica\Model\User;
39 use Friendica\Network\HTTPException;
40
41 class Community extends BaseModule
42 {
43         /**
44          * Type of the community page
45          * @{
46          */
47         const DISABLED         = -2;
48         const DISABLED_VISITOR = -1;
49         const LOCAL            = 0;
50         const GLOBAL           = 1;
51         const LOCAL_AND_GLOBAL = 2;
52         /**
53          * @}
54          */
55
56         protected static $page_style;
57         protected static $content;
58         protected static $accountTypeString;
59         protected static $accountType;
60         protected static $itemsPerPage;
61         protected static $min_id;
62         protected static $max_id;
63         protected static $item_id;
64
65         protected function content(array $request = []): string
66         {
67                 $this->parseRequest();
68
69                 $t = Renderer::getMarkupTemplate("community.tpl");
70                 $o = Renderer::replaceMacros($t, [
71                         '$content' => '',
72                         '$header' => '',
73                         '$show_global_community_hint' => (self::$content == 'global') && DI::config()->get('system', 'show_global_community_hint'),
74                         '$global_community_hint' => DI::l10n()->t("This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users.")
75                 ]);
76
77                 if (DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'system', 'infinite_scroll')) {
78                         $tpl = Renderer::getMarkupTemplate('infinite_scroll_head.tpl');
79                         $o .= Renderer::replaceMacros($tpl, ['$reload_uri' => DI::args()->getQueryString()]);
80                 }
81
82                 if (empty($_GET['mode']) || ($_GET['mode'] != 'raw')) {
83                         $tabs = [];
84
85                         if ((DI::userSession()->isAuthenticated() || in_array(self::$page_style, [self::LOCAL_AND_GLOBAL, self::LOCAL])) && empty(DI::config()->get('system', 'singleuser'))) {
86                                 $tabs[] = [
87                                         'label' => DI::l10n()->t('Local Community'),
88                                         'url' => 'community/local',
89                                         'sel' => self::$content == 'local' ? 'active' : '',
90                                         'title' => DI::l10n()->t('Posts from local users on this server'),
91                                         'id' => 'community-local-tab',
92                                         'accesskey' => 'l'
93                                 ];
94                         }
95         
96                         if (DI::userSession()->isAuthenticated() || in_array(self::$page_style, [self::LOCAL_AND_GLOBAL, self::GLOBAL])) {
97                                 $tabs[] = [
98                                         'label' => DI::l10n()->t('Global Community'),
99                                         'url' => 'community/global',
100                                         'sel' => self::$content == 'global' ? 'active' : '',
101                                         'title' => DI::l10n()->t('Posts from users of the whole federated network'),
102                                         'id' => 'community-global-tab',
103                                         'accesskey' => 'g'
104                                 ];
105                         }
106
107                         $tab_tpl = Renderer::getMarkupTemplate('common_tabs.tpl');
108                         $o .= Renderer::replaceMacros($tab_tpl, ['$tabs' => $tabs]);
109
110                         Nav::setSelected('community');
111
112                         DI::page()['aside'] .= Widget::accountTypes('community/' . self::$content, self::$accountTypeString);
113         
114                         if (DI::userSession()->getLocalUserId() && DI::config()->get('system', 'community_no_sharer')) {
115                                 $path = self::$content;
116                                 if (!empty($this->parameters['accounttype'])) {
117                                         $path .= '/' . $this->parameters['accounttype'];
118                                 }
119                                 $query_parameters = [];
120                 
121                                 if (!empty($_GET['min_id'])) {
122                                         $query_parameters['min_id'] = $_GET['min_id'];
123                                 }
124                                 if (!empty($_GET['max_id'])) {
125                                         $query_parameters['max_id'] = $_GET['max_id'];
126                                 }
127                                 if (!empty($_GET['last_commented'])) {
128                                         $query_parameters['max_id'] = $_GET['last_commented'];
129                                 }
130                 
131                                 $path_all = $path . (!empty($query_parameters) ? '?' . http_build_query($query_parameters) : '');
132                                 $path_no_sharer = $path . '?' . http_build_query(array_merge($query_parameters, ['no_sharer' => true]));
133                                 DI::page()['aside'] .= Renderer::replaceMacros(Renderer::getMarkupTemplate('widget/community_sharer.tpl'), [
134                                         '$title'           => DI::l10n()->t('Own Contacts'),
135                                         '$path_all'        => $path_all,
136                                         '$path_no_sharer'  => $path_no_sharer,
137                                         '$no_sharer'       => !empty($_REQUEST['no_sharer']),
138                                         '$all'             => DI::l10n()->t('Include'),
139                                         '$no_sharer_label' => DI::l10n()->t('Hide'),
140                                 ]);
141                         }
142         
143                         if (Feature::isEnabled(DI::userSession()->getLocalUserId(), 'trending_tags')) {
144                                 DI::page()['aside'] .= TrendingTags::getHTML(self::$content);
145                         }
146
147                         // We need the editor here to be able to reshare an item.
148                         if (DI::userSession()->isAuthenticated()) {
149                                 $o .= DI::conversation()->statusEditor([], 0, true);
150                         }
151                 }
152
153                 $items = self::getItems();
154
155                 if (!DBA::isResult($items)) {
156                         DI::sysmsg()->addNotice(DI::l10n()->t('No results.'));
157                         return $o;
158                 }
159
160                 $o .= DI::conversation()->create($items, Conversation::MODE_COMMUNITY, false, false, 'commented', DI::userSession()->getLocalUserId());
161
162                 $pager = new BoundariesPager(
163                         DI::l10n(),
164                         DI::args()->getQueryString(),
165                         $items[0]['commented'],
166                         $items[count($items) - 1]['commented'],
167                         self::$itemsPerPage
168                 );
169
170                 if (DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'system', 'infinite_scroll')) {
171                         $o .= HTML::scrollLoader();
172                 } else {
173                         $o .= $pager->renderMinimal(count($items));
174                 }
175
176                 return $o;
177         }
178
179         /**
180          * Computes module parameters from the request and local configuration
181          *
182          * @throws HTTPException\BadRequestException
183          * @throws HTTPException\ForbiddenException
184          */
185         protected function parseRequest()
186         {
187                 if (DI::config()->get('system', 'block_public') && !DI::userSession()->isAuthenticated()) {
188                         throw new HTTPException\ForbiddenException(DI::l10n()->t('Public access denied.'));
189                 }
190
191                 self::$page_style = DI::config()->get('system', 'community_page_style');
192
193                 if (self::$page_style == self::DISABLED) {
194                         throw new HTTPException\ForbiddenException(DI::l10n()->t('Access denied.'));
195                 }
196
197                 self::$accountTypeString = $_GET['accounttype'] ?? $this->parameters['accounttype'] ?? '';
198                 self::$accountType = User::getAccountTypeByString(self::$accountTypeString);
199
200                 self::$content = $this->parameters['content'] ?? '';
201                 if (!self::$content) {
202                         if (!empty(DI::config()->get('system', 'singleuser'))) {
203                                 // On single user systems only the global page does make sense
204                                 self::$content = 'global';
205                         } else {
206                                 // When only the global community is allowed, we use this as default
207                                 self::$content = self::$page_style == self::GLOBAL ? 'global' : 'local';
208                         }
209                 }
210
211                 if (!in_array(self::$content, ['local', 'global'])) {
212                         throw new HTTPException\BadRequestException(DI::l10n()->t('Community option not available.'));
213                 }
214
215                 // Check if we are allowed to display the content to visitors
216                 if (!DI::userSession()->isAuthenticated()) {
217                         $available = self::$page_style == self::LOCAL_AND_GLOBAL;
218
219                         if (!$available) {
220                                 $available = (self::$page_style == self::LOCAL) && (self::$content == 'local');
221                         }
222
223                         if (!$available) {
224                                 $available = (self::$page_style == self::GLOBAL) && (self::$content == 'global');
225                         }
226
227                         if (!$available) {
228                                 throw new HTTPException\ForbiddenException(DI::l10n()->t('Not available.'));
229                         }
230                 }
231
232                 if (DI::mode()->isMobile()) {
233                         self::$itemsPerPage = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'system', 'itemspage_mobile_network',
234                                 DI::config()->get('system', 'itemspage_network_mobile'));
235                 } else {
236                         self::$itemsPerPage = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'system', 'itemspage_network',
237                                 DI::config()->get('system', 'itemspage_network'));
238                 }
239
240                 if (!empty($_GET['item'])) {
241                         $item = Post::selectFirst(['parent'], ['id' => $_GET['item']]);
242                         self::$item_id = $item['parent'] ?? 0;
243                 } else {
244                         self::$item_id = 0;
245                 }
246
247                 self::$min_id = $_GET['min_id'] ?? null;
248                 self::$max_id   = $_GET['max_id']   ?? null;
249                 self::$max_id   = $_GET['last_commented'] ?? self::$max_id;
250         }
251
252         /**
253          * Computes the displayed items.
254          *
255          * Community pages have a restriction on how many successive posts by the same author can show on any given page,
256          * so we may have to retrieve more content beyond the first query
257          *
258          * @return array
259          * @throws \Exception
260          */
261         protected static function getItems()
262         {
263                 $items = self::selectItems(self::$min_id, self::$max_id, self::$item_id, self::$itemsPerPage);
264
265                 $maxpostperauthor = (int) DI::config()->get('system', 'max_author_posts_community_page');
266                 if ($maxpostperauthor != 0 && self::$content == 'local') {
267                         $count = 1;
268                         $previousauthor = '';
269                         $numposts = 0;
270                         $selected_items = [];
271
272                         while (count($selected_items) < self::$itemsPerPage && ++$count < 50 && count($items) > 0) {
273                                 foreach ($items as $item) {
274                                         if ($previousauthor == $item["author-link"]) {
275                                                 ++$numposts;
276                                         } else {
277                                                 $numposts = 0;
278                                         }
279                                         $previousauthor = $item["author-link"];
280
281                                         if (($numposts < $maxpostperauthor) && (count($selected_items) < self::$itemsPerPage)) {
282                                                 $selected_items[] = $item;
283                                         }
284                                 }
285
286                                 // If we're looking at a "previous page", the lookup continues forward in time because the list is
287                                 // sorted in chronologically decreasing order
288                                 if (isset(self::$min_id)) {
289                                         self::$min_id = $items[0]['commented'];
290                                 } else {
291                                         // In any other case, the lookup continues backwards in time
292                                         self::$max_id = $items[count($items) - 1]['commented'];
293                                 }
294
295                                 $items = self::selectItems(self::$min_id, self::$max_id, self::$item_id, self::$itemsPerPage);
296                         }
297                 } else {
298                         $selected_items = $items;
299                 }
300
301                 return $selected_items;
302         }
303
304         /**
305          * Database query for the comunity page
306          *
307          * @param $min_id
308          * @param $max_id
309          * @param $itemspage
310          * @return array
311          * @throws \Exception
312          * @TODO Move to repository/factory
313          */
314         private static function selectItems($min_id, $max_id, $item_id, $itemspage)
315         {
316                 if (self::$content == 'local') {
317                         if (!is_null(self::$accountType)) {
318                                 $condition = ["`wall` AND `origin` AND `private` = ? AND `owner-contact-type` = ?", Item::PUBLIC, self::$accountType];
319                         } else {
320                                 $condition = ["`wall` AND `origin` AND `private` = ?", Item::PUBLIC];
321                         }
322                 } elseif (self::$content == 'global') {
323                         if (!is_null(self::$accountType)) {
324                                 $condition = ["`uid` = ? AND `private` = ? AND `owner-contact-type` = ?", 0, Item::PUBLIC, self::$accountType];
325                         } else {
326                                 $condition = ["`uid` = ? AND `private` = ?", 0, Item::PUBLIC];
327                         }
328                 } else {
329                         return [];
330                 }
331
332                 $params = ['order' => ['commented' => true], 'limit' => $itemspage];
333
334                 if (!empty($item_id)) {
335                         $condition[0] .= " AND `id` = ?";
336                         $condition[] = $item_id;
337                 } else {
338                         if (DI::userSession()->getLocalUserId() && !empty($_REQUEST['no_sharer'])) {
339                                 $condition[0] .= " AND NOT `uri-id` IN (SELECT `uri-id` FROM `post-user` WHERE `post-user`.`uid` = ? AND `post-user`.`uri-id` = `post-thread-user-view`.`uri-id`)";
340                                 $condition[] = DI::userSession()->getLocalUserId();
341                         }
342         
343                         if (isset($max_id)) {
344                                 $condition[0] .= " AND `commented` < ?";
345                                 $condition[] = $max_id;
346                         }
347
348                         if (isset($min_id)) {
349                                 $condition[0] .= " AND `commented` > ?";
350                                 $condition[] = $min_id;
351
352                                 // Previous page case: we want the items closest to min_id but for that we need to reverse the query order
353                                 if (!isset($max_id)) {
354                                         $params['order']['commented'] = false;
355                                 }
356                         }
357                 }
358
359                 $r = Post::selectThreadForUser(0, ['uri-id', 'commented', 'author-link'], $condition, $params);
360
361                 $items = Post::toArray($r);
362                 if (empty($items)) {
363                         return [];
364                 }
365
366                 // Previous page case: once we get the relevant items closest to min_id, we need to restore the expected display order
367                 if (empty($item_id) && isset($min_id) && !isset($max_id)) {
368                         $items = array_reverse($items);
369                 }
370
371                 return $items;
372         }
373 }