]> git.mxchange.org Git - friendica.git/blob - src/Content/Conversation.php
Fix update after activity
[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                                         . (!empty($_GET['no_sharer']) ? '&no_sharer=' . rawurlencode($_GET['no_sharer']) : '')
499                                         . (!empty($_GET['accounttype']) ? '&accounttype=' . rawurlencode($_GET['accounttype']) : '')
500                                         . "'; </script>\r\n";
501                         }
502                 } elseif ($mode === self::MODE_PROFILE) {
503                         $items = $this->addChildren($items, false, $order, $uid, $mode, $ignoredGsids);
504
505                         if (!$update) {
506                                 $tab = !empty($_GET['tab']) ? trim($_GET['tab']) : 'posts';
507
508                                 if ($tab === 'posts') {
509                                         /*
510                                         * This is ugly, but we can't pass the profile_uid through the session to the ajax updater,
511                                         * because browser prefetching might change it on us. We have to deliver it with the page.
512                                         */
513
514                                         $live_update_div = '<div id="live-profile"></div>' . "\r\n"
515                                                 . "<script> var profile_uid = " . $uid
516                                                 . "; var netargs = '?f='; </script>\r\n";
517                                 }
518                         }
519                 } elseif ($mode === self::MODE_NOTES) {
520                         $items = $this->addChildren($items, false, $order, $this->session->getLocalUserId(), $mode);
521
522                         if (!$update) {
523                                 $live_update_div = '<div id="live-notes"></div>' . "\r\n"
524                                         . "<script> var profile_uid = " . $this->session->getLocalUserId()
525                                         . "; var netargs = '?f='; </script>\r\n";
526                         }
527                 } elseif ($mode === self::MODE_DISPLAY) {
528                         $items = $this->addChildren($items, false, $order, $uid, $mode, $ignoredGsids);
529
530                         if (!$update) {
531                                 $live_update_div = '<div id="live-display"></div>' . "\r\n"
532                                         . "<script> var profile_uid = " . ($this->session->getLocalUserId() ?: 0) . ";"
533                                         . "</script>";
534                         }
535                 } elseif ($mode === self::MODE_CHANNEL) {
536                         $items = $this->addChildren($items, true, $order, $uid, $mode, $ignoredGsids);
537
538                         if (!$update) {
539                                 $live_update_div = '<div id="live-channel"></div>' . "\r\n"
540                                         . "<script> var profile_uid = -1; var netargs = '" . substr($this->args->getCommand(), 8)
541                                         . '?f='
542                                         . (!empty($_GET['no_sharer']) ? '&no_sharer=' . rawurlencode($_GET['no_sharer']) : '')
543                                         . (!empty($_GET['accounttype']) ? '&accounttype=' . rawurlencode($_GET['accounttype']) : '')
544                                         . "'; </script>\r\n";
545                         }
546                 } elseif ($mode === self::MODE_COMMUNITY) {
547                         $items = $this->addChildren($items, true, $order, $uid, $mode, $ignoredGsids);
548
549                         if (!$update) {
550                                 $live_update_div = '<div id="live-community"></div>' . "\r\n"
551                                         . "<script> var profile_uid = -1; var netargs = '" . substr($this->args->getCommand(), 10)
552                                         . '?f='
553                                         . (!empty($_GET['no_sharer']) ? '&no_sharer=' . rawurlencode($_GET['no_sharer']) : '')
554                                         . (!empty($_GET['accounttype']) ? '&accounttype=' . rawurlencode($_GET['accounttype']) : '')
555                                         . "'; </script>\r\n";
556                         }
557                 } elseif ($mode === self::MODE_CONTACTS) {
558                         $items = $this->addChildren($items, false, $order, $uid, $mode, $ignoredGsids);
559
560                         if (!$update) {
561                                 $live_update_div = '<div id="live-contact"></div>' . "\r\n"
562                                         . "<script> var profile_uid = -1; var netargs = '" . substr($this->args->getCommand(), 8)
563                                         . "?f='; </script>\r\n";
564                         }
565                 } elseif ($mode === self::MODE_SEARCH) {
566                         $live_update_div = '<div id="live-search"></div>' . "\r\n";
567                 }
568
569                 $page_dropping = $this->session->getLocalUserId() && $this->session->getLocalUserId() == $uid && $mode != self::MODE_SEARCH;
570
571                 if (!$update) {
572                         $_SESSION['return_path'] = $this->args->getQueryString();
573                 }
574
575                 $cb = ['items' => $items, 'mode' => $mode, 'update' => $update, 'preview' => $preview];
576                 Hook::callAll('conversation_start', $cb);
577
578                 $items = $cb['items'];
579
580                 $formSecurityToken = BaseModule::getFormSecurityToken('contact_action');
581
582                 $threads = $this->getThreadList($items, $mode, $preview, $page_dropping, $formSecurityToken);
583
584                 if (in_array($mode, [self::MODE_FILED, self::MODE_SEARCH, self::MODE_CONTACT_POSTS])) {
585                         $page_template = Renderer::getMarkupTemplate('conversation.tpl');
586                 } else {
587                         $page_template = Renderer::getMarkupTemplate('threaded_conversation.tpl');
588                 }
589
590                 $o = Renderer::replaceMacros($page_template, [
591                         '$baseurl'     => $this->baseURL,
592                         '$return_path' => $this->args->getQueryString(),
593                         '$live_update' => $live_update_div,
594                         '$remove'      => $this->l10n->t('remove'),
595                         '$mode'        => $mode,
596                         '$update'      => $update,
597                         '$threads'     => $threads,
598                         '$dropping'    => ($page_dropping ? $this->l10n->t('Delete Selected Items') : false),
599                 ]);
600
601                 $this->profiler->stopRecording();
602                 return $o;
603         }
604
605         /**
606          * @param array  $items
607          * @param string $mode One of self::MODE_*
608          * @param bool   $preview
609          * @param bool   $pagedrop Whether to enable the user to select the thread for deletion
610          * @param string $formSecurityToken A 'contact_action' form security token
611          * @return array
612          * @throws InternalServerErrorException
613          * @throws \ImagickException
614          */
615         public function getThreadList(array $items, string $mode, bool $preview, bool $pagedrop, string $formSecurityToken): array
616         {
617                 if (!$items) {
618                         return [];
619                 }
620
621                 if (in_array($mode, [self::MODE_FILED, self::MODE_SEARCH, self::MODE_CONTACT_POSTS])) {
622                         $threads = $this->getContextLessThreadList($items, $mode, $preview, $pagedrop, $formSecurityToken);
623                 } else {
624                         $conv_responses = [
625                                 'like'        => [],
626                                 'dislike'     => [],
627                                 'attendyes'   => [],
628                                 'attendno'    => [],
629                                 'attendmaybe' => [],
630                                 'announce'    => [],
631                         ];
632
633                         if ($this->pConfig->get($this->session->getLocalUserId(), 'system', 'hide_dislike')) {
634                                 unset($conv_responses['dislike']);
635                         }
636
637                         if (in_array($mode, [self::MODE_CHANNEL, self::MODE_COMMUNITY, self::MODE_CONTACTS, self::MODE_PROFILE])) {
638                                 $writable = true;
639                         } else {
640                                 $writable = $items[0]['writable'] || ($items[0]['uid'] == 0) && in_array($items[0]['network'], Protocol::FEDERATED);
641                         }
642
643                         if (!$this->session->getLocalUserId()) {
644                                 $writable = false;
645                         }
646
647                         // Normal View
648                         $conv = new Thread($mode, $preview, $writable);
649
650                         /*
651                         * get all the topmost parents
652                         * this shouldn't be needed, as we should have only them in our array
653                         * But for now, this array respects the old style, just in case
654                         */
655                         foreach ($items as $item) {
656                                 if (in_array($item['author-id'], $this->getBlocklist())) {
657                                         continue;
658                                 }
659
660                                 // Can we put this after the visibility check?
661                                 $this->builtinActivityPuller($item, $conv_responses);
662
663                                 // Only add what is visible
664                                 if ($item['network'] === Protocol::MAIL && $this->session->getLocalUserId() != $item['uid']) {
665                                         continue;
666                                 }
667
668                                 if (!$this->item->isVisibleActivity($item)) {
669                                         continue;
670                                 }
671
672                                 /// @todo Check if this call is needed or not
673                                 $arr = ['item' => $item];
674                                 Hook::callAll('display_item', $arr);
675
676                                 $item['pagedrop'] = $pagedrop;
677
678                                 if ($item['gravity'] == ItemModel::GRAVITY_PARENT) {
679                                         $item_object = new PostObject($item);
680                                         $conv->addParent($item_object);
681                                 }
682                         }
683
684                         $threads = $conv->getTemplateData($conv_responses, $formSecurityToken);
685                         if (!$threads) {
686                                 $this->logger->info('[ERROR] conversation : Failed to get template data.');
687                                 $threads = [];
688                         }
689                 }
690
691                 return $threads;
692         }
693
694         private function getBlocklist(): array
695         {
696                 if (!$this->session->getLocalUserId()) {
697                         return [];
698                 }
699
700                 $str_blocked = str_replace(["\n", "\r"], ",", $this->pConfig->get($this->session->getLocalUserId(), 'system', 'blocked') ?? '');
701                 if (empty($str_blocked)) {
702                         return [];
703                 }
704
705                 $blocklist = [];
706
707                 foreach (explode(',', $str_blocked) as $entry) {
708                         $cid = Contact::getIdForURL(trim($entry), 0, false);
709                         if (!empty($cid)) {
710                                 $blocklist[] = $cid;
711                         }
712                 }
713
714                 return $blocklist;
715         }
716
717         /**
718          * Adds some information (Causer, post reason, direction) to the fetched post row.
719          *
720          * @param array   $row        Post row
721          * @param array   $activity   Contact data of the resharer
722          * @param array   $thr_parent Thread parent row
723          *
724          * @return array items with parents and comments
725          */
726         private function addRowInformation(array $row, array $activity, array $thr_parent): array
727         {
728                 $this->profiler->startRecording('rendering');
729
730                 if (!$row['writable']) {
731                         $row['writable'] = in_array($row['network'], Protocol::FEDERATED);
732                 }
733
734                 if (!empty($activity)) {
735                         if (($row['gravity'] == ItemModel::GRAVITY_PARENT)) {
736                                 $row['post-reason'] = ItemModel::PR_ANNOUNCEMENT;
737
738                                 $row     = array_merge($row, $activity);
739                                 $contact = Contact::getById($activity['causer-id'], ['url', 'name', 'thumb']);
740
741                                 $row['causer-link']   = $contact['url'];
742                                 $row['causer-avatar'] = $contact['thumb'];
743                                 $row['causer-name']   = $contact['name'];
744                         } elseif (($row['gravity'] == ItemModel::GRAVITY_ACTIVITY) && ($row['verb'] == Activity::ANNOUNCE) &&
745                                 ($row['author-id'] == $activity['causer-id'])
746                         ) {
747                                 return $row;
748                         }
749                 }
750
751                 switch ($row['post-reason']) {
752                         case ItemModel::PR_TO:
753                                 $row['direction'] = ['direction' => 7, 'title' => $this->l10n->t('You had been addressed (%s).', 'to')];
754                                 break;
755                         case ItemModel::PR_CC:
756                                 $row['direction'] = ['direction' => 7, 'title' => $this->l10n->t('You had been addressed (%s).', 'cc')];
757                                 break;
758                         case ItemModel::PR_BTO:
759                                 $row['direction'] = ['direction' => 7, 'title' => $this->l10n->t('You had been addressed (%s).', 'bto')];
760                                 break;
761                         case ItemModel::PR_BCC:
762                                 $row['direction'] = ['direction' => 7, 'title' => $this->l10n->t('You had been addressed (%s).', 'bcc')];
763                                 break;
764                         case ItemModel::PR_AUDIENCE:
765                                 $row['direction'] = ['direction' => 7, 'title' => $this->l10n->t('You had been addressed (%s).', 'audience')];
766                                 break;
767                         case ItemModel::PR_FOLLOWER:
768                                 $row['direction'] = ['direction' => 6, 'title' => $this->l10n->t('You are following %s.', $row['causer-name'] ?: $row['author-name'])];
769                                 break;
770                         case ItemModel::PR_TAG:
771                                 $tags = Category::getArrayByURIId($row['uri-id'], $row['uid'], Category::SUBCRIPTION);
772                                 if (!empty($tags)) {
773                                         $row['direction'] = ['direction' => 4, 'title' => $this->l10n->t('You subscribed to %s.', implode(', ', $tags))];
774                                 } else {
775                                         $row['direction'] = ['direction' => 4, 'title' => $this->l10n->t('You subscribed to one or more tags in this post.')];
776                                 }
777                                 break;
778                         case ItemModel::PR_ANNOUNCEMENT:
779                                 if (!empty($row['causer-id']) && $this->pConfig->get($this->session->getLocalUserId(), 'system', 'display_resharer')) {
780                                         $row['owner-id']     = $row['causer-id'];
781                                         $row['owner-link']   = $row['causer-link'];
782                                         $row['owner-avatar'] = $row['causer-avatar'];
783                                         $row['owner-name']   = $row['causer-name'];
784                                 }
785
786                                 if (in_array($row['gravity'], [ItemModel::GRAVITY_PARENT, ItemModel::GRAVITY_COMMENT]) && !empty($row['causer-id'])) {
787                                         $causer = [
788                                                 'uid'     => 0,
789                                                 'id'      => $row['causer-id'],
790                                                 'network' => $row['causer-network'],
791                                                 'url'     => $row['causer-link'],
792                                                 'alias'   => $row['causer-alias'],
793                                         ];
794
795                                         $row['reshared'] = $this->l10n->t('%s reshared this.', '<a href="' . htmlentities(Contact::magicLinkByContact($causer)) . '">' . htmlentities($row['causer-name']) . '</a>');
796                                 }
797                                 $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']))];
798                                 break;
799                         case ItemModel::PR_COMMENT:
800                                 $row['direction'] = ['direction' => 5, 'title' => $this->l10n->t('%s is participating in this thread.', $row['author-name'])];
801                                 break;
802                         case ItemModel::PR_STORED:
803                                 $row['direction'] = ['direction' => 8, 'title' => $this->l10n->t('Stored for general reasons')];
804                                 break;
805                         case ItemModel::PR_GLOBAL:
806                                 $row['direction'] = ['direction' => 9, 'title' => $this->l10n->t('Global post')];
807                                 break;
808                         case ItemModel::PR_RELAY:
809                                 $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']))];
810                                 break;
811                         case ItemModel::PR_FETCHED:
812                                 $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']))];
813                                 break;
814                         case ItemModel::PR_COMPLETION:
815                                 $row['direction'] = ['direction' => 2, 'title' => $this->l10n->t('Stored because of a child post to complete this thread.')];
816                                 break;
817                         case ItemModel::PR_DIRECT:
818                                 $row['direction'] = ['direction' => 6, 'title' => $this->l10n->t('Local delivery')];
819                                 break;
820                         case ItemModel::PR_ACTIVITY:
821                                 $row['direction'] = ['direction' => 2, 'title' => $this->l10n->t('Stored because of your activity (like, comment, star, ...)')];
822                                 break;
823                         case ItemModel::PR_DISTRIBUTE:
824                                 $row['direction'] = ['direction' => 6, 'title' => $this->l10n->t('Distributed')];
825                                 break;
826                         case ItemModel::PR_PUSHED:
827                                 $row['direction'] = ['direction' => 1, 'title' => $this->l10n->t('Pushed to us')];
828                                 break;
829                 }
830
831                 $row['thr-parent-row'] = $thr_parent;
832
833                 $this->profiler->stopRecording();
834                 return $row;
835         }
836
837         /**
838          * Add comments to top level entries that had been fetched before
839          *
840          * The system will fetch the comments for the local user whenever possible.
841          * This behaviour is currently needed to allow commenting on Friendica posts.
842          *
843          * @param array  $parents       Parent items
844          * @param bool   $block_authors
845          * @param string $order         Either "received" or "commented"
846          * @param int    $uid
847          * @param string $mode          One of self::MODE_*
848          * @param array  $ignoredGsids  List of ids of servers ignored by the user
849          * @return array items with parents and comments
850          * @throws InternalServerErrorException
851          */
852         private function addChildren(array $parents, bool $block_authors, string $order, int $uid, string $mode, array $ignoredGsids = []): array
853         {
854                 $this->profiler->startRecording('rendering');
855                 if (count($parents) > 1) {
856                         $max_comments = $this->config->get('system', 'max_comments', 100);
857                 } else {
858                         $max_comments = $this->config->get('system', 'max_display_comments', 1000);
859                 }
860
861                 $activities      = [];
862                 $uriids          = [];
863                 $commentcounter  = [];
864                 $activitycounter = [];
865
866                 foreach ($parents as $parent) {
867                         if (!empty($parent['thr-parent-id']) && !empty($parent['gravity']) && ($parent['gravity'] == ItemModel::GRAVITY_ACTIVITY)) {
868                                 $uriid = $parent['thr-parent-id'];
869                                 if (!empty($parent['author-id'])) {
870                                         $activities[$uriid] = ['causer-id' => $parent['author-id']];
871                                         foreach (['commented', 'received', 'created'] as $orderfields) {
872                                                 if (!empty($parent[$orderfields])) {
873                                                         $activities[$uriid][$orderfields] = $parent[$orderfields];
874                                                 }
875                                         }
876                                 }
877                         } else {
878                                 $uriid = $parent['uri-id'];
879                         }
880                         $uriids[] = $uriid;
881
882                         $commentcounter[$uriid]  = 0;
883                         $activitycounter[$uriid] = 0;
884                 }
885
886                 $condition = ['parent-uri-id' => $uriids];
887                 if ($block_authors) {
888                         $condition['author-hidden'] = false;
889                 }
890
891                 if ($this->config->get('system', 'emoji_activities')) {
892                         $emojis = $this->getEmojis($uriids);
893                         $condition = DBA::mergeConditions($condition, ["(`gravity` != ? OR `origin`)", ItemModel::GRAVITY_ACTIVITY]);
894                 }
895
896                 $condition = DBA::mergeConditions(
897                         $condition,
898                         ["`uid` IN (0, ?) AND (NOT `vid` IN (?, ?, ?) OR `vid` IS NULL)", $uid, Verb::getID(Activity::FOLLOW), Verb::getID(Activity::VIEW), Verb::getID(Activity::READ)]
899                 );
900
901                 $condition = DBA::mergeConditions($condition, ["(`uid` != ? OR `private` != ?)", 0, ItemModel::PRIVATE]);
902
903                 $condition = DBA::mergeConditions(
904                         $condition,
905                         [
906                                 "`visible` AND NOT `deleted` AND NOT `author-blocked` AND NOT `owner-blocked`
907                         AND ((NOT `contact-pending` AND (`contact-rel` IN (?, ?))) OR `self` OR `contact-uid` = ?)",
908                                 Contact::SHARING, Contact::FRIEND, 0
909                         ]
910                 );
911
912                 $thread_parents = Post::select(['uri-id', 'causer-id'], $condition, ['order' => ['uri-id' => false, 'uid']]);
913
914                 $thr_parent = [];
915
916                 while ($row = Post::fetch($thread_parents)) {
917                         $thr_parent[$row['uri-id']] = $row;
918                 }
919                 DBA::close($thread_parents);
920
921                 $params = ['order' => ['uri-id' => true, 'uid' => true]];
922
923                 $thread_items = Post::select(array_merge(ItemModel::DISPLAY_FIELDLIST, ['featured', 'contact-uid', 'gravity', 'post-type', 'post-reason']), $condition, $params);
924
925                 $items         = [];
926                 $quote_uri_ids = [];
927                 $authors       = [];
928
929                 while ($row = Post::fetch($thread_items)) {
930                         if (!empty($items[$row['uri-id']]) && ($row['uid'] == 0)) {
931                                 continue;
932                         }
933
934                         if (
935                                 in_array($row['author-gsid'], $ignoredGsids)
936                                 || in_array($row['owner-gsid'], $ignoredGsids)
937                                 || in_array($row['causer-gsid'], $ignoredGsids)
938                         ) {
939                                 continue;
940                         }
941
942                         if (($mode != self::MODE_CONTACTS) && !$row['origin']) {
943                                 $row['featured'] = false;
944                         }
945
946                         if ($max_comments > 0) {
947                                 if (($row['gravity'] == ItemModel::GRAVITY_COMMENT) && (++$commentcounter[$row['parent-uri-id']] > $max_comments)) {
948                                         continue;
949                                 }
950                                 if (($row['gravity'] == ItemModel::GRAVITY_ACTIVITY) && (++$activitycounter[$row['parent-uri-id']] > $max_comments)) {
951                                         continue;
952                                 }
953                         }
954
955                         $authors[] = $row['author-id'];
956                         $authors[] = $row['owner-id'];
957
958                         if (in_array($row['gravity'], [ItemModel::GRAVITY_PARENT, ItemModel::GRAVITY_COMMENT])) {
959                                 $quote_uri_ids[$row['uri-id']] = [
960                                         'uri-id'        => $row['uri-id'],
961                                         'uri'           => $row['uri'],
962                                         'parent-uri-id' => $row['parent-uri-id'],
963                                         'parent-uri'    => $row['parent-uri'],
964                                 ];
965                         }
966
967                         $items[$row['uri-id']] = $this->addRowInformation($row, $activities[$row['uri-id']] ?? [], $thr_parent[$row['thr-parent-id']] ?? []);
968                 }
969
970                 DBA::close($thread_items);
971
972                 $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]);
973                 while ($quote = Post::fetch($quotes)) {
974                         $row = $quote;
975
976                         $row['uid']           = $uid;
977                         $row['verb']          = $row['body'] = $row['raw-body'] = Activity::ANNOUNCE;
978                         $row['gravity']       = ItemModel::GRAVITY_ACTIVITY;
979                         $row['object-type']   = Activity\ObjectType::NOTE;
980                         $row['parent-uri']    = $quote_uri_ids[$quote['quote-uri-id']]['parent-uri'];
981                         $row['parent-uri-id'] = $quote_uri_ids[$quote['quote-uri-id']]['parent-uri-id'];
982                         $row['thr-parent']    = $quote_uri_ids[$quote['quote-uri-id']]['uri'];
983                         $row['thr-parent-id'] = $quote_uri_ids[$quote['quote-uri-id']]['uri-id'];
984
985                         $authors[] = $row['author-id'];
986                         $authors[] = $row['owner-id'];
987
988                         $items[$row['uri-id']] = $this->addRowInformation($row, [], []);
989                 }
990                 DBA::close($quotes);
991
992                 $authors = array_unique($authors);
993
994                 $blocks    = [];
995                 $ignores   = [];
996                 $collapses = [];
997                 if (!empty($authors)) {
998                         $usercontacts = DBA::select('user-contact', ['cid', 'blocked', 'ignored', 'collapsed'], ['uid' => $uid, 'cid' => $authors]);
999                         while ($usercontact = DBA::fetch($usercontacts)) {
1000                                 if ($usercontact['blocked']) {
1001                                         $blocks[] = $usercontact['cid'];
1002                                 }
1003                                 if ($usercontact['ignored']) {
1004                                         $ignores[] = $usercontact['cid'];
1005                                 }
1006                                 if ($usercontact['collapsed']) {
1007                                         $collapses[] = $usercontact['cid'];
1008                                 }
1009                         }
1010                         DBA::close($usercontacts);
1011                 }
1012
1013                 foreach ($items as $key => $row) {
1014                         $items[$key]['emojis'] = $emojis[$key] ?? [];
1015
1016                         $always_display = in_array($mode, [self::MODE_CONTACTS, self::MODE_CONTACT_POSTS]);
1017
1018                         $items[$key]['user-blocked-author']   = !$always_display && in_array($row['author-id'], $blocks);
1019                         $items[$key]['user-ignored-author']   = !$always_display && in_array($row['author-id'], $ignores);
1020                         $items[$key]['user-blocked-owner']    = !$always_display && in_array($row['owner-id'], $blocks);
1021                         $items[$key]['user-ignored-owner']    = !$always_display && in_array($row['owner-id'], $ignores);
1022                         $items[$key]['user-collapsed-author'] = !$always_display && in_array($row['author-id'], $collapses);
1023                         $items[$key]['user-collapsed-owner']  = !$always_display && in_array($row['owner-id'], $collapses);
1024
1025                         if (
1026                                 in_array($mode, [self::MODE_CHANNEL, self::MODE_COMMUNITY, self::MODE_NETWORK]) &&
1027                                 (in_array($row['author-id'], $blocks) || in_array($row['owner-id'], $blocks) || in_array($row['author-id'], $ignores) || in_array($row['owner-id'], $ignores))
1028                         ) {
1029                                 unset($items[$key]);
1030                         }
1031                 }
1032
1033                 $items = $this->convSort($items, $order);
1034
1035                 $this->profiler->stopRecording();
1036                 return $items;
1037         }
1038
1039         /**
1040          * Fetch emoji reaction from the conversation
1041          *
1042          * @param array $uriids
1043          * @return array
1044          */
1045         private function getEmojis(array $uriids): array
1046         {
1047                 $activity_emoji = [
1048                         Activity::LIKE        => '👍',
1049                         Activity::DISLIKE     => '👎',
1050                         Activity::ATTEND      => '✔️',
1051                         Activity::ATTENDMAYBE => '❓',
1052                         Activity::ATTENDNO    => '❌',
1053                         Activity::ANNOUNCE    => '♻',
1054                         Activity::VIEW        => '📺',
1055                 ];
1056
1057                 $index_list = array_values($activity_emoji);
1058                 $verbs      = array_merge(array_keys($activity_emoji), [Activity::EMOJIREACT]);
1059
1060                 $condition = DBA::mergeConditions(['parent-uri-id' => $uriids, 'gravity' => ItemModel::GRAVITY_ACTIVITY, 'verb' => $verbs], ["NOT `deleted`"]);
1061                 $separator = chr(255) . chr(255) . chr(255);
1062
1063                 $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`";
1064
1065                 $emojis = [];
1066
1067                 $rows = DBA::p($sql, $condition);
1068                 while ($row = DBA::fetch($rows)) {
1069                         $row['verb'] = $row['body'] ? Activity::EMOJIREACT : $row['verb'];
1070                         $emoji       = $row['body'] ?: $activity_emoji[$row['verb']];
1071                         if (!isset($index_list[$emoji])) {
1072                                 $index_list[] = $emoji;
1073                         }
1074                         $index = array_search($emoji, $index_list);
1075
1076                         $emojis[$row['thr-parent-id']][$index]['emoji'] = $emoji;
1077                         $emojis[$row['thr-parent-id']][$index]['verb']  = $row['verb'];
1078                         $emojis[$row['thr-parent-id']][$index]['total'] = ($emojis[$row['thr-parent-id']][$index]['total'] ?? 0) + $row['total'];
1079                         $emojis[$row['thr-parent-id']][$index]['title'] = array_unique(array_merge($emojis[$row['thr-parent-id']][$index]['title'] ?? [], explode($separator, $row['title'])));
1080                 }
1081                 DBA::close($rows);
1082
1083                 return $emojis;
1084         }
1085
1086         /**
1087          * Plucks the children of the given parent from a given item list.
1088          *
1089          * @param array $item_list
1090          * @param array $parent
1091          * @param bool  $recursive
1092          * @return array
1093          */
1094         private function getItemChildren(array &$item_list, array $parent, bool $recursive = true): array
1095         {
1096                 $this->profiler->startRecording('rendering');
1097                 $children = [];
1098                 foreach ($item_list as $i => $item) {
1099                         if ($item['gravity'] != ItemModel::GRAVITY_PARENT) {
1100                                 if ($recursive) {
1101                                         // Fallback to parent-uri if thr-parent is not set
1102                                         $thr_parent = $item['thr-parent-id'];
1103                                         if ($thr_parent == '') {
1104                                                 $thr_parent = $item['parent-uri-id'];
1105                                         }
1106
1107                                         if ($thr_parent == $parent['uri-id']) {
1108                                                 $item['children'] = $this->getItemChildren($item_list, $item);
1109
1110                                                 $children[] = $item;
1111                                                 unset($item_list[$i]);
1112                                         }
1113                                 } elseif ($item['parent-uri-id'] == $parent['uri-id']) {
1114                                         $children[] = $item;
1115                                         unset($item_list[$i]);
1116                                 }
1117                         }
1118                 }
1119                 $this->profiler->stopRecording();
1120                 return $children;
1121         }
1122
1123         /**
1124          * Recursively sorts a tree-like item array
1125          *
1126          * @param array $items
1127          * @return array
1128          */
1129         private function sortItemChildren(array $items): array
1130         {
1131                 $this->profiler->startRecording('rendering');
1132                 $result = $items;
1133                 usort($result, [$this, 'sortThrReceivedRev']);
1134                 foreach ($result as $k => $i) {
1135                         if (isset($result[$k]['children'])) {
1136                                 $result[$k]['children'] = $this->sortItemChildren($result[$k]['children']);
1137                         }
1138                 }
1139                 $this->profiler->stopRecording();
1140                 return $result;
1141         }
1142
1143         /**
1144          * Recursively add all children items at the top level of a list
1145          *
1146          * @param array $children List of items to append
1147          * @param array $item_list
1148          */
1149         private function addChildrenToList(array $children, array &$item_list)
1150         {
1151                 foreach ($children as $child) {
1152                         $item_list[] = $child;
1153                         if (isset($child['children'])) {
1154                                 $this->addChildrenToList($child['children'], $item_list);
1155                         }
1156                 }
1157         }
1158
1159         /**
1160          * Selectively flattens a tree-like item structure to prevent threading stairs
1161          *
1162          * This recursive function takes the item tree structure created by conv_sort() and
1163          * flatten the extraneous depth levels when people reply sequentially, removing the
1164          * stairs effect in threaded conversations limiting the available content width.
1165          *
1166          * The basic principle is the following: if a post item has only one reply and is
1167          * the last reply of its parent, then the reply is moved to the parent.
1168          *
1169          * This process is rendered somewhat more complicated because items can be either
1170          * replies or likes, and these don't factor at all in the reply count/last reply.
1171          *
1172          * @param array $parent A tree-like array of items
1173          * @return array
1174          */
1175         private function smartFlattenConversation(array $parent): array
1176         {
1177                 $this->profiler->startRecording('rendering');
1178                 if (!isset($parent['children']) || count($parent['children']) == 0) {
1179                         $this->profiler->stopRecording();
1180                         return $parent;
1181                 }
1182
1183                 // We use a for loop to ensure we process the newly-moved items
1184                 for ($i = 0; $i < count($parent['children']); $i++) {
1185                         $child = $parent['children'][$i];
1186
1187                         if (isset($child['children']) && count($child['children'])) {
1188                                 // This helps counting only the regular posts
1189                                 $count_post_closure = function ($var) {
1190                                         $this->profiler->stopRecording();
1191                                         return $var['verb'] === Activity::POST;
1192                                 };
1193
1194                                 $child_post_count = count(array_filter($child['children'], $count_post_closure));
1195
1196                                 $remaining_post_count = count(array_filter(array_slice($parent['children'], $i), $count_post_closure));
1197
1198                                 // If there's only one child's children post and this is the last child post
1199                                 if ($child_post_count == 1 && $remaining_post_count == 1) {
1200
1201                                         // Searches the post item in the children
1202                                         $j = 0;
1203                                         while ($child['children'][$j]['verb'] !== Activity::POST && $j < count($child['children'])) {
1204                                                 $j++;
1205                                         }
1206
1207                                         $moved_item = $child['children'][$j];
1208                                         unset($parent['children'][$i]['children'][$j]);
1209                                         $parent['children'][] = $moved_item;
1210                                 } else {
1211                                         $parent['children'][$i] = $this->smartFlattenConversation($child);
1212                                 }
1213                         }
1214                 }
1215
1216                 $this->profiler->stopRecording();
1217                 return $parent;
1218         }
1219
1220         /**
1221          * Expands a flat list of items into corresponding tree-like conversation structures.
1222          *
1223          * sort the top-level posts either on "received" or "commented", and finally
1224          * append all the items at the top level (???)
1225          *
1226          * @param array  $item_list A list of items belonging to one or more conversations
1227          * @param string $order     Either on "received" or "commented"
1228          * @return array
1229          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1230          */
1231         private function convSort(array $item_list, string $order): array
1232         {
1233                 $this->profiler->startRecording('rendering');
1234                 $parents = [];
1235
1236                 if (!(is_array($item_list) && count($item_list))) {
1237                         $this->profiler->stopRecording();
1238                         return $parents;
1239                 }
1240
1241                 $blocklist = $this->getBlocklist();
1242
1243                 $item_array = [];
1244
1245                 // Dedupes the item list on the uri to prevent infinite loops
1246                 foreach ($item_list as $item) {
1247                         if (in_array($item['author-id'], $blocklist)) {
1248                                 continue;
1249                         }
1250
1251                         $item_array[$item['uri-id']] = $item;
1252                 }
1253
1254                 // Extract the top level items
1255                 foreach ($item_array as $item) {
1256                         if ($item['gravity'] == ItemModel::GRAVITY_PARENT) {
1257                                 $parents[] = $item;
1258                         }
1259                 }
1260
1261                 if (stristr($order, 'pinned_received')) {
1262                         usort($parents, [$this, 'sortThrFeaturedReceived']);
1263                 } elseif (stristr($order, 'pinned_commented')) {
1264                         usort($parents, [$this, 'sortThrFeaturedCommented']);
1265                 } elseif (stristr($order, 'received')) {
1266                         usort($parents, [$this, 'sortThrReceived']);
1267                 } elseif (stristr($order, 'commented')) {
1268                         usort($parents, [$this, 'sortThrCommented']);
1269                 } elseif (stristr($order, 'created')) {
1270                         usort($parents, [$this, 'sortThrCreated']);
1271                 }
1272
1273                 /*
1274                 * Plucks children from the item_array, second pass collects eventual orphan
1275                 * items and add them as children of their top-level post.
1276                 */
1277                 foreach ($parents as $i => $parent) {
1278                         $parents[$i]['children'] = array_merge(
1279                                 $this->getItemChildren($item_array, $parent, true),
1280                                 $this->getItemChildren($item_array, $parent, false)
1281                         );
1282                 }
1283
1284                 foreach ($parents as $i => $parent) {
1285                         $parents[$i]['children'] = $this->sortItemChildren($parents[$i]['children']);
1286                 }
1287
1288                 if (!$this->pConfig->get($this->session->getLocalUserId(), 'system', 'no_smart_threading', 0)) {
1289                         foreach ($parents as $i => $parent) {
1290                                 $parents[$i] = $this->smartFlattenConversation($parent);
1291                         }
1292                 }
1293
1294                 /// @TODO: Stop recursively adding all children back to the top level (!!!)
1295                 /// However, this apparently ensures responses (likes, attendance) display (?!)
1296                 foreach ($parents as $parent) {
1297                         if (count($parent['children'])) {
1298                                 $this->addChildrenToList($parent['children'], $parents);
1299                         }
1300                 }
1301
1302                 $this->profiler->stopRecording();
1303                 return $parents;
1304         }
1305
1306         /**
1307          * usort() callback to sort item arrays by featured and the received key
1308          *
1309          * @param array $a
1310          * @param array $b
1311          * @return int
1312          */
1313         private function sortThrFeaturedReceived(array $a, array $b): int
1314         {
1315                 if ($b['featured'] && !$a['featured']) {
1316                         return 1;
1317                 } elseif (!$b['featured'] && $a['featured']) {
1318                         return -1;
1319                 }
1320
1321                 return strcmp($b['received'], $a['received']);
1322         }
1323
1324         /**
1325          * usort() callback to sort item arrays by featured and the received key
1326          *
1327          * @param array $a
1328          * @param array $b
1329          * @return int
1330          */
1331         private function sortThrFeaturedCommented(array $a, array $b): int
1332         {
1333                 if ($b['featured'] && !$a['featured']) {
1334                         return 1;
1335                 } elseif (!$b['featured'] && $a['featured']) {
1336                         return -1;
1337                 }
1338
1339                 return strcmp($b['commented'], $a['commented']);
1340         }
1341
1342         /**
1343          * usort() callback to sort item arrays by the received key
1344          *
1345          * @param array $a
1346          * @param array $b
1347          * @return int
1348          */
1349         private function sortThrReceived(array $a, array $b): int
1350         {
1351                 return strcmp($b['received'], $a['received']);
1352         }
1353
1354         /**
1355          * usort() callback to reverse sort item arrays by the received key
1356          *
1357          * @param array $a
1358          * @param array $b
1359          * @return int
1360          */
1361         private function sortThrReceivedRev(array $a, array $b): int
1362         {
1363                 return strcmp($a['received'], $b['received']);
1364         }
1365
1366         /**
1367          * usort() callback to sort item arrays by the commented key
1368          *
1369          * @param array $a
1370          * @param array $b
1371          * @return int
1372          */
1373         private function sortThrCommented(array $a, array $b): int
1374         {
1375                 return strcmp($b['commented'], $a['commented']);
1376         }
1377
1378         /**
1379          * usort() callback to sort item arrays by the created key
1380          *
1381          * @param array $a
1382          * @param array $b
1383          * @return int
1384          */
1385         private function sortThrCreated(array $a, array $b): int
1386         {
1387                 return strcmp($b['created'], $a['created']);
1388         }
1389
1390         /**
1391          * "New Item View" on network page or search page results
1392          * - just loop through the items and format them minimally for display
1393          *
1394          * @param array  $items
1395          * @param string $mode              One of self::MODE_*
1396          * @param bool   $preview           Whether the display is a preview
1397          * @param bool   $pagedrop          Whether the user can select the threads for deletion
1398          * @param string $formSecurityToken A 'contact_action' form security token
1399          * @return array
1400          * @throws InternalServerErrorException
1401          * @throws \ImagickException
1402          */
1403         public function getContextLessThreadList(array $items, string $mode, bool $preview, bool $pagedrop, string $formSecurityToken): array
1404         {
1405                 $threads = [];
1406                 $uriids = [];
1407
1408                 foreach ($items as $item) {
1409                         if (in_array($item['uri-id'], $uriids)) {
1410                                 continue;
1411                         }
1412
1413                         $uriids[] = $item['uri-id'];
1414
1415                         if (!$this->item->isVisibleActivity($item)) {
1416                                 continue;
1417                         }
1418
1419                         if (in_array($item['author-id'], $this->getBlocklist())) {
1420                                 continue;
1421                         }
1422
1423                         // prevent private email from leaking.
1424                         if ($item['network'] === Protocol::MAIL && $this->session->getLocalUserId() != $item['uid']) {
1425                                 continue;
1426                         }
1427
1428                         $profile_name = $item['author-name'];
1429                         if (!empty($item['author-link']) && empty($item['author-name'])) {
1430                                 $profile_name = $item['author-link'];
1431                         }
1432
1433                         $tags = Tag::populateFromItem($item);
1434
1435                         $author       = [
1436                                 'uid'     => 0,
1437                                 'id'      => $item['author-id'],
1438                                 'network' => $item['author-network'],
1439                                 'url'     => $item['author-link'],
1440                                 'alias'   => $item['author-alias'],
1441                         ];
1442                         $profile_link = Contact::magicLinkByContact($author);
1443
1444                         $sparkle = '';
1445                         if (strpos($profile_link, 'contact/redir/') === 0) {
1446                                 $sparkle = ' sparkle';
1447                         }
1448
1449                         $locate = ['location' => $item['location'], 'coord' => $item['coord'], 'html' => ''];
1450                         Hook::callAll('render_location', $locate);
1451                         $location_html = $locate['html'] ?: Strings::escapeHtml($locate['location'] ?: $locate['coord'] ?: '');
1452
1453                         $this->item->localize($item);
1454                         if ($mode === self::MODE_FILED) {
1455                                 $dropping = true;
1456                         } else {
1457                                 $dropping = false;
1458                         }
1459
1460                         $drop = [
1461                                 'dropping' => $dropping,
1462                                 'pagedrop' => $pagedrop,
1463                                 'select'   => $this->l10n->t('Select'),
1464                                 'delete'   => $this->l10n->t('Delete'),
1465                         ];
1466
1467                         $likebuttons = [
1468                                 'like'     => null,
1469                                 'dislike'  => null,
1470                                 'share'    => null,
1471                                 'announce' => null,
1472                         ];
1473
1474                         if ($this->pConfig->get($this->session->getLocalUserId(), 'system', 'hide_dislike')) {
1475                                 unset($likebuttons['dislike']);
1476                         }
1477
1478                         $body_html = ItemModel::prepareBody($item, true, $preview);
1479
1480                         [$categories, $folders] = $this->item->determineCategoriesTerms($item, $this->session->getLocalUserId());
1481
1482                         if (!empty($item['title'])) {
1483                                 $title = $item['title'];
1484                         } elseif (!empty($item['content-warning']) && $this->pConfig->get($this->session->getLocalUserId(), 'system', 'disable_cw', false)) {
1485                                 $title = ucfirst($item['content-warning']);
1486                         } else {
1487                                 $title = '';
1488                         }
1489
1490                         if (!empty($item['featured'])) {
1491                                 $pinned = $this->l10n->t('Pinned item');
1492                         } else {
1493                                 $pinned = '';
1494                         }
1495
1496                         $tmp_item = [
1497                                 'template'             => 'search_item.tpl',
1498                                 'id'                   => ($preview ? 'P0' : $item['id']),
1499                                 'guid'                 => ($preview ? 'Q0' : $item['guid']),
1500                                 'commented'            => $item['commented'],
1501                                 'received'             => $item['received'],
1502                                 'created_date'         => $item['created'],
1503                                 'uriid'                => $item['uri-id'],
1504                                 'author_gsid'          => $item['author-gsid'],
1505                                 'network'              => $item['network'],
1506                                 'network_name'         => ContactSelector::networkToName($item['author-network'], $item['author-link'], $item['network'], $item['author-gsid']),
1507                                 'network_icon'         => ContactSelector::networkToIcon($item['network'], $item['author-link'], $item['author-gsid']),
1508                                 'linktitle'            => $this->l10n->t('View %s\'s profile @ %s', $profile_name, $item['author-link']),
1509                                 'profile_url'          => $profile_link,
1510                                 'item_photo_menu_html' => $this->item->photoMenu($item, $formSecurityToken),
1511                                 'name'                 => $profile_name,
1512                                 'sparkle'              => $sparkle,
1513                                 'lock'                 => false,
1514                                 'thumb'                => $this->baseURL->remove($this->item->getAuthorAvatar($item)),
1515                                 'title'                => $title,
1516                                 'body_html'            => $body_html,
1517                                 'tags'                 => $tags['tags'],
1518                                 'hashtags'             => $tags['hashtags'],
1519                                 'mentions'             => $tags['mentions'],
1520                                 'implicit_mentions'    => $tags['implicit_mentions'],
1521                                 'txt_cats'             => $this->l10n->t('Categories:'),
1522                                 'txt_folders'          => $this->l10n->t('Filed under:'),
1523                                 'has_cats'             => ((count($categories)) ? 'true' : ''),
1524                                 'has_folders'          => ((count($folders)) ? 'true' : ''),
1525                                 'categories'           => $categories,
1526                                 'folders'              => $folders,
1527                                 'text'                 => strip_tags($body_html),
1528                                 'localtime'            => DateTimeFormat::local($item['created'], 'r'),
1529                                 'utc'                  => DateTimeFormat::utc($item['created'], 'c'),
1530                                 'ago'                  => (($item['app']) ? $this->l10n->t('%s from %s', Temporal::getRelativeDate($item['created']), $item['app']) : Temporal::getRelativeDate($item['created'])),
1531                                 'location_html'        => $location_html,
1532                                 'indent'               => '',
1533                                 'owner_name'           => '',
1534                                 'owner_url'            => '',
1535                                 'owner_photo'          => $this->baseURL->remove($this->item->getOwnerAvatar($item)),
1536                                 'plink'                => ItemModel::getPlink($item),
1537                                 'edpost'               => false,
1538                                 'pinned'               => $pinned,
1539                                 'isstarred'            => 'unstarred',
1540                                 'star'                 => false,
1541                                 'drop'                 => $drop,
1542                                 'vote'                 => $likebuttons,
1543                                 'like_html'            => '',
1544                                 'dislike_html '        => '',
1545                                 'comment_html'         => '',
1546                                 'conv'                 => $preview ? '' : ['href' => 'display/' . $item['guid'], 'title' => $this->l10n->t('View in context')],
1547                                 'previewing'           => $preview ? ' preview ' : '',
1548                                 'wait'                 => $this->l10n->t('Please wait'),
1549                                 'thread_level'         => 1,
1550                         ];
1551
1552                         $arr = ['item' => $item, 'output' => $tmp_item];
1553                         Hook::callAll('display_item', $arr);
1554
1555                         $threads[] = [
1556                                 'id'      => $item['id'],
1557                                 'network' => $item['network'],
1558                                 'items'   => [$arr['output']],
1559                         ];
1560                 }
1561
1562                 return $threads;
1563         }
1564 }