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