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