3 * @copyright Copyright (C) 2010-2022, 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\Protocol\ActivityPub;
24 use Friendica\Content\Text\BBCode;
25 use Friendica\Content\Text\HTML;
26 use Friendica\Content\Text\Markdown;
27 use Friendica\Core\Logger;
28 use Friendica\Core\Protocol;
29 use Friendica\Core\System;
30 use Friendica\Database\DBA;
32 use Friendica\Model\APContact;
33 use Friendica\Model\Contact;
34 use Friendica\Model\Conversation;
35 use Friendica\Model\Event;
36 use Friendica\Model\GServer;
37 use Friendica\Model\Item;
38 use Friendica\Model\ItemURI;
39 use Friendica\Model\Mail;
40 use Friendica\Model\Tag;
41 use Friendica\Model\User;
42 use Friendica\Model\Post;
43 use Friendica\Protocol\Activity;
44 use Friendica\Protocol\ActivityPub;
45 use Friendica\Protocol\Relay;
46 use Friendica\Util\DateTimeFormat;
47 use Friendica\Util\JsonLD;
48 use Friendica\Util\Strings;
51 * ActivityPub Processor Protocol class
56 * Extracts the tag character (#, @, !) from mention links
61 protected static function normalizeMentionLinks(string $body): string
63 return preg_replace('%\[url=([^\[\]]*)]([#@!])(.*?)\[/url]%ism', '$2[url=$1]$3[/url]', $body);
67 * Convert the language array into a language JSON
69 * @param array $languages
70 * @return string language JSON
72 private static function processLanguages(array $languages)
74 $codes = array_keys($languages);
76 foreach ($codes as $code) {
84 return json_encode($lang);
87 * Replaces emojis in the body
89 * @param array $emojis
92 * @return string with replaced emojis
94 private static function replaceEmojis(int $uri_id, $body, array $emojis)
98 array_column($emojis, 'name'),
99 array_map(function ($emoji) {
100 return '[emoji=' . $emoji['href'] . ']' . $emoji['name'] . '[/emoji]';
105 // We store the emoji here to be able to avoid storing it in the media
106 foreach ($emojis as $emoji) {
107 Post\Link::getByLink($uri_id, $emoji['href']);
113 * Store attached media files in the post-media table
116 * @param array $attachment
119 private static function storeAttachmentAsMedia(int $uriid, array $attachment)
121 if (empty($attachment['url'])) {
125 $data = ['uri-id' => $uriid];
126 $data['type'] = Post\Media::UNKNOWN;
127 $data['url'] = $attachment['url'];
128 $data['mimetype'] = $attachment['mediaType'] ?? null;
129 $data['height'] = $attachment['height'] ?? null;
130 $data['width'] = $attachment['width'] ?? null;
131 $data['size'] = $attachment['size'] ?? null;
132 $data['preview'] = $attachment['image'] ?? null;
133 $data['description'] = $attachment['name'] ?? null;
135 Post\Media::insert($data);
139 * Stire attachment data
141 * @param array $activity
144 private static function storeAttachments($activity, $item)
146 if (empty($activity['attachments'])) {
150 foreach ($activity['attachments'] as $attach) {
151 self::storeAttachmentAsMedia($item['uri-id'], $attach);
158 * @param array $activity Activity array
159 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
161 public static function updateItem($activity)
163 $item = Post::selectFirst(['uri', 'uri-id', 'thr-parent', 'gravity', 'post-type'], ['uri' => $activity['id']]);
164 if (!DBA::isResult($item)) {
165 Logger::warning('No existing item, item will be created', ['uri' => $activity['id']]);
166 $item = self::createItem($activity);
167 self::postItem($activity, $item);
171 $item['changed'] = DateTimeFormat::utcNow();
172 $item['edited'] = DateTimeFormat::utc($activity['updated']);
174 $item = self::processContent($activity, $item);
176 self::storeAttachments($activity, $item);
182 Item::update($item, ['uri' => $activity['id']]);
184 if ($activity['object_type'] == 'as:Event') {
185 $posts = Post::select(['event-id', 'uid'], ["`uri` = ? AND `event-id` > ?", $activity['id'], 0]);
186 while ($post = DBA::fetch($posts)) {
187 self::updateEvent($post['event-id'], $activity);
193 * Update an existing event
195 * @param int $event_id
196 * @param array $activity
198 private static function updateEvent(int $event_id, array $activity)
200 $event = DBA::selectFirst('event', [], ['id' => $event_id]);
202 $event['edited'] = DateTimeFormat::utc($activity['updated']);
203 $event['summary'] = HTML::toBBCode($activity['name']);
204 $event['desc'] = HTML::toBBCode($activity['content']);
205 $event['start'] = $activity['start-time'];
206 $event['finish'] = $activity['end-time'];
207 $event['nofinish'] = empty($event['finish']);
208 $event['location'] = $activity['location'];
210 Logger::info('Updating event', ['uri' => $activity['id'], 'id' => $event_id]);
211 Event::store($event);
215 * Prepares data for a message
217 * @param array $activity Activity array
218 * @return array Internal item
219 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
220 * @throws \ImagickException
222 public static function createItem($activity)
225 $item['verb'] = Activity::POST;
226 $item['thr-parent'] = $activity['reply-to-id'];
228 if ($activity['reply-to-id'] == $activity['id']) {
229 $item['gravity'] = GRAVITY_PARENT;
230 $item['object-type'] = Activity\ObjectType::NOTE;
232 $item['gravity'] = GRAVITY_COMMENT;
233 $item['object-type'] = Activity\ObjectType::COMMENT;
236 if (empty($activity['directmessage']) && ($activity['id'] != $activity['reply-to-id']) && !Post::exists(['uri' => $activity['reply-to-id']])) {
237 Logger::notice('Parent not found. Try to refetch it.', ['parent' => $activity['reply-to-id']]);
238 self::fetchMissingActivity($activity['reply-to-id'], $activity);
241 $item['diaspora_signed_text'] = $activity['diaspora:comment'] ?? '';
243 /// @todo What to do with $activity['context']?
244 if (empty($activity['directmessage']) && ($item['gravity'] != GRAVITY_PARENT) && !Post::exists(['uri' => $item['thr-parent']])) {
245 Logger::info('Parent not found, message will be discarded.', ['thr-parent' => $item['thr-parent']]);
249 $item['network'] = Protocol::ACTIVITYPUB;
250 $item['author-link'] = $activity['author'];
251 $item['author-id'] = Contact::getIdForURL($activity['author']);
252 $item['owner-link'] = $activity['actor'];
253 $item['owner-id'] = Contact::getIdForURL($activity['actor']);
255 if (in_array(0, $activity['receiver']) && !empty($activity['unlisted'])) {
256 $item['private'] = Item::UNLISTED;
257 } elseif (in_array(0, $activity['receiver'])) {
258 $item['private'] = Item::PUBLIC;
260 $item['private'] = Item::PRIVATE;
263 if (!empty($activity['raw'])) {
264 $item['source'] = $activity['raw'];
265 $item['protocol'] = Conversation::PARCEL_ACTIVITYPUB;
266 $item['conversation-href'] = $activity['context'] ?? '';
267 $item['conversation-uri'] = $activity['conversation'] ?? '';
269 if (isset($activity['push'])) {
270 $item['direction'] = $activity['push'] ? Conversation::PUSH : Conversation::PULL;
274 if (!empty($activity['from-relay'])) {
275 $item['direction'] = Conversation::RELAY;
278 if ($activity['object_type'] == 'as:Article') {
279 $item['post-type'] = Item::PT_ARTICLE;
280 } elseif ($activity['object_type'] == 'as:Audio') {
281 $item['post-type'] = Item::PT_AUDIO;
282 } elseif ($activity['object_type'] == 'as:Document') {
283 $item['post-type'] = Item::PT_DOCUMENT;
284 } elseif ($activity['object_type'] == 'as:Event') {
285 $item['post-type'] = Item::PT_EVENT;
286 } elseif ($activity['object_type'] == 'as:Image') {
287 $item['post-type'] = Item::PT_IMAGE;
288 } elseif ($activity['object_type'] == 'as:Page') {
289 $item['post-type'] = Item::PT_PAGE;
290 } elseif ($activity['object_type'] == 'as:Question') {
291 $item['post-type'] = Item::PT_POLL;
292 } elseif ($activity['object_type'] == 'as:Video') {
293 $item['post-type'] = Item::PT_VIDEO;
295 $item['post-type'] = Item::PT_NOTE;
298 $item['isForum'] = false;
300 if (!empty($activity['thread-completion'])) {
301 if ($activity['thread-completion'] != $item['owner-id']) {
302 $actor = Contact::getById($activity['thread-completion'], ['url']);
303 $item['causer-link'] = $actor['url'];
304 $item['causer-id'] = $activity['thread-completion'];
305 Logger::info('Use inherited actor as causer.', ['id' => $item['owner-id'], 'activity' => $activity['thread-completion'], 'owner' => $item['owner-link'], 'actor' => $actor['url']]);
307 // Store the original actor in the "causer" fields to enable the check for ignored or blocked contacts
308 $item['causer-link'] = $item['owner-link'];
309 $item['causer-id'] = $item['owner-id'];
310 Logger::info('Use actor as causer.', ['id' => $item['owner-id'], 'actor' => $item['owner-link']]);
313 $item['owner-link'] = $item['author-link'];
314 $item['owner-id'] = $item['author-id'];
316 $actor = APContact::getByURL($item['owner-link'], false);
317 $item['isForum'] = ($actor['type'] == 'Group');
320 $item['uri'] = $activity['id'];
322 if (empty($activity['published']) || empty($activity['updated'])) {
323 DI::logger()->notice('published or updated keys are empty for activity', ['activity' => $activity, 'callstack' => System::callstack(10)]);
326 $item['created'] = DateTimeFormat::utc($activity['published'] ?? 'now');
327 $item['edited'] = DateTimeFormat::utc($activity['updated'] ?? 'now');
328 $guid = $activity['sc:identifier'] ?: self::getGUIDByURL($item['uri']);
329 $item['guid'] = $activity['diaspora:guid'] ?: $guid;
331 $item['uri-id'] = ItemURI::insert(['uri' => $item['uri'], 'guid' => $item['guid']]);
332 if (empty($item['uri-id'])) {
333 Logger::warning('Unable to get a uri-id for an item uri', ['uri' => $item['uri'], 'guid' => $item['guid']]);
337 $item = self::processContent($activity, $item);
339 Logger::info('Message was not processed');
343 $item['plink'] = $activity['alternate-url'] ?? $item['uri'];
345 self::storeAttachments($activity, $item);
347 // We received the post via AP, so we set the protocol of the server to AP
348 $contact = Contact::getById($item['author-id'], ['gsid']);
349 if (!empty($contact['gsid'])) {
350 GServer::setProtocol($contact['gsid'], Post\DeliveryData::ACTIVITYPUB);
353 if ($item['author-id'] != $item['owner-id']) {
354 $contact = Contact::getById($item['owner-id'], ['gsid']);
355 if (!empty($contact['gsid'])) {
356 GServer::setProtocol($contact['gsid'], Post\DeliveryData::ACTIVITYPUB);
366 * @param array $activity
367 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
368 * @throws \ImagickException
370 public static function deleteItem($activity)
372 $owner = Contact::getIdForURL($activity['actor']);
374 Logger::info('Deleting item', ['object' => $activity['object_id'], 'owner' => $owner]);
375 Item::markForDeletion(['uri' => $activity['object_id'], 'owner-id' => $owner]);
379 * Prepare the item array for an activity
381 * @param array $activity Activity array
382 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
383 * @throws \ImagickException
385 public static function addTag($activity)
387 if (empty($activity['object_content']) || empty($activity['object_id'])) {
391 foreach ($activity['receiver'] as $receiver) {
392 $item = Post::selectFirst(['id', 'uri-id', 'origin', 'author-link'], ['uri' => $activity['target_id'], 'uid' => $receiver]);
393 if (!DBA::isResult($item)) {
394 // We don't fetch missing content for this purpose
398 if (($item['author-link'] != $activity['actor']) && !$item['origin']) {
399 Logger::info('Not origin, not from the author, skipping update', ['id' => $item['id'], 'author' => $item['author-link'], 'actor' => $activity['actor']]);
403 Tag::store($item['uri-id'], Tag::HASHTAG, $activity['object_content'], $activity['object_id']);
404 Logger::info('Tagged item', ['id' => $item['id'], 'tag' => $activity['object_content'], 'uri' => $activity['target_id'], 'actor' => $activity['actor']]);
409 * Prepare the item array for an activity
411 * @param array $activity Activity array
412 * @param string $verb Activity verb
413 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
414 * @throws \ImagickException
416 public static function createActivity($activity, $verb)
418 $item = self::createItem($activity);
419 $item['verb'] = $verb;
420 $item['thr-parent'] = $activity['object_id'];
421 $item['gravity'] = GRAVITY_ACTIVITY;
422 unset($item['post-type']);
423 $item['object-type'] = Activity\ObjectType::NOTE;
425 $item['diaspora_signed_text'] = $activity['diaspora:like'] ?? '';
427 self::postItem($activity, $item);
433 * @param array $activity Activity array
436 * @return int event id
439 public static function createEvent($activity, $item)
441 $event['summary'] = HTML::toBBCode($activity['name']);
442 $event['desc'] = HTML::toBBCode($activity['content']);
443 $event['start'] = $activity['start-time'];
444 $event['finish'] = $activity['end-time'];
445 $event['nofinish'] = empty($event['finish']);
446 $event['location'] = $activity['location'];
447 $event['cid'] = $item['contact-id'];
448 $event['uid'] = $item['uid'];
449 $event['uri'] = $item['uri'];
450 $event['edited'] = $item['edited'];
451 $event['private'] = $item['private'];
452 $event['guid'] = $item['guid'];
453 $event['plink'] = $item['plink'];
454 $event['network'] = $item['network'];
455 $event['protocol'] = $item['protocol'];
456 $event['direction'] = $item['direction'];
457 $event['source'] = $item['source'];
459 $ev = DBA::selectFirst('event', ['id'], ['uri' => $item['uri'], 'uid' => $item['uid']]);
460 if (DBA::isResult($ev)) {
461 $event['id'] = $ev['id'];
464 $event_id = Event::store($event);
466 Logger::info('Event was stored', ['id' => $event_id]);
472 * Process the content
474 * @param array $activity Activity array
476 * @return array|bool Returns the item array or false if there was an unexpected occurrence
479 private static function processContent($activity, $item)
481 if (!empty($activity['mediatype']) && ($activity['mediatype'] == 'text/markdown')) {
482 $item['title'] = Markdown::toBBCode($activity['name']);
483 $content = Markdown::toBBCode($activity['content']);
484 } elseif (!empty($activity['mediatype']) && ($activity['mediatype'] == 'text/bbcode')) {
485 $item['title'] = $activity['name'];
486 $content = $activity['content'];
488 // By default assume "text/html"
489 $item['title'] = HTML::toBBCode($activity['name']);
490 $content = HTML::toBBCode($activity['content']);
493 if (!empty($activity['languages'])) {
494 $item['language'] = self::processLanguages($activity['languages']);
497 if (!empty($activity['emojis'])) {
498 $content = self::replaceEmojis($item['uri-id'], $content, $activity['emojis']);
501 $content = self::addMentionLinks($content, $activity['tags']);
503 if (!empty($activity['source'])) {
504 $item['body'] = $activity['source'];
505 $item['raw-body'] = $content;
506 $item['body'] = Item::improveSharedDataInBody($item);
508 if (empty($activity['directmessage']) && ($item['thr-parent'] != $item['uri']) && ($item['gravity'] == GRAVITY_COMMENT)) {
509 $item_private = !in_array(0, $activity['item_receiver']);
510 $parent = Post::selectFirst(['id', 'uri-id', 'private', 'author-link', 'alias'], ['uri' => $item['thr-parent']]);
511 if (!DBA::isResult($parent)) {
512 Logger::warning('Unknown parent item.', ['uri' => $item['thr-parent']]);
515 if ($item_private && ($parent['private'] != Item::PRIVATE)) {
516 Logger::warning('Item is private but the parent is not. Dropping.', ['item-uri' => $item['uri'], 'thr-parent' => $item['thr-parent']]);
520 $content = self::removeImplicitMentionsFromBody($content, $parent);
522 $item['content-warning'] = HTML::toBBCode($activity['summary']);
523 $item['raw-body'] = $item['body'] = $content;
526 self::storeFromBody($item);
527 self::storeTags($item['uri-id'], $activity['tags']);
529 self::storeReceivers($item['uri-id'], $activity['receiver_urls'] ?? []);
531 $item['location'] = $activity['location'];
533 if (!empty($activity['latitude']) && !empty($activity['longitude'])) {
534 $item['coord'] = $activity['latitude'] . ' ' . $activity['longitude'];
537 $item['app'] = $activity['generator'];
543 * Store hashtags and mentions
547 private static function storeFromBody(array $item)
549 // Make sure to delete all existing tags (can happen when called via the update functionality)
550 DBA::delete('post-tag', ['uri-id' => $item['uri-id']]);
552 Tag::storeFromBody($item['uri-id'], $item['body'], '@!');
556 * Generate a GUID out of an URL
558 * @param string $url message URL
559 * @return string with GUID
561 private static function getGUIDByURL(string $url)
563 $parsed = parse_url($url);
565 $host_hash = hash('crc32', $parsed['host']);
567 unset($parsed["scheme"]);
568 unset($parsed["host"]);
570 $path = implode("/", $parsed);
572 return $host_hash . '-'. hash('fnv164', $path) . '-'. hash('joaat', $path);
576 * Checks if an incoming message is wanted
578 * @param array $activity
580 * @return boolean Is the message wanted?
582 private static function isSolicitedMessage(array $activity, array $item)
584 // The checks are split to improve the support when searching why a message was accepted.
585 if (count($activity['receiver']) != 1) {
586 // The message has more than one receiver, so it is wanted.
587 Logger::debug('Message has got several receivers - accepted', ['uri-id' => $item['uri-id'], 'guid' => $item['guid'], 'url' => $item['uri']]);
591 if ($item['private'] == Item::PRIVATE) {
592 // We only look at public posts here. Private posts are expected to be intentionally posted to the single receiver.
593 Logger::debug('Message is private - accepted', ['uri-id' => $item['uri-id'], 'guid' => $item['guid'], 'url' => $item['uri']]);
597 if (!empty($activity['from-relay'])) {
598 // We check relay posts at another place. When it arrived here, the message is already checked.
599 Logger::debug('Message is a relay post that is already checked - accepted', ['uri-id' => $item['uri-id'], 'guid' => $item['guid'], 'url' => $item['uri']]);
603 if (!empty($activity['thread-completion'])) {
604 // The thread completion mode means that the post is fetched intentionally.
605 // This can have several causes, in doubt we keep the message.
606 // This can possibly be improved in the future.
607 Logger::debug('Message is in completion mode - accepted', ['uri-id' => $item['uri-id'], 'guid' => $item['guid'], 'url' => $item['uri']]);
611 if ($item['gravity'] != GRAVITY_PARENT) {
612 // We cannot reliably check at this point if a comment or activity belongs to an accepted post or needs to be fetched
613 // This can possibly be improved in the future.
614 Logger::debug('Message is no parent - accepted', ['uri-id' => $item['uri-id'], 'guid' => $item['guid'], 'url' => $item['uri']]);
618 $tags = array_column(Tag::getByURIId($item['uri-id'], [Tag::HASHTAG]), 'name');
619 return Relay::isSolicitedPost($tags, $item['body'], $item['author-id'], $item['uri'], Protocol::ACTIVITYPUB);
623 * Creates an item post
625 * @param array $activity Activity data
626 * @param array $item item array
627 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
628 * @throws \ImagickException
630 public static function postItem(array $activity, array $item)
637 ksort($activity['receiver']);
639 if (!self::isSolicitedMessage($activity, $item)) {
640 DBA::delete('item-uri', ['id' => $item['uri-id']]);
644 foreach ($activity['receiver'] as $receiver) {
645 if ($receiver == -1) {
649 $item['uid'] = $receiver;
651 $type = $activity['reception_type'][$receiver] ?? Receiver::TARGET_UNKNOWN;
653 case Receiver::TARGET_TO:
654 $item['post-reason'] = Item::PR_TO;
656 case Receiver::TARGET_CC:
657 $item['post-reason'] = Item::PR_CC;
659 case Receiver::TARGET_BTO:
660 $item['post-reason'] = Item::PR_BTO;
662 case Receiver::TARGET_BCC:
663 $item['post-reason'] = Item::PR_BCC;
665 case Receiver::TARGET_FOLLOWER:
666 $item['post-reason'] = Item::PR_FOLLOWER;
668 case Receiver::TARGET_ANSWER:
669 $item['post-reason'] = Item::PR_COMMENT;
671 case Receiver::TARGET_GLOBAL:
672 $item['post-reason'] = Item::PR_GLOBAL;
675 $item['post-reason'] = Item::PR_NONE;
678 if (!empty($activity['from-relay'])) {
679 $item['post-reason'] = Item::PR_RELAY;
680 } elseif (!empty($activity['thread-completion'])) {
681 $item['post-reason'] = Item::PR_FETCHED;
684 if ($item['isForum'] ?? false) {
685 $item['contact-id'] = Contact::getIdForURL($activity['actor'], $receiver);
687 $item['contact-id'] = Contact::getIdForURL($activity['author'], $receiver);
690 if (($receiver != 0) && empty($item['contact-id'])) {
691 $item['contact-id'] = Contact::getIdForURL($activity['author']);
694 if (!empty($activity['directmessage'])) {
695 self::postMail($activity, $item);
699 if (!($item['isForum'] ?? false) && ($receiver != 0) && ($item['gravity'] == GRAVITY_PARENT) && !Contact::isSharingByURL($activity['author'], $receiver)) {
700 if ($item['post-reason'] == Item::PR_BCC) {
701 Logger::info('Top level post via BCC from a non sharer, ignoring', ['uid' => $receiver, 'contact' => $item['contact-id']]);
706 !empty($activity['thread-children-type'])
707 && in_array($activity['thread-children-type'], Receiver::ACTIVITY_TYPES)
708 && DI::pConfig()->get($receiver, 'system', 'accept_only_sharer') != Item::COMPLETION_LIKE
710 Logger::info('Top level post from thread completion from a non sharer had been initiated via an activity, ignoring',
711 ['type' => $activity['thread-children-type'], 'user' => $item['uid'], 'causer' => $item['causer-link'], 'author' => $activity['author'], 'url' => $item['uri']]);
718 if ($receiver != 0) {
719 $user = User::getById($receiver, ['account-type']);
720 if (!empty($user['account-type'])) {
721 $is_forum = ($user['account-type'] == User::ACCOUNT_TYPE_COMMUNITY);
725 if (!$is_forum && DI::pConfig()->get($receiver, 'system', 'accept_only_sharer') == Item::COMPLETION_NONE && ($receiver != 0) && ($item['gravity'] == GRAVITY_PARENT)) {
726 $skip = !Contact::isSharingByURL($activity['author'], $receiver);
728 if ($skip && (($activity['type'] == 'as:Announce') || ($item['isForum'] ?? false))) {
729 $skip = !Contact::isSharingByURL($activity['actor'], $receiver);
733 Logger::info('Skipping post', ['uid' => $receiver, 'url' => $item['uri']]);
737 Logger::info('Accepting post', ['uid' => $receiver, 'url' => $item['uri']]);
740 if (($item['gravity'] != GRAVITY_ACTIVITY) && ($activity['object_type'] == 'as:Event')) {
741 $event_id = self::createEvent($activity, $item);
743 $item = Event::getItemArrayForImportedId($event_id, $item);
746 $item_id = Item::insert($item);
748 Logger::info('Item insertion successful', ['user' => $item['uid'], 'item_id' => $item_id]);
750 Logger::notice('Item insertion aborted', ['user' => $item['uid']]);
753 if ($item['uid'] == 0) {
758 // Store send a follow request for every reshare - but only when the item had been stored
759 if ($stored && ($item['private'] != Item::PRIVATE) && ($item['gravity'] == GRAVITY_PARENT) && ($item['author-link'] != $item['owner-link'])) {
760 $author = APContact::getByURL($item['owner-link'], false);
761 // We send automatic follow requests for reshared messages. (We don't need though for forum posts)
762 if ($author['type'] != 'Group') {
763 Logger::info('Send follow request', ['uri' => $item['uri'], 'stored' => $stored, 'to' => $item['author-link']]);
764 ActivityPub\Transmitter::sendFollowObject($item['uri'], $item['author-link']);
770 * Store tags and mentions into the tag table
772 * @param integer $uriid
775 private static function storeTags(int $uriid, array $tags = null)
777 foreach ($tags as $tag) {
778 if (empty($tag['name']) || empty($tag['type']) || !in_array($tag['type'], ['Mention', 'Hashtag'])) {
782 $hash = substr($tag['name'], 0, 1);
784 if ($tag['type'] == 'Mention') {
785 if (in_array($hash, [Tag::TAG_CHARACTER[Tag::MENTION],
786 Tag::TAG_CHARACTER[Tag::EXCLUSIVE_MENTION],
787 Tag::TAG_CHARACTER[Tag::IMPLICIT_MENTION]])) {
788 $tag['name'] = substr($tag['name'], 1);
790 $type = Tag::IMPLICIT_MENTION;
792 if (!empty($tag['href'])) {
793 $apcontact = APContact::getByURL($tag['href']);
794 if (!empty($apcontact['name']) || !empty($apcontact['nick'])) {
795 $tag['name'] = $apcontact['name'] ?: $apcontact['nick'];
798 } elseif ($tag['type'] == 'Hashtag') {
799 if ($hash == Tag::TAG_CHARACTER[Tag::HASHTAG]) {
800 $tag['name'] = substr($tag['name'], 1);
802 $type = Tag::HASHTAG;
805 if (empty($tag['name'])) {
809 Tag::store($uriid, $type, $tag['name'], $tag['href']);
813 public static function storeReceivers(int $uriid, array $receivers)
815 foreach (['as:to' => Tag::TO, 'as:cc' => Tag::CC, 'as:bto' => Tag::BTO, 'as:bcc' => Tag::BCC] as $element => $type) {
816 if (!empty($receivers[$element])) {
817 foreach ($receivers[$element] as $receiver) {
818 if ($receiver == ActivityPub::PUBLIC_COLLECTION) {
819 $name = Receiver::PUBLIC_COLLECTION;
821 $name = trim(parse_url($receiver, PHP_URL_PATH), '/');
823 Tag::store($uriid, $type, $name, $receiver);
830 * Creates an mail post
832 * @param array $activity Activity data
833 * @param array $item item array
834 * @return int|bool New mail table row id or false on error
835 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
837 private static function postMail($activity, $item)
839 if (($item['gravity'] != GRAVITY_PARENT) && !DBA::exists('mail', ['uri' => $item['thr-parent'], 'uid' => $item['uid']])) {
840 Logger::info('Parent not found, mail will be discarded.', ['uid' => $item['uid'], 'uri' => $item['thr-parent']]);
844 Logger::info('Direct Message', $item);
847 $msg['uid'] = $item['uid'];
849 $msg['contact-id'] = $item['contact-id'];
851 $contact = Contact::getById($item['contact-id'], ['name', 'url', 'photo']);
852 $msg['from-name'] = $contact['name'];
853 $msg['from-url'] = $contact['url'];
854 $msg['from-photo'] = $contact['photo'];
856 $msg['uri'] = $item['uri'];
857 $msg['created'] = $item['created'];
859 $parent = DBA::selectFirst('mail', ['parent-uri', 'title'], ['uri' => $item['thr-parent']]);
860 if (DBA::isResult($parent)) {
861 $msg['parent-uri'] = $parent['parent-uri'];
862 $msg['title'] = $parent['title'];
864 $msg['parent-uri'] = $item['thr-parent'];
866 if (!empty($item['title'])) {
867 $msg['title'] = $item['title'];
868 } elseif (!empty($item['content-warning'])) {
869 $msg['title'] = $item['content-warning'];
871 // Trying to generate a title out of the body
872 $title = $item['body'];
874 while (preg_match('#^(@\[url=([^\]]+)].*?\[\/url]\s)(.*)#is', $title, $matches)) {
875 $title = $matches[3];
878 $title = trim(BBCode::toPlaintext($title));
880 if (strlen($title) > 20) {
881 $title = substr($title, 0, 20) . '...';
884 $msg['title'] = $title;
887 $msg['body'] = $item['body'];
889 return Mail::insert($msg);
893 * Fetches missing posts
895 * @param string $url message URL
896 * @param array $child activity array with the child of this message
897 * @param string $relay_actor Relay actor
898 * @return string fetched message URL
899 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
901 public static function fetchMissingActivity(string $url, array $child = [], string $relay_actor = '')
903 if (!empty($child['receiver'])) {
904 $uid = ActivityPub\Receiver::getFirstUserFromReceivers($child['receiver']);
909 $object = ActivityPub::fetchContent($url, $uid);
910 if (empty($object)) {
911 Logger::notice('Activity was not fetchable, aborting.', ['url' => $url]);
915 if (empty($object['id'])) {
916 Logger::notice('Activity has got not id, aborting. ', ['url' => $url, 'object' => $object]);
920 if (!empty($object['actor'])) {
921 $object_actor = $object['actor'];
922 } elseif (!empty($object['attributedTo'])) {
923 $object_actor = $object['attributedTo'];
924 if (is_array($object_actor)) {
925 $compacted = JsonLD::compact($object);
926 $object_actor = JsonLD::fetchElement($compacted, 'as:attributedTo', '@id');
933 $signer = [$object_actor];
935 if (!empty($child['author'])) {
936 $actor = $child['author'];
939 $actor = $object_actor;
942 if (!empty($object['published'])) {
943 $published = $object['published'];
944 } elseif (!empty($child['published'])) {
945 $published = $child['published'];
947 $published = DateTimeFormat::utcNow();
951 $activity['@context'] = $object['@context'] ?? ActivityPub::CONTEXT;
952 unset($object['@context']);
953 $activity['id'] = $object['id'];
954 $activity['to'] = $object['to'] ?? [];
955 $activity['cc'] = $object['cc'] ?? [];
956 $activity['actor'] = $actor;
957 $activity['object'] = $object;
958 $activity['published'] = $published;
959 $activity['type'] = 'Create';
961 $ldactivity = JsonLD::compact($activity);
963 if (!empty($relay_actor)) {
964 $ldactivity['thread-completion'] = $ldactivity['from-relay'] = Contact::getIdForURL($relay_actor);
965 } elseif (!empty($child['thread-completion'])) {
966 $ldactivity['thread-completion'] = $child['thread-completion'];
968 $ldactivity['thread-completion'] = Contact::getIdForURL($actor);
971 if (!empty($child['type'])) {
972 $ldactivity['thread-children-type'] = $child['type'];
975 if (!empty($relay_actor) && !self::acceptIncomingMessage($ldactivity, $object['id'])) {
979 ActivityPub\Receiver::processActivity($ldactivity, json_encode($activity), $uid, true, false, $signer);
981 Logger::notice('Activity had been fetched and processed.', ['url' => $url, 'object' => $activity['id']]);
983 return $activity['id'];
987 * Test if incoming relay messages should be accepted
989 * @param array $activity activity array
990 * @param string $id object ID
991 * @return boolean true if message is accepted
993 private static function acceptIncomingMessage(array $activity, string $id)
995 if (empty($activity['as:object'])) {
996 Logger::info('No object field in activity - accepted', ['id' => $id]);
1000 $replyto = JsonLD::fetchElement($activity['as:object'], 'as:inReplyTo', '@id');
1001 $uriid = ItemURI::getIdByURI($replyto);
1002 if (Post::exists(['uri-id' => $uriid])) {
1003 Logger::info('Post is a reply to an existing post - accepted', ['id' => $id, 'uri-id' => $uriid, 'replyto' => $replyto]);
1007 $attributed_to = JsonLD::fetchElement($activity['as:object'], 'as:attributedTo', '@id');
1008 $authorid = Contact::getIdForURL($attributed_to);
1010 $body = HTML::toBBCode(JsonLD::fetchElement($activity['as:object'], 'as:content', '@value'));
1013 $tags = Receiver::processTags(JsonLD::fetchElementArray($activity['as:object'], 'as:tag') ?? []);
1014 if (!empty($tags)) {
1015 foreach ($tags as $tag) {
1016 if ($tag['type'] != 'Hashtag') {
1019 $messageTags[] = ltrim(mb_strtolower($tag['name']), '#');
1023 return Relay::isSolicitedPost($messageTags, $body, $authorid, $id, Protocol::ACTIVITYPUB);
1027 * perform a "follow" request
1029 * @param array $activity
1030 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1031 * @throws \ImagickException
1033 public static function followUser($activity)
1035 $uid = User::getIdForURL($activity['object_id']);
1040 $owner = User::getOwnerDataById($uid);
1041 if (empty($owner)) {
1045 $cid = Contact::getIdForURL($activity['actor'], $uid);
1047 self::switchContact($cid);
1048 Contact::update(['hub-verify' => $activity['id'], 'protocol' => Protocol::ACTIVITYPUB], ['id' => $cid]);
1051 $item = ['author-id' => Contact::getIdForURL($activity['actor']),
1052 'author-link' => $activity['actor']];
1054 // Ensure that the contact has got the right network type
1055 self::switchContact($item['author-id']);
1057 $result = Contact::addRelationship($owner, [], $item, false, $activity['content'] ?? '');
1058 if ($result === true) {
1059 ActivityPub\Transmitter::sendContactAccept($item['author-link'], $activity['id'], $owner['uid']);
1062 $cid = Contact::getIdForURL($activity['actor'], $uid);
1067 if (empty($contact)) {
1068 Contact::update(['hub-verify' => $activity['id'], 'protocol' => Protocol::ACTIVITYPUB], ['id' => $cid]);
1071 Logger::notice('Follow user ' . $uid . ' from contact ' . $cid . ' with id ' . $activity['id']);
1075 * Update the given profile
1077 * @param array $activity
1078 * @throws \Exception
1080 public static function updatePerson($activity)
1082 if (empty($activity['object_id'])) {
1086 Logger::info('Updating profile', ['object' => $activity['object_id']]);
1087 Contact::updateFromProbeByURL($activity['object_id']);
1091 * Delete the given profile
1093 * @param array $activity
1094 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1096 public static function deletePerson($activity)
1098 if (empty($activity['object_id']) || empty($activity['actor'])) {
1099 Logger::info('Empty object id or actor.');
1103 if ($activity['object_id'] != $activity['actor']) {
1104 Logger::info('Object id does not match actor.');
1108 $contacts = DBA::select('contact', ['id'], ['nurl' => Strings::normaliseLink($activity['object_id'])]);
1109 while ($contact = DBA::fetch($contacts)) {
1110 Contact::remove($contact['id']);
1112 DBA::close($contacts);
1114 Logger::info('Deleted contact', ['object' => $activity['object_id']]);
1118 * Accept a follow request
1120 * @param array $activity
1121 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1122 * @throws \ImagickException
1124 public static function acceptFollowUser($activity)
1126 $uid = User::getIdForURL($activity['object_actor']);
1131 $cid = Contact::getIdForURL($activity['actor'], $uid);
1133 Logger::info('No contact found', ['actor' => $activity['actor']]);
1137 self::switchContact($cid);
1139 $fields = ['pending' => false];
1141 $contact = DBA::selectFirst('contact', ['rel'], ['id' => $cid]);
1142 if ($contact['rel'] == Contact::FOLLOWER) {
1143 $fields['rel'] = Contact::FRIEND;
1146 $condition = ['id' => $cid];
1147 Contact::update($fields, $condition);
1148 Logger::info('Accept contact request', ['contact' => $cid, 'user' => $uid]);
1152 * Reject a follow request
1154 * @param array $activity
1155 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1156 * @throws \ImagickException
1158 public static function rejectFollowUser($activity)
1160 $uid = User::getIdForURL($activity['object_actor']);
1165 $cid = Contact::getIdForURL($activity['actor'], $uid);
1167 Logger::info('No contact found', ['actor' => $activity['actor']]);
1171 self::switchContact($cid);
1173 $contact = Contact::getById($cid, ['rel']);
1174 if ($contact['rel'] == Contact::SHARING) {
1175 Contact::remove($cid);
1176 Logger::info('Rejected contact request - contact removed', ['contact' => $cid, 'user' => $uid]);
1177 } elseif ($contact['rel'] == Contact::FRIEND) {
1178 Contact::update(['rel' => Contact::FOLLOWER], ['id' => $cid]);
1180 Logger::info('Rejected contact request', ['contact' => $cid, 'user' => $uid]);
1185 * Undo activity like "like" or "dislike"
1187 * @param array $activity
1188 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1189 * @throws \ImagickException
1191 public static function undoActivity($activity)
1193 if (empty($activity['object_id'])) {
1197 if (empty($activity['object_actor'])) {
1201 $author_id = Contact::getIdForURL($activity['object_actor']);
1202 if (empty($author_id)) {
1206 Item::markForDeletion(['uri' => $activity['object_id'], 'author-id' => $author_id, 'gravity' => GRAVITY_ACTIVITY]);
1210 * Activity to remove a follower
1212 * @param array $activity
1213 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1214 * @throws \ImagickException
1216 public static function undoFollowUser($activity)
1218 $uid = User::getIdForURL($activity['object_object']);
1223 $owner = User::getOwnerDataById($uid);
1224 if (empty($owner)) {
1228 $cid = Contact::getIdForURL($activity['actor'], $uid);
1230 Logger::info('No contact found', ['actor' => $activity['actor']]);
1234 self::switchContact($cid);
1236 $contact = DBA::selectFirst('contact', [], ['id' => $cid]);
1237 if (!DBA::isResult($contact)) {
1241 Contact::removeFollower($contact);
1242 Logger::info('Undo following request', ['contact' => $cid, 'user' => $uid]);
1246 * Switches a contact to AP if needed
1248 * @param integer $cid Contact ID
1249 * @throws \Exception
1251 private static function switchContact($cid)
1253 $contact = DBA::selectFirst('contact', ['network', 'url'], ['id' => $cid]);
1254 if (!DBA::isResult($contact) || in_array($contact['network'], [Protocol::ACTIVITYPUB, Protocol::DFRN]) || Contact::isLocal($contact['url'])) {
1258 Logger::info('Change existing contact', ['cid' => $cid, 'previous' => $contact['network']]);
1259 Contact::updateFromProbe($cid);
1263 * Collects implicit mentions like:
1264 * - the author of the parent item
1265 * - all the mentioned conversants in the parent item
1267 * @param array $parent Item array with at least ['id', 'author-link', 'alias']
1269 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1271 private static function getImplicitMentionList(array $parent)
1273 $parent_terms = Tag::getByURIId($parent['uri-id'], [Tag::MENTION, Tag::IMPLICIT_MENTION, Tag::EXCLUSIVE_MENTION]);
1275 $parent_author = Contact::getByURL($parent['author-link'], false, ['url', 'nurl', 'alias']);
1277 $implicit_mentions = [];
1278 if (empty($parent_author['url'])) {
1279 Logger::notice('Author public contact unknown.', ['author-link' => $parent['author-link'], 'parent-id' => $parent['id']]);
1281 $implicit_mentions[] = $parent_author['url'];
1282 $implicit_mentions[] = $parent_author['nurl'];
1283 $implicit_mentions[] = $parent_author['alias'];
1286 if (!empty($parent['alias'])) {
1287 $implicit_mentions[] = $parent['alias'];
1290 foreach ($parent_terms as $term) {
1291 $contact = Contact::getByURL($term['url'], false, ['url', 'nurl', 'alias']);
1292 if (!empty($contact['url'])) {
1293 $implicit_mentions[] = $contact['url'];
1294 $implicit_mentions[] = $contact['nurl'];
1295 $implicit_mentions[] = $contact['alias'];
1299 return $implicit_mentions;
1303 * Strips from the body prepended implicit mentions
1305 * @param string $body
1306 * @param array $parent
1309 private static function removeImplicitMentionsFromBody(string $body, array $parent)
1311 if (DI::config()->get('system', 'disable_implicit_mentions')) {
1315 $potential_mentions = self::getImplicitMentionList($parent);
1317 $kept_mentions = [];
1319 // Extract one prepended mention at a time from the body
1320 while(preg_match('#^(@\[url=([^\]]+)].*?\[\/url]\s)(.*)#is', $body, $matches)) {
1321 if (!in_array($matches[2], $potential_mentions)) {
1322 $kept_mentions[] = $matches[1];
1325 $body = $matches[3];
1328 // Re-appending the kept mentions to the body after extraction
1329 $kept_mentions[] = $body;
1331 return implode('', $kept_mentions);
1335 * Adds links to string mentions
1337 * @param string $body
1338 * @param array $tags
1341 protected static function addMentionLinks(string $body, array $tags): string
1343 // This prevents links to be added again to Pleroma-style mention links
1344 $body = self::normalizeMentionLinks($body);
1346 $body = BBCode::performWithEscapedTags($body, ['url'], function ($body) use ($tags) {
1347 foreach ($tags as $tag) {
1348 if (empty($tag['name']) || empty($tag['type']) || empty($tag['href']) || !in_array($tag['type'], ['Mention', 'Hashtag'])) {
1352 $hash = substr($tag['name'], 0, 1);
1353 $name = substr($tag['name'], 1);
1354 if (!in_array($hash, Tag::TAG_CHARACTER)) {
1356 $name = $tag['name'];
1359 $body = str_replace($tag['name'], $hash . '[url=' . $tag['href'] . ']' . $name . '[/url]', $body);