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