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