3 * @copyright Copyright (C) 2010-2023, the Friendica project
5 * @license GNU AGPL version 3 or any later version
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.
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.
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/>.
22 namespace Friendica\Content;
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\Model\Attach;
38 use Friendica\Model\Contact;
39 use Friendica\Model\Conversation;
40 use Friendica\Model\FileTag;
41 use Friendica\Model\Group;
42 use Friendica\Model\Item as ItemModel;
43 use Friendica\Model\Photo;
44 use Friendica\Model\Tag;
45 use Friendica\Model\Post;
46 use Friendica\Model\User;
47 use Friendica\Network\HTTPException;
48 use Friendica\Object\EMail\ItemCCEMail;
49 use Friendica\Protocol\Activity;
50 use Friendica\Util\ACLFormatter;
51 use Friendica\Util\DateTimeFormat;
52 use Friendica\Util\Emailer;
53 use Friendica\Util\ParseUrl;
54 use Friendica\Util\Profiler;
55 use Friendica\Util\Proxy;
56 use Friendica\Util\XML;
59 * A content helper class for displaying items
69 /** @var IHandleUserSessions */
73 /** @var ACLFormatter */
74 private $aclFormatter;
75 /** @var IManagePersonalConfigValues */
84 public function __construct(Profiler $profiler, Activity $activity, L10n $l10n, IHandleUserSessions $userSession, Video $bbCodeVideo, ACLFormatter $aclFormatter, IManagePersonalConfigValues $pConfig, BaseURL $baseURL, Emailer $emailer, App $app)
86 $this->profiler = $profiler;
87 $this->activity = $activity;
89 $this->userSession = $userSession;
90 $this->bbCodeVideo = $bbCodeVideo;
91 $this->aclFormatter = $aclFormatter;
92 $this->baseURL = $baseURL;
93 $this->pConfig = $pConfig;
94 $this->emailer = $emailer;
99 * Return array with details for categories and folders for an item
103 * @return [array, array]
106 * [ // categories array
108 * 'name': 'category name',
109 * 'removeurl': 'url to remove this category',
110 * 'first': 'is the first in this array? true/false',
111 * 'last': 'is the last in this array? true/false',
117 * 'name': 'folder name',
118 * 'removeurl': 'url to remove this folder',
119 * 'first': 'is the first in this array? true/false',
120 * 'last': 'is the last in this array? true/false',
126 public function determineCategoriesTerms(array $item, int $uid = 0): array
132 $uid = $item['uid'] ?: $uid;
134 if (empty($item['has-categories'])) {
135 return [$categories, $folders];
138 foreach (Post\Category::getArrayByURIId($item['uri-id'], $uid, Post\Category::CATEGORY) as $savedFolderName) {
139 if (!empty($item['author-link'])) {
140 $url = $item['author-link'] . "?category=" . rawurlencode($savedFolderName);
145 'name' => $savedFolderName,
147 'removeurl' => $this->userSession->getLocalUserId() == $uid ? 'filerm/' . $item['id'] . '?cat=' . rawurlencode($savedFolderName) : '',
154 if (count($categories)) {
155 $categories[count($categories) - 1]['last'] = true;
158 if ($this->userSession->getLocalUserId() == $uid) {
159 foreach (Post\Category::getArrayByURIId($item['uri-id'], $uid, Post\Category::FILE) as $savedFolderName) {
161 'name' => $savedFolderName,
163 'removeurl' => $this->userSession->getLocalUserId() == $uid ? 'filerm/' . $item['id'] . '?term=' . rawurlencode($savedFolderName) : '',
171 if (count($folders)) {
172 $folders[count($folders) - 1]['last'] = true;
175 return [$categories, $folders];
179 * This function removes the tag $tag from the text $body and replaces it with
180 * the appropriate link.
182 * @param string $body the text to replace the tag in
183 * @param int $profile_uid the user id to replace the tag for (0 = anyone)
184 * @param string $tag the tag to replace
185 * @param string $network The network of the post
187 * @return array|bool ['replaced' => $replaced, 'contact' => $contact] or "false" on if already replaced
188 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
189 * @throws \ImagickException
191 public static function replaceTag(string &$body, int $profile_uid, string $tag, string $network = '')
195 //is it a person tag?
196 if (Tag::isType($tag, Tag::MENTION, Tag::IMPLICIT_MENTION, Tag::EXCLUSIVE_MENTION)) {
197 $tag_type = substr($tag, 0, 1);
198 //is it already replaced?
199 if (strpos($tag, '[url=')) {
203 //get the person's name
204 $name = substr($tag, 1);
206 // Sometimes the tag detection doesn't seem to work right
207 // This is some workaround
208 $nameparts = explode(' ', $name);
209 $name = $nameparts[0];
211 // Try to detect the contact in various ways
212 if (strpos($name, 'http://') || strpos($name, '@')) {
213 $contact = Contact::getByURLForUser($name, $profile_uid);
216 $fields = ['id', 'url', 'nick', 'name', 'alias', 'network', 'forum', 'prv'];
218 if (strrpos($name, '+')) {
219 // Is it in format @nick+number?
220 $tagcid = intval(substr($name, strrpos($name, '+') + 1));
221 $contact = DBA::selectFirst('contact', $fields, ['id' => $tagcid, 'uid' => $profile_uid]);
224 // select someone by nick in the current network
225 if (!DBA::isResult($contact) && ($network != '')) {
226 $condition = ['nick' => $name, 'network' => $network, 'uid' => $profile_uid];
227 $contact = DBA::selectFirst('contact', $fields, $condition);
230 // select someone by attag in the current network
231 if (!DBA::isResult($contact) && ($network != '')) {
232 $condition = ['attag' => $name, 'network' => $network, 'uid' => $profile_uid];
233 $contact = DBA::selectFirst('contact', $fields, $condition);
236 //select someone by name in the current network
237 if (!DBA::isResult($contact) && ($network != '')) {
238 $condition = ['name' => $name, 'network' => $network, 'uid' => $profile_uid];
239 $contact = DBA::selectFirst('contact', $fields, $condition);
242 // select someone by nick in any network
243 if (!DBA::isResult($contact)) {
244 $condition = ['nick' => $name, 'uid' => $profile_uid];
245 $contact = DBA::selectFirst('contact', $fields, $condition);
248 // select someone by attag in any network
249 if (!DBA::isResult($contact)) {
250 $condition = ['attag' => $name, 'uid' => $profile_uid];
251 $contact = DBA::selectFirst('contact', $fields, $condition);
254 // select someone by name in any network
255 if (!DBA::isResult($contact)) {
256 $condition = ['name' => $name, 'uid' => $profile_uid];
257 $contact = DBA::selectFirst('contact', $fields, $condition);
261 // Check if $contact has been successfully loaded
262 if (DBA::isResult($contact)) {
263 $profile = $contact['url'];
264 $newname = ($contact['name'] ?? '') ?: $contact['nick'];
267 //if there is an url for this persons profile
268 if (isset($profile) && ($newname != '')) {
270 // create profile link
271 $profile = str_replace(',', '%2c', $profile);
272 $newtag = $tag_type . '[url=' . $profile . ']' . $newname . '[/url]';
273 $body = str_replace($tag_type . $name, $newtag, $body);
277 return ['replaced' => $replaced, 'contact' => $contact];
281 * Render actions localized
285 * @throws ImagickException
286 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
288 public function localize(array &$item)
290 $this->profiler->startRecording('rendering');
291 /// @todo The following functionality needs to be cleaned up.
292 if (!empty($item['verb'])) {
293 $xmlhead = '<?xml version="1.0" encoding="UTF-8" ?>';
295 if ($this->activity->match($item['verb'], Activity::TAG)) {
297 'author-id', 'author-link', 'author-name', 'author-network',
298 'verb', 'object-type', 'resource-id', 'body', 'plink'
300 $obj = Post::selectFirst($fields, ['uri' => $item['parent-uri']]);
301 if (!DBA::isResult($obj)) {
302 $this->profiler->stopRecording();
308 'id' => $item['author-id'],
309 'network' => $item['author-network'],
310 'url' => $item['author-link'],
312 $author = '[url=' . Contact::magicLinkByContact($author_arr) . ']' . $item['author-name'] . '[/url]';
316 'id' => $obj['author-id'],
317 'network' => $obj['author-network'],
318 'url' => $obj['author-link'],
320 $objauthor = '[url=' . Contact::magicLinkByContact($author_arr) . ']' . $obj['author-name'] . '[/url]';
322 switch ($obj['verb']) {
324 switch ($obj['object-type']) {
325 case Activity\ObjectType::EVENT:
326 $post_type = $this->l10n->t('event');
329 $post_type = $this->l10n->t('status');
334 if ($obj['resource-id']) {
335 $post_type = $this->l10n->t('photo');
336 preg_match("/\[url=([^]]*)\]/", $obj['body'], $matches);
337 $rr['plink'] = $matches[1];
339 $post_type = $this->l10n->t('status');
341 // Let's break everything ... ;-)
344 $plink = '[url=' . $obj['plink'] . ']' . $post_type . '[/url]';
346 $parsedobj = XML::parseString($xmlhead . $item['object']);
348 $tag = sprintf('#[url=%s]%s[/url]', $parsedobj->id, $parsedobj->content);
349 $item['body'] = $this->l10n->t('%1$s tagged %2$s\'s %3$s with %4$s', $author, $objauthor, $plink, $tag);
353 $this->profiler->stopRecording();
357 * Renders photo menu based on item
360 * @param string $formSecurityToken
363 public function photoMenu(array $item, string $formSecurityToken): string
365 $this->profiler->startRecording('rendering');
366 $sub_link = $contact_url = $pm_url = $status_link = '';
367 $photos_link = $posts_link = $block_link = $ignore_link = '';
369 if ($this->userSession->getLocalUserId() && $this->userSession->getLocalUserId() == $item['uid'] && $item['gravity'] == ItemModel::GRAVITY_PARENT && !$item['self'] && !$item['mention']) {
370 $sub_link = 'javascript:doFollowThread(' . $item['id'] . '); return false;';
375 'id' => $item['author-id'],
376 'network' => $item['author-network'],
377 'url' => $item['author-link'],
379 $profile_link = Contact::magicLinkByContact($author, $item['author-link']);
380 $sparkle = (strpos($profile_link, 'contact/redir/') === 0);
383 $pcid = $item['author-id'];
386 $condition = ['uid' => $this->userSession->getLocalUserId(), 'uri-id' => $item['author-uri-id']];
387 $contact = DBA::selectFirst('contact', ['id', 'network', 'rel'], $condition);
388 if (DBA::isResult($contact)) {
389 $cid = $contact['id'];
390 $network = $contact['network'];
391 $rel = $contact['rel'];
395 $status_link = $profile_link . '/status';
396 $photos_link = $profile_link . '/photos';
397 $profile_link = $profile_link . '/profile';
401 $contact_url = 'contact/' . $pcid;
402 $posts_link = $contact_url . '/posts';
403 $block_link = $item['self'] ? '' : $contact_url . '/block?t=' . $formSecurityToken;
404 $ignore_link = $item['self'] ? '' : $contact_url . '/ignore?t=' . $formSecurityToken;
405 $collapse_link = $item['self'] ? '' : $contact_url . '/collapse?t=' . $formSecurityToken;
408 if ($cid && !$item['self']) {
409 $contact_url = 'contact/' . $cid;
410 $posts_link = $contact_url . '/posts';
412 if (in_array($network, [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA])) {
413 $pm_url = 'message/new/' . $cid;
417 if ($this->userSession->getLocalUserId()) {
419 $this->l10n->t('Follow Thread') => $sub_link,
420 $this->l10n->t('View Status') => $status_link,
421 $this->l10n->t('View Profile') => $profile_link,
422 $this->l10n->t('View Photos') => $photos_link,
423 $this->l10n->t('Network Posts') => $posts_link,
424 $this->l10n->t('View Contact') => $contact_url,
425 $this->l10n->t('Send PM') => $pm_url,
426 $this->l10n->t('Block') => $block_link,
427 $this->l10n->t('Ignore') => $ignore_link,
428 $this->l10n->t('Collapse') => $collapse_link
431 if (!empty($item['language'])) {
432 $menu[$this->l10n->t('Languages')] = 'javascript:alert(\'' . ItemModel::getLanguageMessage($item) . '\');';
435 if ((($cid == 0) || ($rel == Contact::FOLLOWER)) &&
436 in_array($item['network'], Protocol::FEDERATED)
438 $menu[$this->l10n->t('Connect/Follow')] = 'contact/follow?url=' . urlencode($item['author-link']) . '&auto=1';
441 $menu = [$this->l10n->t('View Profile') => $item['author-link']];
444 $args = ['item' => $item, 'menu' => $menu];
446 Hook::callAll('item_photo_menu', $args);
448 $menu = $args['menu'];
451 foreach ($menu as $k => $v) {
452 if (strpos($v, 'javascript:') === 0) {
454 $o .= '<li role="menuitem"><a onclick="' . $v . '">' . $k . '</a></li>' . PHP_EOL;
456 $o .= '<li role="menuitem"><a href="' . $v . '">' . $k . '</a></li>' . PHP_EOL;
459 $this->profiler->stopRecording();
464 * Checks if the activity is visible to current user
466 * @param array $item Activity item
467 * @return bool Whether the item is visible to the user
469 public function isVisibleActivity(array $item): bool
471 // Empty verb or hidden?
472 if (empty($item['verb']) || $this->activity->isHidden($item['verb'])) {
477 return (!($this->activity->match($item['verb'], Activity::FOLLOW) &&
478 $item['object-type'] === Activity\ObjectType::NOTE &&
479 empty($item['self']) &&
480 $item['uid'] == $this->userSession->getLocalUserId())
484 public function expandTags(array $item, bool $setPermissions = false): array
486 // Look for any tags and linkify them
487 $item['inform'] = '';
488 $private_forum = false;
490 $only_to_forum = false;
494 // Convert mentions in the body to a unified format
495 $item['body'] = BBCode::setMentions($item['body'], $item['uid'], $item['network']);
497 // Search for forum mentions
498 foreach (Tag::getFromBody($item['body'], Tag::TAG_CHARACTER[Tag::MENTION] . Tag::TAG_CHARACTER[Tag::EXCLUSIVE_MENTION]) as $tag) {
499 $contact = Contact::getByURLForUser($tag[2], $item['uid']);
500 if (empty($contact)) {
504 $receivers[] = $contact['id'];
506 if (!empty($item['inform'])) {
507 $item['inform'] .= ',';
509 $item['inform'] .= 'cid:' . $contact['id'];
511 if (($item['gravity'] == ItemModel::GRAVITY_COMMENT) || empty($contact['cid']) || ($contact['contact-type'] != Contact::TYPE_COMMUNITY)) {
515 if (!empty($contact['prv']) || ($tag[1] == Tag::TAG_CHARACTER[Tag::EXCLUSIVE_MENTION])) {
516 $private_forum = $contact['prv'];
517 $only_to_forum = ($tag[1] == Tag::TAG_CHARACTER[Tag::EXCLUSIVE_MENTION]);
518 $private_id = $contact['id'];
519 $forum_contact = $contact;
520 Logger::info('Private forum or exclusive mention', ['url' => $tag[2], 'mention' => $tag[1]]);
521 } elseif ($item['allow_cid'] == '<' . $contact['id'] . '>') {
522 $private_forum = false;
523 $only_to_forum = true;
524 $private_id = $contact['id'];
525 $forum_contact = $contact;
526 Logger::info('Public forum', ['url' => $tag[2], 'mention' => $tag[1]]);
528 Logger::info('Post with forum mention will not be converted to a forum post', ['url' => $tag[2], 'mention' => $tag[1]]);
531 Logger::info('Got inform', ['inform' => $item['inform']]);
533 if (($item['gravity'] == ItemModel::GRAVITY_PARENT) && !empty($forum_contact) && ($private_forum || $only_to_forum)) {
534 // we tagged a forum in a top level post. Now we change the post
535 $item['private'] = $private_forum ? ItemModel::PRIVATE : ItemModel::UNLISTED;
537 if ($only_to_forum) {
538 $item['postopts'] = '';
541 $item['deny_cid'] = '';
542 $item['deny_gid'] = '';
544 if ($private_forum) {
545 $item['allow_cid'] = '<' . $private_id . '>';
546 $item['allow_gid'] = '<' . Group::getIdForForum($forum_contact['id']) . '>';
548 $item['allow_cid'] = '';
549 $item['allow_gid'] = '';
551 } elseif ($setPermissions) {
552 if (empty($receivers)) {
553 // For security reasons direct posts without any receiver will be posts to yourself
554 $self = Contact::selectFirst(['id'], ['uid' => $item['uid'], 'self' => true]);
555 $receivers[] = $self['id'];
558 $item['private'] = ItemModel::PRIVATE;
559 $item['allow_cid'] = '';
560 $item['allow_gid'] = '';
561 $item['deny_cid'] = '';
562 $item['deny_gid'] = '';
564 foreach ($receivers as $receiver) {
565 $item['allow_cid'] .= '<' . $receiver . '>';
571 public function getAuthorAvatar(array $item): string
573 if (in_array($item['network'], [Protocol::FEED, Protocol::MAIL])) {
574 $author_avatar = $item['contact-id'];
575 $author_updated = '';
576 $author_thumb = $item['contact-avatar'];
578 $author_avatar = $item['author-id'];
579 $author_updated = $item['author-updated'];
580 $author_thumb = $item['author-avatar'];
584 if (empty($author_thumb) || Photo::isPhotoURI($author_thumb)) {
585 $author_thumb = Contact::getAvatarUrlForId($author_avatar, Proxy::SIZE_THUMB, $author_updated);
588 return $author_thumb;
591 public function getOwnerAvatar(array $item): string
593 if (in_array($item['network'], [Protocol::FEED, Protocol::MAIL])) {
594 $owner_avatar = $item['contact-id'];
596 $owner_thumb = $item['contact-avatar'];
598 $owner_avatar = $item['owner-id'];
599 $owner_updated = $item['owner-updated'];
600 $owner_thumb = $item['owner-avatar'];
603 if (empty($owner_thumb) || Photo::isPhotoURI($owner_thumb)) {
604 $owner_thumb = Contact::getAvatarUrlForId($owner_avatar, Proxy::SIZE_THUMB, $owner_updated);
611 * Add a share block for the given uri-id
614 * @param string $body
617 public function addSharedPost(array $item, string $body = ''): string
620 $body = $item['body'];
623 if (empty($item['quote-uri-id'])) {
627 $fields = ['uri-id', 'uri', 'body', 'title', 'author-name', 'author-link', 'author-avatar', 'guid', 'created', 'plink', 'network', 'quote-uri-id'];
628 $shared_item = Post::selectFirst($fields, ['uri-id' => $item['quote-uri-id'], 'uid' => [$item['uid'], 0], 'private' => [ItemModel::PUBLIC, ItemModel::UNLISTED]]);
629 if (!DBA::isResult($shared_item)) {
630 Logger::notice('Post does not exist.', ['uri-id' => $item['quote-uri-id'], 'uid' => $item['uid']]);
634 return trim(BBCode::removeSharedData($body) . "\n" . $this->createSharedBlockByArray($shared_item, true));
638 * Add a share block for the given guid
640 * @param string $guid
641 * @param integer $uid
642 * @param bool $add_media
645 private function createSharedPostByGuid(string $guid, bool $add_media): string
647 $fields = ['uri-id', 'uri', 'body', 'title', 'author-name', 'author-link', 'author-avatar', 'guid', 'created', 'plink', 'network'];
648 $shared_item = Post::selectFirst($fields, ['guid' => $guid, 'uid' => 0, 'private' => [ItemModel::PUBLIC, ItemModel::UNLISTED]]);
650 if (!DBA::isResult($shared_item)) {
651 Logger::notice('Post does not exist.', ['guid' => $guid]);
655 return $this->createSharedBlockByArray($shared_item, $add_media);
659 * Add a share block for the given item array
662 * @param bool $add_media
665 public function createSharedBlockByArray(array $item, bool $add_media = false): string
667 if ($item['network'] == Protocol::FEED) {
668 return PageInfo::getFooterFromUrl($item['plink']);
669 } elseif (!in_array($item['network'] ?? '', Protocol::FEDERATED)) {
675 $item['body'] = Post\Media::addAttachmentsToBody($item['uri-id'], $item['body']);
678 $shared_content = BBCode::getShareOpeningTag($item['author-name'], $item['author-link'], $item['author-avatar'], $item['plink'], $item['created'], $item['guid'], $item['uri']);
680 if (!empty($item['title'])) {
681 $shared_content .= '[h3]' . $item['title'] . "[/h3]\n";
684 $shared = $this->getShareArray($item);
686 // If it is a reshared post then reformat it to avoid display problems with two share elements
687 if (!empty($shared)) {
688 if (!empty($shared['guid']) && ($encapsulated_share = $this->createSharedPostByGuid($shared['guid'], true))) {
689 if (!empty(BBCode::fetchShareAttributes($item['body']))) {
690 $item['body'] = preg_replace("/\[share.*?\](.*)\[\/share\]/ism", $encapsulated_share, $item['body']);
692 $item['body'] .= $encapsulated_share;
695 $item['body'] = HTML::toBBCode(BBCode::convertForUriId($item['uri-id'], $item['body'], BBCode::ACTIVITYPUB));
698 $shared_content .= $item['body'] . '[/share]';
700 return $shared_content;
704 * Return the shared post from an item array (if the item is shared item)
707 * @param array $fields
709 * @return array with the shared post
711 public function getSharedPost(array $item, array $fields = []): array
713 if (!empty($item['quote-uri-id'])) {
714 $shared = Post::selectFirst($fields, ['uri-id' => $item['quote-uri-id'], 'uid' => [0, $item['uid'] ?? 0]]);
715 if (is_array($shared)) {
717 'comment' => BBCode::removeSharedData($item['body'] ?? ''),
723 $attributes = BBCode::fetchShareAttributes($item['body'] ?? '');
724 if (!empty($attributes)) {
725 $shared = Post::selectFirst($fields, ['guid' => $attributes['guid'], 'uid' => [0, $item['uid'] ?? 0]]);
726 if (is_array($shared)) {
728 'comment' => $attributes['comment'],
738 * Return share data from an item array (if the item is shared item)
739 * We are providing the complete Item array, because at some time in the future
740 * we hopefully will define these values not in the body anymore but in some item fields.
741 * This function is meant to replace all similar functions in the system.
745 * @return array with share information
747 private function getShareArray(array $item): array
749 $attributes = BBCode::fetchShareAttributes($item['body'] ?? '');
750 if (!empty($attributes)) {
754 if (!empty($item['quote-uri-id'])) {
755 $shared = Post::selectFirst(['author-name', 'author-link', 'author-avatar', 'plink', 'created', 'guid', 'uri', 'body'], ['uri-id' => $item['quote-uri-id']]);
756 if (!empty($shared)) {
758 'author' => $shared['author-name'],
759 'profile' => $shared['author-link'],
760 'avatar' => $shared['author-avatar'],
761 'link' => $shared['plink'],
762 'posted' => $shared['created'],
763 'guid' => $shared['guid'],
764 'message_id' => $shared['uri'],
765 'comment' => $item['body'],
766 'shared' => $shared['body'],
775 * Add a link to a shared post at the end of the post
777 * @param string $body
778 * @param integer $quote_uri_id
781 public function addShareLink(string $body, int $quote_uri_id): string
783 $post = Post::selectFirstPost(['uri', 'plink'], ['uri-id' => $quote_uri_id]);
788 $body = BBCode::removeSharedData($body);
790 $body .= "\n♲ " . ($post['plink'] ?: $post['uri']);
795 public function storeAttachmentFromRequest(array $request): string
797 $attachment_type = $request['attachment_type'] ?? '';
798 $attachment_title = $request['attachment_title'] ?? '';
799 $attachment_text = $request['attachment_text'] ?? '';
801 $attachment_url = hex2bin($request['attachment_url'] ?? '');
802 $attachment_img_src = hex2bin($request['attachment_img_src'] ?? '');
804 $attachment_img_width = $request['attachment_img_width'] ?? 0;
805 $attachment_img_height = $request['attachment_img_height'] ?? 0;
807 // Fetch the basic attachment data
808 $attachment = ParseUrl::getSiteinfoCached($attachment_url);
809 unset($attachment['keywords']);
811 // Overwrite the basic data with possible changes from the frontend
812 $attachment['type'] = $attachment_type;
813 $attachment['title'] = $attachment_title;
814 $attachment['text'] = $attachment_text;
815 $attachment['url'] = $attachment_url;
817 if (!empty($attachment_img_src)) {
818 $attachment['images'] = [
820 'src' => $attachment_img_src,
821 'width' => $attachment_img_width,
822 'height' => $attachment_img_height
826 unset($attachment['images']);
829 return "\n" . PageInfo::getFooterFromData($attachment);
832 public function addCategories(array $post, string $category): array
834 if (!empty($post['file'])) {
835 // get the "fileas" tags for this post
836 $filedas = FileTag::fileToArray($post['file']);
839 $list_array = explode(',', trim($category));
840 $post['file'] = FileTag::arrayToFile($list_array, 'category');
842 if (!empty($filedas) && is_array($filedas)) {
843 // append the fileas stuff to the new categories list
844 $post['file'] .= FileTag::arrayToFile($filedas);
849 public function getACL(array $post, array $toplevel_item, array $request): array
851 // If this is a comment, set the permissions from the parent.
852 if ($toplevel_item) {
853 $post['allow_cid'] = $toplevel_item['allow_cid'] ?? '';
854 $post['allow_gid'] = $toplevel_item['allow_gid'] ?? '';
855 $post['deny_cid'] = $toplevel_item['deny_cid'] ?? '';
856 $post['deny_gid'] = $toplevel_item['deny_gid'] ?? '';
857 $post['private'] = $toplevel_item['private'];
861 $user = User::getById($post['uid'], ['allow_cid', 'allow_gid', 'deny_cid', 'deny_gid']);
863 throw new HTTPException\NotFoundException($this->l10n->t('Unable to fetch user.'));
866 $post['allow_cid'] = isset($request['contact_allow']) ? $this->aclFormatter->toString($request['contact_allow']) : $user['allow_cid'] ?? '';
867 $post['allow_gid'] = isset($request['group_allow']) ? $this->aclFormatter->toString($request['group_allow']) : $user['allow_gid'] ?? '';
868 $post['deny_cid'] = isset($request['contact_deny']) ? $this->aclFormatter->toString($request['contact_deny']) : $user['deny_cid'] ?? '';
869 $post['deny_gid'] = isset($request['group_deny']) ? $this->aclFormatter->toString($request['group_deny']) : $user['deny_gid'] ?? '';
871 $visibility = $request['visibility'] ?? '';
872 if ($visibility === 'public') {
873 // The ACL selector introduced in version 2019.12 sends ACL input data even when the Public visibility is selected
874 $post['allow_cid'] = $post['allow_gid'] = $post['deny_cid'] = $post['deny_gid'] = '';
875 } else if ($visibility === 'custom') {
876 // Since we know from the visibility parameter the item should be private, we have to prevent the empty ACL
877 // case that would make it public. So we always append the author's contact id to the allowed contacts.
878 // See https://github.com/friendica/friendica/issues/9672
879 $post['allow_cid'] .= $this->aclFormatter->toString(Contact::getPublicIdByUserId($post['uid']));
882 if ($post['allow_gid'] || $post['allow_cid'] || $post['deny_gid'] || $post['deny_cid']) {
883 $post['private'] = ItemModel::PRIVATE;
884 } elseif ($this->pConfig->get($post['uid'], 'system', 'unlisted')) {
885 $post['private'] = ItemModel::UNLISTED;
887 $post['private'] = ItemModel::PUBLIC;
893 public function moveAttachmentsFromBodyToAttach(array $post): array
895 if (!preg_match_all('/(\[attachment\]([0-9]+)\[\/attachment\])/', $post['body'], $match)) {
899 foreach ($match[2] as $attachment_id) {
900 $attachment = Attach::selectFirst(['id', 'uid', 'filename', 'filesize', 'filetype'], ['id' => $attachment_id, 'uid' => $post['uid']]);
901 if (empty($attachment)) {
904 if ($post['attach']) {
905 $post['attach'] .= ',';
907 $post['attach'] .= Post\Media::getAttachElement(
908 $this->baseURL . '/attach/' . $attachment['id'],
909 $attachment['filesize'],
910 $attachment['filetype'],
911 $attachment['filename'] ?? ''
915 'allow_cid' => $post['allow_cid'], 'allow_gid' => $post['allow_gid'],
916 'deny_cid' => $post['deny_cid'], 'deny_gid' => $post['deny_gid']
918 $condition = ['id' => $attachment_id];
919 Attach::update($fields, $condition);
922 $post['body'] = str_replace($match[1], '', $post['body']);
927 private function setObjectType(array $post): array
929 if (empty($post['post-type'])) {
930 $post['post-type'] = empty($post['title']) ? ItemModel::PT_NOTE : ItemModel::PT_ARTICLE;
933 // embedded bookmark or attachment in post? set bookmark flag
934 $data = BBCode::getAttachmentData($post['body']);
935 if ((preg_match_all("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism", $post['body'], $match, PREG_SET_ORDER) || !empty($data['type']))
936 && ($post['post-type'] != ItemModel::PT_PERSONAL_NOTE)
938 $post['post-type'] = ItemModel::PT_PAGE;
939 $post['object-type'] = Activity\ObjectType::BOOKMARK;
942 // Setting the object type if not defined before
943 if (empty($post['object-type'])) {
944 $post['object-type'] = ($post['gravity'] == ItemModel::GRAVITY_PARENT) ? Activity\ObjectType::NOTE : Activity\ObjectType::COMMENT;
949 public function initializePost(array $post): array
951 $post['network'] = Protocol::DFRN;
952 $post['protocol'] = Conversation::PARCEL_DIRECT;
953 $post['direction'] = Conversation::PUSH;
954 $post['received'] = DateTimeFormat::utcNow();
955 $post['origin'] = true;
956 $post['wall'] = $post['wall'] ?? true;
957 $post['guid'] = $post['guid'] ?? System::createUUID();
958 $post['verb'] = $post['verb'] ?? Activity::POST;
959 $post['uri'] = $post['uri'] ?? ItemModel::newURI($post['guid']);
960 $post['thr-parent'] = $post['thr-parent'] ?? $post['uri'];
962 if (empty($post['gravity'])) {
963 $post['gravity'] = ($post['uri'] == $post['thr-parent']) ? ItemModel::GRAVITY_PARENT : ItemModel::GRAVITY_COMMENT;
966 $owner = User::getOwnerDataById($post['uid']);
968 if (!isset($post['allow_cid']) || !isset($post['allow_gid']) || !isset($post['deny_cid']) || !isset($post['deny_gid'])) {
969 $post['allow_cid'] = $owner['allow_cid'];
970 $post['allow_gid'] = $owner['allow_gid'];
971 $post['deny_cid'] = $owner['deny_cid'];
972 $post['deny_gid'] = $owner['deny_gid'];
975 if ($post['allow_gid'] || $post['allow_cid'] || $post['deny_gid'] || $post['deny_cid']) {
976 $post['private'] = ItemModel::PRIVATE;
977 } elseif ($this->pConfig->get($post['uid'], 'system', 'unlisted')) {
978 $post['private'] = ItemModel::UNLISTED;
980 $post['private'] = ItemModel::PUBLIC;
983 if (empty($post['contact-id'])) {
984 $post['contact-id'] = $owner['id'];
987 if (empty($post['author-link']) && empty($post['author-id'])) {
988 $post['author-link'] = $owner['url'];
989 $post['author-id'] = Contact::getIdForURL($post['author-link']);
990 $post['author-name'] = $owner['name'];
991 $post['author-avatar'] = $owner['thumb'];
994 if (empty($post['owner-link']) && empty($post['owner-id'])) {
995 $post['owner-link'] = $post['author-link'];
996 $post['owner-id'] = Contact::getIdForURL($post['owner-link']);
997 $post['owner-name'] = $post['author-name'];
998 $post['owner-avatar'] = $post['author-avatar'];
1004 public function finalizePost(array $post): array
1006 if (preg_match("/\[attachment\](.*?)\[\/attachment\]/ism", $post['body'], $matches)) {
1007 $post['body'] = preg_replace("/\[attachment].*?\[\/attachment\]/ism", PageInfo::getFooterFromUrl($matches[1]), $post['body']);
1010 // Convert links with empty descriptions to links without an explicit description
1011 $post['body'] = trim(preg_replace('#\[url=([^\]]*?)\]\[/url\]#ism', '[url]$1[/url]', $post['body']));
1012 $post['body'] = $this->bbCodeVideo->transform($post['body']);
1013 $post = $this->setObjectType($post);
1015 // Personal notes must never be altered to a forum post.
1016 if ($post['post-type'] != ItemModel::PT_PERSONAL_NOTE) {
1017 // Look for any tags and linkify them
1018 $post = $this->expandTags($post);
1024 public function postProcessPost(array $post, array $recipients = [])
1026 if (!\Friendica\Content\Feature::isEnabled($post['uid'], 'explicit_mentions') && ($post['gravity'] == ItemModel::GRAVITY_COMMENT)) {
1027 Tag::createImplicitMentions($post['uri-id'], $post['thr-parent-id']);
1030 Hook::callAll('post_local_end', $post);
1032 $author = DBA::selectFirst('contact', ['thumb'], ['uid' => $post['uid'], 'self' => true]);
1034 foreach ($recipients as $recipient) {
1035 $address = trim($recipient);
1040 $this->emailer->send(new ItemCCEMail(
1046 $author['thumb'] ?? ''