]> git.mxchange.org Git - friendica.git/blob - src/Content/Conversation.php
586b0bc540c2b03f90a4966d92721f2c674c6fe3
[friendica.git] / src / Content / Conversation.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\Content;
23
24 use Friendica\App;
25 use Friendica\App\Arguments;
26 use Friendica\App\BaseURL;
27 use Friendica\BaseModule;
28 use Friendica\Core\ACL;
29 use Friendica\Core\Config\Capability\IManageConfigValues;
30 use Friendica\Core\Hook;
31 use Friendica\Core\L10n;
32 use Friendica\Core\PConfig\Capability\IManagePersonalConfigValues;
33 use Friendica\Core\Protocol;
34 use Friendica\Core\Renderer;
35 use Friendica\Core\Session\Capability\IHandleUserSessions;
36 use Friendica\Core\Theme;
37 use Friendica\Database\DBA;
38 use Friendica\Model\Contact;
39 use Friendica\Model\Item as ItemModel;
40 use Friendica\Model\Post;
41 use Friendica\Model\Tag;
42 use Friendica\Model\User;
43 use Friendica\Model\Verb;
44 use Friendica\Object\Post as PostObject;
45 use Friendica\Object\Thread;
46 use Friendica\Protocol\Activity;
47 use Friendica\Util\Crypto;
48 use Friendica\Util\DateTimeFormat;
49 use Friendica\Util\Profiler;
50 use Friendica\Util\Strings;
51 use Friendica\Util\Temporal;
52 use Psr\Log\LoggerInterface;
53
54 class Conversation
55 {
56         const MODE_COMMUNITY     = 'community';
57         const MODE_CONTACTS      = 'contacts';
58         const MODE_CONTACT_POSTS = 'contact-posts';
59         const MODE_DISPLAY       = 'display';
60         const MODE_FILED         = 'filed';
61         const MODE_NETWORK       = 'network';
62         const MODE_NOTES         = 'notes';
63         const MODE_SEARCH        = 'search';
64         const MODE_PROFILE       = 'profile';
65
66         /** @var Activity */
67         private $activity;
68         /** @var L10n */
69         private $l10n;
70         /** @var Profiler */
71         private $profiler;
72         /** @var LoggerInterface */
73         private $logger;
74         /** @var Item */
75         private $item;
76         /** @var App\Arguments */
77         private $args;
78         /** @var IManagePersonalConfigValues */
79         private $pConfig;
80         /** @var BaseURL */
81         private $baseURL;
82         /** @var IManageConfigValues */
83         private $config;
84         /** @var App */
85         private $app;
86         /** @var App\Page */
87         private $page;
88         /** @var App\Mode */
89         private $mode;
90         /** @var IHandleUserSessions */
91         private $session;
92
93         public function __construct(LoggerInterface $logger, Profiler $profiler, Activity $activity, L10n $l10n, Item $item, Arguments $args, BaseURL $baseURL, IManageConfigValues $config, IManagePersonalConfigValues $pConfig, App\Page $page, App\Mode $mode, App $app, IHandleUserSessions $session)
94         {
95                 $this->activity = $activity;
96                 $this->item     = $item;
97                 $this->config   = $config;
98                 $this->mode     = $mode;
99                 $this->baseURL  = $baseURL;
100                 $this->profiler = $profiler;
101                 $this->logger   = $logger;
102                 $this->l10n     = $l10n;
103                 $this->args     = $args;
104                 $this->pConfig  = $pConfig;
105                 $this->page     = $page;
106                 $this->app      = $app;
107                 $this->session  = $session;
108         }
109
110         /**
111          * Checks item to see if it is one of the builtin activities (like/dislike, event attendance, consensus items, etc.)
112          *
113          * Increments the count of each matching activity and adds a link to the author as needed.
114          *
115          * @param array  $activity
116          * @param array &$conv_responses (already created with builtin activity structure)
117          * @return void
118          * @throws ImagickException
119          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
120          */
121         public function builtinActivityPuller(array $activity, array &$conv_responses)
122         {
123                 $thread_parent = $activity['thr-parent-row'] ?? [];
124
125                 foreach ($conv_responses as $mode => $v) {
126                         $sparkle = '';
127
128                         switch ($mode) {
129                                 case 'like':
130                                         $verb = Activity::LIKE;
131                                         break;
132                                 case 'dislike':
133                                         $verb = Activity::DISLIKE;
134                                         break;
135                                 case 'attendyes':
136                                         $verb = Activity::ATTEND;
137                                         break;
138                                 case 'attendno':
139                                         $verb = Activity::ATTENDNO;
140                                         break;
141                                 case 'attendmaybe':
142                                         $verb = Activity::ATTENDMAYBE;
143                                         break;
144                                 case 'announce':
145                                         $verb = Activity::ANNOUNCE;
146                                         break;
147                                 default:
148                                         return;
149                         }
150
151                         if (!empty($activity['verb']) && $this->activity->match($activity['verb'], $verb) && ($activity['gravity'] != ItemModel::GRAVITY_PARENT)) {
152                                 $author = [
153                                         'uid'     => 0,
154                                         'id'      => $activity['author-id'],
155                                         'network' => $activity['author-network'],
156                                         'url'     => $activity['author-link']
157                                 ];
158                                 $url = Contact::magicLinkByContact($author);
159                                 if (strpos($url, 'contact/redir/') === 0) {
160                                         $sparkle = ' class="sparkle" ';
161                                 }
162
163                                 $link = '<a href="' . $url . '"' . $sparkle . '>' . htmlentities($activity['author-name']) . '</a>';
164
165                                 if (empty($activity['thr-parent-id'])) {
166                                         $activity['thr-parent-id'] = $activity['parent-uri-id'];
167                                 }
168
169                                 // Skip when the causer of the parent is the same as the author of the announce
170                                 if (($verb == Activity::ANNOUNCE) && !empty($thread_parent['causer-id']) && ($thread_parent['causer-id'] == $activity['author-id'])) {
171                                         continue;
172                                 }
173
174                                 if (!isset($conv_responses[$mode][$activity['thr-parent-id']])) {
175                                         $conv_responses[$mode][$activity['thr-parent-id']] = [
176                                                 'links' => [],
177                                                 'self'  => 0,
178                                         ];
179                                 } elseif (in_array($link, $conv_responses[$mode][$activity['thr-parent-id']]['links'])) {
180                                         // only list each unique author once
181                                         continue;
182                                 }
183
184                                 if ($this->session->getPublicContactId() == $activity['author-id']) {
185                                         $conv_responses[$mode][$activity['thr-parent-id']]['self'] = 1;
186                                 }
187
188                                 $conv_responses[$mode][$activity['thr-parent-id']]['links'][] = $link;
189
190                                 // there can only be one activity verb per item so if we found anything, we can stop looking
191                                 return;
192                         }
193                 }
194         }
195
196         /**
197          * Format the activity text for an item/photo/video
198          *
199          * @param array  $links = array of pre-linked names of actors
200          * @param string $verb  = one of 'like, 'dislike', 'attendyes', 'attendno', 'attendmaybe'
201          * @param int    $id    = item id
202          * @return string formatted text
203          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
204          */
205         public function formatActivity(array $links, string $verb, int $id): string
206         {
207                 $this->profiler->startRecording('rendering');
208                 $o        = '';
209                 $expanded = '';
210                 $phrase   = '';
211
212                 $total = count($links);
213                 if ($total == 1) {
214                         $likers = $links[0];
215
216                         // Phrase if there is only one liker. In other cases it will be uses for the expanded
217                         // list which show all likers
218                         switch ($verb) {
219                                 case 'like':
220                                         $phrase = $this->l10n->t('%s likes this.', $likers);
221                                         break;
222                                 case 'dislike':
223                                         $phrase = $this->l10n->t('%s doesn\'t like this.', $likers);
224                                         break;
225                                 case 'attendyes':
226                                         $phrase = $this->l10n->t('%s attends.', $likers);
227                                         break;
228                                 case 'attendno':
229                                         $phrase = $this->l10n->t('%s doesn\'t attend.', $likers);
230                                         break;
231                                 case 'attendmaybe':
232                                         $phrase = $this->l10n->t('%s attends maybe.', $likers);
233                                         break;
234                                 case 'announce':
235                                         $phrase = $this->l10n->t('%s reshared this.', $likers);
236                                         break;
237                         }
238                 } elseif ($total > 1) {
239                         if ($total < $this->config->get('system', 'max_likers')) {
240                                 $likers = implode(', ', array_slice($links, 0, -1));
241                                 $likers .= ' ' . $this->l10n->t('and') . ' ' . $links[count($links) - 1];
242                         } else {
243                                 $likers = implode(', ', array_slice($links, 0, $this->config->get('system', 'max_likers') - 1));
244                                 $likers .= ' ' . $this->l10n->t('and %d other people', $total - $this->config->get('system', 'max_likers'));
245                         }
246
247                         $spanatts = "class=\"btn btn-link fakelink\" onclick=\"openClose('{$verb}list-$id');\"";
248
249                         $explikers = '';
250                         switch ($verb) {
251                                 case 'like':
252                                         $phrase    = $this->l10n->t('<button type="button" %1$s>%2$d people</button> like this', $spanatts, $total);
253                                         $explikers = $this->l10n->t('%s like this.', $likers);
254                                         break;
255                                 case 'dislike':
256                                         $phrase    = $this->l10n->t('<button type="button" %1$s>%2$d people</button> don\'t like this', $spanatts, $total);
257                                         $explikers = $this->l10n->t('%s don\'t like this.', $likers);
258                                         break;
259                                 case 'attendyes':
260                                         $phrase    = $this->l10n->t('<button type="button" %1$s>%2$d people</button> attend', $spanatts, $total);
261                                         $explikers = $this->l10n->t('%s attend.', $likers);
262                                         break;
263                                 case 'attendno':
264                                         $phrase    = $this->l10n->t('<button type="button" %1$s>%2$d people</button> don\'t attend', $spanatts, $total);
265                                         $explikers = $this->l10n->t('%s don\'t attend.', $likers);
266                                         break;
267                                 case 'attendmaybe':
268                                         $phrase    = $this->l10n->t('<button type="button" %1$s>%2$d people</button> attend maybe', $spanatts, $total);
269                                         $explikers = $this->l10n->t('%s attend maybe.', $likers);
270                                         break;
271                                 case 'announce':
272                                         $phrase    = $this->l10n->t('<button type="button" %1$s>%2$d people</button> reshared this', $spanatts, $total);
273                                         $explikers = $this->l10n->t('%s reshared this.', $likers);
274                                         break;
275                         }
276
277                         $expanded .= "\t" . '<p class="wall-item-' . $verb . '-expanded" id="' . $verb . 'list-' . $id . '" style="display: none;" >' . $explikers . '</p>';
278                 }
279
280                 $o .= Renderer::replaceMacros(Renderer::getMarkupTemplate('voting_fakelink.tpl'), [
281                         '$phrase' => $phrase,
282                         '$type'   => $verb,
283                         '$id'     => $id
284                 ]);
285                 $o .= $expanded;
286
287                 $this->profiler->stopRecording();
288                 return $o;
289         }
290
291         public function statusEditor(array $x = [], int $notes_cid = 0, bool $popup = false): string
292         {
293                 $user = User::getById($this->app->getLoggedInUserId(), ['uid', 'nickname', 'allow_location', 'default-location']);
294                 if (empty($user['uid'])) {
295                         return '';
296                 }
297
298                 $this->profiler->startRecording('rendering');
299                 $o = '';
300
301                 $x['allow_location']   = $x['allow_location']   ?? $user['allow_location'];
302                 $x['default_location'] = $x['default_location'] ?? $user['default-location'];
303                 $x['nickname']         = $x['nickname']         ?? $user['nickname'];
304                 $x['lockstate']        = $x['lockstate']        ?? ACL::getLockstateForUserId($user['uid']) ? 'lock' : 'unlock';
305                 $x['acl']              = $x['acl']              ?? ACL::getFullSelectorHTML($this->page, $user['uid'], true);
306                 $x['bang']             = $x['bang']             ?? '';
307                 $x['visitor']          = $x['visitor']          ?? 'block';
308                 $x['is_owner']         = $x['is_owner']         ?? true;
309                 $x['profile_uid']      = $x['profile_uid']      ?? $this->session->getLocalUserId();
310
311
312                 $geotag = !empty($x['allow_location']) ? Renderer::replaceMacros(Renderer::getMarkupTemplate('jot_geotag.tpl'), []) : '';
313
314                 $tpl = Renderer::getMarkupTemplate('jot-header.tpl');
315                 $this->page['htmlhead'] .= Renderer::replaceMacros($tpl, [
316                         '$newpost'   => 'true',
317                         '$baseurl'   => $this->baseURL,
318                         '$geotag'    => $geotag,
319                         '$nickname'  => $x['nickname'],
320                         '$ispublic'  => $this->l10n->t('Visible to <strong>everybody</strong>'),
321                         '$linkurl'   => $this->l10n->t('Please enter a image/video/audio/webpage URL:'),
322                         '$term'      => $this->l10n->t('Tag term:'),
323                         '$fileas'    => $this->l10n->t('Save to Folder:'),
324                         '$whereareu' => $this->l10n->t('Where are you right now?'),
325                         '$delitems'  => $this->l10n->t("Delete item\x28s\x29?"),
326                         '$is_mobile' => $this->mode->isMobile(),
327                 ]);
328
329                 $jotplugins = '';
330                 Hook::callAll('jot_tool', $jotplugins);
331
332                 if ($this->config->get('system', 'set_creation_date')) {
333                         $created_at = Temporal::getDateTimeField(
334                                 new \DateTime(DBA::NULL_DATETIME),
335                                 new \DateTime('now'),
336                                 null,
337                                 $this->l10n->t('Created at'),
338                                 'created_at'
339                         );
340                 } else {
341                         $created_at = '';
342                 }
343
344                 $tpl = Renderer::getMarkupTemplate('jot.tpl');
345
346                 $o .= Renderer::replaceMacros($tpl, [
347                         '$new_post'            => $this->l10n->t('New Post'),
348                         '$return_path'         => $this->args->getQueryString(),
349                         '$action'              => 'item',
350                         '$share'               => ($x['button'] ?? '') ?: $this->l10n->t('Share'),
351                         '$loading'             => $this->l10n->t('Loading...'),
352                         '$upload'              => $this->l10n->t('Upload photo'),
353                         '$shortupload'         => $this->l10n->t('upload photo'),
354                         '$attach'              => $this->l10n->t('Attach file'),
355                         '$shortattach'         => $this->l10n->t('attach file'),
356                         '$edbold'              => $this->l10n->t('Bold'),
357                         '$editalic'            => $this->l10n->t('Italic'),
358                         '$eduline'             => $this->l10n->t('Underline'),
359                         '$edquote'             => $this->l10n->t('Quote'),
360                         '$edcode'              => $this->l10n->t('Code'),
361                         '$edimg'               => $this->l10n->t('Image'),
362                         '$edurl'               => $this->l10n->t('Link'),
363                         '$edattach'            => $this->l10n->t('Link or Media'),
364                         '$edvideo'             => $this->l10n->t('Video'),
365                         '$setloc'              => $this->l10n->t('Set your location'),
366                         '$shortsetloc'         => $this->l10n->t('set location'),
367                         '$noloc'               => $this->l10n->t('Clear browser location'),
368                         '$shortnoloc'          => $this->l10n->t('clear location'),
369                         '$title'               => $x['title'] ?? '',
370                         '$placeholdertitle'    => $this->l10n->t('Set title'),
371                         '$category'            => $x['category'] ?? '',
372                         '$placeholdercategory' => Feature::isEnabled($this->session->getLocalUserId(), 'categories') ? $this->l10n->t("Categories \x28comma-separated list\x29") : '',
373                         '$scheduled_at'        => Temporal::getDateTimeField(
374                                 new \DateTime(),
375                                 new \DateTime('now + 6 months'),
376                                 null,
377                                 $this->l10n->t('Scheduled at'),
378                                 'scheduled_at'
379                         ),
380                         '$created_at'   => $created_at,
381                         '$wait'         => $this->l10n->t('Please wait'),
382                         '$permset'      => $this->l10n->t('Permission settings'),
383                         '$shortpermset' => $this->l10n->t('Permissions'),
384                         '$wall'         => $notes_cid ? 0 : 1,
385                         '$posttype'     => $notes_cid ? ItemModel::PT_PERSONAL_NOTE : ItemModel::PT_ARTICLE,
386                         '$content'      => $x['content'] ?? '',
387                         '$post_id'      => $x['post_id'] ?? '',
388                         '$baseurl'      => $this->baseURL,
389                         '$defloc'       => $x['default_location'],
390                         '$visitor'      => $x['visitor'],
391                         '$pvisit'       => $notes_cid ? 'none' : $x['visitor'],
392                         '$public'       => $this->l10n->t('Public post'),
393                         '$lockstate'    => $x['lockstate'],
394                         '$bang'         => $x['bang'],
395                         '$profile_uid'  => $x['profile_uid'],
396                         '$preview'      => $this->l10n->t('Preview'),
397                         '$jotplugins'   => $jotplugins,
398                         '$notes_cid'    => $notes_cid,
399                         '$cancel'       => $this->l10n->t('Cancel'),
400                         '$rand_num'     => Crypto::randomDigits(12),
401
402                         // ACL permissions box
403                         '$acl' => $x['acl'],
404
405                         //jot nav tab (used in some themes)
406                         '$message' => $this->l10n->t('Message'),
407                         '$browser' => $this->l10n->t('Browser'),
408
409                         '$compose_link_title'  => $this->l10n->t('Open Compose page'),
410                         '$always_open_compose' => $this->pConfig->get($this->session->getLocalUserId(), 'frio', 'always_open_compose', false),
411                         // Dropzone
412                         //'$max_imagesize'       => DI::config()->get('system', 'maximagesize'),
413                         // DI::config.. does not work here, so it is set to a manual value
414                         '$max_imagesize'       => 600000,
415
416                 ]);
417
418
419                 if ($popup == true) {
420                         $o = '<div id="jot-popup" style="display: none;">' . $o . '</div>';
421                 }
422
423                 $this->profiler->stopRecording();
424                 return $o;
425         }
426
427         /**
428          * "Render" a conversation or list of items for HTML display.
429          * There are two major forms of display:
430          *      - Sequential or unthreaded ("New Item View" or search results)
431          *      - conversation view
432          * The $mode parameter decides between the various renderings and also
433          * figures out how to determine page owner and other contextual items
434          * that are based on unique features of the calling module.
435          * @param array  $items
436          * @param string $mode
437          * @param        $update @TODO Which type?
438          * @param bool   $preview
439          * @param string $order
440          * @param int    $uid
441          * @return string
442          * @throws ImagickException
443          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
444          */
445         public function create(array $items, string $mode, $update, bool $preview = false, string $order = 'commented', int $uid = 0): string
446         {
447                 $this->profiler->startRecording('rendering');
448
449                 $this->page->registerFooterScript(Theme::getPathForFile('asset/typeahead.js/dist/typeahead.bundle.js'));
450                 $this->page->registerFooterScript(Theme::getPathForFile('js/friendica-tagsinput/friendica-tagsinput.js'));
451                 $this->page->registerStylesheet(Theme::getPathForFile('js/friendica-tagsinput/friendica-tagsinput.css'));
452                 $this->page->registerStylesheet(Theme::getPathForFile('js/friendica-tagsinput/friendica-tagsinput-typeahead.css'));
453
454                 $live_update_div = '';
455
456                 $blocklist = $this->getBlocklist();
457
458                 $previewing = (($preview) ? ' preview ' : '');
459
460                 if ($mode === self::MODE_NETWORK) {
461                         $items = $this->addChildren($items, false, $order, $uid, $mode);
462                         if (!$update) {
463                                 /*
464                                 * The special div is needed for liveUpdate to kick in for this page.
465                                 * We only launch liveUpdate if you aren't filtering in some incompatible
466                                 * way and also you aren't writing a comment (discovered in javascript).
467                                 */
468                                 $live_update_div = '<div id="live-network"></div>' . "\r\n"
469                                         . "<script> var profile_uid = " . $_SESSION['uid']
470                                         . "; var netargs = '" . substr($this->args->getCommand(), 8)
471                                         . '?f='
472                                         . (!empty($_GET['contactid']) ? '&contactid=' . rawurlencode($_GET['contactid']) : '')
473                                         . (!empty($_GET['search'])    ? '&search='    . rawurlencode($_GET['search'])    : '')
474                                         . (!empty($_GET['star'])      ? '&star='      . rawurlencode($_GET['star'])      : '')
475                                         . (!empty($_GET['order'])     ? '&order='     . rawurlencode($_GET['order'])     : '')
476                                         . (!empty($_GET['bmark'])     ? '&bmark='     . rawurlencode($_GET['bmark'])     : '')
477                                         . (!empty($_GET['liked'])     ? '&liked='     . rawurlencode($_GET['liked'])     : '')
478                                         . (!empty($_GET['conv'])      ? '&conv='      . rawurlencode($_GET['conv'])      : '')
479                                         . (!empty($_GET['nets'])      ? '&nets='      . rawurlencode($_GET['nets'])      : '')
480                                         . (!empty($_GET['cmin'])      ? '&cmin='      . rawurlencode($_GET['cmin'])      : '')
481                                         . (!empty($_GET['cmax'])      ? '&cmax='      . rawurlencode($_GET['cmax'])      : '')
482                                         . (!empty($_GET['file'])      ? '&file='      . rawurlencode($_GET['file'])      : '')
483
484                                         . "'; </script>\r\n";
485                         }
486                 } elseif ($mode === self::MODE_PROFILE) {
487                         $items = $this->addChildren($items, false, $order, $uid, $mode);
488
489                         if (!$update) {
490                                 $tab = !empty($_GET['tab']) ? trim($_GET['tab']) : 'posts';
491
492                                 if ($tab === 'posts') {
493                                         /*
494                                         * This is ugly, but we can't pass the profile_uid through the session to the ajax updater,
495                                         * because browser prefetching might change it on us. We have to deliver it with the page.
496                                         */
497
498                                         $live_update_div = '<div id="live-profile"></div>' . "\r\n"
499                                                 . "<script> var profile_uid = " . $uid
500                                                 . "; var netargs = '?f='; </script>\r\n";
501                                 }
502                         }
503                 } elseif ($mode === self::MODE_NOTES) {
504                         $items = $this->addChildren($items, false, $order, $this->session->getLocalUserId(), $mode);
505
506                         if (!$update) {
507                                 $live_update_div = '<div id="live-notes"></div>' . "\r\n"
508                                         . "<script> var profile_uid = " . $this->session->getLocalUserId()
509                                         . "; var netargs = '?f='; </script>\r\n";
510                         }
511                 } elseif ($mode === self::MODE_DISPLAY) {
512                         $items = $this->addChildren($items, false, $order, $uid, $mode);
513
514                         if (!$update) {
515                                 $live_update_div = '<div id="live-display"></div>' . "\r\n"
516                                         . "<script> var profile_uid = " . ($this->session->getLocalUserId() ?: 0) . ";"
517                                         . "</script>";
518                         }
519                 } elseif ($mode === self::MODE_COMMUNITY) {
520                         $items = $this->addChildren($items, true, $order, $uid, $mode);
521
522                         if (!$update) {
523                                 $live_update_div = '<div id="live-community"></div>' . "\r\n"
524                                         . "<script> var profile_uid = -1; var netargs = '" . substr($this->args->getCommand(), 10)
525                                         . '?f='
526                                         . (!empty($_GET['no_sharer']) ? '&no_sharer=' . rawurlencode($_GET['no_sharer']) : '')
527                                         . (!empty($_GET['accounttype']) ? '&accounttype=' . rawurlencode($_GET['accounttype']) : '')
528                                         . "'; </script>\r\n";
529                         }
530                 } elseif ($mode === self::MODE_CONTACTS) {
531                         $items = $this->addChildren($items, false, $order, $uid, $mode);
532
533                         if (!$update) {
534                                 $live_update_div = '<div id="live-contact"></div>' . "\r\n"
535                                         . "<script> var profile_uid = -1; var netargs = '" . substr($this->args->getCommand(), 8)
536                                         ."?f='; </script>\r\n";
537                         }
538                 } elseif ($mode === self::MODE_SEARCH) {
539                         $live_update_div = '<div id="live-search"></div>' . "\r\n";
540                 }
541
542                 $page_dropping = $this->session->getLocalUserId() && $this->session->getLocalUserId() == $uid && $mode != self::MODE_SEARCH;
543
544                 if (!$update) {
545                         $_SESSION['return_path'] = $this->args->getQueryString();
546                 }
547
548                 $cb = ['items' => $items, 'mode' => $mode, 'update' => $update, 'preview' => $preview];
549                 Hook::callAll('conversation_start', $cb);
550
551                 $items = $cb['items'];
552
553                 $conv_responses = [
554                         'like'        => [],
555                         'dislike'     => [],
556                         'attendyes'   => [],
557                         'attendno'    => [],
558                         'attendmaybe' => [],
559                         'announce'    => [],
560                 ];
561
562                 if ($this->pConfig->get($this->session->getLocalUserId(), 'system', 'hide_dislike')) {
563                         unset($conv_responses['dislike']);
564                 }
565
566                 // array with html for each thread (parent+comments)
567                 $threads   = [];
568                 $threadsid = -1;
569
570                 $page_template     = Renderer::getMarkupTemplate("conversation.tpl");
571                 $formSecurityToken = BaseModule::getFormSecurityToken('contact_action');
572
573                 if (!empty($items)) {
574                         if (in_array($mode, [self::MODE_COMMUNITY, self::MODE_CONTACTS, self::MODE_PROFILE])) {
575                                 $writable = true;
576                         } else {
577                                 $writable = $items[0]['writable'] || ($items[0]['uid'] == 0) && in_array($items[0]['network'], Protocol::FEDERATED);
578                         }
579
580                         if (!$this->session->getLocalUserId()) {
581                                 $writable = false;
582                         }
583
584                         if (in_array($mode, [self::MODE_FILED, self::MODE_SEARCH, self::MODE_CONTACT_POSTS])) {
585
586                                 /*
587                                 * "New Item View" on network page or search page results
588                                 * - just loop through the items and format them minimally for display
589                                 */
590
591                                 $tpl = 'search_item.tpl';
592
593                                 $uriids = [];
594
595                                 foreach ($items as $item) {
596                                         if (in_array($item['uri-id'], $uriids)) {
597                                                 continue;
598                                         }
599
600                                         $uriids[] = $item['uri-id'];
601
602                                         if (!$this->item->isVisibleActivity($item)) {
603                                                 continue;
604                                         }
605
606                                         if (in_array($item['author-id'], $blocklist)) {
607                                                 continue;
608                                         }
609
610                                         $threadsid++;
611
612                                         // prevent private email from leaking.
613                                         if ($item['network'] === Protocol::MAIL && $this->session->getLocalUserId() != $item['uid']) {
614                                                 continue;
615                                         }
616
617                                         $profile_name = $item['author-name'];
618                                         if (!empty($item['author-link']) && empty($item['author-name'])) {
619                                                 $profile_name = $item['author-link'];
620                                         }
621
622                                         $tags = Tag::populateFromItem($item);
623
624                                         $author       = ['uid' => 0, 'id' => $item['author-id'], 'network' => $item['author-network'], 'url' => $item['author-link']];
625                                         $profile_link = Contact::magicLinkByContact($author);
626
627                                         $sparkle = '';
628                                         if (strpos($profile_link, 'contact/redir/') === 0) {
629                                                 $sparkle = ' sparkle';
630                                         }
631
632                                         $locate = ['location' => $item['location'], 'coord' => $item['coord'], 'html' => ''];
633                                         Hook::callAll('render_location', $locate);
634                                         $location_html = $locate['html'] ?: Strings::escapeHtml($locate['location'] ?: $locate['coord'] ?: '');
635
636                                         $this->item->localize($item);
637                                         if ($mode === self::MODE_FILED) {
638                                                 $dropping = true;
639                                         } else {
640                                                 $dropping = false;
641                                         }
642
643                                         $drop = [
644                                                 'dropping' => $dropping,
645                                                 'pagedrop' => $page_dropping,
646                                                 'select'   => $this->l10n->t('Select'),
647                                                 'delete'   => $this->l10n->t('Delete'),
648                                         ];
649
650                                         $likebuttons = [
651                                                 'like'     => null,
652                                                 'dislike'  => null,
653                                                 'share'    => null,
654                                                 'announce' => null,
655                                         ];
656
657                                         if ($this->pConfig->get($this->session->getLocalUserId(), 'system', 'hide_dislike')) {
658                                                 unset($likebuttons['dislike']);
659                                         }
660
661                                         $body_html = ItemModel::prepareBody($item, true, $preview);
662
663                                         [$categories, $folders] = $this->item->determineCategoriesTerms($item, $this->session->getLocalUserId());
664
665                                         if (!empty($item['title'])) {
666                                                 $title = $item['title'];
667                                         } elseif (!empty($item['content-warning']) && $this->pConfig->get($this->session->getLocalUserId(), 'system', 'disable_cw', false)) {
668                                                 $title = ucfirst($item['content-warning']);
669                                         } else {
670                                                 $title = '';
671                                         }
672
673                                         if (!empty($item['featured'])) {
674                                                 $pinned = $this->l10n->t('Pinned item');
675                                         } else {
676                                                 $pinned = '';
677                                         }
678
679                                         $tmp_item = [
680                                                 'template'             => $tpl,
681                                                 'id'                   => ($preview ? 'P0' : $item['id']),
682                                                 'guid'                 => ($preview ? 'Q0' : $item['guid']),
683                                                 'commented'            => $item['commented'],
684                                                 'received'             => $item['received'],
685                                                 'created_date'         => $item['created'],
686                                                 'uriid'                => $item['uri-id'],
687                                                 'network'              => $item['network'],
688                                                 'network_name'         => ContactSelector::networkToName($item['author-network'], $item['author-link'], $item['network'], $item['author-gsid']),
689                                                 'network_icon'         => ContactSelector::networkToIcon($item['network'], $item['author-link'], $item['author-gsid']),
690                                                 'linktitle'            => $this->l10n->t('View %s\'s profile @ %s', $profile_name, $item['author-link']),
691                                                 'profile_url'          => $profile_link,
692                                                 'item_photo_menu_html' => $this->item->photoMenu($item, $formSecurityToken),
693                                                 'name'                 => $profile_name,
694                                                 'sparkle'              => $sparkle,
695                                                 'lock'                 => false,
696                                                 'thumb'                => $this->baseURL->remove($this->item->getAuthorAvatar($item)),
697                                                 'title'                => $title,
698                                                 'body_html'            => $body_html,
699                                                 'tags'                 => $tags['tags'],
700                                                 'hashtags'             => $tags['hashtags'],
701                                                 'mentions'             => $tags['mentions'],
702                                                 'implicit_mentions'    => $tags['implicit_mentions'],
703                                                 'txt_cats'             => $this->l10n->t('Categories:'),
704                                                 'txt_folders'          => $this->l10n->t('Filed under:'),
705                                                 'has_cats'             => ((count($categories)) ? 'true' : ''),
706                                                 'has_folders'          => ((count($folders)) ? 'true' : ''),
707                                                 'categories'           => $categories,
708                                                 'folders'              => $folders,
709                                                 'text'                 => strip_tags($body_html),
710                                                 'localtime'            => DateTimeFormat::local($item['created'], 'r'),
711                                                 'utc'                  => DateTimeFormat::utc($item['created'], 'c'),
712                                                 'ago'                  => (($item['app']) ? $this->l10n->t('%s from %s', Temporal::getRelativeDate($item['created']), $item['app']) : Temporal::getRelativeDate($item['created'])),
713                                                 'location_html'        => $location_html,
714                                                 'indent'               => '',
715                                                 'owner_name'           => '',
716                                                 'owner_url'            => '',
717                                                 'owner_photo'          => $this->baseURL->remove($this->item->getOwnerAvatar($item)),
718                                                 'plink'                => ItemModel::getPlink($item),
719                                                 'edpost'               => false,
720                                                 'pinned'               => $pinned,
721                                                 'isstarred'            => 'unstarred',
722                                                 'star'                 => false,
723                                                 'drop'                 => $drop,
724                                                 'vote'                 => $likebuttons,
725                                                 'like_html'            => '',
726                                                 'dislike_html '        => '',
727                                                 'comment_html'         => '',
728                                                 'conv'                 => ($preview ? '' : ['href' => 'display/' . $item['guid'], 'title' => $this->l10n->t('View in context')]),
729                                                 'previewing'           => $previewing,
730                                                 'wait'                 => $this->l10n->t('Please wait'),
731                                                 'thread_level'         => 1,
732                                         ];
733
734                                         $arr = ['item' => $item, 'output' => $tmp_item];
735                                         Hook::callAll('display_item', $arr);
736
737                                         $threads[$threadsid]['id']      = $item['id'];
738                                         $threads[$threadsid]['network'] = $item['network'];
739                                         $threads[$threadsid]['items']   = [$arr['output']];
740                                 }
741                         } else {
742                                 // Normal View
743                                 $page_template = Renderer::getMarkupTemplate("threaded_conversation.tpl");
744
745                                 $conv = new Thread($mode, $preview, $writable);
746
747                                 /*
748                                 * get all the topmost parents
749                                 * this shouldn't be needed, as we should have only them in our array
750                                 * But for now, this array respects the old style, just in case
751                                 */
752                                 foreach ($items as $item) {
753                                         if (in_array($item['author-id'], $blocklist)) {
754                                                 continue;
755                                         }
756
757                                         // Can we put this after the visibility check?
758                                         $this->builtinActivityPuller($item, $conv_responses);
759
760                                         // Only add what is visible
761                                         if ($item['network'] === Protocol::MAIL && $this->session->getLocalUserId() != $item['uid']) {
762                                                 continue;
763                                         }
764
765                                         if (!$this->item->isVisibleActivity($item)) {
766                                                 continue;
767                                         }
768
769                                         /// @todo Check if this call is needed or not
770                                         $arr = ['item' => $item];
771                                         Hook::callAll('display_item', $arr);
772
773                                         $item['pagedrop'] = $page_dropping;
774
775                                         if ($item['gravity'] == ItemModel::GRAVITY_PARENT) {
776                                                 $item_object = new PostObject($item);
777                                                 $conv->addParent($item_object);
778                                         }
779                                 }
780
781                                 $threads = $conv->getTemplateData($conv_responses, $formSecurityToken);
782                                 if (!$threads) {
783                                         $this->logger->info('[ERROR] conversation : Failed to get template data.');
784                                         $threads = [];
785                                 }
786                         }
787                 }
788
789                 $o = Renderer::replaceMacros($page_template, [
790                         '$baseurl'     => $this->baseURL,
791                         '$return_path' => $this->args->getQueryString(),
792                         '$live_update' => $live_update_div,
793                         '$remove'      => $this->l10n->t('remove'),
794                         '$mode'        => $mode,
795                         '$update'      => $update,
796                         '$threads'     => $threads,
797                         '$dropping'    => ($page_dropping ? $this->l10n->t('Delete Selected Items') : false),
798                 ]);
799
800                 $this->profiler->stopRecording();
801                 return $o;
802         }
803
804         private function getBlocklist(): array
805         {
806                 if (!$this->session->getLocalUserId()) {
807                         return [];
808                 }
809
810                 $str_blocked = str_replace(["\n", "\r"], ",", $this->pConfig->get($this->session->getLocalUserId(), 'system', 'blocked') ?? '');
811                 if (empty($str_blocked)) {
812                         return [];
813                 }
814
815                 $blocklist = [];
816
817                 foreach (explode(',', $str_blocked) as $entry) {
818                         $cid = Contact::getIdForURL(trim($entry), 0, false);
819                         if (!empty($cid)) {
820                                 $blocklist[] = $cid;
821                         }
822                 }
823
824                 return $blocklist;
825         }
826
827         /**
828          * Adds some information (Causer, post reason, direction) to the fetched post row.
829          *
830          * @param array   $row        Post row
831          * @param array   $activity   Contact data of the resharer
832          * @param array   $thr_parent Thread parent row
833          *
834          * @return array items with parents and comments
835          */
836         private function addRowInformation(array $row, array $activity, array $thr_parent): array
837         {
838                 $this->profiler->startRecording('rendering');
839
840                 if (!$row['writable']) {
841                         $row['writable'] = in_array($row['network'], Protocol::FEDERATED);
842                 }
843
844                 if (!empty($activity)) {
845                         if (($row['gravity'] == ItemModel::GRAVITY_PARENT)) {
846                                 $row['post-reason'] = ItemModel::PR_ANNOUNCEMENT;
847
848                                 $row     = array_merge($row, $activity);
849                                 $contact = Contact::getById($activity['causer-id'], ['url', 'name', 'thumb']);
850
851                                 $row['causer-link']   = $contact['url'];
852                                 $row['causer-avatar'] = $contact['thumb'];
853                                 $row['causer-name']   = $contact['name'];
854                         } elseif (($row['gravity'] == ItemModel::GRAVITY_ACTIVITY) && ($row['verb'] == Activity::ANNOUNCE) &&
855                                 ($row['author-id'] == $activity['causer-id'])) {
856                                 return $row;
857                         }
858                 }
859
860                 switch ($row['post-reason']) {
861                         case ItemModel::PR_TO:
862                                 $row['direction'] = ['direction' => 7, 'title' => $this->l10n->t('You had been addressed (%s).', 'to')];
863                                 break;
864                         case ItemModel::PR_CC:
865                                 $row['direction'] = ['direction' => 7, 'title' => $this->l10n->t('You had been addressed (%s).', 'cc')];
866                                 break;
867                         case ItemModel::PR_BTO:
868                                 $row['direction'] = ['direction' => 7, 'title' => $this->l10n->t('You had been addressed (%s).', 'bto')];
869                                 break;
870                         case ItemModel::PR_BCC:
871                                 $row['direction'] = ['direction' => 7, 'title' => $this->l10n->t('You had been addressed (%s).', 'bcc')];
872                                 break;
873                         case ItemModel::PR_FOLLOWER:
874                                 $row['direction'] = ['direction' => 6, 'title' => $this->l10n->t('You are following %s.', $row['causer-name'] ?: $row['author-name'])];
875                                 break;
876                         case ItemModel::PR_TAG:
877                                 $row['direction'] = ['direction' => 4, 'title' => $this->l10n->t('You subscribed to one or more tags in this post.')];
878                                 break;
879                         case ItemModel::PR_ANNOUNCEMENT:
880                                 if (!empty($row['causer-id']) && $this->pConfig->get($this->session->getLocalUserId(), 'system', 'display_resharer')) {
881                                         $row['owner-id']     = $row['causer-id'];
882                                         $row['owner-link']   = $row['causer-link'];
883                                         $row['owner-avatar'] = $row['causer-avatar'];
884                                         $row['owner-name']   = $row['causer-name'];
885                                 }
886
887                                 if (in_array($row['gravity'], [ItemModel::GRAVITY_PARENT, ItemModel::GRAVITY_COMMENT]) && !empty($row['causer-id'])) {
888                                         $causer = ['uid' => 0, 'id' => $row['causer-id'], 'network' => $row['causer-network'], 'url' => $row['causer-link']];
889
890                                         $row['reshared'] = $this->l10n->t('%s reshared this.', '<a href="'. htmlentities(Contact::magicLinkByContact($causer)) .'">' . htmlentities($row['causer-name']) . '</a>');
891                                 }
892                                 $row['direction'] = ['direction' => 3, 'title' => (empty($row['causer-id']) ? $this->l10n->t('Reshared') : $this->l10n->t('Reshared by %s <%s>', $row['causer-name'], $row['causer-link']))];
893                                 break;
894                         case ItemModel::PR_COMMENT:
895                                 $row['direction'] = ['direction' => 5, 'title' => $this->l10n->t('%s is participating in this thread.', $row['author-name'])];
896                                 break;
897                         case ItemModel::PR_STORED:
898                                 $row['direction'] = ['direction' => 8, 'title' => $this->l10n->t('Stored for general reasons')];
899                                 break;
900                         case ItemModel::PR_GLOBAL:
901                                 $row['direction'] = ['direction' => 9, 'title' => $this->l10n->t('Global post')];
902                                 break;
903                         case ItemModel::PR_RELAY:
904                                 $row['direction'] = ['direction' => 10, 'title' => (empty($row['causer-id']) ? $this->l10n->t('Sent via an relay server') : $this->l10n->t('Sent via the relay server %s <%s>', $row['causer-name'], $row['causer-link']))];
905                                 break;
906                         case ItemModel::PR_FETCHED:
907                                 $row['direction'] = ['direction' => 2, 'title' => (empty($row['causer-id']) ? $this->l10n->t('Fetched') : $this->l10n->t('Fetched because of %s <%s>', $row['causer-name'], $row['causer-link']))];
908                                 break;
909                         case ItemModel::PR_COMPLETION:
910                                 $row['direction'] = ['direction' => 2, 'title' => $this->l10n->t('Stored because of a child post to complete this thread.')];
911                                 break;
912                         case ItemModel::PR_DIRECT:
913                                 $row['direction'] = ['direction' => 6, 'title' => $this->l10n->t('Local delivery')];
914                                 break;
915                         case ItemModel::PR_ACTIVITY:
916                                 $row['direction'] = ['direction' => 2, 'title' => $this->l10n->t('Stored because of your activity (like, comment, star, ...)')];
917                                 break;
918                         case ItemModel::PR_DISTRIBUTE:
919                                 $row['direction'] = ['direction' => 6, 'title' => $this->l10n->t('Distributed')];
920                                 break;
921                         case ItemModel::PR_PUSHED:
922                                 $row['direction'] = ['direction' => 1, 'title' => $this->l10n->t('Pushed to us')];
923                                 break;
924                 }
925
926                 $row['thr-parent-row'] = $thr_parent;
927
928                 $this->profiler->stopRecording();
929                 return $row;
930         }
931
932         /**
933          * Add comments to top level entries that had been fetched before
934          *
935          * The system will fetch the comments for the local user whenever possible.
936          * This behaviour is currently needed to allow commenting on Friendica posts.
937          *
938          * @param array  $parents       Parent items
939          * @param bool   $block_authors
940          * @param bool   $order
941          * @param int    $uid
942          * @param string $mode
943          * @return array items with parents and comments
944          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
945          */
946         private function addChildren(array $parents, bool $block_authors, string $order, int $uid, string $mode): array
947         {
948                 $this->profiler->startRecording('rendering');
949                 if (count($parents) > 1) {
950                         $max_comments = $this->config->get('system', 'max_comments', 100);
951                 } else {
952                         $max_comments = $this->config->get('system', 'max_display_comments', 1000);
953                 }
954
955                 $activities      = [];
956                 $uriids          = [];
957                 $commentcounter  = [];
958                 $activitycounter = [];
959
960                 foreach ($parents as $parent) {
961                         if (!empty($parent['thr-parent-id']) && !empty($parent['gravity']) && ($parent['gravity'] == ItemModel::GRAVITY_ACTIVITY)) {
962                                 $uriid = $parent['thr-parent-id'];
963                                 if (!empty($parent['author-id'])) {
964                                         $activities[$uriid] = ['causer-id' => $parent['author-id']];
965                                         foreach (['commented', 'received', 'created'] as $orderfields) {
966                                                 if (!empty($parent[$orderfields])) {
967                                                         $activities[$uriid][$orderfields] = $parent[$orderfields];
968                                                 }
969                                         }
970                                 }
971                         } else {
972                                 $uriid = $parent['uri-id'];
973                         }
974                         $uriids[] = $uriid;
975
976                         $commentcounter[$uriid]  = 0;
977                         $activitycounter[$uriid] = 0;
978                 }
979
980                 $condition = ['parent-uri-id' => $uriids];
981                 if ($block_authors) {
982                         $condition['author-hidden'] = false;
983                 }
984
985                 if ($this->config->get('system', 'emoji_activities')) {
986                         $emojis = $this->getEmojis($uriids);
987                         $condition = DBA::mergeConditions($condition, ["(`gravity` != ? OR `origin`)", ItemModel::GRAVITY_ACTIVITY]);
988                 }
989
990                 $condition = DBA::mergeConditions($condition,
991                         ["`uid` IN (0, ?) AND (NOT `vid` IN (?, ?, ?) OR `vid` IS NULL)", $uid, Verb::getID(Activity::FOLLOW), Verb::getID(Activity::VIEW), Verb::getID(Activity::READ)]);
992
993                 $condition = DBA::mergeConditions($condition,
994                         ["`visible` AND NOT `deleted` AND NOT `author-blocked` AND NOT `owner-blocked`
995                         AND ((NOT `contact-pending` AND (`contact-rel` IN (?, ?))) OR `self` OR `contact-uid` = ?)",
996                         Contact::SHARING, Contact::FRIEND, 0]);
997
998                 $thread_parents = Post::select(['uri-id', 'causer-id'], $condition, ['order' => ['uri-id' => false, 'uid']]);
999
1000                 $thr_parent = [];
1001
1002                 while ($row = Post::fetch($thread_parents)) {
1003                         $thr_parent[$row['uri-id']] = $row;
1004                 }
1005                 DBA::close($thread_parents);
1006
1007                 $params = ['order' => ['uri-id' => true, 'uid' => true]];
1008
1009                 $thread_items = Post::select(array_merge(ItemModel::DISPLAY_FIELDLIST, ['featured', 'contact-uid', 'gravity', 'post-type', 'post-reason']), $condition, $params);
1010
1011                 $items         = [];
1012                 $quote_uri_ids = [];
1013                 $authors       = [];
1014
1015                 while ($row = Post::fetch($thread_items)) {
1016                         if (!empty($items[$row['uri-id']]) && ($row['uid'] == 0)) {
1017                                 continue;
1018                         }
1019
1020                         if (($mode != self::MODE_CONTACTS) && !$row['origin']) {
1021                                 $row['featured'] = false;
1022                         }
1023
1024                         if ($max_comments > 0) {
1025                                 if (($row['gravity'] == ItemModel::GRAVITY_COMMENT) && (++$commentcounter[$row['parent-uri-id']] > $max_comments)) {
1026                                         continue;
1027                                 }
1028                                 if (($row['gravity'] == ItemModel::GRAVITY_ACTIVITY) && (++$activitycounter[$row['parent-uri-id']] > $max_comments)) {
1029                                         continue;
1030                                 }
1031                         }
1032
1033                         $authors[] = $row['author-id'];
1034                         $authors[] = $row['owner-id'];
1035
1036                         if (in_array($row['gravity'], [ItemModel::GRAVITY_PARENT, ItemModel::GRAVITY_COMMENT])) {
1037                                 $quote_uri_ids[$row['uri-id']] = [
1038                                         'uri-id'        => $row['uri-id'],
1039                                         'uri'           => $row['uri'],
1040                                         'parent-uri-id' => $row['parent-uri-id'],
1041                                         'parent-uri'    => $row['parent-uri'],
1042                                 ];
1043                         }
1044
1045                         $items[$row['uri-id']] = $this->addRowInformation($row, $activities[$row['uri-id']] ?? [], $thr_parent[$row['thr-parent-id']] ?? []);
1046                 }
1047
1048                 DBA::close($thread_items);
1049
1050                 $quotes = Post::select(array_merge(ItemModel::DISPLAY_FIELDLIST, ['featured', 'contact-uid', 'gravity', 'post-type', 'post-reason']), ['quote-uri-id' => array_column($quote_uri_ids, 'uri-id'), 'body' => '', 'uid' => 0]);
1051                 while ($quote = Post::fetch($quotes)) {
1052                         $row = $quote;
1053
1054                         $row['uid']           = $uid;
1055                         $row['verb']          = $row['body'] = $row['raw-body'] = Activity::ANNOUNCE;
1056                         $row['gravity']       = ItemModel::GRAVITY_ACTIVITY;
1057                         $row['object-type']   = Activity\ObjectType::NOTE;
1058                         $row['parent-uri']    = $quote_uri_ids[$quote['quote-uri-id']]['parent-uri'];
1059                         $row['parent-uri-id'] = $quote_uri_ids[$quote['quote-uri-id']]['parent-uri-id'];
1060                         $row['thr-parent']    = $quote_uri_ids[$quote['quote-uri-id']]['uri'];
1061                         $row['thr-parent-id'] = $quote_uri_ids[$quote['quote-uri-id']]['uri-id'];
1062
1063                         $authors[] = $row['author-id'];
1064                         $authors[] = $row['owner-id'];
1065
1066                         $items[$row['uri-id']] = $this->addRowInformation($row, [], []);
1067                 }
1068                 DBA::close($quotes);
1069
1070                 $authors = array_unique($authors);
1071
1072                 $blocks    = [];
1073                 $ignores   = [];
1074                 $collapses = [];
1075                 if (!empty($authors)) {
1076                         $usercontacts = DBA::select('user-contact', ['cid', 'blocked', 'ignored', 'collapsed'], ['uid' => $uid, 'cid' => $authors]);
1077                         while ($usercontact = DBA::fetch($usercontacts)) {
1078                                 if ($usercontact['blocked']) {
1079                                         $blocks[] = $usercontact['cid'];
1080                                 }
1081                                 if ($usercontact['ignored']) {
1082                                         $ignores[] = $usercontact['cid'];
1083                                 }
1084                                 if ($usercontact['collapsed']) {
1085                                         $collapses[] = $usercontact['cid'];
1086                                 }
1087                         }
1088                         DBA::close($usercontacts);
1089                 }
1090
1091                 foreach ($items as $key => $row) {
1092                         $items[$key]['emojis'] = $emojis[$key] ?? [];
1093
1094                         $always_display = in_array($mode, [self::MODE_CONTACTS, self::MODE_CONTACT_POSTS]);
1095
1096                         $items[$key]['user-blocked-author']   = !$always_display && in_array($row['author-id'], $blocks);
1097                         $items[$key]['user-ignored-author']   = !$always_display && in_array($row['author-id'], $ignores);
1098                         $items[$key]['user-blocked-owner']    = !$always_display && in_array($row['owner-id'], $blocks);
1099                         $items[$key]['user-ignored-owner']    = !$always_display && in_array($row['owner-id'], $ignores);
1100                         $items[$key]['user-collapsed-author'] = !$always_display && in_array($row['author-id'], $collapses);
1101                         $items[$key]['user-collapsed-owner']  = !$always_display && in_array($row['owner-id'], $collapses);
1102
1103                         if (in_array($mode, [self::MODE_COMMUNITY, self::MODE_NETWORK]) &&
1104                                 (in_array($row['author-id'], $blocks) || in_array($row['owner-id'], $blocks) || in_array($row['author-id'], $ignores) || in_array($row['owner-id'], $ignores))) {
1105                                 unset($items[$key]);
1106                         }
1107                 }
1108
1109                 $items = $this->convSort($items, $order);
1110
1111                 $this->profiler->stopRecording();
1112                 return $items;
1113         }
1114
1115         /**
1116          * Fetch emoji reaction from the conversation
1117          *
1118          * @param array $uriids
1119          * @return array
1120          */
1121         private function getEmojis(array $uriids): array
1122         {
1123                 $activity_emoji = [
1124                         Activity::LIKE        => '👍',
1125                         Activity::DISLIKE     => '👎',
1126                         Activity::ATTEND      => '✔️',
1127                         Activity::ATTENDMAYBE => '❓',
1128                         Activity::ATTENDNO    => '❌',
1129                         Activity::ANNOUNCE    => '♻',
1130                         Activity::VIEW        => '📺',
1131                 ];
1132
1133                 $index_list = array_values($activity_emoji);
1134                 $verbs      = array_merge(array_keys($activity_emoji), [Activity::EMOJIREACT]);
1135
1136                 $condition = DBA::mergeConditions(['parent-uri-id' => $uriids, 'gravity' => ItemModel::GRAVITY_ACTIVITY, 'verb' => $verbs], ["NOT `deleted`"]);
1137                 $separator = chr(255) . chr(255) . chr(255);
1138
1139                 $sql = "SELECT `thr-parent-id`, `body`, `verb`, COUNT(*) AS `total`, GROUP_CONCAT(REPLACE(`author-name`, '" . $separator . "', ' ') SEPARATOR '". $separator ."' LIMIT 50) AS `title` FROM `post-view` WHERE " . array_shift($condition) . " GROUP BY `thr-parent-id`, `verb`, `body`";
1140
1141                 $emojis = [];
1142
1143                 $rows = DBA::p($sql, $condition);
1144                 while ($row = DBA::fetch($rows)) {
1145                         $row['verb'] = $row['body'] ? Activity::EMOJIREACT : $row['verb'];
1146                         $emoji       = $row['body'] ?: $activity_emoji[$row['verb']];
1147                         if (!isset($index_list[$emoji])) {
1148                                 $index_list[] = $emoji;
1149                         }
1150                         $index = array_search($emoji, $index_list);
1151
1152                         $emojis[$row['thr-parent-id']][$index]['emoji'] = $emoji;
1153                         $emojis[$row['thr-parent-id']][$index]['verb']  = $row['verb'];
1154                         $emojis[$row['thr-parent-id']][$index]['total'] = ($emojis[$row['thr-parent-id']][$index]['total'] ?? 0) + $row['total'];
1155                         $emojis[$row['thr-parent-id']][$index]['title'] = array_unique(array_merge($emojis[$row['thr-parent-id']][$index]['title'] ?? [], explode($separator, $row['title'])));
1156                 }
1157                 DBA::close($rows);
1158
1159                 return $emojis;
1160         }
1161
1162         /**
1163          * Plucks the children of the given parent from a given item list.
1164          *
1165          * @param array $item_list
1166          * @param array $parent
1167          * @param bool  $recursive
1168          * @return array
1169          */
1170         private function getItemChildren(array &$item_list, array $parent, bool $recursive = true): array
1171         {
1172                 $this->profiler->startRecording('rendering');
1173                 $children = [];
1174                 foreach ($item_list as $i => $item) {
1175                         if ($item['gravity'] != ItemModel::GRAVITY_PARENT) {
1176                                 if ($recursive) {
1177                                         // Fallback to parent-uri if thr-parent is not set
1178                                         $thr_parent = $item['thr-parent-id'];
1179                                         if ($thr_parent == '') {
1180                                                 $thr_parent = $item['parent-uri-id'];
1181                                         }
1182
1183                                         if ($thr_parent == $parent['uri-id']) {
1184                                                 $item['children'] = $this->getItemChildren($item_list, $item);
1185
1186                                                 $children[] = $item;
1187                                                 unset($item_list[$i]);
1188                                         }
1189                                 } elseif ($item['parent-uri-id'] == $parent['uri-id']) {
1190                                         $children[] = $item;
1191                                         unset($item_list[$i]);
1192                                 }
1193                         }
1194                 }
1195                 $this->profiler->stopRecording();
1196                 return $children;
1197         }
1198
1199         /**
1200          * Recursively sorts a tree-like item array
1201          *
1202          * @param array $items
1203          * @return array
1204          */
1205         private function sortItemChildren(array $items): array
1206         {
1207                 $this->profiler->startRecording('rendering');
1208                 $result = $items;
1209                 usort($result, [$this, 'sortThrReceivedRev']);
1210                 foreach ($result as $k => $i) {
1211                         if (isset($result[$k]['children'])) {
1212                                 $result[$k]['children'] = $this->sortItemChildren($result[$k]['children']);
1213                         }
1214                 }
1215                 $this->profiler->stopRecording();
1216                 return $result;
1217         }
1218
1219         /**
1220          * Recursively add all children items at the top level of a list
1221          *
1222          * @param array $children List of items to append
1223          * @param array $item_list
1224          */
1225         private function addChildrenToList(array $children, array &$item_list)
1226         {
1227                 foreach ($children as $child) {
1228                         $item_list[] = $child;
1229                         if (isset($child['children'])) {
1230                                 $this->addChildrenToList($child['children'], $item_list);
1231                         }
1232                 }
1233         }
1234
1235         /**
1236          * Selectively flattens a tree-like item structure to prevent threading stairs
1237          *
1238          * This recursive function takes the item tree structure created by conv_sort() and
1239          * flatten the extraneous depth levels when people reply sequentially, removing the
1240          * stairs effect in threaded conversations limiting the available content width.
1241          *
1242          * The basic principle is the following: if a post item has only one reply and is
1243          * the last reply of its parent, then the reply is moved to the parent.
1244          *
1245          * This process is rendered somewhat more complicated because items can be either
1246          * replies or likes, and these don't factor at all in the reply count/last reply.
1247          *
1248          * @param array $parent A tree-like array of items
1249          * @return array
1250          */
1251         private function smartFlattenConversation(array $parent): array
1252         {
1253                 $this->profiler->startRecording('rendering');
1254                 if (!isset($parent['children']) || count($parent['children']) == 0) {
1255                         $this->profiler->stopRecording();
1256                         return $parent;
1257                 }
1258
1259                 // We use a for loop to ensure we process the newly-moved items
1260                 for ($i = 0; $i < count($parent['children']); $i++) {
1261                         $child = $parent['children'][$i];
1262
1263                         if (isset($child['children']) && count($child['children'])) {
1264                                 // This helps counting only the regular posts
1265                                 $count_post_closure = function ($var) {
1266                                         $this->profiler->stopRecording();
1267                                         return $var['verb'] === Activity::POST;
1268                                 };
1269
1270                                 $child_post_count = count(array_filter($child['children'], $count_post_closure));
1271
1272                                 $remaining_post_count = count(array_filter(array_slice($parent['children'], $i), $count_post_closure));
1273
1274                                 // If there's only one child's children post and this is the last child post
1275                                 if ($child_post_count == 1 && $remaining_post_count == 1) {
1276
1277                                         // Searches the post item in the children
1278                                         $j = 0;
1279                                         while ($child['children'][$j]['verb'] !== Activity::POST && $j < count($child['children'])) {
1280                                                 $j ++;
1281                                         }
1282
1283                                         $moved_item = $child['children'][$j];
1284                                         unset($parent['children'][$i]['children'][$j]);
1285                                         $parent['children'][] = $moved_item;
1286                                 } else {
1287                                         $parent['children'][$i] = $this->smartFlattenConversation($child);
1288                                 }
1289                         }
1290                 }
1291
1292                 $this->profiler->stopRecording();
1293                 return $parent;
1294         }
1295
1296         /**
1297          * Expands a flat list of items into corresponding tree-like conversation structures.
1298          *
1299          * sort the top-level posts either on "received" or "commented", and finally
1300          * append all the items at the top level (???)
1301          *
1302          * @param array  $item_list A list of items belonging to one or more conversations
1303          * @param string $order     Either on "received" or "commented"
1304          * @return array
1305          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1306          */
1307         private function convSort(array $item_list, string $order): array
1308         {
1309                 $this->profiler->startRecording('rendering');
1310                 $parents = [];
1311
1312                 if (!(is_array($item_list) && count($item_list))) {
1313                         $this->profiler->stopRecording();
1314                         return $parents;
1315                 }
1316
1317                 $blocklist = $this->getBlocklist();
1318
1319                 $item_array = [];
1320
1321                 // Dedupes the item list on the uri to prevent infinite loops
1322                 foreach ($item_list as $item) {
1323                         if (in_array($item['author-id'], $blocklist)) {
1324                                 continue;
1325                         }
1326
1327                         $item_array[$item['uri-id']] = $item;
1328                 }
1329
1330                 // Extract the top level items
1331                 foreach ($item_array as $item) {
1332                         if ($item['gravity'] == ItemModel::GRAVITY_PARENT) {
1333                                 $parents[] = $item;
1334                         }
1335                 }
1336
1337                 if (stristr($order, 'pinned_received')) {
1338                         usort($parents, [$this, 'sortThrFeaturedReceived']);
1339                 } elseif (stristr($order, 'pinned_commented')) {
1340                         usort($parents, [$this, 'sortThrFeaturedCommented']);
1341                 } elseif (stristr($order, 'received')) {
1342                         usort($parents, [$this, 'sortThrReceived']);
1343                 } elseif (stristr($order, 'commented')) {
1344                         usort($parents, [$this, 'sortThrCommented']);
1345                 } elseif (stristr($order, 'created')) {
1346                         usort($parents, [$this, 'sortThrCreated']);
1347                 }
1348
1349                 /*
1350                 * Plucks children from the item_array, second pass collects eventual orphan
1351                 * items and add them as children of their top-level post.
1352                 */
1353                 foreach ($parents as $i => $parent) {
1354                         $parents[$i]['children'] = array_merge($this->getItemChildren($item_array, $parent, true),
1355                                 $this->getItemChildren($item_array, $parent, false));
1356                 }
1357
1358                 foreach ($parents as $i => $parent) {
1359                         $parents[$i]['children'] = $this->sortItemChildren($parents[$i]['children']);
1360                 }
1361
1362                 if (!$this->pConfig->get($this->session->getLocalUserId(), 'system', 'no_smart_threading', 0)) {
1363                         foreach ($parents as $i => $parent) {
1364                                 $parents[$i] = $this->smartFlattenConversation($parent);
1365                         }
1366                 }
1367
1368                 /// @TODO: Stop recusrsively adding all children back to the top level (!!!)
1369                 /// However, this apparently ensures responses (likes, attendance) display (?!)
1370                 foreach ($parents as $parent) {
1371                         if (count($parent['children'])) {
1372                                 $this->addChildrenToList($parent['children'], $parents);
1373                         }
1374                 }
1375
1376                 $this->profiler->stopRecording();
1377                 return $parents;
1378         }
1379
1380         /**
1381          * usort() callback to sort item arrays by featured and the received key
1382          *
1383          * @param array $a
1384          * @param array $b
1385          * @return int
1386          */
1387         private function sortThrFeaturedReceived(array $a, array $b): int
1388         {
1389                 if ($b['featured'] && !$a['featured']) {
1390                         return 1;
1391                 } elseif (!$b['featured'] && $a['featured']) {
1392                         return -1;
1393                 }
1394
1395                 return strcmp($b['received'], $a['received']);
1396         }
1397
1398         /**
1399          * usort() callback to sort item arrays by featured and the received key
1400          *
1401          * @param array $a
1402          * @param array $b
1403          * @return int
1404          */
1405         private function sortThrFeaturedCommented(array $a, array $b): int
1406         {
1407                 if ($b['featured'] && !$a['featured']) {
1408                         return 1;
1409                 } elseif (!$b['featured'] && $a['featured']) {
1410                         return -1;
1411                 }
1412
1413                 return strcmp($b['commented'], $a['commented']);
1414         }
1415
1416         /**
1417          * usort() callback to sort item arrays by the received key
1418          *
1419          * @param array $a
1420          * @param array $b
1421          * @return int
1422          */
1423         private function sortThrReceived(array $a, array $b): int
1424         {
1425                 return strcmp($b['received'], $a['received']);
1426         }
1427
1428         /**
1429          * usort() callback to reverse sort item arrays by the received key
1430          *
1431          * @param array $a
1432          * @param array $b
1433          * @return int
1434          */
1435         private function sortThrReceivedRev(array $a, array $b): int
1436         {
1437                 return strcmp($a['received'], $b['received']);
1438         }
1439
1440         /**
1441          * usort() callback to sort item arrays by the commented key
1442          *
1443          * @param array $a
1444          * @param array $b
1445          * @return int
1446          */
1447         private function sortThrCommented(array $a, array $b): int
1448         {
1449                 return strcmp($b['commented'], $a['commented']);
1450         }
1451
1452         /**
1453          * usort() callback to sort item arrays by the created key
1454          *
1455          * @param array $a
1456          * @param array $b
1457          * @return int
1458          */
1459         private function sortThrCreated(array $a, array $b): int
1460         {
1461                 return strcmp($b['created'], $a['created']);
1462         }
1463 }