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