]> git.mxchange.org Git - friendica.git/blob - include/conversation.php
Merge pull request #9196 from annando/queryValue
[friendica.git] / include / conversation.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
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 use Friendica\App;
23 use Friendica\Content\ContactSelector;
24 use Friendica\Content\Feature;
25 use Friendica\Content\Text\BBCode;
26 use Friendica\Core\Hook;
27 use Friendica\Core\Logger;
28 use Friendica\Core\Protocol;
29 use Friendica\Core\Renderer;
30 use Friendica\Core\Session;
31 use Friendica\Core\Theme;
32 use Friendica\Database\DBA;
33 use Friendica\DI;
34 use Friendica\Model\Contact;
35 use Friendica\Model\Item;
36 use Friendica\Model\Profile;
37 use Friendica\Model\Tag;
38 use Friendica\Model\Verb;
39 use Friendica\Object\Post;
40 use Friendica\Object\Thread;
41 use Friendica\Protocol\Activity;
42 use Friendica\Util\Crypto;
43 use Friendica\Util\DateTimeFormat;
44 use Friendica\Util\Strings;
45 use Friendica\Util\Temporal;
46 use Friendica\Util\XML;
47
48 function item_extract_images($body) {
49
50         $saved_image = [];
51         $orig_body = $body;
52         $new_body = '';
53
54         $cnt = 0;
55         $img_start = strpos($orig_body, '[img');
56         $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
57         $img_end = ($img_start !== false ? strpos(substr($orig_body, $img_start), '[/img]') : false);
58         while (($img_st_close !== false) && ($img_end !== false)) {
59
60                 $img_st_close++; // make it point to AFTER the closing bracket
61                 $img_end += $img_start;
62
63                 if (!strcmp(substr($orig_body, $img_start + $img_st_close, 5), 'data:')) {
64                         // This is an embedded image
65
66                         $saved_image[$cnt] = substr($orig_body, $img_start + $img_st_close, $img_end - ($img_start + $img_st_close));
67                         $new_body = $new_body . substr($orig_body, 0, $img_start) . '[!#saved_image' . $cnt . '#!]';
68
69                         $cnt++;
70                 } else {
71                         $new_body = $new_body . substr($orig_body, 0, $img_end + strlen('[/img]'));
72                 }
73
74                 $orig_body = substr($orig_body, $img_end + strlen('[/img]'));
75
76                 if ($orig_body === false) {
77                         // in case the body ends on a closing image tag
78                         $orig_body = '';
79                 }
80
81                 $img_start = strpos($orig_body, '[img');
82                 $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
83                 $img_end = ($img_start !== false ? strpos(substr($orig_body, $img_start), '[/img]') : false);
84         }
85
86         $new_body = $new_body . $orig_body;
87
88         return ['body' => $new_body, 'images' => $saved_image];
89 }
90
91 function item_redir_and_replace_images($body, $images, $cid) {
92
93         $origbody = $body;
94         $newbody = '';
95
96         $cnt = 1;
97         $pos = BBCode::getTagPosition($origbody, 'url', 0);
98         while ($pos !== false && $cnt < 1000) {
99
100                 $search = '/\[url\=(.*?)\]\[!#saved_image([0-9]*)#!\]\[\/url\]' . '/is';
101                 $replace = '[url=' . DI::baseUrl() . '/redir/' . $cid
102                                    . '?url=' . '$1' . '][!#saved_image' . '$2' .'#!][/url]';
103
104                 $newbody .= substr($origbody, 0, $pos['start']['open']);
105                 $subject = substr($origbody, $pos['start']['open'], $pos['end']['close'] - $pos['start']['open']);
106                 $origbody = substr($origbody, $pos['end']['close']);
107                 if ($origbody === false) {
108                         $origbody = '';
109                 }
110
111                 $subject = preg_replace($search, $replace, $subject);
112                 $newbody .= $subject;
113
114                 $cnt++;
115                 // Isn't this supposed to use $cnt value for $occurrences? - @MrPetovan
116                 $pos = BBCode::getTagPosition($origbody, 'url', 0);
117         }
118         $newbody .= $origbody;
119
120         $cnt = 0;
121         foreach ($images as $image) {
122                 /*
123                  * We're depending on the property of 'foreach' (specified on the PHP website) that
124                  * it loops over the array starting from the first element and going sequentially
125                  * to the last element.
126                  */
127                 $newbody = str_replace('[!#saved_image' . $cnt . '#!]', '[img]' . $image . '[/img]', $newbody);
128                 $cnt++;
129         }
130         return $newbody;
131 }
132
133 /**
134  * Render actions localized
135  *
136  * @param $item
137  * @throws ImagickException
138  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
139  */
140 function localize_item(&$item)
141 {
142         $extracted = item_extract_images($item['body']);
143         if ($extracted['images']) {
144                 $item['body'] = item_redir_and_replace_images($extracted['body'], $extracted['images'], $item['contact-id']);
145         }
146
147         /// @todo The following functionality needs to be cleaned up. 
148         if (!empty($item['verb'])) {
149                 $activity = DI::activity();
150
151                 $xmlhead = "<" . "?xml version='1.0' encoding='UTF-8' ?" . ">";
152
153                 if (stristr($item['verb'], Activity::POKE)) {
154                         $verb = urldecode(substr($item['verb'], strpos($item['verb'],'#') + 1));
155                         if (!$verb) {
156                                 return;
157                         }
158                         if ($item['object-type'] == "" || $item['object-type'] !== Activity\ObjectType::PERSON) {
159                                 return;
160                         }
161
162                         $Aname = $item['author-name'];
163                         $Alink = $item['author-link'];
164
165                         $obj = XML::parseString($xmlhead . $item['object']);
166
167                         $Bname = $obj->title;
168                         $Blink = $obj->id;
169                         $Bphoto = "";
170
171                         foreach ($obj->link as $l) {
172                                 $atts = $l->attributes();
173                                 switch ($atts['rel']) {
174                                         case "alternate": $Blink = $atts['href'];
175                                         case "photo": $Bphoto = $atts['href'];
176                                 }
177                         }
178
179                         $A = '[url=' . Contact::magicLink($Alink) . ']' . $Aname . '[/url]';
180                         $B = '[url=' . Contact::magicLink($Blink) . ']' . $Bname . '[/url]';
181                         if ($Bphoto != "") {
182                                 $Bphoto = '[url=' . Contact::magicLink($Blink) . '][img=80x80]' . $Bphoto . '[/img][/url]';
183                         }
184
185                         /*
186                          * we can't have a translation string with three positions but no distinguishable text
187                          * So here is the translate string.
188                          */
189                         $txt = DI::l10n()->t('%1$s poked %2$s');
190
191                         // now translate the verb
192                         $poked_t = trim(sprintf($txt, '', ''));
193                         $txt = str_replace($poked_t, DI::l10n()->t($verb), $txt);
194
195                         // then do the sprintf on the translation string
196
197                         $item['body'] = sprintf($txt, $A, $B) . "\n\n\n" . $Bphoto;
198
199                 }
200
201                 if ($activity->match($item['verb'], Activity::TAG)) {
202                         $fields = ['author-id', 'author-link', 'author-name', 'author-network',
203                                 'verb', 'object-type', 'resource-id', 'body', 'plink'];
204                         $obj = Item::selectFirst($fields, ['uri' => $item['parent-uri']]);
205                         if (!DBA::isResult($obj)) {
206                                 return;
207                         }
208
209                         $author_arr = ['uid' => 0, 'id' => $item['author-id'],
210                                 'network' => $item['author-network'], 'url' => $item['author-link']];
211                         $author  = '[url=' . Contact::magicLinkByContact($author_arr) . ']' . $item['author-name'] . '[/url]';
212
213                         $author_arr = ['uid' => 0, 'id' => $obj['author-id'],
214                                 'network' => $obj['author-network'], 'url' => $obj['author-link']];
215                         $objauthor  = '[url=' . Contact::magicLinkByContact($author_arr) . ']' . $obj['author-name'] . '[/url]';
216
217                         switch ($obj['verb']) {
218                                 case Activity::POST:
219                                         switch ($obj['object-type']) {
220                                                 case Activity\ObjectType::EVENT:
221                                                         $post_type = DI::l10n()->t('event');
222                                                         break;
223                                                 default:
224                                                         $post_type = DI::l10n()->t('status');
225                                         }
226                                         break;
227                                 default:
228                                         if ($obj['resource-id']) {
229                                                 $post_type = DI::l10n()->t('photo');
230                                                 $m=[]; preg_match("/\[url=([^]]*)\]/", $obj['body'], $m);
231                                                 $rr['plink'] = $m[1];
232                                         } else {
233                                                 $post_type = DI::l10n()->t('status');
234                                         }
235                                         // Let's break everthing ... ;-)
236                                         break;
237                         }
238                         $plink = '[url=' . $obj['plink'] . ']' . $post_type . '[/url]';
239
240                         $parsedobj = XML::parseString($xmlhead . $item['object']);
241
242                         $tag = sprintf('#[url=%s]%s[/url]', $parsedobj->id, $parsedobj->content);
243                         $item['body'] = DI::l10n()->t('%1$s tagged %2$s\'s %3$s with %4$s', $author, $objauthor, $plink, $tag);
244                 }
245         }
246
247         $matches = null;
248         if (preg_match_all('/@\[url=(.*?)\]/is', $item['body'], $matches, PREG_SET_ORDER)) {
249                 foreach ($matches as $mtch) {
250                         if (!strpos($mtch[1], 'zrl=')) {
251                                 $item['body'] = str_replace($mtch[0], '@[url=' . Contact::magicLink($mtch[1]) . ']', $item['body']);
252                         }
253                 }
254         }
255
256         // add zrl's to public images
257         $photo_pattern = "/\[url=(.*?)\/photos\/(.*?)\/image\/(.*?)\]\[img(.*?)\]h(.*?)\[\/img\]\[\/url\]/is";
258         if (preg_match($photo_pattern, $item['body'])) {
259                 $photo_replace = '[url=' . Profile::zrl('$1' . '/photos/' . '$2' . '/image/' . '$3' ,true) . '][img' . '$4' . ']h' . '$5'  . '[/img][/url]';
260                 $item['body'] = BBCode::pregReplaceInTag($photo_pattern, $photo_replace, 'url', $item['body']);
261         }
262
263         // add sparkle links to appropriate permalinks
264         $author = ['uid' => 0, 'id' => $item['author-id'],
265                 'network' => $item['author-network'], 'url' => $item['author-link']];
266
267         // Only create a redirection to a magic link when logged in
268         if (!empty($item['plink']) && Session::isAuthenticated()) {
269                 $item['plink'] = Contact::magicLinkByContact($author, $item['plink']);
270         }
271 }
272
273 /**
274  * Count the total of comments on this item and its desendants
275  * @TODO proper type-hint + doc-tag
276  * @param $item
277  * @return int
278  */
279 function count_descendants($item) {
280         $total = count($item['children']);
281
282         if ($total > 0) {
283                 foreach ($item['children'] as $child) {
284                         if (!visible_activity($child)) {
285                                 $total --;
286                         }
287                         $total += count_descendants($child);
288                 }
289         }
290
291         return $total;
292 }
293
294 function visible_activity($item) {
295
296         $activity = DI::activity();
297
298         if (empty($item['verb']) || $activity->isHidden($item['verb'])) {
299                 return false;
300         }
301
302         // @TODO below if() block can be rewritten to a single line: $isVisible = allConditionsHere;
303         if ($activity->match($item['verb'], Activity::FOLLOW) &&
304             $item['object-type'] === Activity\ObjectType::NOTE &&
305             empty($item['self']) &&
306             $item['uid'] == local_user()) {
307                 return false;
308         }
309
310         return true;
311 }
312
313 function conv_get_blocklist()
314 {
315         if (!local_user()) {
316                 return [];
317         }
318
319         $str_blocked = str_replace(["\n", "\r"], ",", DI::pConfig()->get(local_user(), 'system', 'blocked'));
320         if (empty($str_blocked)) {
321                 return [];
322         }
323
324         $blocklist = [];
325
326         foreach (explode(',', $str_blocked) as $entry) {
327                 // The 4th parameter guarantees that there always will be a public contact entry
328                 $cid = Contact::getIdForURL(trim($entry), 0, false, ['url' => trim($entry)]);
329                 if (!empty($cid)) {
330                         $blocklist[] = $cid;
331                 }
332         }
333
334         return $blocklist;
335 }
336
337 /**
338  * "Render" a conversation or list of items for HTML display.
339  * There are two major forms of display:
340  *      - Sequential or unthreaded ("New Item View" or search results)
341  *      - conversation view
342  * The $mode parameter decides between the various renderings and also
343  * figures out how to determine page owner and other contextual items
344  * that are based on unique features of the calling module.
345  * @param App    $a
346  * @param array  $items
347  * @param        $mode
348  * @param        $update
349  * @param bool   $preview
350  * @param string $order
351  * @param int    $uid
352  * @return string
353  * @throws ImagickException
354  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
355  */
356 function conversation(App $a, array $items, $mode, $update, $preview = false, $order = 'commented', $uid = 0)
357 {
358         $page = DI::page();
359
360         $page->registerFooterScript(Theme::getPathForFile('asset/typeahead.js/dist/typeahead.bundle.js'));
361         $page->registerFooterScript(Theme::getPathForFile('js/friendica-tagsinput/friendica-tagsinput.js'));
362         $page->registerStylesheet(Theme::getPathForFile('js/friendica-tagsinput/friendica-tagsinput.css'));
363         $page->registerStylesheet(Theme::getPathForFile('js/friendica-tagsinput/friendica-tagsinput-typeahead.css'));
364
365         $ssl_state = (local_user() ? true : false);
366
367         $profile_owner = 0;
368         $live_update_div = '';
369
370         $blocklist = conv_get_blocklist();
371
372         $previewing = (($preview) ? ' preview ' : '');
373
374         if ($mode === 'network') {
375                 $items = conversation_add_children($items, false, $order, $uid);
376                 $profile_owner = local_user();
377                 if (!$update) {
378                         /*
379                          * The special div is needed for liveUpdate to kick in for this page.
380                          * We only launch liveUpdate if you aren't filtering in some incompatible
381                          * way and also you aren't writing a comment (discovered in javascript).
382                          */
383                         $live_update_div = '<div id="live-network"></div>' . "\r\n"
384                                 . "<script> var profile_uid = " . $_SESSION['uid']
385                                 . "; var netargs = '" . substr(DI::args()->getCommand(), 8)
386                                 . '?f='
387                                 . (!empty($_GET['contactid']) ? '&contactid=' . rawurlencode($_GET['contactid']) : '')
388                                 . (!empty($_GET['search'])    ? '&search='    . rawurlencode($_GET['search'])    : '')
389                                 . (!empty($_GET['star'])      ? '&star='      . rawurlencode($_GET['star'])      : '')
390                                 . (!empty($_GET['order'])     ? '&order='     . rawurlencode($_GET['order'])     : '')
391                                 . (!empty($_GET['bmark'])     ? '&bmark='     . rawurlencode($_GET['bmark'])     : '')
392                                 . (!empty($_GET['liked'])     ? '&liked='     . rawurlencode($_GET['liked'])     : '')
393                                 . (!empty($_GET['conv'])      ? '&conv='      . rawurlencode($_GET['conv'])      : '')
394                                 . (!empty($_GET['nets'])      ? '&nets='      . rawurlencode($_GET['nets'])      : '')
395                                 . (!empty($_GET['cmin'])      ? '&cmin='      . rawurlencode($_GET['cmin'])      : '')
396                                 . (!empty($_GET['cmax'])      ? '&cmax='      . rawurlencode($_GET['cmax'])      : '')
397                                 . (!empty($_GET['file'])      ? '&file='      . rawurlencode($_GET['file'])      : '')
398
399                                 . "'; </script>\r\n";
400                 }
401         } elseif ($mode === 'profile') {
402                 $items = conversation_add_children($items, false, $order, $uid);
403                 $profile_owner = $a->profile['uid'];
404
405                 if (!$update) {
406                         $tab = 'posts';
407                         if (!empty($_GET['tab'])) {
408                                 $tab = Strings::escapeTags(trim($_GET['tab']));
409                         }
410                         if ($tab === 'posts') {
411                                 /*
412                                  * This is ugly, but we can't pass the profile_uid through the session to the ajax updater,
413                                  * because browser prefetching might change it on us. We have to deliver it with the page.
414                                  */
415
416                                 $live_update_div = '<div id="live-profile"></div>' . "\r\n"
417                                         . "<script> var profile_uid = " . $a->profile['uid']
418                                         . "; var netargs = '?f='; </script>\r\n";
419                         }
420                 }
421         } elseif ($mode === 'notes') {
422                 $items = conversation_add_children($items, false, $order, local_user());
423                 $profile_owner = local_user();
424
425                 if (!$update) {
426                         $live_update_div = '<div id="live-notes"></div>' . "\r\n"
427                                 . "<script> var profile_uid = " . local_user()
428                                 . "; var netargs = '/?f='; </script>\r\n";
429                 }
430         } elseif ($mode === 'display') {
431                 $items = conversation_add_children($items, false, $order, $uid);
432                 $profile_owner = $a->profile['uid'];
433
434                 if (!$update) {
435                         $live_update_div = '<div id="live-display"></div>' . "\r\n"
436                                 . "<script> var profile_uid = " . Session::get('uid', 0) . ";"
437                                 . "</script>";
438                 }
439         } elseif ($mode === 'community') {
440                 $items = conversation_add_children($items, true, $order, $uid);
441                 $profile_owner = 0;
442
443                 if (!$update) {
444                         $live_update_div = '<div id="live-community"></div>' . "\r\n"
445                                 . "<script> var profile_uid = -1; var netargs = '" . substr(DI::args()->getCommand(), 10)
446                                 ."/?f='; </script>\r\n";
447                 }
448         } elseif ($mode === 'contacts') {
449                 $items = conversation_add_children($items, false, $order, $uid);
450                 $profile_owner = 0;
451
452                 if (!$update) {
453                         $live_update_div = '<div id="live-contacts"></div>' . "\r\n"
454                                 . "<script> var profile_uid = -1; var netargs = '" . substr(DI::args()->getCommand(), 9)
455                                 ."/?f='; </script>\r\n";
456                 }
457         } elseif ($mode === 'search') {
458                 $live_update_div = '<div id="live-search"></div>' . "\r\n";
459         }
460
461         $page_dropping = ((local_user() && local_user() == $profile_owner) ? true : false);
462
463         if (!$update) {
464                 $_SESSION['return_path'] = DI::args()->getQueryString();
465         }
466
467         $cb = ['items' => $items, 'mode' => $mode, 'update' => $update, 'preview' => $preview];
468         Hook::callAll('conversation_start',$cb);
469
470         $items = $cb['items'];
471
472         $conv_responses = [
473                 'like'        => [],
474                 'dislike'     => [],
475                 'attendyes'   => [],
476                 'attendno'    => [],
477                 'attendmaybe' => [],
478                 'announce'    => [],    
479         ];
480
481         if (DI::pConfig()->get(local_user(), 'system', 'hide_dislike')) {
482                 unset($conv_responses['dislike']);
483         }
484
485         // array with html for each thread (parent+comments)
486         $threads = [];
487         $threadsid = -1;
488
489         $page_template = Renderer::getMarkupTemplate("conversation.tpl");
490
491         if (!empty($items)) {
492                 if (in_array($mode, ['community', 'contacts'])) {
493                         $writable = true;
494                 } else {
495                         $writable = ($items[0]['uid'] == 0) && in_array($items[0]['network'], Protocol::FEDERATED);
496                 }
497
498                 if (!local_user()) {
499                         $writable = false;
500                 }
501
502                 if (in_array($mode, ['network-new', 'search', 'contact-posts'])) {
503
504                         /*
505                          * "New Item View" on network page or search page results
506                          * - just loop through the items and format them minimally for display
507                          */
508
509                         $tpl = 'search_item.tpl';
510
511                         foreach ($items as $item) {
512
513                                 if (!visible_activity($item)) {
514                                         continue;
515                                 }
516
517                                 if (in_array($item['author-id'], $blocklist)) {
518                                         continue;
519                                 }
520
521                                 $threadsid++;
522
523                                 $owner_url   = '';
524                                 $owner_name  = '';
525                                 $sparkle     = '';
526
527                                 // prevent private email from leaking.
528                                 if ($item['network'] === Protocol::MAIL && local_user() != $item['uid']) {
529                                         continue;
530                                 }
531
532                                 $profile_name = $item['author-name'];
533                                 if (!empty($item['author-link']) && empty($item['author-name'])) {
534                                         $profile_name = $item['author-link'];
535                                 }
536
537                                 $tags = Tag::populateFromItem($item);
538
539                                 $author = ['uid' => 0, 'id' => $item['author-id'],
540                                         'network' => $item['author-network'], 'url' => $item['author-link']];
541                                 $profile_link = Contact::magicLinkByContact($author);
542
543                                 if (strpos($profile_link, 'redir/') === 0) {
544                                         $sparkle = ' sparkle';
545                                 }
546
547                                 $locate = ['location' => $item['location'], 'coord' => $item['coord'], 'html' => ''];
548                                 Hook::callAll('render_location',$locate);
549
550                                 $location = ((strlen($locate['html'])) ? $locate['html'] : render_location_dummy($locate));
551
552                                 localize_item($item);
553                                 if ($mode === 'network-new') {
554                                         $dropping = true;
555                                 } else {
556                                         $dropping = false;
557                                 }
558
559                                 $drop = [
560                                         'dropping' => $dropping,
561                                         'pagedrop' => $page_dropping,
562                                         'select' => DI::l10n()->t('Select'),
563                                         'delete' => DI::l10n()->t('Delete'),
564                                 ];
565
566                                 $star = false;
567                                 $isstarred = "unstarred";
568
569                                 $lock = false;
570                                 $likebuttons = [
571                                         'like'    => null,
572                                         'dislike' => null,
573                                         'share'   => null,
574                                 ];
575
576                                 if (DI::pConfig()->get(local_user(), 'system', 'hide_dislike')) {
577                                         unset($likebuttons['dislike']);
578                                 }
579
580                                 $body = Item::prepareBody($item, true, $preview);
581
582                                 list($categories, $folders) = DI::contentItem()->determineCategoriesTerms($item);
583
584                                 if (!empty($item['content-warning']) && DI::pConfig()->get(local_user(), 'system', 'disable_cw', false)) {
585                                         $title = ucfirst($item['content-warning']);
586                                 } else {
587                                         $title = $item['title'];
588                                 }
589
590                                 $tmp_item = [
591                                         'template' => $tpl,
592                                         'id' => ($preview ? 'P0' : $item['id']),
593                                         'guid' => ($preview ? 'Q0' : $item['guid']),
594                                         'network' => $item['network'],
595                                         'network_name' => ContactSelector::networkToName($item['author-network'], $item['author-link'], $item['network']),
596                                         'network_icon' => ContactSelector::networkToIcon($item['network'], $item['author-link']),
597                                         'linktitle' => DI::l10n()->t('View %s\'s profile @ %s', $profile_name, $item['author-link']),
598                                         'profile_url' => $profile_link,
599                                         'item_photo_menu' => item_photo_menu($item),
600                                         'name' => $profile_name,
601                                         'sparkle' => $sparkle,
602                                         'lock' => $lock,
603                                         'thumb' => DI::baseUrl()->remove($item['author-avatar']),
604                                         'title' => $title,
605                                         'body' => $body,
606                                         'tags' => $tags['tags'],
607                                         'hashtags' => $tags['hashtags'],
608                                         'mentions' => $tags['mentions'],
609                                         'implicit_mentions' => $tags['implicit_mentions'],
610                                         'txt_cats' => DI::l10n()->t('Categories:'),
611                                         'txt_folders' => DI::l10n()->t('Filed under:'),
612                                         'has_cats' => ((count($categories)) ? 'true' : ''),
613                                         'has_folders' => ((count($folders)) ? 'true' : ''),
614                                         'categories' => $categories,
615                                         'folders' => $folders,
616                                         'text' => strip_tags($body),
617                                         'localtime' => DateTimeFormat::local($item['created'], 'r'),
618                                         'ago' => (($item['app']) ? DI::l10n()->t('%s from %s', Temporal::getRelativeDate($item['created']),$item['app']) : Temporal::getRelativeDate($item['created'])),
619                                         'location' => $location,
620                                         'indent' => '',
621                                         'owner_name' => $owner_name,
622                                         'owner_url' => $owner_url,
623                                         'owner_photo' => DI::baseUrl()->remove($item['owner-avatar']),
624                                         'plink' => Item::getPlink($item),
625                                         'edpost' => false,
626                                         'isstarred' => $isstarred,
627                                         'star' => $star,
628                                         'drop' => $drop,
629                                         'vote' => $likebuttons,
630                                         'like' => '',
631                                         'dislike' => '',
632                                         'comment' => '',
633                                         'conv' => (($preview) ? '' : ['href'=> 'display/'.$item['guid'], 'title'=> DI::l10n()->t('View in context')]),
634                                         'previewing' => $previewing,
635                                         'wait' => DI::l10n()->t('Please wait'),
636                                         'thread_level' => 1,
637                                 ];
638
639                                 $arr = ['item' => $item, 'output' => $tmp_item];
640                                 Hook::callAll('display_item', $arr);
641
642                                 $threads[$threadsid]['id'] = $item['id'];
643                                 $threads[$threadsid]['network'] = $item['network'];
644                                 $threads[$threadsid]['items'] = [$arr['output']];
645
646                         }
647                 } else {
648                         // Normal View
649                         $page_template = Renderer::getMarkupTemplate("threaded_conversation.tpl");
650
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'], $blocklist)) {
660                                         continue;
661                                 }
662
663                                 // Can we put this after the visibility check?
664                                 builtin_activity_puller($item, $conv_responses);
665
666                                 // Only add what is visible
667                                 if ($item['network'] === Protocol::MAIL && local_user() != $item['uid']) {
668                                         continue;
669                                 }
670
671                                 if (!visible_activity($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'] = $page_dropping;
680
681                                 if ($item['gravity'] == GRAVITY_PARENT) {
682                                         $item_object = new Post($item);
683                                         $conv->addParent($item_object);
684                                 }
685                         }
686
687                         $threads = $conv->getTemplateData($conv_responses);
688                         if (!$threads) {
689                                 Logger::log('[ERROR] conversation : Failed to get template data.', Logger::DEBUG);
690                                 $threads = [];
691                         }
692                 }
693         }
694
695         $o = Renderer::replaceMacros($page_template, [
696                 '$baseurl' => DI::baseUrl()->get($ssl_state),
697                 '$return_path' => DI::args()->getQueryString(),
698                 '$live_update' => $live_update_div,
699                 '$remove' => DI::l10n()->t('remove'),
700                 '$mode' => $mode,
701                 '$user' => $a->user,
702                 '$threads' => $threads,
703                 '$dropping' => ($page_dropping ? DI::l10n()->t('Delete Selected Items') : False),
704         ]);
705
706         return $o;
707 }
708
709 /**
710  * Fetch all comments from a query. Additionally set the newest resharer as thread owner.
711  *
712  * @param mixed   $thread_items Database statement with thread posts
713  * @param boolean $pinned       Is the item pinned?
714  *
715  * @return array items with parents and comments
716  */
717 function conversation_fetch_comments($thread_items, $pinned) {
718         $comments = [];
719         $parentlines = [];
720         $lineno = 0;
721         $direction = [];
722         $actor = [];
723         $received = '';
724
725         while ($row = Item::fetch($thread_items)) {
726                 if (!empty($parentlines) && ($row['verb'] == Activity::ANNOUNCE)
727                         && ($row['thr-parent'] == $row['parent-uri']) && ($row['received'] > $received)
728                         && Contact::isSharing($row['author-id'], $row['uid'])) {
729                         $direction = ['direction' => 3, 'title' => DI::l10n()->t('%s reshared this.', $row['author-name'])];
730
731                         $author = ['uid' => 0, 'id' => $row['author-id'],
732                                 'network' => $row['author-network'], 'url' => $row['author-link']];
733                         $url = '<a href="'. htmlentities(Contact::magicLinkByContact($author)) .'">' . htmlentities($row['author-name']) . '</a>';
734
735                         $actor = ['url' => $url, 'link' => $row['author-link'], 'avatar' => $row['author-avatar'], 'name' => $row['author-name']];
736                         $received = $row['received'];
737                 }
738
739                 if (!empty($parentlines) && empty($direction) && ($row['gravity'] == GRAVITY_COMMENT)
740                         && Contact::isSharing($row['author-id'], $row['uid'])) {
741                         $direction = ['direction' => 5, 'title' => DI::l10n()->t('%s commented on this.', $row['author-name'])];
742                 }
743
744                 switch ($row['post-type']) {
745                         case Item::PT_TO:
746                                 $row['direction'] = ['direction' => 7, 'title' => DI::l10n()->t('You had been addressed (%s).', 'to')];
747                                 break;
748                         case Item::PT_CC:
749                                 $row['direction'] = ['direction' => 7, 'title' => DI::l10n()->t('You had been addressed (%s).', 'cc')];
750                                 break;
751                         case Item::PT_BTO:
752                                 $row['direction'] = ['direction' => 7, 'title' => DI::l10n()->t('You had been addressed (%s).', 'bto')];
753                                 break;
754                         case Item::PT_BCC:
755                                 $row['direction'] = ['direction' => 7, 'title' => DI::l10n()->t('You had been addressed (%s).', 'bcc')];
756                                 break;
757                         case Item::PT_FOLLOWER:
758                                 $row['direction'] = ['direction' => 6, 'title' => DI::l10n()->t('You are following %s.', $row['author-name'])];
759                                 break;
760                         case Item::PT_TAG:
761                                 $row['direction'] = ['direction' => 4, 'title' => DI::l10n()->t('Tagged')];
762                                 break;
763                         case Item::PT_ANNOUNCEMENT:
764                                 $row['direction'] = ['direction' => 3, 'title' => DI::l10n()->t('Reshared')];
765                                 break;
766                         case Item::PT_COMMENT:
767                                 $row['direction'] = ['direction' => 5, 'title' => DI::l10n()->t('%s is participating in this thread.', $row['author-name'])];
768                                 break;
769                         case Item::PT_STORED:
770                                 $row['direction'] = ['direction' => 8, 'title' => DI::l10n()->t('Stored')];
771                                 break;
772                 }
773
774                 if (($row['gravity'] == GRAVITY_PARENT) && !$row['origin'] && ($row['author-id'] == $row['owner-id']) &&
775                         !Contact::isSharing($row['author-id'], $row['uid'])) {
776                         $parentlines[] = $lineno;
777                 }
778
779                 if ($row['gravity'] == GRAVITY_PARENT) {
780                         $row['pinned'] = $pinned;
781                 }
782
783                 $comments[] = $row;
784                 $lineno++;
785         }
786
787         DBA::close($thread_items);
788
789         if (!empty($direction)) {
790                 foreach ($parentlines as $line) {
791                         $comments[$line]['direction'] = $direction;
792                         if (!empty($actor)) {
793                                 $comments[$line]['reshared'] = DI::l10n()->t('%s reshared this.', $actor['url']);
794                                 if (DI::pConfig()->get(local_user(), 'system', 'display_resharer')  ) {
795                                         $comments[$line]['owner-link'] = $actor['link'];
796                                         $comments[$line]['owner-avatar'] = $actor['avatar'];
797                                         $comments[$line]['owner-name'] = $actor['name'];
798                                 }
799                         }
800                 }
801         }
802         return $comments;
803 }
804
805 /**
806  * Add comments to top level entries that had been fetched before
807  *
808  * The system will fetch the comments for the local user whenever possible.
809  * This behaviour is currently needed to allow commenting on Friendica posts.
810  *
811  * @param array $parents Parent items
812  *
813  * @param       $block_authors
814  * @param       $order
815  * @param       $uid
816  * @return array items with parents and comments
817  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
818  */
819 function conversation_add_children(array $parents, $block_authors, $order, $uid) {
820         if (count($parents) > 1) {
821                 $max_comments = DI::config()->get('system', 'max_comments', 100);
822         } else {
823                 $max_comments = DI::config()->get('system', 'max_display_comments', 1000);
824         }
825
826         $params = ['order' => ['gravity', 'uid', 'commented' => true]];
827
828         if ($max_comments > 0) {
829                 $params['limit'] = $max_comments;
830         }
831
832         $items = [];
833
834         foreach ($parents AS $parent) {
835                 $condition = ["`item`.`parent-uri` = ? AND `item`.`uid` IN (0, ?) AND (`vid` != ? OR `vid` IS NULL)",
836                         $parent['uri'], $uid, Verb::getID(Activity::FOLLOW)];
837                 $items = conversation_fetch_items($parent, $items, $condition, $block_authors, $params);
838         }
839
840         foreach ($items as $index => $item) {
841                 if ($item['uid'] == 0) {
842                         $items[$index]['writable'] = in_array($item['network'], Protocol::FEDERATED);
843                 }
844         }
845
846         $items = conv_sort($items, $order);
847
848         return $items;
849 }
850
851 /**
852  * Fetch conversation items
853  *
854  * @param array $parent
855  * @param array $items
856  * @param array $condition
857  * @param boolean $block_authors
858  * @param array $params
859  * @return array
860  */
861 function conversation_fetch_items(array $parent, array $items, array $condition, bool $block_authors, array $params) {
862         if ($block_authors) {
863                 $condition[0] .= " AND NOT `author`.`hidden`";
864         }
865
866         $thread_items = Item::selectForUser(local_user(), array_merge(Item::DISPLAY_FIELDLIST, ['contact-uid', 'gravity', 'post-type']), $condition, $params);
867
868         $comments = conversation_fetch_comments($thread_items, $parent['pinned'] ?? false);
869
870         if (count($comments) != 0) {
871                 $items = array_merge($items, $comments);
872         }
873         return $items;
874 }
875
876 function item_photo_menu($item) {
877         $sub_link = '';
878         $poke_link = '';
879         $contact_url = '';
880         $pm_url = '';
881         $status_link = '';
882         $photos_link = '';
883         $posts_link = '';
884         $block_link = '';
885         $ignore_link = '';
886
887         if (local_user() && local_user() == $item['uid'] && $item['gravity'] == GRAVITY_PARENT && !$item['self']) {
888                 $sub_link = 'javascript:dosubthread(' . $item['id'] . '); return false;';
889         }
890
891         $author = ['uid' => 0, 'id' => $item['author-id'],
892                 'network' => $item['author-network'], 'url' => $item['author-link']];
893         $profile_link = Contact::magicLinkByContact($author, $item['author-link']);
894         $sparkle = (strpos($profile_link, 'redir/') === 0);
895
896         $cid = 0;
897         $pcid = Contact::getIdForURL($item['author-link'], 0, false);
898         $network = '';
899         $rel = 0;
900         $condition = ['uid' => local_user(), 'nurl' => Strings::normaliseLink($item['author-link'])];
901         $contact = DBA::selectFirst('contact', ['id', 'network', 'rel'], $condition);
902         if (DBA::isResult($contact)) {
903                 $cid = $contact['id'];
904                 $network = $contact['network'];
905                 $rel = $contact['rel'];
906         }
907
908         if ($sparkle) {
909                 $status_link = $profile_link . '/status';
910                 $photos_link = str_replace('/profile/', '/photos/', $profile_link);
911                 $profile_link = $profile_link . '/profile';
912         }
913
914         if (!empty($pcid)) {
915                 $contact_url = 'contact/' . $pcid;
916                 $posts_link  = $contact_url . '/posts';
917                 $block_link  = $contact_url . '/block';
918                 $ignore_link = $contact_url . '/ignore';
919         }
920
921         if ($cid && !$item['self']) {
922                 $contact_url = 'contact/' . $cid;
923                 $poke_link   = $contact_url . '/poke';
924                 $posts_link  = $contact_url . '/posts';
925
926                 if (in_array($network, [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA])) {
927                         $pm_url = 'message/new/' . $cid;
928                 }
929         }
930
931         if (local_user()) {
932                 $menu = [
933                         DI::l10n()->t('Follow Thread') => $sub_link,
934                         DI::l10n()->t('View Status') => $status_link,
935                         DI::l10n()->t('View Profile') => $profile_link,
936                         DI::l10n()->t('View Photos') => $photos_link,
937                         DI::l10n()->t('Network Posts') => $posts_link,
938                         DI::l10n()->t('View Contact') => $contact_url,
939                         DI::l10n()->t('Send PM') => $pm_url,
940                         DI::l10n()->t('Block') => $block_link,
941                         DI::l10n()->t('Ignore') => $ignore_link
942                 ];
943
944                 if ($network == Protocol::DFRN) {
945                         $menu[DI::l10n()->t("Poke")] = $poke_link;
946                 }
947
948                 if ((($cid == 0) || ($rel == Contact::FOLLOWER)) &&
949                         in_array($item['network'], Protocol::FEDERATED)) {
950                         $menu[DI::l10n()->t('Connect/Follow')] = 'follow?url=' . urlencode($item['author-link']);
951                 }
952         } else {
953                 $menu = [DI::l10n()->t('View Profile') => $item['author-link']];
954         }
955
956         $args = ['item' => $item, 'menu' => $menu];
957
958         Hook::callAll('item_photo_menu', $args);
959
960         $menu = $args['menu'];
961
962         $o = '';
963         foreach ($menu as $k => $v) {
964                 if (strpos($v, 'javascript:') === 0) {
965                         $v = substr($v, 11);
966                         $o .= '<li role="menuitem"><a onclick="' . $v . '">' . $k . '</a></li>' . PHP_EOL;
967                 } elseif ($v!='') {
968                         $o .= '<li role="menuitem"><a href="' . $v . '">' . $k . '</a></li>' . PHP_EOL;
969                 }
970         }
971         return $o;
972 }
973
974 /**
975  * Checks item to see if it is one of the builtin activities (like/dislike, event attendance, consensus items, etc.)
976  *
977  * Increments the count of each matching activity and adds a link to the author as needed.
978  *
979  * @param array  $item
980  * @param array &$conv_responses (already created with builtin activity structure)
981  * @return void
982  * @throws ImagickException
983  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
984  */
985 function builtin_activity_puller($item, &$conv_responses) {
986         foreach ($conv_responses as $mode => $v) {
987                 $sparkle = '';
988
989                 switch ($mode) {
990                         case 'like':
991                                 $verb = Activity::LIKE;
992                                 break;
993                         case 'dislike':
994                                 $verb = Activity::DISLIKE;
995                                 break;
996                         case 'attendyes':
997                                 $verb = Activity::ATTEND;
998                                 break;
999                         case 'attendno':
1000                                 $verb = Activity::ATTENDNO;
1001                                 break;
1002                         case 'attendmaybe':
1003                                 $verb = Activity::ATTENDMAYBE;
1004                                 break;
1005                         case 'announce':
1006                                 $verb = Activity::ANNOUNCE;
1007                                 break;
1008                         default:
1009                                 return;
1010                 }
1011
1012                 if (!empty($item['verb']) && DI::activity()->match($item['verb'], $verb) && ($item['gravity'] != GRAVITY_PARENT)) {
1013                         $author = ['uid' => 0, 'id' => $item['author-id'],
1014                                 'network' => $item['author-network'], 'url' => $item['author-link']];
1015                         $url = Contact::magicLinkByContact($author);
1016                         if (strpos($url, 'redir/') === 0) {
1017                                 $sparkle = ' class="sparkle" ';
1018                         }
1019
1020                         $url = '<a href="'. $url . '"'. $sparkle .'>' . htmlentities($item['author-name']) . '</a>';
1021
1022                         if (empty($item['thr-parent'])) {
1023                                 $item['thr-parent'] = $item['parent-uri'];
1024                         }
1025
1026                         if (!(isset($conv_responses[$mode][$item['thr-parent'] . '-l'])
1027                                 && is_array($conv_responses[$mode][$item['thr-parent'] . '-l']))) {
1028                                 $conv_responses[$mode][$item['thr-parent'] . '-l'] = [];
1029                         }
1030
1031                         // only list each unique author once
1032                         if (in_array($url,$conv_responses[$mode][$item['thr-parent'] . '-l'])) {
1033                                 continue;
1034                         }
1035
1036                         if (!isset($conv_responses[$mode][$item['thr-parent']])) {
1037                                 $conv_responses[$mode][$item['thr-parent']] = 1;
1038                         } else {
1039                                 $conv_responses[$mode][$item['thr-parent']] ++;
1040                         }
1041
1042                         if (public_contact() == $item['author-id']) {
1043                                 $conv_responses[$mode][$item['thr-parent'] . '-self'] = 1;
1044                         }
1045
1046                         $conv_responses[$mode][$item['thr-parent'] . '-l'][] = $url;
1047
1048                         // there can only be one activity verb per item so if we found anything, we can stop looking
1049                         return;
1050                 }
1051         }
1052 }
1053
1054 /**
1055  * Format the vote text for a profile item
1056  *
1057  * @param int    $cnt  = number of people who vote the item
1058  * @param array  $arr  = array of pre-linked names of likers/dislikers
1059  * @param string $type = one of 'like, 'dislike', 'attendyes', 'attendno', 'attendmaybe'
1060  * @param int    $id   = item id
1061  * @return string formatted text
1062  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1063  */
1064 function format_like($cnt, array $arr, $type, $id) {
1065         $o = '';
1066         $expanded = '';
1067         $phrase = '';
1068
1069         if ($cnt == 1) {
1070                 $likers = $arr[0];
1071
1072                 // Phrase if there is only one liker. In other cases it will be uses for the expanded
1073                 // list which show all likers
1074                 switch ($type) {
1075                         case 'like' :
1076                                 $phrase = DI::l10n()->t('%s likes this.', $likers);
1077                                 break;
1078                         case 'dislike' :
1079                                 $phrase = DI::l10n()->t('%s doesn\'t like this.', $likers);
1080                                 break;
1081                         case 'attendyes' :
1082                                 $phrase = DI::l10n()->t('%s attends.', $likers);
1083                                 break;
1084                         case 'attendno' :
1085                                 $phrase = DI::l10n()->t('%s doesn\'t attend.', $likers);
1086                                 break;
1087                         case 'attendmaybe' :
1088                                 $phrase = DI::l10n()->t('%s attends maybe.', $likers);
1089                                 break;
1090                         case 'announce' :
1091                                 $phrase = DI::l10n()->t('%s reshared this.', $likers);
1092                                 break;
1093                 }
1094         }
1095
1096         if ($cnt > 1) {
1097                 $total = count($arr);
1098                 if ($total < MAX_LIKERS) {
1099                         $last = DI::l10n()->t('and') . ' ' . $arr[count($arr)-1];
1100                         $arr2 = array_slice($arr, 0, -1);
1101                         $likers = implode(', ', $arr2) . ' ' . $last;
1102                 } else  {
1103                         $arr = array_slice($arr, 0, MAX_LIKERS - 1);
1104                         $likers = implode(', ', $arr);
1105                         $likers .= DI::l10n()->t('and %d other people', $total - MAX_LIKERS);
1106                 }
1107
1108                 $spanatts = "class=\"fakelink\" onclick=\"openClose('{$type}list-$id');\"";
1109
1110                 $explikers = '';
1111                 switch ($type) {
1112                         case 'like':
1113                                 $phrase = DI::l10n()->t('<span  %1$s>%2$d people</span> like this', $spanatts, $cnt);
1114                                 $explikers = DI::l10n()->t('%s like this.', $likers);
1115                                 break;
1116                         case 'dislike':
1117                                 $phrase = DI::l10n()->t('<span  %1$s>%2$d people</span> don\'t like this', $spanatts, $cnt);
1118                                 $explikers = DI::l10n()->t('%s don\'t like this.', $likers);
1119                                 break;
1120                         case 'attendyes':
1121                                 $phrase = DI::l10n()->t('<span  %1$s>%2$d people</span> attend', $spanatts, $cnt);
1122                                 $explikers = DI::l10n()->t('%s attend.', $likers);
1123                                 break;
1124                         case 'attendno':
1125                                 $phrase = DI::l10n()->t('<span  %1$s>%2$d people</span> don\'t attend', $spanatts, $cnt);
1126                                 $explikers = DI::l10n()->t('%s don\'t attend.', $likers);
1127                                 break;
1128                         case 'attendmaybe':
1129                                 $phrase = DI::l10n()->t('<span  %1$s>%2$d people</span> attend maybe', $spanatts, $cnt);
1130                                 $explikers = DI::l10n()->t('%s attend maybe.', $likers);
1131                                 break;
1132                         case 'announce':
1133                                 $phrase = DI::l10n()->t('<span  %1$s>%2$d people</span> reshared this', $spanatts, $cnt);
1134                                 $explikers = DI::l10n()->t('%s reshared this.', $likers);
1135                                 break;
1136                 }
1137
1138                 $expanded .= "\t" . '<p class="wall-item-' . $type . '-expanded" id="' . $type . 'list-' . $id . '" style="display: none;" >' . $explikers . EOL . '</p>';
1139         }
1140
1141         $o .= Renderer::replaceMacros(Renderer::getMarkupTemplate('voting_fakelink.tpl'), [
1142                 '$phrase' => $phrase,
1143                 '$type' => $type,
1144                 '$id' => $id
1145         ]);
1146         $o .= $expanded;
1147
1148         return $o;
1149 }
1150
1151 function status_editor(App $a, $x, $notes_cid = 0, $popup = false)
1152 {
1153         $o = '';
1154
1155         $geotag = !empty($x['allow_location']) ? Renderer::replaceMacros(Renderer::getMarkupTemplate('jot_geotag.tpl'), []) : '';
1156
1157         $tpl = Renderer::getMarkupTemplate('jot-header.tpl');
1158         DI::page()['htmlhead'] .= Renderer::replaceMacros($tpl, [
1159                 '$newpost'   => 'true',
1160                 '$baseurl'   => DI::baseUrl()->get(true),
1161                 '$geotag'    => $geotag,
1162                 '$nickname'  => $x['nickname'],
1163                 '$ispublic'  => DI::l10n()->t('Visible to <strong>everybody</strong>'),
1164                 '$linkurl'   => DI::l10n()->t('Please enter a image/video/audio/webpage URL:'),
1165                 '$term'      => DI::l10n()->t('Tag term:'),
1166                 '$fileas'    => DI::l10n()->t('Save to Folder:'),
1167                 '$whereareu' => DI::l10n()->t('Where are you right now?'),
1168                 '$delitems'  => DI::l10n()->t("Delete item\x28s\x29?")
1169         ]);
1170
1171         $jotplugins = '';
1172         Hook::callAll('jot_tool', $jotplugins);
1173
1174         // $tpl = Renderer::replaceMacros($tpl,array('$jotplugins' => $jotplugins));
1175         $tpl = Renderer::getMarkupTemplate("jot.tpl");
1176
1177         $o .= Renderer::replaceMacros($tpl,[
1178                 '$new_post' => DI::l10n()->t('New Post'),
1179                 '$return_path'  => DI::args()->getQueryString(),
1180                 '$action'       => 'item',
1181                 '$share'        => ($x['button'] ?? '') ?: DI::l10n()->t('Share'),
1182                 '$loading'      => DI::l10n()->t('Loading...'),
1183                 '$upload'       => DI::l10n()->t('Upload photo'),
1184                 '$shortupload'  => DI::l10n()->t('upload photo'),
1185                 '$attach'       => DI::l10n()->t('Attach file'),
1186                 '$shortattach'  => DI::l10n()->t('attach file'),
1187                 '$edbold'       => DI::l10n()->t('Bold'),
1188                 '$editalic'     => DI::l10n()->t('Italic'),
1189                 '$eduline'      => DI::l10n()->t('Underline'),
1190                 '$edquote'      => DI::l10n()->t('Quote'),
1191                 '$edcode'       => DI::l10n()->t('Code'),
1192                 '$edimg'        => DI::l10n()->t('Image'),
1193                 '$edurl'        => DI::l10n()->t('Link'),
1194                 '$edattach'     => DI::l10n()->t('Link or Media'),
1195                 '$setloc'       => DI::l10n()->t('Set your location'),
1196                 '$shortsetloc'  => DI::l10n()->t('set location'),
1197                 '$noloc'        => DI::l10n()->t('Clear browser location'),
1198                 '$shortnoloc'   => DI::l10n()->t('clear location'),
1199                 '$title'        => $x['title'] ?? '',
1200                 '$placeholdertitle' => DI::l10n()->t('Set title'),
1201                 '$category'     => $x['category'] ?? '',
1202                 '$placeholdercategory' => Feature::isEnabled(local_user(), 'categories') ? DI::l10n()->t("Categories \x28comma-separated list\x29") : '',
1203                 '$wait'         => DI::l10n()->t('Please wait'),
1204                 '$permset'      => DI::l10n()->t('Permission settings'),
1205                 '$shortpermset' => DI::l10n()->t('Permissions'),
1206                 '$wall'         => $notes_cid ? 0 : 1,
1207                 '$posttype'     => $notes_cid ? Item::PT_PERSONAL_NOTE : Item::PT_ARTICLE,
1208                 '$content'      => $x['content'] ?? '',
1209                 '$post_id'      => $x['post_id'] ?? '',
1210                 '$baseurl'      => DI::baseUrl()->get(true),
1211                 '$defloc'       => $x['default_location'],
1212                 '$visitor'      => $x['visitor'],
1213                 '$pvisit'       => $notes_cid ? 'none' : $x['visitor'],
1214                 '$public'       => DI::l10n()->t('Public post'),
1215                 '$lockstate'    => $x['lockstate'],
1216                 '$bang'         => $x['bang'],
1217                 '$profile_uid'  => $x['profile_uid'],
1218                 '$preview'      => DI::l10n()->t('Preview'),
1219                 '$jotplugins'   => $jotplugins,
1220                 '$notes_cid'    => $notes_cid,
1221                 '$sourceapp'    => DI::l10n()->t($a->sourcename),
1222                 '$cancel'       => DI::l10n()->t('Cancel'),
1223                 '$rand_num'     => Crypto::randomDigits(12),
1224
1225                 // ACL permissions box
1226                 '$acl'           => $x['acl'],
1227
1228                 //jot nav tab (used in some themes)
1229                 '$message' => DI::l10n()->t('Message'),
1230                 '$browser' => DI::l10n()->t('Browser'),
1231
1232                 '$compose_link_title' => DI::l10n()->t('Open Compose page'),
1233         ]);
1234
1235
1236         if ($popup == true) {
1237                 $o = '<div id="jot-popup" style="display: none;">' . $o . '</div>';
1238         }
1239
1240         return $o;
1241 }
1242
1243 /**
1244  * Plucks the children of the given parent from a given item list.
1245  *
1246  * @param array $item_list
1247  * @param array $parent
1248  * @param bool  $recursive
1249  * @return array
1250  */
1251 function get_item_children(array &$item_list, array $parent, $recursive = true)
1252 {
1253         $children = [];
1254         foreach ($item_list as $i => $item) {
1255                 if ($item['gravity'] != GRAVITY_PARENT) {
1256                         if ($recursive) {
1257                                 // Fallback to parent-uri if thr-parent is not set
1258                                 $thr_parent = $item['thr-parent'];
1259                                 if ($thr_parent == '') {
1260                                         $thr_parent = $item['parent-uri'];
1261                                 }
1262
1263                                 if ($thr_parent == $parent['uri']) {
1264                                         $item['children'] = get_item_children($item_list, $item);
1265                                         $children[] = $item;
1266                                         unset($item_list[$i]);
1267                                 }
1268                         } elseif ($item['parent'] == $parent['id']) {
1269                                 $children[] = $item;
1270                                 unset($item_list[$i]);
1271                         }
1272                 }
1273         }
1274         return $children;
1275 }
1276
1277 /**
1278  * Recursively sorts a tree-like item array
1279  *
1280  * @param array $items
1281  * @return array
1282  */
1283 function sort_item_children(array $items)
1284 {
1285         $result = $items;
1286         usort($result, 'sort_thr_received_rev');
1287         foreach ($result as $k => $i) {
1288                 if (isset($result[$k]['children'])) {
1289                         $result[$k]['children'] = sort_item_children($result[$k]['children']);
1290                 }
1291         }
1292         return $result;
1293 }
1294
1295 /**
1296  * Recursively add all children items at the top level of a list
1297  *
1298  * @param array $children List of items to append
1299  * @param array $item_list
1300  */
1301 function add_children_to_list(array $children, array &$item_list)
1302 {
1303         foreach ($children as $child) {
1304                 $item_list[] = $child;
1305                 if (isset($child['children'])) {
1306                         add_children_to_list($child['children'], $item_list);
1307                 }
1308         }
1309 }
1310
1311 /**
1312  * Selectively flattens a tree-like item structure to prevent threading stairs
1313  *
1314  * This recursive function takes the item tree structure created by conv_sort() and
1315  * flatten the extraneous depth levels when people reply sequentially, removing the
1316  * stairs effect in threaded conversations limiting the available content width.
1317  *
1318  * The basic principle is the following: if a post item has only one reply and is
1319  * the last reply of its parent, then the reply is moved to the parent.
1320  *
1321  * This process is rendered somewhat more complicated because items can be either
1322  * replies or likes, and these don't factor at all in the reply count/last reply.
1323  *
1324  * @param array $parent A tree-like array of items
1325  * @return array
1326  */
1327 function smart_flatten_conversation(array $parent)
1328 {
1329         if (!isset($parent['children']) || count($parent['children']) == 0) {
1330                 return $parent;
1331         }
1332
1333         // We use a for loop to ensure we process the newly-moved items
1334         for ($i = 0; $i < count($parent['children']); $i++) {
1335                 $child = $parent['children'][$i];
1336
1337                 if (isset($child['children']) && count($child['children'])) {
1338                         // This helps counting only the regular posts
1339                         $count_post_closure = function($var) {
1340                                 return $var['verb'] === Activity::POST;
1341                         };
1342
1343                         $child_post_count = count(array_filter($child['children'], $count_post_closure));
1344
1345                         $remaining_post_count = count(array_filter(array_slice($parent['children'], $i), $count_post_closure));
1346
1347                         // If there's only one child's children post and this is the last child post
1348                         if ($child_post_count == 1 && $remaining_post_count == 1) {
1349
1350                                 // Searches the post item in the children
1351                                 $j = 0;
1352                                 while($child['children'][$j]['verb'] !== Activity::POST && $j < count($child['children'])) {
1353                                         $j ++;
1354                                 }
1355
1356                                 $moved_item = $child['children'][$j];
1357                                 unset($parent['children'][$i]['children'][$j]);
1358                                 $parent['children'][] = $moved_item;
1359                         } else {
1360                                 $parent['children'][$i] = smart_flatten_conversation($child);
1361                         }
1362                 }
1363         }
1364
1365         return $parent;
1366 }
1367
1368
1369 /**
1370  * Expands a flat list of items into corresponding tree-like conversation structures.
1371  *
1372  * sort the top-level posts either on "received" or "commented", and finally
1373  * append all the items at the top level (???)
1374  *
1375  * @param array  $item_list A list of items belonging to one or more conversations
1376  * @param string $order     Either on "received" or "commented"
1377  * @return array
1378  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1379  */
1380 function conv_sort(array $item_list, $order)
1381 {
1382         $parents = [];
1383
1384         if (!(is_array($item_list) && count($item_list))) {
1385                 return $parents;
1386         }
1387
1388         $blocklist = conv_get_blocklist();
1389
1390         $item_array = [];
1391
1392         // Dedupes the item list on the uri to prevent infinite loops
1393         foreach ($item_list as $item) {
1394                 if (in_array($item['author-id'], $blocklist)) {
1395                         continue;
1396                 }
1397
1398                 $item_array[$item['uri']] = $item;
1399         }
1400
1401         // Extract the top level items
1402         foreach ($item_array as $item) {
1403                 if ($item['gravity'] == GRAVITY_PARENT) {
1404                         $parents[] = $item;
1405                 }
1406         }
1407
1408         if (stristr($order, 'pinned_received')) {
1409                 usort($parents, 'sort_thr_pinned_received');
1410         } elseif (stristr($order, 'received')) {
1411                 usort($parents, 'sort_thr_received');
1412         } elseif (stristr($order, 'commented')) {
1413                 usort($parents, 'sort_thr_commented');
1414         }
1415
1416         /*
1417          * Plucks children from the item_array, second pass collects eventual orphan
1418          * items and add them as children of their top-level post.
1419          */
1420         foreach ($parents as $i => $parent) {
1421                 $parents[$i]['children'] =
1422                         array_merge(get_item_children($item_array, $parent, true),
1423                                 get_item_children($item_array, $parent, false));
1424         }
1425
1426         foreach ($parents as $i => $parent) {
1427                 $parents[$i]['children'] = sort_item_children($parents[$i]['children']);
1428         }
1429
1430         if (!DI::pConfig()->get(local_user(), 'system', 'no_smart_threading', 0)) {
1431                 foreach ($parents as $i => $parent) {
1432                         $parents[$i] = smart_flatten_conversation($parent);
1433                 }
1434         }
1435
1436         /// @TODO: Stop recusrsively adding all children back to the top level (!!!)
1437         /// However, this apparently ensures responses (likes, attendance) display (?!)
1438         foreach ($parents as $parent) {
1439                 if (count($parent['children'])) {
1440                         add_children_to_list($parent['children'], $parents);
1441                 }
1442         }
1443
1444         return $parents;
1445 }
1446
1447 /**
1448  * usort() callback to sort item arrays by pinned and the received key
1449  *
1450  * @param array $a
1451  * @param array $b
1452  * @return int
1453  */
1454 function sort_thr_pinned_received(array $a, array $b)
1455 {
1456         if ($b['pinned'] && !$a['pinned']) {
1457                 return 1;
1458         } elseif (!$b['pinned'] && $a['pinned']) {
1459                 return -1;
1460         }
1461
1462         return strcmp($b['received'], $a['received']);
1463 }
1464
1465 /**
1466  * usort() callback to sort item arrays by the received key
1467  *
1468  * @param array $a
1469  * @param array $b
1470  * @return int
1471  */
1472 function sort_thr_received(array $a, array $b)
1473 {
1474         return strcmp($b['received'], $a['received']);
1475 }
1476
1477 /**
1478  * usort() callback to reverse sort item arrays by the received key
1479  *
1480  * @param array $a
1481  * @param array $b
1482  * @return int
1483  */
1484 function sort_thr_received_rev(array $a, array $b)
1485 {
1486         return strcmp($a['received'], $b['received']);
1487 }
1488
1489 /**
1490  * usort() callback to sort item arrays by the commented key
1491  *
1492  * @param array $a
1493  * @param array $b
1494  * @return int
1495  */
1496 function sort_thr_commented(array $a, array $b)
1497 {
1498         return strcmp($b['commented'], $a['commented']);
1499 }
1500
1501 function render_location_dummy(array $item) {
1502         if (!empty($item['location']) && !empty($item['location'])) {
1503                 return $item['location'];
1504         }
1505
1506         if (!empty($item['coord']) && !empty($item['coord'])) {
1507                 return $item['coord'];
1508         }
1509 }