]> git.mxchange.org Git - friendica.git/blob - src/Content/Item.php
Merge pull request #13375 from MrPetovan/bug/empty-timeline
[friendica.git] / src / Content / Item.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\BaseURL;
26 use Friendica\Content\Text\BBCode;
27 use Friendica\Content\Text\BBCode\Video;
28 use Friendica\Content\Text\HTML;
29 use Friendica\Core\Hook;
30 use Friendica\Core\L10n;
31 use Friendica\Core\Logger;
32 use Friendica\Core\PConfig\Capability\IManagePersonalConfigValues;
33 use Friendica\Core\Protocol;
34 use Friendica\Core\Session\Capability\IHandleUserSessions;
35 use Friendica\Core\System;
36 use Friendica\Database\DBA;
37 use Friendica\DI;
38 use Friendica\Model\Attach;
39 use Friendica\Model\Circle;
40 use Friendica\Model\Contact;
41 use Friendica\Model\Conversation;
42 use Friendica\Model\FileTag;
43 use Friendica\Model\Item as ItemModel;
44 use Friendica\Model\Photo;
45 use Friendica\Model\Post;
46 use Friendica\Model\Tag;
47 use Friendica\Model\User;
48 use Friendica\Network\HTTPException;
49 use Friendica\Object\EMail\ItemCCEMail;
50 use Friendica\Protocol\Activity;
51 use Friendica\Util\ACLFormatter;
52 use Friendica\Util\DateTimeFormat;
53 use Friendica\Util\Emailer;
54 use Friendica\Util\ParseUrl;
55 use Friendica\Util\Profiler;
56 use Friendica\Util\Proxy;
57 use Friendica\Util\XML;
58 use GuzzleHttp\Psr7\Uri;
59
60 /**
61  * A content helper class for displaying items
62  */
63 class Item
64 {
65         /** @var Activity */
66         private $activity;
67         /** @var L10n */
68         private $l10n;
69         /** @var Profiler */
70         private $profiler;
71         /** @var IHandleUserSessions */
72         private $userSession;
73         /** @var Video */
74         private $bbCodeVideo;
75         /** @var ACLFormatter */
76         private $aclFormatter;
77         /** @var IManagePersonalConfigValues */
78         private $pConfig;
79         /** @var BaseURL */
80         private $baseURL;
81         /** @var Emailer */
82         private $emailer;
83         /** @var App */
84         private $app;
85
86         public function __construct(Profiler $profiler, Activity $activity, L10n $l10n, IHandleUserSessions $userSession, Video $bbCodeVideo, ACLFormatter $aclFormatter, IManagePersonalConfigValues $pConfig, BaseURL $baseURL, Emailer $emailer, App $app)
87         {
88                 $this->profiler     = $profiler;
89                 $this->activity     = $activity;
90                 $this->l10n         = $l10n;
91                 $this->userSession  = $userSession;
92                 $this->bbCodeVideo  = $bbCodeVideo;
93                 $this->aclFormatter = $aclFormatter;
94                 $this->baseURL      = $baseURL;
95                 $this->pConfig      = $pConfig;
96                 $this->emailer      = $emailer;
97                 $this->app          = $app;
98         }
99
100         /**
101          * Lists categories and folders for an item
102          *
103          * @param array $item
104          * @param int   $uid
105          * @return array
106          * [
107          *     [ // categories array
108          *         {
109          *             'name': 'category name',
110          *             'removeurl': 'url to remove this category',
111          *             'first': 'is the first in this array? true/false',
112          *             'last': 'is the last in this array? true/false',
113          *         },
114          *         ...
115          *     ],
116          *     [ //folders array
117          *         {
118          *             'name': 'folder name',
119          *             'removeurl': 'url to remove this folder',
120          *             'first': 'is the first in this array? true/false',
121          *             'last': 'is the last in this array? true/false',
122          *         } ,
123          *         ...
124          *     ]
125          * ]
126          *
127          * @throws \Exception
128          */
129         public function determineCategoriesTerms(array $item, int $uid = 0): array
130         {
131                 $categories = [];
132                 $folders = [];
133                 $first = true;
134
135                 $uid = $item['uid'] ?: $uid;
136
137                 if (empty($item['has-categories'])) {
138                         return [$categories, $folders];
139                 }
140
141                 foreach (Post\Category::getArrayByURIId($item['uri-id'], $uid) as $savedFolderName) {
142                         if (!empty($item['author-link'])) {
143                                 $url = $item['author-link'] . '/conversations?category=' . rawurlencode($savedFolderName);
144                         } else {
145                                 $url = '#';
146                         }
147                         $categories[] = [
148                                 'name' => $savedFolderName,
149                                 'url' => $url,
150                                 'removeurl' => $this->userSession->getLocalUserId() == $uid ? 'filerm/' . $item['id'] . '?cat=' . rawurlencode($savedFolderName) : '',
151                                 'first' => $first,
152                                 'last' => false
153                         ];
154                         $first = false;
155                 }
156
157                 if (count($categories)) {
158                         $categories[count($categories) - 1]['last'] = true;
159                 }
160
161                 if ($this->userSession->getLocalUserId() == $uid) {
162                         foreach (Post\Category::getArrayByURIId($item['uri-id'], $uid, Post\Category::FILE) as $savedFolderName) {
163                                 $folders[] = [
164                                         'name' => $savedFolderName,
165                                         'url' => "#",
166                                         'removeurl' => $this->userSession->getLocalUserId() == $uid ? 'filerm/' . $item['id'] . '?term=' . rawurlencode($savedFolderName) : '',
167                                         'first' => $first,
168                                         'last' => false
169                                 ];
170                                 $first = false;
171                         }
172                 }
173
174                 if (count($folders)) {
175                         $folders[count($folders) - 1]['last'] = true;
176                 }
177
178                 return [$categories, $folders];
179         }
180
181         /**
182          * This function removes the tag $tag from the text $body and replaces it with
183          * the appropriate link.
184          *
185          * @param string $body        the text to replace the tag in
186          * @param int    $profile_uid the user id to replace the tag for (0 = anyone)
187          * @param string $tag         the tag to replace
188          * @param string $network     The network of the post
189          *
190          * @return array|bool ['replaced' => $replaced, 'contact' => $contact] or "false" on if already replaced
191          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
192          * @throws \ImagickException
193          */
194         public static function replaceTag(string &$body, int $profile_uid, string $tag, string $network = '')
195         {
196                 $replaced = false;
197
198                 //is it a person tag?
199                 if (Tag::isType($tag, Tag::MENTION, Tag::IMPLICIT_MENTION, Tag::EXCLUSIVE_MENTION)) {
200                         $tag_type = substr($tag, 0, 1);
201                         //is it already replaced?
202                         if (strpos($tag, '[url=')) {
203                                 return $replaced;
204                         }
205
206                         //get the person's name
207                         $name = substr($tag, 1);
208
209                         // Sometimes the tag detection doesn't seem to work right
210                         // This is some workaround
211                         $nameparts = explode(' ', $name);
212                         $name = $nameparts[0];
213
214                         // Try to detect the contact in various ways
215                         if (strpos($name, 'http://') || strpos($name, '@')) {
216                                 $contact = Contact::getByURLForUser($name, $profile_uid);
217                         } else {
218                                 $contact = false;
219                                 $fields = ['id', 'url', 'nick', 'name', 'alias', 'network', 'forum', 'prv'];
220
221                                 if (strrpos($name, '+')) {
222                                         // Is it in format @nick+number?
223                                         $tagcid = intval(substr($name, strrpos($name, '+') + 1));
224                                         $contact = DBA::selectFirst('contact', $fields, ['id' => $tagcid, 'uid' => $profile_uid]);
225                                 }
226
227                                 // select someone by nick in the current network
228                                 if (!DBA::isResult($contact) && ($network != '')) {
229                                         $condition = ['nick' => $name, 'network' => $network, 'uid' => $profile_uid];
230                                         $contact = DBA::selectFirst('contact', $fields, $condition);
231                                 }
232
233                                 // select someone by attag in the current network
234                                 if (!DBA::isResult($contact) && ($network != '')) {
235                                         $condition = ['attag' => $name, 'network' => $network, 'uid' => $profile_uid];
236                                         $contact = DBA::selectFirst('contact', $fields, $condition);
237                                 }
238
239                                 //select someone by name in the current network
240                                 if (!DBA::isResult($contact) && ($network != '')) {
241                                         $condition = ['name' => $name, 'network' => $network, 'uid' => $profile_uid];
242                                         $contact = DBA::selectFirst('contact', $fields, $condition);
243                                 }
244
245                                 // select someone by nick in any network
246                                 if (!DBA::isResult($contact)) {
247                                         $condition = ['nick' => $name, 'uid' => $profile_uid];
248                                         $contact = DBA::selectFirst('contact', $fields, $condition);
249                                 }
250
251                                 // select someone by attag in any network
252                                 if (!DBA::isResult($contact)) {
253                                         $condition = ['attag' => $name, 'uid' => $profile_uid];
254                                         $contact = DBA::selectFirst('contact', $fields, $condition);
255                                 }
256
257                                 // select someone by name in any network
258                                 if (!DBA::isResult($contact)) {
259                                         $condition = ['name' => $name, 'uid' => $profile_uid];
260                                         $contact = DBA::selectFirst('contact', $fields, $condition);
261                                 }
262                         }
263
264                         // Check if $contact has been successfully loaded
265                         if (DBA::isResult($contact)) {
266                                 $profile = $contact['url'];
267                                 $newname = ($contact['name'] ?? '') ?: $contact['nick'];
268                         }
269
270                         //if there is an url for this persons profile
271                         if (isset($profile) && ($newname != '')) {
272                                 $replaced = true;
273                                 // create profile link
274                                 $profile = str_replace(',', '%2c', $profile);
275                                 $newtag = $tag_type . '[url=' . $profile . ']' . $newname . '[/url]';
276                                 $body = str_replace($tag_type . $name, $newtag, $body);
277                         }
278                 }
279
280                 return ['replaced' => $replaced, 'contact' => $contact];
281         }
282
283         /**
284          * Render actions localized
285          *
286          * @param array $item
287          * @return void
288          * @throws ImagickException
289          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
290          */
291         public function localize(array &$item)
292         {
293                 $this->profiler->startRecording('rendering');
294                 /// @todo The following functionality needs to be cleaned up.
295                 if (!empty($item['verb'])) {
296                         $xmlhead = '<?xml version="1.0" encoding="UTF-8" ?>';
297
298                         if ($this->activity->match($item['verb'], Activity::TAG)) {
299                                 $fields = [
300                                         'author-id', 'author-link', 'author-name', 'author-network',
301                                         'verb', 'object-type', 'resource-id', 'body', 'plink'
302                                 ];
303                                 $obj = Post::selectFirst($fields, ['uri' => $item['parent-uri']]);
304                                 if (!DBA::isResult($obj)) {
305                                         $this->profiler->stopRecording();
306                                         return;
307                                 }
308
309                                 $author_arr = [
310                                         'uid'     => 0,
311                                         'id'      => $item['author-id'],
312                                         'network' => $item['author-network'],
313                                         'url'     => $item['author-link'],
314                                         'alias'   => $item['author-alias'],
315                                 ];
316                                 $author  = '[url=' . Contact::magicLinkByContact($author_arr) . ']' . $item['author-name'] . '[/url]';
317
318                                 $author_arr = [
319                                         'uid'     => 0,
320                                         'id'      => $obj['author-id'],
321                                         'network' => $obj['author-network'],
322                                         'url'     => $obj['author-link'],
323                                         'alias'   => $obj['author-alias'],
324                                 ];
325                                 $objauthor  = '[url=' . Contact::magicLinkByContact($author_arr) . ']' . $obj['author-name'] . '[/url]';
326
327                                 switch ($obj['verb']) {
328                                         case Activity::POST:
329                                                 switch ($obj['object-type']) {
330                                                         case Activity\ObjectType::EVENT:
331                                                                 $post_type = $this->l10n->t('event');
332                                                                 break;
333                                                         default:
334                                                                 $post_type = $this->l10n->t('status');
335                                                 }
336                                                 break;
337
338                                         default:
339                                                 if ($obj['resource-id']) {
340                                                         $post_type = $this->l10n->t('photo');
341                                                         preg_match("/\[url=([^]]*)\]/", $obj['body'], $matches);
342                                                         $rr['plink'] = $matches[1];
343                                                 } else {
344                                                         $post_type = $this->l10n->t('status');
345                                                 }
346                                                 // Let's break everything ... ;-)
347                                                 break;
348                                 }
349                                 $plink = '[url=' . $obj['plink'] . ']' . $post_type . '[/url]';
350
351                                 $parsedobj = XML::parseString($xmlhead . $item['object']);
352
353                                 $tag = sprintf('#[url=%s]%s[/url]', $parsedobj->id, $parsedobj->content);
354                                 $item['body'] = $this->l10n->t('%1$s tagged %2$s\'s %3$s with %4$s', $author, $objauthor, $plink, $tag);
355                         }
356                 }
357
358                 $this->profiler->stopRecording();
359         }
360
361         /**
362          * Renders photo menu based on item
363          *
364          * @param array $item
365          * @param string $formSecurityToken
366          * @return string
367          */
368         public function photoMenu(array $item, string $formSecurityToken): string
369         {
370                 $this->profiler->startRecording('rendering');
371                 $sub_link = $contact_url = $pm_url = $status_link = '';
372                 $photos_link = $posts_link = $block_link = $ignore_link = $collapse_link = $ignoreserver_link = '';
373
374                 if ($this->userSession->getLocalUserId() && $this->userSession->getLocalUserId() == $item['uid'] && $item['gravity'] == ItemModel::GRAVITY_PARENT && !$item['self'] && !$item['mention']) {
375                         $sub_link = 'javascript:doFollowThread(' . $item['id'] . '); return false;';
376                 }
377
378                 $author = [
379                         'uid'     => 0,
380                         'id'      => $item['author-id'],
381                         'network' => $item['author-network'],
382                         'url'     => $item['author-link'],
383                         'alias'   => $item['author-alias'],
384                 ];
385                 $profile_link = Contact::magicLinkByContact($author, $item['author-link']);
386                 if (strpos($profile_link, 'contact/redir/') === 0) {
387                         $status_link  = $profile_link . '?' . http_build_query(['url' => $item['author-link'] . '/status']);
388                         $photos_link  = $profile_link . '?' . http_build_query(['url' => $item['author-link'] . '/photos']);
389                         $profile_link = $profile_link . '?' . http_build_query(['url' => $item['author-link'] . '/profile']);
390                 }
391
392                 $cid = 0;
393                 $pcid = $item['author-id'];
394                 $network = '';
395                 $rel = 0;
396                 $condition = ['uid' => $this->userSession->getLocalUserId(), 'uri-id' => $item['author-uri-id']];
397                 $contact = DBA::selectFirst('contact', ['id', 'network', 'rel'], $condition);
398                 if (DBA::isResult($contact)) {
399                         $cid = $contact['id'];
400                         $network = $contact['network'];
401                         $rel = $contact['rel'];
402                 }
403
404                 if (!empty($pcid)) {
405                         $contact_url   = 'contact/' . $pcid;
406                         $posts_link    = $contact_url . '/posts';
407                         $block_link    = $item['self'] ? '' : $contact_url . '/block?t=' . $formSecurityToken;
408                         $ignore_link   = $item['self'] ? '' : $contact_url . '/ignore?t=' . $formSecurityToken;
409                         $collapse_link = $item['self'] ? '' : $contact_url . '/collapse?t=' . $formSecurityToken;
410                 }
411
412                 $authorBaseUri = new Uri($item['author-baseurl'] ?? '');
413                 if (!empty($item['author-gsid']) && $authorBaseUri->getHost() && !DI::baseUrl()->isLocalUrl($authorBaseUri)) {
414                         $ignoreserver_link = 'settings/server/' . $item['author-gsid'] . '/ignore';
415                 }
416
417                 if ($cid && !$item['self']) {
418                         $contact_url = 'contact/' . $cid;
419                         $posts_link  = $contact_url . '/posts';
420
421                         if (in_array($network, [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA])) {
422                                 $pm_url = 'message/new/' . $cid;
423                         }
424                 }
425
426                 if ($this->userSession->getLocalUserId()) {
427                         $menu = [
428                                 $this->l10n->t('Follow Thread') => $sub_link,
429                                 $this->l10n->t('View Status') => $status_link,
430                                 $this->l10n->t('View Profile') => $profile_link,
431                                 $this->l10n->t('View Photos') => $photos_link,
432                                 $this->l10n->t('Network Posts') => $posts_link,
433                                 $this->l10n->t('View Contact') => $contact_url,
434                                 $this->l10n->t('Send PM') => $pm_url,
435                                 $this->l10n->t('Block') => $block_link,
436                                 $this->l10n->t('Ignore') => $ignore_link,
437                                 $this->l10n->t('Collapse') => $collapse_link,
438                                 $this->l10n->t("Ignore %s server", $authorBaseUri->getHost()) => $ignoreserver_link,
439                         ];
440
441                         if (!empty($item['language'])) {
442                                 $menu[$this->l10n->t('Languages')] = 'javascript:alert(\'' . ItemModel::getLanguageMessage($item) . '\');';
443                         }
444
445                         if ((($cid == 0) || ($rel == Contact::FOLLOWER)) &&
446                                 in_array($item['network'], Protocol::FEDERATED)
447                         ) {
448                                 $menu[$this->l10n->t('Connect/Follow')] = 'contact/follow?url=' . urlencode($item['author-link']) . '&auto=1';
449                         }
450                 } else {
451                         $menu = [$this->l10n->t('View Profile') => $item['author-link']];
452                 }
453
454                 $args = ['item' => $item, 'menu' => $menu];
455
456                 Hook::callAll('item_photo_menu', $args);
457
458                 $menu = $args['menu'];
459
460                 $o = '';
461                 foreach ($menu as $k => $v) {
462                         if (strpos($v, 'javascript:') === 0) {
463                                 $v = substr($v, 11);
464                                 $o .= '<li role="menuitem"><a onclick="' . $v . '">' . $k . '</a></li>' . PHP_EOL;
465                         } elseif ($v) {
466                                 $o .= '<li role="menuitem"><a href="' . $v . '">' . $k . '</a></li>' . PHP_EOL;
467                         }
468                 }
469                 $this->profiler->stopRecording();
470                 return $o;
471         }
472
473         /**
474          * Checks if the activity is visible to current user
475          *
476          * @param array $item Activity item
477          * @return bool Whether the item is visible to the user
478          */
479         public function isVisibleActivity(array $item): bool
480         {
481                 // Empty verb or hidden?
482                 if (empty($item['verb']) || $this->activity->isHidden($item['verb'])) {
483                         return false;
484                 }
485
486                 // Check conditions
487                 return (!($this->activity->match($item['verb'], Activity::FOLLOW) &&
488                         $item['object-type'] === Activity\ObjectType::NOTE &&
489                         empty($item['self']) &&
490                         $item['uid'] == $this->userSession->getLocalUserId())
491                 );
492         }
493
494         public function expandTags(array $item, bool $setPermissions = false): array
495         {
496                 // Look for any tags and linkify them
497                 $item['inform'] = '';
498                 $private_group  = false;
499                 $private_id     = null;
500                 $only_to_group  = false;
501                 $group_contact  = [];
502                 $receivers      = [];
503
504                 // Convert mentions in the body to a unified format
505                 $item['body'] = BBCode::setMentions($item['body'], $item['uid'], $item['network']);
506
507                 // Search for group mentions
508                 foreach (Tag::getFromBody($item['body'], Tag::TAG_CHARACTER[Tag::MENTION] . Tag::TAG_CHARACTER[Tag::EXCLUSIVE_MENTION]) as $tag) {
509                         $contact = Contact::getByURLForUser($tag[2], $item['uid']);
510                         if (empty($contact)) {
511                                 continue;
512                         }
513
514                         $receivers[] = $contact['id'];
515
516                         if (!empty($item['inform'])) {
517                                 $item['inform'] .= ',';
518                         }
519                         $item['inform'] .= 'cid:' . $contact['id'];
520
521                         if (($item['gravity'] == ItemModel::GRAVITY_COMMENT) || empty($contact['cid']) || ($contact['contact-type'] != Contact::TYPE_COMMUNITY)) {
522                                 continue;
523                         }
524
525                         if (!empty($contact['prv']) || ($tag[1] == Tag::TAG_CHARACTER[Tag::EXCLUSIVE_MENTION])) {
526                                 $private_group = $contact['prv'];
527                                 $only_to_group = ($tag[1] == Tag::TAG_CHARACTER[Tag::EXCLUSIVE_MENTION]);
528                                 $private_id = $contact['id'];
529                                 $group_contact = $contact;
530                                 Logger::info('Private group or exclusive mention', ['url' => $tag[2], 'mention' => $tag[1]]);
531                         } elseif ($item['allow_cid'] == '<' . $contact['id'] . '>') {
532                                 $private_group = false;
533                                 $only_to_group = true;
534                                 $private_id = $contact['id'];
535                                 $group_contact = $contact;
536                                 Logger::info('Public group', ['url' => $tag[2], 'mention' => $tag[1]]);
537                         } else {
538                                 Logger::info('Post with group mention will not be converted to a group post', ['url' => $tag[2], 'mention' => $tag[1]]);
539                         }
540                 }
541                 Logger::info('Got inform', ['inform' => $item['inform']]);
542
543                 if (($item['gravity'] == ItemModel::GRAVITY_PARENT) && !empty($group_contact) && ($private_group || $only_to_group)) {
544                         // we tagged a group in a top level post. Now we change the post
545                         $item['private'] = $private_group ? ItemModel::PRIVATE : ItemModel::UNLISTED;
546
547                         if ($only_to_group) {
548                                 $cdata = Contact::getPublicAndUserContactID($group_contact['id'], $item['uid']);
549                                 if (!empty($cdata['user'])) {
550                                         $item['owner-id'] = $cdata['user'];
551                                         unset($item['owner-link']);
552                                         unset($item['owner-name']);
553                                         unset($item['owner-avatar']);
554                                 }
555
556                                 $item['postopts'] = '';
557                         }
558
559                         $item['deny_cid'] = '';
560                         $item['deny_gid'] = '';
561
562                         if ($private_group) {
563                                 $item['allow_cid'] = '<' . $private_id . '>';
564                                 $item['allow_gid'] = '<' . Circle::getIdForGroup($group_contact['id']) . '>';
565                         } else {
566                                 $item['allow_cid'] = '';
567                                 $item['allow_gid'] = '';
568                         }
569                 } elseif ($setPermissions) {
570                         if (empty($receivers)) {
571                                 // For security reasons direct posts without any receiver will be posts to yourself
572                                 $self = Contact::selectFirst(['id'], ['uid' => $item['uid'], 'self' => true]);
573                                 $receivers[] = $self['id'];
574                         }
575
576                         $item['private']   = ItemModel::PRIVATE;
577                         $item['allow_cid'] = '';
578                         $item['allow_gid'] = '';
579                         $item['deny_cid']  = '';
580                         $item['deny_gid']  = '';
581
582                         foreach ($receivers as $receiver) {
583                                 $item['allow_cid'] .= '<' . $receiver . '>';
584                         }
585                 }
586                 return $item;
587         }
588
589         public function getAuthorAvatar(array $item): string
590         {
591                 if (in_array($item['network'], [Protocol::FEED, Protocol::MAIL])) {
592                         $author_avatar  = $item['contact-id'];
593                         $author_updated = '';
594                         $author_thumb   = $item['contact-avatar'];
595                 } else {
596                         $author_avatar  = $item['author-id'];
597                         $author_updated = $item['author-updated'];
598                         $author_thumb   = $item['author-avatar'];
599                 }
600
601
602                 if (empty($author_thumb) || Photo::isPhotoURI($author_thumb)) {
603                         $author_thumb = Contact::getAvatarUrlForId($author_avatar, Proxy::SIZE_THUMB, $author_updated);
604                 }
605
606                 return $author_thumb;
607         }
608
609         public function getOwnerAvatar(array $item): string
610         {
611                 if (in_array($item['network'], [Protocol::FEED, Protocol::MAIL])) {
612                         $owner_avatar  = $item['contact-id'];
613                         $owner_updated = '';
614                         $owner_thumb   = $item['contact-avatar'];
615                 } else {
616                         $owner_avatar   = $item['owner-id'];
617                         $owner_updated  = $item['owner-updated'];
618                         $owner_thumb    = $item['owner-avatar'];
619                 }
620
621                 if (empty($owner_thumb) || Photo::isPhotoURI($owner_thumb)) {
622                         $owner_thumb = Contact::getAvatarUrlForId($owner_avatar, Proxy::SIZE_THUMB, $owner_updated);
623                 }
624
625                 return $owner_thumb;
626         }
627
628         /**
629          * Add a share block for the given uri-id
630          *
631          * @param array  $item
632          * @param string $body
633          * @return string
634          */
635         public function addSharedPost(array $item, string $body = ''): string
636         {
637                 if (empty($body)) {
638                         $body = $item['body'];
639                 }
640
641                 if (empty($item['quote-uri-id'])) {
642                         return $body;
643                 }
644
645                 $fields = ['uri-id', 'uri', 'body', 'title', 'author-name', 'author-link', 'author-avatar', 'guid', 'created', 'plink', 'network', 'quote-uri-id'];
646                 $shared_item = Post::selectFirst($fields, ['uri-id' => $item['quote-uri-id'], 'uid' => [$item['uid'], 0], 'private' => [ItemModel::PUBLIC, ItemModel::UNLISTED]]);
647                 if (!DBA::isResult($shared_item)) {
648                         Logger::notice('Post does not exist.', ['uri-id' => $item['quote-uri-id'], 'uid' => $item['uid']]);
649                         return $body;
650                 }
651
652                 return trim(BBCode::removeSharedData($body) . "\n" . $this->createSharedBlockByArray($shared_item, true));
653         }
654
655         /**
656          * Add a share block for the given guid
657          *
658          * @param string $guid
659          * @param integer $uid
660          * @param bool $add_media
661          * @return string
662          */
663         private function createSharedPostByGuid(string $guid, bool $add_media): string
664         {
665                 $fields = ['uri-id', 'uri', 'body', 'title', 'author-name', 'author-link', 'author-avatar', 'guid', 'created', 'plink', 'network'];
666                 $shared_item = Post::selectFirst($fields, ['guid' => $guid, 'uid' => 0, 'private' => [ItemModel::PUBLIC, ItemModel::UNLISTED]]);
667
668                 if (!DBA::isResult($shared_item)) {
669                         Logger::notice('Post does not exist.', ['guid' => $guid]);
670                         return '';
671                 }
672
673                 return $this->createSharedBlockByArray($shared_item, $add_media);
674         }
675
676         /**
677          * Add a share block for the given item array
678          *
679          * @param array $item
680          * @param bool $add_media   true = Media is added to the body
681          * @param bool $for_display true = The share block is used for display purposes, false = used for connectors, transport to other systems, ...
682          * @return string
683          */
684         public function createSharedBlockByArray(array $item, bool $add_media = false, bool $for_display = false): string
685         {
686                 if ($item['network'] == Protocol::FEED) {
687                         return PageInfo::getFooterFromUrl($item['plink']);
688                 } elseif (!in_array($item['network'] ?? '', Protocol::FEDERATED) && !$for_display) {
689                         $item['guid'] = '';
690                         $item['uri']  = '';
691                 }
692
693                 if ($add_media) {
694                         $item['body'] = Post\Media::addAttachmentsToBody($item['uri-id'], $item['body']);
695                 }
696
697                 $shared_content = BBCode::getShareOpeningTag($item['author-name'], $item['author-link'], $item['author-avatar'], $item['plink'], $item['created'], $item['guid'], $item['uri']);
698
699                 if (!empty($item['title'])) {
700                         $shared_content .= '[h3]' . $item['title'] . "[/h3]\n";
701                 }
702
703                 $shared = $this->getShareArray($item);
704
705                 // If it is a reshared post then reformat it to avoid display problems with two share elements
706                 if (!empty($shared)) {
707                         if (($item['network'] != Protocol::BLUESKY) && !empty($shared['guid']) && ($encapsulated_share = $this->createSharedPostByGuid($shared['guid'], true))) {
708                                 if (!empty(BBCode::fetchShareAttributes($item['body']))) {
709                                         $item['body'] = preg_replace("/\[share.*?\](.*)\[\/share\]/ism", $encapsulated_share, $item['body']);
710                                 } else {
711                                         $item['body'] .= $encapsulated_share;
712                                 }
713                         }
714                         $item['body'] = HTML::toBBCode(BBCode::convertForUriId($item['uri-id'], $item['body'], BBCode::ACTIVITYPUB));
715                 }
716
717                 $shared_content .= $item['body'] . '[/share]';
718
719                 return $shared_content;
720         }
721
722         /**
723          * Return the shared post from an item array (if the item is shared item)
724          *
725          * @param array $item
726          * @param array $fields
727          *
728          * @return array with the shared post
729          */
730         public function getSharedPost(array $item, array $fields = []): array
731         {
732                 if (!empty($item['quote-uri-id'])) {
733                         $shared = Post::selectFirst($fields, ['uri-id' => $item['quote-uri-id'], 'uid' => [0, $item['uid'] ?? 0]]);
734                         if (is_array($shared)) {
735                                 return [
736                                         'comment' => BBCode::removeSharedData($item['body'] ?? ''),
737                                         'post'    => $shared
738                                 ];
739                         }
740                 }
741
742                 $attributes = BBCode::fetchShareAttributes($item['body'] ?? '');
743                 if (!empty($attributes)) {
744                         $shared = Post::selectFirst($fields, ['guid' => $attributes['guid'], 'uid' => [0, $item['uid'] ?? 0]]);
745                         if (is_array($shared)) {
746                                 return [
747                                         'comment' => $attributes['comment'],
748                                         'post'    => $shared
749                                 ];
750                         }
751                 }
752
753                 return [];
754         }
755
756         /**
757          * Return share data from an item array (if the item is shared item)
758          * We are providing the complete Item array, because at some time in the future
759          * we hopefully will define these values not in the body anymore but in some item fields.
760          * This function is meant to replace all similar functions in the system.
761          *
762          * @param array $item
763          *
764          * @return array with share information
765          */
766         private function getShareArray(array $item): array
767         {
768                 $attributes = BBCode::fetchShareAttributes($item['body'] ?? '');
769                 if (!empty($attributes)) {
770                         return $attributes;
771                 }
772
773                 if (!empty($item['quote-uri-id'])) {
774                         $shared = Post::selectFirst(['author-name', 'author-link', 'author-avatar', 'plink', 'created', 'guid', 'uri', 'body'], ['uri-id' => $item['quote-uri-id']]);
775                         if (!empty($shared)) {
776                                 return [
777                                         'author'     => $shared['author-name'],
778                                         'profile'    => $shared['author-link'],
779                                         'avatar'     => $shared['author-avatar'],
780                                         'link'       => $shared['plink'],
781                                         'posted'     => $shared['created'],
782                                         'guid'       => $shared['guid'],
783                                         'message_id' => $shared['uri'],
784                                         'comment'    => $item['body'],
785                                         'shared'     => $shared['body'],
786                                 ];
787                         }
788                 }
789
790                 return [];
791         }
792
793         /**
794          * Add a link to a shared post at the end of the post
795          *
796          * @param string  $body
797          * @param integer $quote_uri_id
798          * @return string
799          */
800         public function addShareLink(string $body, int $quote_uri_id): string
801         {
802                 $post = Post::selectFirstPost(['uri', 'plink'], ['uri-id' => $quote_uri_id]);
803                 if (empty($post)) {
804                         return $body;
805                 }
806
807                 $body = BBCode::removeSharedData($body);
808
809                 $body .= "\n♲ " . ($post['plink'] ?: $post['uri']);
810
811                 return $body;
812         }
813
814         public function storeAttachmentFromRequest(array $request): string
815         {
816                 $attachment_type  = $request['attachment_type'] ??  '';
817                 $attachment_title = $request['attachment_title'] ?? '';
818                 $attachment_text  = $request['attachment_text'] ??  '';
819
820                 $attachment_url     = hex2bin($request['attachment_url'] ??     '');
821                 $attachment_img_src = hex2bin($request['attachment_img_src'] ?? '');
822
823                 $attachment_img_width  = $request['attachment_img_width'] ??  0;
824                 $attachment_img_height = $request['attachment_img_height'] ?? 0;
825
826                 // Fetch the basic attachment data
827                 $attachment = ParseUrl::getSiteinfoCached($attachment_url);
828                 unset($attachment['keywords']);
829
830                 // Overwrite the basic data with possible changes from the frontend
831                 $attachment['type'] = $attachment_type;
832                 $attachment['title'] = $attachment_title;
833                 $attachment['text'] = $attachment_text;
834                 $attachment['url'] = $attachment_url;
835
836                 if (!empty($attachment_img_src)) {
837                         $attachment['images'] = [
838                                 0 => [
839                                         'src'    => $attachment_img_src,
840                                         'width'  => $attachment_img_width,
841                                         'height' => $attachment_img_height
842                                 ]
843                         ];
844                 } else {
845                         unset($attachment['images']);
846                 }
847
848                 return "\n" . PageInfo::getFooterFromData($attachment);
849         }
850
851         public function addCategories(array $post, string $category): array
852         {
853                 if (!empty($post['file'])) {
854                         // get the "fileas" tags for this post
855                         $filedas = FileTag::fileToArray($post['file']);
856                 }
857
858                 $list_array = explode(',', trim($category));
859                 $post['file'] = FileTag::arrayToFile($list_array, 'category');
860
861                 if (!empty($filedas) && is_array($filedas)) {
862                         // append the fileas stuff to the new categories list
863                         $post['file'] .= FileTag::arrayToFile($filedas);
864                 }
865                 return $post;
866         }
867
868         public function getACL(array $post, array $toplevel_item, array $request): array
869         {
870                 // If this is a comment, set the permissions from the parent.
871                 if ($toplevel_item) {
872                         $post['allow_cid'] = $toplevel_item['allow_cid'] ?? '';
873                         $post['allow_gid'] = $toplevel_item['allow_gid'] ?? '';
874                         $post['deny_cid']  = $toplevel_item['deny_cid'] ?? '';
875                         $post['deny_gid']  = $toplevel_item['deny_gid'] ?? '';
876                         $post['private']   = $toplevel_item['private'];
877                         return $post;
878                 }
879
880                 $user = User::getById($post['uid'], ['allow_cid', 'allow_gid', 'deny_cid', 'deny_gid']);
881                 if (!$user) {
882                         throw new HTTPException\NotFoundException($this->l10n->t('Unable to fetch user.'));
883                 }
884
885                 $post['allow_cid'] = isset($request['contact_allow']) ? $this->aclFormatter->toString($request['contact_allow']) : $user['allow_cid'] ?? '';
886                 $post['allow_gid'] = isset($request['circle_allow'])  ? $this->aclFormatter->toString($request['circle_allow'])  : $user['allow_gid'] ?? '';
887                 $post['deny_cid']  = isset($request['contact_deny'])  ? $this->aclFormatter->toString($request['contact_deny'])  : $user['deny_cid']  ?? '';
888                 $post['deny_gid']  = isset($request['circle_deny'])   ? $this->aclFormatter->toString($request['circle_deny'])   : $user['deny_gid']  ?? '';
889
890                 $visibility = $request['visibility'] ?? '';
891                 if ($visibility === 'public') {
892                         // The ACL selector introduced in version 2019.12 sends ACL input data even when the Public visibility is selected
893                         $post['allow_cid'] = $post['allow_gid'] = $post['deny_cid'] = $post['deny_gid'] = '';
894                 } else if ($visibility === 'custom') {
895                         // Since we know from the visibility parameter the item should be private, we have to prevent the empty ACL
896                         // case that would make it public. So we always append the author's contact id to the allowed contacts.
897                         // See https://github.com/friendica/friendica/issues/9672
898                         $post['allow_cid'] .= $this->aclFormatter->toString(Contact::getPublicIdByUserId($post['uid']));
899                 }
900
901                 if ($post['allow_gid'] || $post['allow_cid'] || $post['deny_gid'] || $post['deny_cid']) {
902                         $post['private'] = ItemModel::PRIVATE;
903                 } elseif ($this->pConfig->get($post['uid'], 'system', 'unlisted')) {
904                         $post['private'] = ItemModel::UNLISTED;
905                 } else {
906                         $post['private'] = ItemModel::PUBLIC;
907                 }
908
909                 return $post;
910         }
911
912         public function moveAttachmentsFromBodyToAttach(array $post): array
913         {
914                 if (!preg_match_all('/(\[attachment\]([0-9]+)\[\/attachment\])/', $post['body'], $match)) {
915                         return $post;
916                 }
917
918                 foreach ($match[2] as $attachment_id) {
919                         $attachment = Attach::selectFirst(['id', 'uid', 'filename', 'filesize', 'filetype'], ['id' => $attachment_id, 'uid' => $post['uid']]);
920                         if (empty($attachment)) {
921                                 continue;
922                         }
923                         if ($post['attach']) {
924                                 $post['attach'] .= ',';
925                         }
926                         $post['attach'] .= Post\Media::getAttachElement(
927                                 $this->baseURL . '/attach/' . $attachment['id'],
928                                 $attachment['filesize'],
929                                 $attachment['filetype'],
930                                 $attachment['filename'] ?? ''
931                         );
932
933                         $fields = [
934                                 'allow_cid' => $post['allow_cid'], 'allow_gid' => $post['allow_gid'],
935                                 'deny_cid' => $post['deny_cid'], 'deny_gid' => $post['deny_gid']
936                         ];
937                         $condition = ['id' => $attachment_id];
938                         Attach::update($fields, $condition);
939                 }
940
941                 $post['body'] = str_replace($match[1], '', $post['body']);
942
943                 return $post;
944         }
945
946         private function setObjectType(array $post): array
947         {
948                 if (empty($post['post-type'])) {
949                         $post['post-type'] = empty($post['title']) ? ItemModel::PT_NOTE : ItemModel::PT_ARTICLE;
950                 }
951
952                 // embedded bookmark or attachment in post? set bookmark flag
953                 $data = BBCode::getAttachmentData($post['body']);
954                 if ((preg_match_all("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism", $post['body'], $match, PREG_SET_ORDER) || !empty($data['type']))
955                         && ($post['post-type'] != ItemModel::PT_PERSONAL_NOTE)
956                 ) {
957                         $post['post-type'] = ItemModel::PT_PAGE;
958                         $post['object-type'] = Activity\ObjectType::BOOKMARK;
959                 }
960
961                 // Setting the object type if not defined before
962                 if (empty($post['object-type'])) {
963                         $post['object-type'] = ($post['gravity'] == ItemModel::GRAVITY_PARENT) ? Activity\ObjectType::NOTE : Activity\ObjectType::COMMENT;
964                 }
965                 return $post;
966         }
967
968         public function initializePost(array $post): array
969         {
970                 $post['network']    = Protocol::DFRN;
971                 $post['protocol']   = Conversation::PARCEL_DIRECT;
972                 $post['direction']  = Conversation::PUSH;
973                 $post['received']   = DateTimeFormat::utcNow();
974                 $post['origin']     = true;
975                 $post['wall']       = $post['wall'] ?? true;
976                 $post['guid']       = $post['guid'] ?? System::createUUID();
977                 $post['verb']       = $post['verb'] ?? Activity::POST;
978                 $post['uri']        = $post['uri'] ?? ItemModel::newURI($post['guid']);
979                 $post['thr-parent'] = $post['thr-parent'] ?? $post['uri'];
980
981                 if (empty($post['gravity'])) {
982                         $post['gravity'] = ($post['uri'] == $post['thr-parent']) ? ItemModel::GRAVITY_PARENT : ItemModel::GRAVITY_COMMENT;
983                 }
984
985                 $owner = User::getOwnerDataById($post['uid']);
986
987                 if (!isset($post['allow_cid']) || !isset($post['allow_gid']) || !isset($post['deny_cid']) || !isset($post['deny_gid'])) {
988                         $post['allow_cid'] = $owner['allow_cid'];
989                         $post['allow_gid'] = $owner['allow_gid'];
990                         $post['deny_cid']  = $owner['deny_cid'];
991                         $post['deny_gid']  = $owner['deny_gid'];
992                 }
993
994                 if ($post['allow_gid'] || $post['allow_cid'] || $post['deny_gid'] || $post['deny_cid']) {
995                         $post['private'] = ItemModel::PRIVATE;
996                 } elseif ($this->pConfig->get($post['uid'], 'system', 'unlisted')) {
997                         $post['private'] = ItemModel::UNLISTED;
998                 } else {
999                         $post['private'] = ItemModel::PUBLIC;
1000                 }
1001
1002                 if (empty($post['contact-id'])) {
1003                         $post['contact-id'] = $owner['id'];
1004                 }
1005
1006                 if (empty($post['author-link']) && empty($post['author-id'])) {
1007                         $post['author-link']   = $owner['url'];
1008                         $post['author-id']     = Contact::getIdForURL($post['author-link']);
1009                         $post['author-name']   = $owner['name'];
1010                         $post['author-avatar'] = $owner['thumb'];
1011                 }
1012
1013                 if (empty($post['owner-link']) && empty($post['owner-id'])) {
1014                         $post['owner-link']   = $post['author-link'];
1015                         $post['owner-id']     = Contact::getIdForURL($post['owner-link']);
1016                         $post['owner-name']   = $post['author-name'];
1017                         $post['owner-avatar'] = $post['author-avatar'];
1018                 }
1019
1020                 return $post;
1021         }
1022
1023         public function finalizePost(array $post): array
1024         {
1025                 if (preg_match("/\[attachment\](.*?)\[\/attachment\]/ism", $post['body'], $matches)) {
1026                         $post['body'] = preg_replace("/\[attachment].*?\[\/attachment\]/ism", PageInfo::getFooterFromUrl($matches[1]), $post['body']);
1027                 }
1028
1029                 // Convert links with empty descriptions to links without an explicit description
1030                 $post['body'] = trim(preg_replace('#\[url=([^\]]*?)\]\[/url\]#ism', '[url]$1[/url]', $post['body']));
1031                 $post['body'] = $this->bbCodeVideo->transform($post['body']);
1032                 $post = $this->setObjectType($post);
1033
1034                 // Personal notes must never be altered to a group post.
1035                 if ($post['post-type'] != ItemModel::PT_PERSONAL_NOTE) {
1036                         // Look for any tags and linkify them
1037                         $post = $this->expandTags($post);
1038                 }
1039
1040                 return $post;
1041         }
1042
1043         public function postProcessPost(array $post, array $recipients = [])
1044         {
1045                 if (!\Friendica\Content\Feature::isEnabled($post['uid'], 'explicit_mentions') && ($post['gravity'] == ItemModel::GRAVITY_COMMENT)) {
1046                         Tag::createImplicitMentions($post['uri-id'], $post['thr-parent-id']);
1047                 }
1048
1049                 Hook::callAll('post_local_end', $post);
1050
1051                 $author = DBA::selectFirst('contact', ['thumb'], ['uid' => $post['uid'], 'self' => true]);
1052
1053                 foreach ($recipients as $recipient) {
1054                         $address = trim($recipient);
1055                         if (!$address) {
1056                                 continue;
1057                         }
1058
1059                         $this->emailer->send(new ItemCCEMail(
1060                                 $this->app,
1061                                 $this->l10n,
1062                                 $this->baseURL,
1063                                 $post,
1064                                 $address,
1065                                 $author['thumb'] ?? ''
1066                         ));
1067                 }
1068         }
1069 }