]> git.mxchange.org Git - friendica.git/blob - src/Module/Conversation/Timeline.php
Standards and unify variables
[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 UserSession */
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                 Item::update(['unseen' => false], ['unseen' => true, 'uid' => $uid, 'uri-id' => array_column($items, 'uri-id')]);
271
272                 return $items;
273         }
274
275         private function addLanguageCondition(int $uid, array $condition): array
276         {
277                 $conditions = [];
278                 $languages  = $this->pConfig->get($uid, 'channel', 'languages', [User::getLanguageCode($uid)]);
279                 $languages  = $this->l10n->convertForLanguageDetection($languages);
280                 foreach ($languages as $language) {
281                         $conditions[] = "JSON_EXTRACT(JSON_KEYS(language), '$[0]') = ?";
282                         $condition[]  = $language;
283                 }
284                 if (!empty($conditions)) {
285                         $condition[0] .= " AND (`language` IS NULL OR " . implode(' OR ', $conditions) . ")";
286                 }
287                 return $condition;
288         }
289
290         private function getMedianComments(int $uid, int $divider): int
291         {
292                 $languages = $this->pConfig->get($uid, 'channel', 'languages', [User::getLanguageCode($uid)]);
293                 $cache_key = 'Channel:getMedianComments:' . $divider . ':' . implode(':', $languages);
294                 $comments  = $this->cache->get($cache_key);
295                 if (!empty($comments)) {
296                         return $comments;
297                 }
298
299                 $condition = ["`contact-type` != ? AND `comments` > ?", Contact::TYPE_COMMUNITY, 0];
300                 $condition = $this->addLanguageCondition($uid, $condition);
301
302                 $limit    = $this->database->count('post-engagement', $condition) / $divider;
303                 $post     = $this->database->selectToArray('post-engagement', ['comments'], $condition, ['order' => ['comments' => true], 'limit' => [$limit, 1]]);
304                 $comments = $post[0]['comments'] ?? 0;
305                 if (empty($comments)) {
306                         return 0;
307                 }
308
309                 $this->cache->set($cache_key, $comments, Duration::HALF_HOUR);
310                 $this->logger->debug('Calculated median comments', ['divider' => $divider, 'languages' => $languages, 'median' => $comments]);
311                 return $comments;
312         }
313
314         private function getMedianActivities(int $uid, int $divider): int
315         {
316                 $languages  = $this->pConfig->get($uid, 'channel', 'languages', [User::getLanguageCode($uid)]);
317                 $cache_key  = 'Channel:getMedianActivities:' . $divider . ':' . implode(':', $languages);
318                 $activities = $this->cache->get($cache_key);
319                 if (!empty($activities)) {
320                         return $activities;
321                 }
322
323                 $condition = ["`contact-type` != ? AND `activities` > ?", Contact::TYPE_COMMUNITY, 0];
324                 $condition = $this->addLanguageCondition($uid, $condition);
325
326                 $limit      = $this->database->count('post-engagement', $condition) / $divider;
327                 $post       = $this->database->selectToArray('post-engagement', ['activities'], $condition, ['order' => ['activities' => true], 'limit' => [$limit, 1]]);
328                 $activities = $post[0]['activities'] ?? 0;
329                 if (empty($activities)) {
330                         return 0;
331                 }
332
333                 $this->cache->set($cache_key, $activities, Duration::HALF_HOUR);
334                 $this->logger->debug('Calculated median activities', ['divider' => $divider, 'languages' => $languages, 'median' => $activities]);
335                 return $activities;
336         }
337
338         private function getMedianRelationThreadScore(int $cid, int $divider): int
339         {
340                 $cache_key = 'Channel:getThreadScore:' . $cid . ':' . $divider;
341                 $score     = $this->cache->get($cache_key);
342                 if (!empty($score)) {
343                         return $score;
344                 }
345
346                 $condition = ["`relation-cid` = ? AND `relation-thread-score` > ?", $cid, 0];
347
348                 $limit    = $this->database->count('contact-relation', $condition) / $divider;
349                 $relation = $this->database->selectToArray('contact-relation', ['relation-thread-score'], $condition, ['order' => ['relation-thread-score' => true], 'limit' => [$limit, 1]]);
350                 $score    = $relation[0]['relation-thread-score'] ?? 0;
351                 if (empty($score)) {
352                         return 0;
353                 }
354
355                 $this->cache->set($cache_key, $score, Duration::HALF_HOUR);
356                 $this->logger->debug('Calculated median score', ['cid' => $cid, 'divider' => $divider, 'median' => $score]);
357                 return $score;
358         }
359
360         /**
361          * Computes the displayed items.
362          *
363          * Community pages have a restriction on how many successive posts by the same author can show on any given page,
364          * so we may have to retrieve more content beyond the first query
365          *
366          * @return array
367          * @throws \Exception
368          */
369         protected function getCommunityItems()
370         {
371                 $items = $this->selectItems();
372
373                 $maxpostperauthor = (int) $this->config->get('system', 'max_author_posts_community_page');
374                 if ($maxpostperauthor != 0 && $this->selectedTab == 'local') {
375                         $count          = 1;
376                         $previousauthor = '';
377                         $numposts       = 0;
378                         $selected_items = [];
379
380                         while (count($selected_items) < $this->itemsPerPage && ++$count < 50 && count($items) > 0) {
381                                 foreach ($items as $item) {
382                                         if ($previousauthor == $item["author-link"]) {
383                                                 ++$numposts;
384                                         } else {
385                                                 $numposts = 0;
386                                         }
387                                         $previousauthor = $item["author-link"];
388
389                                         if (($numposts < $maxpostperauthor) && (count($selected_items) < $this->itemsPerPage)) {
390                                                 $selected_items[] = $item;
391                                         }
392                                 }
393
394                                 // If we're looking at a "previous page", the lookup continues forward in time because the list is
395                                 // sorted in chronologically decreasing order
396                                 if (isset($this->minId)) {
397                                         $this->minId = $items[0]['commented'];
398                                 } else {
399                                         // In any other case, the lookup continues backwards in time
400                                         $this->maxId = $items[count($items) - 1]['commented'];
401                                 }
402
403                                 $items = $this->selectItems();
404                         }
405                 } else {
406                         $selected_items = $items;
407                 }
408
409                 return $selected_items;
410         }
411
412         /**
413          * Database query for the community page
414          *
415          * @return array
416          * @throws \Exception
417          * @TODO Move to repository/factory
418          */
419         private function selectItems()
420         {
421                 if ($this->selectedTab == 'local') {
422                         if (!is_null($this->accountType)) {
423                                 $condition = ["`wall` AND `origin` AND `private` = ? AND `owner-contact-type` = ?", Item::PUBLIC, $this->accountType];
424                         } else {
425                                 $condition = ["`wall` AND `origin` AND `private` = ?", Item::PUBLIC];
426                         }
427                 } elseif ($this->selectedTab == 'global') {
428                         if (!is_null($this->accountType)) {
429                                 $condition = ["`uid` = ? AND `private` = ? AND `owner-contact-type` = ?", 0, Item::PUBLIC, $this->accountType];
430                         } else {
431                                 $condition = ["`uid` = ? AND `private` = ?", 0, Item::PUBLIC];
432                         }
433                 } else {
434                         return [];
435                 }
436
437                 $params = ['order' => ['commented' => true], 'limit' => $this->itemsPerPage];
438
439                 if (!empty($this->itemUriId)) {
440                         $condition = DBA::mergeConditions($condition, ['uri-id' => $this->itemUriId]);
441                 } else {
442                         if ($this->session->getLocalUserId() && $this->noSharer) {
443                                 $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()]);
444                         }
445
446                         if (isset($this->maxId)) {
447                                 $condition = DBA::mergeConditions($condition, ["`commented` < ?", $this->maxId]);
448                         }
449
450                         if (isset($this->minId)) {
451                                 $condition = DBA::mergeConditions($condition, ["`commented` > ?", $this->minId]);
452
453                                 // Previous page case: we want the items closest to min_id but for that we need to reverse the query order
454                                 if (!isset($this->maxId)) {
455                                         $params['order']['commented'] = false;
456                                 }
457                         }
458                 }
459
460                 $r = Post::selectThreadForUser($this->session->getLocalUserId() ?: 0, ['uri-id', 'commented', 'author-link'], $condition, $params);
461
462                 $items = Post::toArray($r);
463                 if (empty($items)) {
464                         return [];
465                 }
466
467                 // Previous page case: once we get the relevant items closest to min_id, we need to restore the expected display order
468                 if (empty($this->itemUriId) && isset($this->minId) && !isset($this->maxId)) {
469                         $items = array_reverse($items);
470                 }
471
472                 return $items;
473         }
474 }