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