]> git.mxchange.org Git - friendica.git/blob - src/Module/Conversation/Timeline.php
Use full text search
[friendica.git] / src / Module / Conversation / Timeline.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  */
21
22 namespace Friendica\Module\Conversation;
23
24 use Friendica\App;
25 use Friendica\App\Mode;
26 use Friendica\BaseModule;
27 use Friendica\Content\Conversation\Collection\Timelines;
28 use Friendica\Content\Conversation\Entity\Timeline as TimelineEntity;
29 use Friendica\Content\Conversation\Repository\Channel;
30 use Friendica\Core\Cache\Capability\ICanCache;
31 use Friendica\Core\Cache\Enum\Duration;
32 use Friendica\Core\Config\Capability\IManageConfigValues;
33 use Friendica\Core\L10n;
34 use Friendica\Core\PConfig\Capability\IManagePersonalConfigValues;
35 use Friendica\Core\Renderer;
36 use Friendica\Core\Session\Capability\IHandleUserSessions;
37 use Friendica\Model\Contact;
38 use Friendica\Model\User;
39 use Friendica\Database\Database;
40 use Friendica\Database\DBA;
41 use Friendica\Model\Item;
42 use Friendica\Model\Post;
43 use Friendica\Module\Response;
44 use Friendica\Util\DateTimeFormat;
45 use Friendica\Util\Profiler;
46 use Psr\Log\LoggerInterface;
47
48 class Timeline extends BaseModule
49 {
50         /** @var string */
51         protected $selectedTab;
52         /** @var mixed */
53         protected $minId;
54         /** @var mixed */
55         protected $maxId;
56         /** @var string */
57         protected $accountTypeString;
58         /** @var int */
59         protected $accountType;
60         /** @var int */
61         protected $itemUriId;
62         /** @var int */
63         protected $itemsPerPage;
64         /** @var bool */
65         protected $noSharer;
66         /** @var bool */
67         protected $force;
68         /** @var bool */
69         protected $update;
70
71         /** @var App\Mode $mode */
72         protected $mode;
73         /** @var IHandleUserSessions */
74         protected $session;
75         /** @var Database */
76         protected $database;
77         /** @var IManagePersonalConfigValues */
78         protected $pConfig;
79         /** @var IManageConfigValues The config */
80         protected $config;
81         /** @var ICanCache */
82         protected $cache;
83         /** @var Channel */
84         protected $channel;
85
86         public function __construct(Channel $channel, Mode $mode, IHandleUserSessions $session, Database $database, IManagePersonalConfigValues $pConfig, IManageConfigValues $config, ICanCache $cache, L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, array $server, array $parameters = [])
87         {
88                 parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
89
90                 $this->channel  = $channel;
91                 $this->mode     = $mode;
92                 $this->session  = $session;
93                 $this->database = $database;
94                 $this->pConfig  = $pConfig;
95                 $this->config   = $config;
96                 $this->cache    = $cache;
97         }
98
99         /**
100          * Computes module parameters from the request and local configuration
101          *
102          * @throws HTTPException\BadRequestException
103          * @throws HTTPException\ForbiddenException
104          */
105         protected function parseRequest(array $request)
106         {
107                 $this->logger->debug('Got request', $request);
108                 $this->selectedTab = $this->parameters['content'] ?? $request['channel'] ?? '';
109
110                 $this->accountTypeString = $request['accounttype'] ?? $this->parameters['accounttype'] ?? '';
111                 $this->accountType       = User::getAccountTypeByString($this->accountTypeString);
112
113                 if ($this->mode->isMobile()) {
114                         $this->itemsPerPage = $this->pConfig->get(
115                                 $this->session->getLocalUserId(),
116                                 'system',
117                                 'itemspage_mobile_network',
118                                 $this->config->get('system', 'itemspage_network_mobile')
119                         );
120                 } else {
121                         $this->itemsPerPage = $this->pConfig->get(
122                                 $this->session->getLocalUserId(),
123                                 'system',
124                                 'itemspage_network',
125                                 $this->config->get('system', 'itemspage_network')
126                         );
127                 }
128
129                 if (!empty($request['item'])) {
130                         $item            = Post::selectFirst(['parent', 'parent-uri-id'], ['id' => $request['item']]);
131                         $this->itemUriId = $item['parent-uri-id'] ?? 0;
132                 } else {
133                         $this->itemUriId = 0;
134                 }
135
136                 $this->minId = $request['min_id'] ?? null;
137                 $this->maxId = $request['max_id'] ?? null;
138
139                 $this->noSharer = !empty($request['no_sharer']);
140                 $this->force    = !empty($request['force']) && !empty($request['item']);
141                 $this->update   = !empty($request['force']) && !empty($request['first_received']) && !empty($request['first_created']) && !empty($request['first_uriid']) && !empty($request['first_commented']);
142         }
143
144         protected function getNoSharerWidget(string $base): string
145         {
146                 $path = $this->selectedTab;
147                 if (!empty($this->accountTypeString)) {
148                         $path .= '/' . $this->accountTypeString;
149                 }
150                 $query_parameters = [];
151
152                 if (!empty($this->minId)) {
153                         $query_parameters['min_id'] = $this->minId;
154                 }
155                 if (!empty($this->maxId)) {
156                         $query_parameters['max_id'] = $this->maxId;
157                 }
158
159                 $path_all       = $path . (!empty($query_parameters) ? '?' . http_build_query($query_parameters) : '');
160                 $path_no_sharer = $path . '?' . http_build_query(array_merge($query_parameters, ['no_sharer' => true]));
161                 return Renderer::replaceMacros(Renderer::getMarkupTemplate('widget/community_sharer.tpl'), [
162                         '$title'           => $this->l10n->t('Own Contacts'),
163                         '$path_all'        => $path_all,
164                         '$path_no_sharer'  => $path_no_sharer,
165                         '$no_sharer'       => $this->noSharer,
166                         '$all'             => $this->l10n->t('Include'),
167                         '$no_sharer_label' => $this->l10n->t('Hide'),
168                         '$base'            => $base,
169                 ]);
170         }
171
172         protected function getTabArray(Timelines $timelines, string $prefix, string $parameter = ''): array
173         {
174                 $tabs = [];
175
176                 foreach ($timelines as $tab) {
177                         if (is_null($tab->path) && !empty($parameter)) {
178                                 $path = $prefix . '?' . http_build_query([$parameter => $tab->code]);
179                         } else {
180                                 $path = $tab->path ?? $prefix . '/' . $tab->code;
181                         }
182                         $tabs[$tab->code] = [
183                                 'code'      => $tab->code,
184                                 'label'     => $tab->label,
185                                 'url'       => $path,
186                                 'sel'       => $this->selectedTab == $tab->code ? 'active' : '',
187                                 'title'     => $tab->description,
188                                 'id'        => $prefix . '-' . $tab->code . '-tab',
189                                 'accesskey' => $tab->accessKey,
190                         ];
191                 }
192                 return $tabs;
193         }
194
195         /**
196          * Database query for the channel page
197          *
198          * @return array
199          * @throws \Exception
200          */
201         protected function getChannelItems()
202         {
203                 $items = $this->getRawChannelItems();
204
205                 $contacts = $this->database->selectToArray('user-contact', ['cid'], ['channel-frequency' => Contact\User::FREQUENCY_REDUCED, 'cid' => array_column($items, 'owner-id')]);
206                 $reduced  = array_column($contacts, 'cid');
207
208                 $maxpostperauthor = $this->config->get('channel', 'max_posts_per_author');
209
210                 if ($maxpostperauthor != 0) {
211                         $count          = 1;
212                         $owner_posts    = [];
213                         $selected_items = [];
214
215                         while (count($selected_items) < $this->itemsPerPage && ++$count < 50 && count($items) > 0) {
216                                 $maxposts = round((count($items) / $this->itemsPerPage) * $maxpostperauthor);
217                                 $minId = $items[array_key_first($items)]['created'];
218                                 $maxId = $items[array_key_last($items)]['created'];
219
220                                 foreach ($items as $item) {
221                                         if (!in_array($item['owner-id'], $reduced)) {
222                                                 continue;
223                                         }
224                                         $owner_posts[$item['owner-id']][$item['uri-id']] = (($item['comments'] * 100) + $item['activities']);
225                                 }
226                                 foreach ($owner_posts as $posts) {
227                                         if (count($posts) <= $maxposts) {
228                                                 continue;
229                                         }
230                                         asort($posts);
231                                         while (count($posts) > $maxposts) {
232                                                 $uri_id = array_key_first($posts);
233                                                 unset($posts[$uri_id]);
234                                                 unset($items[$uri_id]);
235                                         }
236                                 }
237                                 $selected_items = array_merge($selected_items, $items);
238
239                                 // If we're looking at a "previous page", the lookup continues forward in time because the list is
240                                 // sorted in chronologically decreasing order
241                                 if (!empty($this->minId)) {
242                                         $this->minId = $minId;
243                                 } else {
244                                         // In any other case, the lookup continues backwards in time
245                                         $this->maxId = $maxId;
246                                 }
247
248                                 if (count($selected_items) < $this->itemsPerPage) {
249                                         $items = $this->getRawChannelItems();
250                                 }
251                         }
252                 } else {
253                         $selected_items = $items;
254                 }
255
256                 $condition = ['unseen' => true, 'uid' => $this->session->getLocalUserId(), 'parent-uri-id' => array_column($selected_items, 'uri-id')];
257                 $this->setItemsSeenByCondition($condition);
258
259                 return $selected_items;
260         }
261
262         /**
263          * Database query for the channel page
264          *
265          * @return array
266          * @throws \Exception
267          */
268         private function getRawChannelItems()
269         {
270                 $uid = $this->session->getLocalUserId();
271
272                 if ($this->selectedTab == TimelineEntity::WHATSHOT) {
273                         if (!is_null($this->accountType)) {
274                                 $condition = ["(`comments` > ? OR `activities` > ?) AND `contact-type` = ?", $this->getMedianComments($uid, 4), $this->getMedianActivities($uid, 4), $this->accountType];
275                         } else {
276                                 $condition = ["(`comments` > ? OR `activities` > ?) AND `contact-type` != ?", $this->getMedianComments($uid, 4), $this->getMedianActivities($uid, 4), Contact::TYPE_COMMUNITY];
277                         }
278                 } elseif ($this->selectedTab == TimelineEntity::FORYOU) {
279                         $cid = Contact::getPublicIdByUserId($uid);
280
281                         $condition = [
282                                 "(`owner-id` IN (SELECT `cid` FROM `contact-relation` WHERE `relation-cid` = ? AND `relation-thread-score` > ?) OR
283                                 ((`comments` >= ? OR `activities` >= ?) AND `owner-id` IN (SELECT `cid` FROM `contact-relation` WHERE `follows` AND `relation-cid` = ?)) OR
284                                 (`owner-id` IN (SELECT `cid` FROM `user-contact` WHERE `uid` = ? AND (`notify_new_posts` OR `channel-frequency` = ?))))",
285                                 $cid, $this->getMedianRelationThreadScore($cid, 4), $this->getMedianComments($uid, 4), $this->getMedianActivities($uid, 4), $cid,
286                                 $uid, Contact\User::FREQUENCY_ALWAYS
287                         ];
288                 } elseif ($this->selectedTab == TimelineEntity::FOLLOWERS) {
289                         $condition = ["`owner-id` IN (SELECT `pid` FROM `account-user-view` WHERE `uid` = ? AND `rel` = ?)", $uid, Contact::FOLLOWER];
290                 } elseif ($this->selectedTab == TimelineEntity::SHARERSOFSHARERS) {
291                         $cid = Contact::getPublicIdByUserId($uid);
292
293                         // @todo Suggest posts from contacts that are followed most by our followers
294                         $condition = [
295                                 "`owner-id` IN (SELECT `cid` FROM `contact-relation` WHERE `follows` AND `last-interaction` > ?
296                                 AND `relation-cid` IN (SELECT `cid` FROM `contact-relation` WHERE `follows` AND `relation-cid` = ? AND `relation-thread-score` >= ?)
297                                 AND NOT `cid` IN (SELECT `cid` FROM `contact-relation` WHERE `follows` AND `relation-cid` = ?))",
298                                 DateTimeFormat::utc('now - ' . $this->config->get('channel', 'sharer_interaction_days') . ' day'), $cid, $this->getMedianRelationThreadScore($cid, 4), $cid
299                         ];
300                 } elseif ($this->selectedTab == TimelineEntity::IMAGE) {
301                         $condition = ["`media-type` & ?", 1];
302                 } elseif ($this->selectedTab == TimelineEntity::VIDEO) {
303                         $condition = ["`media-type` & ?", 2];
304                 } elseif ($this->selectedTab == TimelineEntity::AUDIO) {
305                         $condition = ["`media-type` & ?", 4];
306                 } elseif ($this->selectedTab == TimelineEntity::LANGUAGE) {
307                         $condition = ["JSON_EXTRACT(JSON_KEYS(language), '$[0]') = ?", $this->l10n->convertCodeForLanguageDetection(User::getLanguageCode($uid))];
308                 } elseif (is_numeric($this->selectedTab)) {
309                         $condition = $this->getUserChannelConditions($this->selectedTab, $this->session->getLocalUserId());
310                 }
311
312                 if ($this->selectedTab != TimelineEntity::LANGUAGE) {
313                         $condition = $this->addLanguageCondition($uid, $condition);
314                 }
315
316                 $condition = DBA::mergeConditions($condition, ["(NOT `restricted` OR EXISTS(SELECT `id` FROM `post-user` WHERE `uid` = ? AND `uri-id` = `post-engagement`.`uri-id`))", $uid]);
317
318                 $condition = DBA::mergeConditions($condition, ["NOT EXISTS(SELECT `cid` FROM `user-contact` WHERE `uid` = ? AND `cid` = `post-engagement`.`owner-id` AND (`ignored` OR `blocked` OR `collapsed` OR `is-blocked` OR `channel-frequency` = ?))", $uid, Contact\User::FREQUENCY_NEVER]);
319
320                 if (($this->selectedTab != TimelineEntity::WHATSHOT) && !is_null($this->accountType)) {
321                         $condition = DBA::mergeConditions($condition, ['contact-type' => $this->accountType]);
322                 }
323
324                 $params = ['order' => ['created' => true], 'limit' => $this->itemsPerPage];
325
326                 if (!empty($this->itemUriId)) {
327                         $condition = DBA::mergeConditions($condition, ['uri-id' => $this->itemUriId]);
328                 } else {
329                         if ($this->noSharer) {
330                                 $condition = DBA::mergeConditions($condition, ["NOT `uri-id` IN (SELECT `uri-id` FROM `post-user` WHERE `post-user`.`uid` = ? AND `post-user`.`uri-id` = `post-engagement`.`uri-id`)", $this->session->getLocalUserId()]);
331                         }
332
333                         if (isset($this->maxId)) {
334                                 $condition = DBA::mergeConditions($condition, ["`created` < ?", $this->maxId]);
335                         }
336
337                         if (isset($this->minId)) {
338                                 $condition = DBA::mergeConditions($condition, ["`created` > ?", $this->minId]);
339
340                                 // Previous page case: we want the items closest to min_id but for that we need to reverse the query order
341                                 if (!isset($this->maxId)) {
342                                         $params['order']['created'] = false;
343                                 }
344                         }
345                 }
346
347                 $items = [];
348                 $result = $this->database->select('post-engagement', ['uri-id', 'created', 'owner-id', 'comments', 'activities'], $condition, $params);
349                 while ($item = $this->database->fetch($result)) {
350                         $items[$item['uri-id']] = $item;
351                 }
352                 $this->database->close($result);
353
354                 if (empty($items)) {
355                         return [];
356                 }
357
358                 // Previous page case: once we get the relevant items closest to min_id, we need to restore the expected display order
359                 if (empty($this->itemUriId) && isset($this->minId) && !isset($this->maxId)) {
360                         $items = array_reverse($items, true);
361                 }
362
363                 $condition = ['unseen' => true, 'uid' => $uid, 'parent-uri-id' => array_column($items, 'uri-id')];
364                 $this->setItemsSeenByCondition($condition);
365
366                 return $items;
367         }
368
369         private function getUserChannelConditions(int $id, int $uid): array
370         {
371                 $channel = $this->channel->selectById($id, $uid);
372                 if (empty($channel)) {
373                         return [];
374                 }
375
376                 $condition = [];
377
378                 if (!empty($channel->fullTextSearch)) {
379                         $condition = DBA::mergeConditions($condition, ["MATCH (`searchtext`) AGAINST (? IN BOOLEAN MODE)", $channel->fullTextSearch]);
380                 }
381
382                 if (!empty($channel->includeTags)) {
383                         $search       = explode(',', mb_strtolower($channel->includeTags));
384                         $placeholders = substr(str_repeat("?, ", count($search)), 0, -2);
385                         $condition    = DBA::mergeConditions($condition, array_merge(["`uri-id` IN (SELECT `uri-id` FROM `post-tag` INNER JOIN `tag` ON `tag`.`id` = `post-tag`.`tid` WHERE `post-tag`.`type` = 1 AND `name` IN (" . $placeholders . "))"], $search));
386                 }
387
388                 if (!empty($channel->excludeTags)) {
389                         $search       = explode(',', mb_strtolower($channel->excludeTags));
390                         $placeholders = substr(str_repeat("?, ", count($search)), 0, -2);
391                         $condition    = DBA::mergeConditions($condition, array_merge(["NOT `uri-id` IN (SELECT `uri-id` FROM `post-tag` INNER JOIN `tag` ON `tag`.`id` = `post-tag`.`tid` WHERE `post-tag`.`type` = 1 AND `name` IN (" . $placeholders . "))"], $search));
392                 }
393
394                 if (!empty($channel->mediaType)) {
395                         $condition = DBA::mergeConditions($condition, ["`media-type` & ?", $channel->mediaType]);
396                 }
397
398                 return $condition;
399         }
400
401         private function addLanguageCondition(int $uid, array $condition): array
402         {
403                 $conditions = [];
404                 $languages  = $this->pConfig->get($uid, 'channel', 'languages', [User::getLanguageCode($uid)]);
405                 $languages  = $this->l10n->convertForLanguageDetection($languages);
406                 foreach ($languages as $language) {
407                         $conditions[] = "JSON_EXTRACT(JSON_KEYS(language), '$[0]') = ?";
408                         $condition[]  = $language;
409                 }
410                 if (!empty($conditions)) {
411                         $condition[0] .= " AND (`language` IS NULL OR " . implode(' OR ', $conditions) . ")";
412                 }
413                 return $condition;
414         }
415
416         private function getMedianComments(int $uid, int $divider): int
417         {
418                 $languages = $this->pConfig->get($uid, 'channel', 'languages', [User::getLanguageCode($uid)]);
419                 $cache_key = 'Channel:getMedianComments:' . $divider . ':' . implode(':', $languages);
420                 $comments  = $this->cache->get($cache_key);
421                 if (!empty($comments)) {
422                         return $comments;
423                 }
424
425                 $condition = ["`contact-type` != ? AND `comments` > ? AND NOT `restricted`", Contact::TYPE_COMMUNITY, 0];
426                 $condition = $this->addLanguageCondition($uid, $condition);
427
428                 $limit    = $this->database->count('post-engagement', $condition) / $divider;
429                 $post     = $this->database->selectToArray('post-engagement', ['comments'], $condition, ['order' => ['comments' => true], 'limit' => [$limit, 1]]);
430                 $comments = $post[0]['comments'] ?? 0;
431                 if (empty($comments)) {
432                         return 0;
433                 }
434
435                 $this->cache->set($cache_key, $comments, Duration::HALF_HOUR);
436                 $this->logger->debug('Calculated median comments', ['divider' => $divider, 'languages' => $languages, 'median' => $comments]);
437                 return $comments;
438         }
439
440         private function getMedianActivities(int $uid, int $divider): int
441         {
442                 $languages  = $this->pConfig->get($uid, 'channel', 'languages', [User::getLanguageCode($uid)]);
443                 $cache_key  = 'Channel:getMedianActivities:' . $divider . ':' . implode(':', $languages);
444                 $activities = $this->cache->get($cache_key);
445                 if (!empty($activities)) {
446                         return $activities;
447                 }
448
449                 $condition = ["`contact-type` != ? AND `activities` > ? AND NOT `restricted`", Contact::TYPE_COMMUNITY, 0];
450                 $condition = $this->addLanguageCondition($uid, $condition);
451
452                 $limit      = $this->database->count('post-engagement', $condition) / $divider;
453                 $post       = $this->database->selectToArray('post-engagement', ['activities'], $condition, ['order' => ['activities' => true], 'limit' => [$limit, 1]]);
454                 $activities = $post[0]['activities'] ?? 0;
455                 if (empty($activities)) {
456                         return 0;
457                 }
458
459                 $this->cache->set($cache_key, $activities, Duration::HALF_HOUR);
460                 $this->logger->debug('Calculated median activities', ['divider' => $divider, 'languages' => $languages, 'median' => $activities]);
461                 return $activities;
462         }
463
464         private function getMedianRelationThreadScore(int $cid, int $divider): int
465         {
466                 $cache_key = 'Channel:getThreadScore:' . $cid . ':' . $divider;
467                 $score     = $this->cache->get($cache_key);
468                 if (!empty($score)) {
469                         return $score;
470                 }
471
472                 $condition = ["`relation-cid` = ? AND `relation-thread-score` > ?", $cid, 0];
473
474                 $limit    = $this->database->count('contact-relation', $condition) / $divider;
475                 $relation = $this->database->selectToArray('contact-relation', ['relation-thread-score'], $condition, ['order' => ['relation-thread-score' => true], 'limit' => [$limit, 1]]);
476                 $score    = $relation[0]['relation-thread-score'] ?? 0;
477                 if (empty($score)) {
478                         return 0;
479                 }
480
481                 $this->cache->set($cache_key, $score, Duration::HALF_HOUR);
482                 $this->logger->debug('Calculated median score', ['cid' => $cid, 'divider' => $divider, 'median' => $score]);
483                 return $score;
484         }
485
486         /**
487          * Computes the displayed items.
488          *
489          * Community pages have a restriction on how many successive posts by the same author can show on any given page,
490          * so we may have to retrieve more content beyond the first query
491          *
492          * @return array
493          * @throws \Exception
494          */
495         protected function getCommunityItems()
496         {
497                 $items = $this->selectItems();
498
499                 $maxpostperauthor = (int) $this->config->get('system', 'max_author_posts_community_page');
500                 if ($maxpostperauthor != 0 && $this->selectedTab == 'local') {
501                         $count          = 1;
502                         $previousauthor = '';
503                         $numposts       = 0;
504                         $selected_items = [];
505
506                         while (count($selected_items) < $this->itemsPerPage && ++$count < 50 && count($items) > 0) {
507                                 foreach ($items as $item) {
508                                         if ($previousauthor == $item["author-link"]) {
509                                                 ++$numposts;
510                                         } else {
511                                                 $numposts = 0;
512                                         }
513                                         $previousauthor = $item["author-link"];
514
515                                         if (($numposts < $maxpostperauthor) && (count($selected_items) < $this->itemsPerPage)) {
516                                                 $selected_items[] = $item;
517                                         }
518                                 }
519
520                                 // If we're looking at a "previous page", the lookup continues forward in time because the list is
521                                 // sorted in chronologically decreasing order
522                                 if (isset($this->minId)) {
523                                         $this->minId = $items[0]['received'];
524                                 } else {
525                                         // In any other case, the lookup continues backwards in time
526                                         $this->maxId = $items[count($items) - 1]['received'];
527                                 }
528
529                                 $items = $this->selectItems();
530                         }
531                 } else {
532                         $selected_items = $items;
533                 }
534
535                 $condition = ['unseen' => true, 'uid' => $this->session->getLocalUserId(), 'parent-uri-id' => array_column($selected_items, 'uri-id')];
536                 $this->setItemsSeenByCondition($condition);
537
538                 return $selected_items;
539         }
540
541         /**
542          * Database query for the community page
543          *
544          * @return array
545          * @throws \Exception
546          * @TODO Move to repository/factory
547          */
548         private function selectItems()
549         {
550                 if ($this->selectedTab == 'local') {
551                         $condition = ["`wall` AND `origin` AND `private` = ?", Item::PUBLIC];
552                 } elseif ($this->selectedTab == 'global') {
553                         $condition = ["`uid` = ? AND `private` = ?", 0, Item::PUBLIC];
554                 } else {
555                         return [];
556                 }
557
558                 if (!is_null($this->accountType)) {
559                         $condition = DBA::mergeConditions($condition, ['owner-contact-type' => $this->accountType]);
560                 }
561
562                 $params = ['order' => ['received' => true], 'limit' => $this->itemsPerPage];
563
564                 if (!empty($this->itemUriId)) {
565                         $condition = DBA::mergeConditions($condition, ['uri-id' => $this->itemUriId]);
566                 } else {
567                         if ($this->session->getLocalUserId() && $this->noSharer) {
568                                 $condition = DBA::mergeConditions($condition, ["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`)", $this->session->getLocalUserId()]);
569                         }
570
571                         if (isset($this->maxId)) {
572                                 $condition = DBA::mergeConditions($condition, ["`received` < ?", $this->maxId]);
573                         }
574
575                         if (isset($this->minId)) {
576                                 $condition = DBA::mergeConditions($condition, ["`received` > ?", $this->minId]);
577
578                                 // Previous page case: we want the items closest to min_id but for that we need to reverse the query order
579                                 if (!isset($this->maxId)) {
580                                         $params['order']['received'] = false;
581                                 }
582                         }
583                 }
584
585                 $r = Post::selectThreadForUser($this->session->getLocalUserId() ?: 0, ['uri-id', 'received', 'author-link'], $condition, $params);
586
587                 $items = Post::toArray($r);
588                 if (empty($items)) {
589                         return [];
590                 }
591
592                 // Previous page case: once we get the relevant items closest to min_id, we need to restore the expected display order
593                 if (empty($this->itemUriId) && isset($this->minId) && !isset($this->maxId)) {
594                         $items = array_reverse($items);
595                 }
596
597                 return $items;
598         }
599
600         /**
601          * Sets items as seen
602          *
603          * @param array $condition The array with the SQL condition
604          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
605          */
606         protected function setItemsSeenByCondition(array $condition)
607         {
608                 if (empty($condition)) {
609                         return;
610                 }
611
612                 $unseen = Post::exists($condition);
613
614                 if ($unseen) {
615                         /// @todo handle huge "unseen" updates in the background to avoid timeout errors
616                         Item::update(['unseen' => false], $condition);
617                 }
618         }
619 }