]> git.mxchange.org Git - friendica.git/blob - src/Protocol/ActivityPub/Transmitter.php
Improve emoji federation and mastodon api compliance
[friendica.git] / src / Protocol / ActivityPub / Transmitter.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\Protocol\ActivityPub;
23
24 use Friendica\App;
25 use Friendica\Content\Feature;
26 use Friendica\Content\Smilies;
27 use Friendica\Content\Text\BBCode;
28 use Friendica\Core\Cache\Enum\Duration;
29 use Friendica\Core\Logger;
30 use Friendica\Core\Protocol;
31 use Friendica\Core\System;
32 use Friendica\Database\DBA;
33 use Friendica\DI;
34 use Friendica\Model\APContact;
35 use Friendica\Model\Contact;
36 use Friendica\Model\GServer;
37 use Friendica\Model\Item;
38 use Friendica\Model\Photo;
39 use Friendica\Model\Post;
40 use Friendica\Model\Tag;
41 use Friendica\Model\User;
42 use Friendica\Network\HTTPException;
43 use Friendica\Protocol\Activity;
44 use Friendica\Protocol\ActivityPub;
45 use Friendica\Protocol\Relay;
46 use Friendica\Util\DateTimeFormat;
47 use Friendica\Util\HTTPSignature;
48 use Friendica\Util\LDSignature;
49 use Friendica\Util\Map;
50 use Friendica\Util\Network;
51 use Friendica\Util\Strings;
52 use Friendica\Util\XML;
53
54 /**
55  * ActivityPub Transmitter Protocol class
56  *
57  * To-Do:
58  * @todo Undo Announce
59  */
60 class Transmitter
61 {
62         const CACHEKEY_FEATURED = 'transmitter:getFeatured:';
63         const CACHEKEY_CONTACTS = 'transmitter:getContacts:';
64
65         /**
66          * Add relay servers to the list of inboxes
67          *
68          * @param array $inboxes
69          * @return array inboxes with added relay servers
70          */
71         public static function addRelayServerInboxes(array $inboxes = []): array
72         {
73                 foreach (Relay::getList(['inbox']) as $contact) {
74                         $inboxes[$contact['inbox']] = $contact['inbox'];
75                 }
76
77                 return $inboxes;
78         }
79
80         /**
81          * Add relay servers to the list of inboxes
82          *
83          * @param array $inboxes
84          * @return array inboxes with added relay servers
85          */
86         public static function addRelayServerInboxesForItem(int $item_id, array $inboxes = []): array
87         {
88                 $item = Post::selectFirst(['uid'], ['id' => $item_id]);
89                 if (empty($item)) {
90                         return $inboxes;
91                 }
92
93                 $relays = Relay::getDirectRelayList($item_id);
94                 if (empty($relays)) {
95                         return $inboxes;
96                 }
97
98                 foreach ($relays as $relay) {
99                         $contact = Contact::getByURLForUser($relay['url'], $item['uid'], false, ['id']);
100                         $inboxes[$relay['batch']][] = $contact['id'] ?? 0;
101                 }
102                 return $inboxes;
103         }
104
105         /**
106          * Subscribe to a relay and updates contact on success
107          *
108          * @param string $url Subscribe actor url
109          * @return bool success
110          */
111         public static function sendRelayFollow(string $url): bool
112         {
113                 $contact = Contact::getByURL($url);
114                 if (empty($contact)) {
115                         return false;
116                 }
117
118                 $activity_id = self::activityIDFromContact($contact['id']);
119                 $success = self::sendActivity('Follow', $url, 0, $activity_id);
120                 if ($success) {
121                         Contact::update(['rel' => Contact::FRIEND], ['id' => $contact['id']]);
122                 }
123
124                 return $success;
125         }
126
127         /**
128          * Unsubscribe from a relay and updates contact on success or forced
129          *
130          * @param string $url   Subscribe actor url
131          * @param bool   $force Set the relay status as non follower even if unsubscribe hadn't worked
132          * @return bool success
133          */
134         public static function sendRelayUndoFollow(string $url, bool $force = false): bool
135         {
136                 $contact = Contact::getByURL($url);
137                 if (empty($contact)) {
138                         return false;
139                 }
140
141                 $success = self::sendContactUndo($url, $contact['id'], User::getSystemAccount());
142
143                 if ($success || $force) {
144                         Contact::update(['rel' => Contact::NOTHING], ['id' => $contact['id']]);
145                 }
146
147                 return $success;
148         }
149
150         /**
151          * Collects a list of contacts of the given owner
152          *
153          * @param array   $owner     Owner array
154          * @param array   $rel       The relevant value(s) contact.rel should match
155          * @param string  $module    The name of the relevant AP endpoint module (followers|following)
156          * @param integer $page      Page number
157          * @param string  $requester URL of the requester
158          * @param boolean $nocache   Wether to bypass caching
159          * @return array of owners
160          * @throws \Exception
161          */
162         public static function getContacts(array $owner, array $rel, string $module, int $page = null, string $requester = null, bool $nocache = false): array
163         {
164                 if (empty($page)) {
165                         $cachekey = self::CACHEKEY_CONTACTS . $module . ':'. $owner['uid'];
166                         $result = DI::cache()->get($cachekey);
167                         if (!$nocache && !is_null($result)) {
168                                 return $result;
169                         }
170                 }
171
172                 $parameters = [
173                         'rel' => $rel,
174                         'uid' => $owner['uid'],
175                         'self' => false,
176                         'deleted' => false,
177                         'hidden' => false,
178                         'archive' => false,
179                         'pending' => false,
180                         'blocked' => false,
181                 ];
182
183                 $condition = DBA::mergeConditions($parameters, ["`url` IN (SELECT `url` FROM `apcontact`)"]);
184
185                 $total = DBA::count('contact', $condition);
186
187                 $modulePath = '/' . $module . '/';
188
189                 $data = ['@context' => ActivityPub::CONTEXT];
190                 $data['id'] = DI::baseUrl() . $modulePath . $owner['nickname'];
191                 $data['type'] = 'OrderedCollection';
192                 $data['totalItems'] = $total;
193
194                 if (!empty($page)) {
195                         $data['id'] .= '?' . http_build_query(['page' => $page]);
196                 }
197
198                 // When we hide our friends we will only show the pure number but don't allow more.
199                 $show_contacts = ActivityPub::isAcceptedRequester($owner['uid']) && empty($owner['hide-friends']);
200
201                 // Allow fetching the contact list when the requester is part of the list.
202                 if (($owner['page-flags'] == User::PAGE_FLAGS_PRVGROUP) && !empty($requester)) {
203                         $show_contacts = DBA::exists('contact', ['nurl' => Strings::normaliseLink($requester), 'uid' => $owner['uid'], 'blocked' => false]);
204                 }
205
206                 if (!$show_contacts) {
207                         if (!empty($cachekey)) {
208                                 DI::cache()->set($cachekey, $data, Duration::DAY);
209                         }
210
211                         return $data;
212                 }
213
214                 if (empty($page)) {
215                         $data['first'] = DI::baseUrl() . $modulePath . $owner['nickname'] . '?page=1';
216                 } else {
217                         $data['type'] = 'OrderedCollectionPage';
218                         $list = [];
219
220                         $contacts = DBA::select('contact', ['url'], $condition, ['limit' => [($page - 1) * 100, 100]]);
221                         while ($contact = DBA::fetch($contacts)) {
222                                 $list[] = $contact['url'];
223                         }
224                         DBA::close($contacts);
225
226                         if (count($list) == 100) {
227                                 $data['next'] = DI::baseUrl() . $modulePath . $owner['nickname'] . '?page=' . ($page + 1);
228                         }
229
230                         $data['partOf'] = DI::baseUrl() . $modulePath . $owner['nickname'];
231
232                         $data['orderedItems'] = $list;
233                 }
234
235                 if (!empty($cachekey)) {
236                         DI::cache()->set($cachekey, $data, Duration::DAY);
237                 }
238
239                 return $data;
240         }
241
242         /**
243          * Public posts for the given owner
244          *
245          * @param array   $owner   Owner array
246          * @param integer $page    Page number
247          * @param boolean $nocache Wether to bypass caching
248          *
249          * @return array of posts
250          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
251          * @throws \ImagickException
252          */
253         public static function getFeatured(array $owner, int $page = null, bool $nocache = false): array
254         {
255                 if (empty($page)) {
256                         $cachekey = self::CACHEKEY_FEATURED . $owner['uid'];
257                         $result = DI::cache()->get($cachekey);
258                         if (!$nocache && !is_null($result)) {
259                                 return $result;
260                         }
261                 }
262
263                 $owner_cid = Contact::getIdForURL($owner['url'], 0, false);
264
265                 $condition = ["`uri-id` IN (SELECT `uri-id` FROM `collection-view` WHERE `cid` = ? AND `type` = ?)",
266                         $owner_cid, Post\Collection::FEATURED];
267
268                 $condition = DBA::mergeConditions($condition, [
269                         'uid'           => $owner['uid'],
270                         'author-id'      => $owner_cid,
271                         'private'        => [Item::PUBLIC, Item::UNLISTED],
272                         'gravity'        => [Item::GRAVITY_PARENT, Item::GRAVITY_COMMENT],
273                         'network'        => Protocol::FEDERATED,
274                         'parent-network' => Protocol::FEDERATED,
275                         'origin'         => true,
276                         'deleted'        => false,
277                         'visible'        => true
278                 ]);
279
280                 $count = Post::count($condition);
281
282                 $data = ['@context' => ActivityPub::CONTEXT];
283                 $data['id'] = DI::baseUrl() . '/featured/' . $owner['nickname'];
284                 $data['type'] = 'OrderedCollection';
285                 $data['totalItems'] = $count;
286
287                 if (!empty($page)) {
288                         $data['id'] .= '?' . http_build_query(['page' => $page]);
289                 }
290
291                 if (empty($page)) {
292                         $items = Post::select(['id'], $condition, ['limit' => 20, 'order' => ['created' => true]]);
293                 } else {
294                         $data['type'] = 'OrderedCollectionPage';
295                         $items = Post::select(['id'], $condition, ['limit' => [($page - 1) * 20, 20], 'order' => ['created' => true]]);
296                 }
297                 $list = [];
298
299                 while ($item = Post::fetch($items)) {
300                         $activity = self::createActivityFromItem($item['id'], true);
301                         if (!empty($activity)) {
302                                 $list[] = $activity;
303                         }
304                 }
305                 DBA::close($items);
306
307                 if (count($list) == 20) {
308                         $data['next'] = DI::baseUrl() . '/featured/' . $owner['nickname'] . '?page=' . ($page + 1);
309                 }
310
311                 if (!empty($page)) {
312                         $data['partOf'] = DI::baseUrl() . '/featured/' . $owner['nickname'];
313                 }
314
315                 $data['orderedItems'] = $list;
316
317                 if (!empty($cachekey)) {
318                         DI::cache()->set($cachekey, $data, Duration::DAY);
319                 }
320
321                 return $data;
322         }
323
324         /**
325          * Return the service array containing information the used software and it's url
326          *
327          * @return array with service data
328          */
329         public static function getService(): array
330         {
331                 return [
332                         'type' => 'Service',
333                         'name' =>  App::PLATFORM . " '" . App::CODENAME . "' " . App::VERSION . '-' . DB_UPDATE_VERSION,
334                         'url' => (string)DI::baseUrl()
335                 ];
336         }
337
338         /**
339          * Return the ActivityPub profile of the given user
340          *
341          * @param int  $uid  User ID
342          * @param bool $full If not full, only the basic information is returned
343          * @return array with profile data
344          * @throws HTTPException\NotFoundException
345          * @throws HTTPException\InternalServerErrorException
346          */
347         public static function getProfile(int $uid, bool $full = true): array
348         {
349                 $owner = User::getOwnerDataById($uid);
350                 if (!isset($owner['id'])) {
351                         DI::logger()->error('Unable to find owner data for uid', ['uid' => $uid]);
352                         throw new HTTPException\NotFoundException('User not found.');
353                 }
354
355                 $data = ['@context' => ActivityPub::CONTEXT];
356                 $data['id'] = $owner['url'];
357
358                 if (!empty($owner['guid'])) {
359                         $data['diaspora:guid'] = $owner['guid'];
360                 }
361
362                 $data['type'] = ActivityPub::ACCOUNT_TYPES[$owner['account-type']];
363
364                 if ($uid != 0) {
365                         $data['following'] = DI::baseUrl() . '/following/' . $owner['nick'];
366                         $data['followers'] = DI::baseUrl() . '/followers/' . $owner['nick'];
367                         $data['inbox']     = DI::baseUrl() . '/inbox/' . $owner['nick'];
368                         $data['outbox']    = DI::baseUrl() . '/outbox/' . $owner['nick'];
369                         $data['featured']  = DI::baseUrl() . '/featured/' . $owner['nick'];
370                 } else {
371                         $data['inbox'] = DI::baseUrl() . '/friendica/inbox';
372                 }
373
374                 $data['preferredUsername'] = $owner['nick'];
375                 $data['name'] = $owner['name'];
376
377                 if (!$full && !empty($owner['country-name'] . $owner['region'] . $owner['locality'])) {
378                         $data['vcard:hasAddress'] = ['@type' => 'vcard:Home', 'vcard:country-name' => $owner['country-name'],
379                                 'vcard:region' => $owner['region'], 'vcard:locality' => $owner['locality']];
380                 }
381
382                 if ($full && !empty($owner['about'])) {
383                         $data['summary'] = BBCode::convertForUriId($owner['uri-id'] ?? 0, $owner['about'], BBCode::EXTERNAL);
384                 }
385
386                 if ($full && (!empty($owner['xmpp']) || !empty($owner['matrix']))) {
387                         $data['vcard:hasInstantMessage'] = [];
388
389                         if (!empty($owner['xmpp'])) {
390                                 $data['vcard:hasInstantMessage'][] = 'xmpp:' . $owner['xmpp'];
391                         }
392                         if (!empty($owner['matrix'])) {
393                                 $data['vcard:hasInstantMessage'][] = 'matrix:' . $owner['matrix'];
394                         }
395                 }
396
397                 $data['url'] = $owner['url'];
398                 $data['manuallyApprovesFollowers'] = in_array($owner['page-flags'], [User::PAGE_FLAGS_NORMAL, User::PAGE_FLAGS_PRVGROUP]);
399                 $data['discoverable'] = (bool)$owner['net-publish'];
400                 $data['publicKey'] = ['id' => $owner['url'] . '#main-key',
401                         'owner' => $owner['url'],
402                         'publicKeyPem' => $owner['pubkey']];
403                 $data['endpoints'] = ['sharedInbox' => DI::baseUrl() . '/inbox'];
404                 if ($full && $uid != 0) {
405                         $data['icon'] = ['type' => 'Image', 'url' => User::getAvatarUrl($owner)];
406
407                         $resourceid = Photo::ridFromURI($owner['photo']);
408                         if (!empty($resourceid)) {
409                                 $photo = Photo::selectFirst(['type'], ["resource-id" => $resourceid]);
410                                 if (!empty($photo['type'])) {
411                                         $data['icon']['mediaType'] = $photo['type'];
412                                 }
413                         }
414
415                         if (!empty($owner['header'])) {
416                                 $data['image'] = ['type' => 'Image', 'url' => Contact::getHeaderUrlForId($owner['id'], '', $owner['updated'])];
417
418                                 $resourceid = Photo::ridFromURI($owner['header']);
419                                 if (!empty($resourceid)) {
420                                         $photo = Photo::selectFirst(['type'], ["resource-id" => $resourceid]);
421                                         if (!empty($photo['type'])) {
422                                                 $data['image']['mediaType'] = $photo['type'];
423                                         }
424                                 }
425                         }
426
427                         $custom_fields = [];
428
429                         foreach (DI::profileField()->selectByContactId(0, $uid) as $profile_field) {
430                                 $custom_fields[] = [
431                                         'type' => 'PropertyValue',
432                                         'name' => $profile_field->label,
433                                         'value' => BBCode::convertForUriId($owner['uri-id'], $profile_field->value)
434                                 ];
435                         };
436
437                         if (!empty($custom_fields)) {
438                                 $data['attachment'] = $custom_fields;
439                         }
440                 }
441
442                 $data['generator'] = self::getService();
443
444                 // tags: https://kitty.town/@inmysocks/100656097926961126.json
445                 return $data;
446         }
447
448         /**
449          * Get a minimal actor array for the C2S API
450          *
451          * @param integer $cid
452          * @return array
453          */
454         private static function getActorArrayByCid(int $cid): array
455         {
456                 $contact = Contact::getById($cid);
457                 $data = [
458                         'id'                        => $contact['url'],
459                         'type'                      => $data['type'] = ActivityPub::ACCOUNT_TYPES[$contact['contact-type']],
460                         'url'                       => $contact['alias'],
461                         'preferredUsername'         => $contact['nick'],
462                         'name'                      => $contact['name'],
463                         'icon'                      => ['type' => 'Image', 'url' => Contact::getAvatarUrlForId($cid, '', $contact['updated'])],
464                         'image'                     => ['type' => 'Image', 'url' => Contact::getHeaderUrlForId($cid, '', $contact['updated'])],
465                         'manuallyApprovesFollowers' => (bool)$contact['manually-approve'],
466                         'discoverable'              => !$contact['unsearchable'],
467                 ];
468
469                 if (empty($data['url'])) {
470                         $data['url'] = $data['id'];
471                 }
472
473                 return $data;
474         }
475
476         /**
477          * @param string $username
478          * @return array
479          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
480          */
481         public static function getDeletedUser(string $username): array
482         {
483                 return [
484                         '@context' => ActivityPub::CONTEXT,
485                         'id' => DI::baseUrl() . '/profile/' . $username,
486                         'type' => 'Tombstone',
487                         'published' => DateTimeFormat::utcNow(DateTimeFormat::ATOM),
488                         'updated' => DateTimeFormat::utcNow(DateTimeFormat::ATOM),
489                         'deleted' => DateTimeFormat::utcNow(DateTimeFormat::ATOM),
490                 ];
491         }
492
493         /**
494          * Returns an array with permissions of the thread parent of the given item array
495          *
496          * @param array $item
497          *
498          * @return array with permissions
499          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
500          * @throws \ImagickException
501          */
502         private static function fetchPermissionBlockFromThreadParent(array $item, bool $is_group_thread): array
503         {
504                 if (empty($item['thr-parent-id'])) {
505                         return [];
506                 }
507
508                 $parent = Post::selectFirstPost(['author-link'], ['uri-id' => $item['thr-parent-id']]);
509                 if (empty($parent)) {
510                         return [];
511                 }
512
513                 $permissions = [
514                         'to' => [$parent['author-link']],
515                         'cc' => [],
516                         'bto' => [],
517                         'bcc' => [],
518                         'audience' => [],
519                 ];
520
521                 $parent_profile = APContact::getByURL($parent['author-link']);
522
523                 $item_profile = APContact::getByURL($item['author-link']);
524                 $exclude[] = $item['author-link'];
525
526                 if ($item['gravity'] == Item::GRAVITY_PARENT) {
527                         $exclude[] = $item['owner-link'];
528                 }
529
530                 $type = [Tag::TO => 'to', Tag::CC => 'cc', Tag::BTO => 'bto', Tag::BCC => 'bcc', Tag::AUDIENCE => 'audience'];
531                 foreach (Tag::getByURIId($item['thr-parent-id'], [Tag::TO, Tag::CC, Tag::BTO, Tag::BCC, Tag::AUDIENCE]) as $receiver) {
532                         if (!empty($parent_profile['followers']) && $receiver['url'] == $parent_profile['followers'] && !empty($item_profile['followers'])) {
533                                 if (!$is_group_thread) {
534                                         $permissions[$type[$receiver['type']]][] = $item_profile['followers'];
535                                 }
536                         } elseif (!in_array($receiver['url'], $exclude)) {
537                                 $permissions[$type[$receiver['type']]][] = $receiver['url'];
538                         }
539                 }
540
541                 return $permissions;
542         }
543
544         /**
545          * Check if the given item id is from ActivityPub
546          *
547          * @param integer $item_id
548          * @return boolean "true" if the post is from ActivityPub
549          */
550         private static function isAPPost(int $item_id): bool
551         {
552                 if (empty($item_id)) {
553                         return false;
554                 }
555
556                 return Post::exists(['id' => $item_id, 'network' => Protocol::ACTIVITYPUB]);
557         }
558
559         /**
560          * Creates an array of permissions from an item thread
561          *
562          * @param array   $item             Item array
563          * @param boolean $blindcopy        addressing via "bcc" or "cc"?
564          * @param integer $last_id          Last item id for adding receivers
565          *
566          * @return array with permission data
567          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
568          * @throws \ImagickException
569          */
570         private static function createPermissionBlockForItem(array $item, bool $blindcopy, int $last_id = 0): array
571         {
572                 if ($last_id == 0) {
573                         $last_id = $item['id'];
574                 }
575
576                 $always_bcc = false;
577                 $is_group   = false;
578                 $follower   = '';
579                 $exclusive  = false;
580                 $mention    = false;
581                 $audience   = [];
582
583                 // Check if we should always deliver our stuff via BCC
584                 if (!empty($item['uid'])) {
585                         $owner = User::getOwnerDataById($item['uid']);
586                         if (!empty($owner)) {
587                                 $always_bcc = $owner['hide-friends'];
588                                 $is_group   = ($owner['account-type'] == User::ACCOUNT_TYPE_COMMUNITY);
589
590                                 $profile  = APContact::getByURL($owner['url'], false);
591                                 $follower = $profile['followers'] ?? '';
592                         }
593                 }
594
595                 if (DI::config()->get('system', 'ap_always_bcc')) {
596                         $always_bcc = true;
597                 }
598
599                 $parent = Post::selectFirst(['causer-link', 'post-reason'], ['id' => $item['parent']]);
600                 if (!empty($parent) && ($parent['post-reason'] == Item::PR_ANNOUNCEMENT) && !empty($parent['causer-link'])) {
601                         $profile = APContact::getByURL($parent['causer-link'], false);
602                         $is_group_thread = isset($profile['type']) && $profile['type'] == 'Group';
603                 } else {
604                         $is_group_thread = false;
605                 }
606
607                 if (!$is_group) {
608                         $parent_tags = Tag::getByURIId($item['parent-uri-id'], [Tag::AUDIENCE, Tag::MENTION]);
609                         if (!empty($parent_tags)) {
610                                 $is_group_thread = false;
611                                 foreach ($parent_tags as $tag) {
612                                         if ($tag['type'] != Tag::AUDIENCE) {
613                                                 continue;
614                                         }
615                                         $profile = APContact::getByURL($tag['url'], false);
616                                         if (!empty($profile) && ($profile['type'] == 'Group')) {
617                                                 $audience[] = $tag['url'];
618                                                 $is_group_thread = true;
619                                         }
620                                 }
621                                 if ($is_group_thread) {
622                                         foreach ($parent_tags as $tag) {
623                                                 if (($tag['type'] == Tag::MENTION) && in_array($tag['url'], $audience)) {
624                                                         $mention = true;
625                                                 }
626                                         }
627                                         $exclusive = !$mention;
628                                 }
629                         } elseif ($is_group_thread) {
630                                 foreach (Tag::getByURIId($item['parent-uri-id'], [Tag::MENTION, Tag::EXCLUSIVE_MENTION]) as $term) {
631                                         $profile = APContact::getByURL($term['url'], false);
632                                         if (!empty($profile) && ($profile['type'] == 'Group')) {
633                                                 if ($term['type'] == Tag::EXCLUSIVE_MENTION) {
634                                                         $audience[] = $term['url'];
635                                                         $exclusive  = true;
636                                                 } elseif ($term['type'] == Tag::MENTION) {
637                                                         $mention = true;
638                                                 }
639                                         }
640                                 }
641                         }
642                 } else {
643                         $audience[] = $owner['url'];
644                 }
645
646                 if (self::isAnnounce($item) || self::isAPPost($last_id)) {
647                         // Will be activated in a later step
648                         $networks = Protocol::FEDERATED;
649                 } else {
650                         // For now only send to these contacts:
651                         $networks = [Protocol::ACTIVITYPUB, Protocol::OSTATUS];
652                 }
653
654                 $data = ['to' => [], 'cc' => [], 'bcc' => [] , 'audience' => $audience];
655
656                 if ($item['gravity'] == Item::GRAVITY_PARENT) {
657                         $actor_profile = APContact::getByURL($item['owner-link']);
658                 } else {
659                         $actor_profile = APContact::getByURL($item['author-link']);
660                 }
661
662                 $terms = Tag::getByURIId($item['uri-id'], [Tag::MENTION, Tag::IMPLICIT_MENTION, Tag::EXCLUSIVE_MENTION, Tag::AUDIENCE]);
663
664                 if ($item['private'] != Item::PRIVATE) {
665                         // Directly mention the original author upon a quoted reshare.
666                         // Else just ensure that the original author receives the reshare.
667                         $announce = self::getAnnounceArray($item);
668                         if (!empty($announce['comment'])) {
669                                 $data['to'][] = $announce['actor']['url'];
670                         } elseif (!empty($announce)) {
671                                 $data['cc'][] = $announce['actor']['url'];
672                         }
673
674                         if (!$exclusive) {
675                                 $data = array_merge_recursive($data, self::fetchPermissionBlockFromThreadParent($item, $is_group_thread));
676                         }
677
678                         // Check if the item is completely public or unlisted
679                         if ($item['private'] == Item::PUBLIC) {
680                                 $data['to'][] = ActivityPub::PUBLIC_COLLECTION;
681                         } else {
682                                 $data['cc'][] = ActivityPub::PUBLIC_COLLECTION;
683                         }
684
685                         foreach ($terms as $term) {
686                                 $profile = APContact::getByURL($term['url'], false);
687                                 if (!empty($profile)) {
688                                         if (($term['type'] == Tag::AUDIENCE) && ($profile['type'] == 'Group')) {
689                                                 $data['audience'][] = $profile['url'];
690                                         }
691                                         if ($term['type'] == Tag::EXCLUSIVE_MENTION) {
692                                                 $exclusive = true;
693                                                 if (!empty($profile['followers']) && ($profile['type'] == 'Group')) {
694                                                         $data['cc'][]       = $profile['followers'];
695                                                         $data['audience'][] = $profile['url'];
696                                                 }
697                                         } elseif (($term['type'] == Tag::MENTION) && ($profile['type'] == 'Group')) {
698                                                 $mention = true;
699                                         }
700                                         $data['to'][] = $profile['url'];
701                                 }
702                         }
703                         if (!$exclusive && ($item['private'] == Item::UNLISTED)) {
704                                 $data['to'][] = $actor_profile['followers'];
705                         }
706                 } else {
707                         $receiver_list = Item::enumeratePermissions($item, true, false);
708
709                         foreach ($terms as $term) {
710                                 $cid = Contact::getIdForURL($term['url'], $item['uid']);
711                                 if (!empty($cid) && in_array($cid, $receiver_list)) {
712                                         $contact = DBA::selectFirst('contact', ['url', 'network', 'protocol', 'gsid'], ['id' => $cid, 'network' => Protocol::FEDERATED]);
713                                         if (!DBA::isResult($contact) || !self::isAPContact($contact, $networks)) {
714                                                 continue;
715                                         }
716
717                                         $profile = APContact::getByURL($term['url'], false);
718                                         if (!empty($profile)) {
719                                                 if (($term['type'] == Tag::AUDIENCE) && ($profile['type'] == 'Group')) {
720                                                         $data['audience'][] = $profile['url'];
721                                                 }
722                                                 if ($term['type'] == Tag::EXCLUSIVE_MENTION) {
723                                                         $exclusive = true;
724                                                         if (!empty($profile['followers']) && ($profile['type'] == 'Group')) {
725                                                                 $data['cc'][]       = $profile['followers'];
726                                                                 $data['audience'][] = $profile['url'];
727                                                         }
728                                                 } elseif (($term['type'] == Tag::MENTION) && ($profile['type'] == 'Group')) {
729                                                         $mention = true;
730                                                 }
731                                                 $data['to'][] = $profile['url'];
732                                         }
733                                 }
734                         }
735
736                         if ($mention) {
737                                 $exclusive = false;
738                         }
739
740                         if ($is_group && !$exclusive && !empty($follower)) {
741                                 $data['cc'][] = $follower;
742                         } elseif (!$exclusive) {
743                                 foreach ($receiver_list as $receiver) {
744                                         if ($receiver == -1) {
745                                                 $data['to'][] = $actor_profile['followers'];
746                                                 continue;
747                                         }
748
749                                         $contact = DBA::selectFirst('contact', ['url', 'hidden', 'network', 'protocol', 'gsid'], ['id' => $receiver, 'network' => Protocol::FEDERATED]);
750                                         if (!DBA::isResult($contact) || !self::isAPContact($contact, $networks)) {
751                                                 continue;
752                                         }
753
754                                         if (!empty($profile = APContact::getByURL($contact['url'], false))) {
755                                                 if ($contact['hidden'] || $always_bcc) {
756                                                         $data['bcc'][] = $profile['url'];
757                                                 } else {
758                                                         $data['cc'][] = $profile['url'];
759                                                 }
760                                         }
761                                 }
762                         }
763                 }
764
765                 if (!empty($item['parent']) && (!$exclusive || ($item['private'] == Item::PRIVATE))) {
766                         if ($item['private'] == Item::PRIVATE) {
767                                 $condition = ['parent' => $item['parent'], 'uri-id' => $item['thr-parent-id']];
768                         } else {
769                                 $condition = ['parent' => $item['parent']];
770                         }
771                         $parents = Post::select(['id', 'author-link', 'owner-link', 'gravity', 'uri'], $condition, ['order' => ['id']]);
772                         while ($parent = Post::fetch($parents)) {
773                                 if ($parent['gravity'] == Item::GRAVITY_PARENT) {
774                                         $profile = APContact::getByURL($parent['owner-link'], false);
775                                         if (!empty($profile)) {
776                                                 if ($item['gravity'] != Item::GRAVITY_PARENT) {
777                                                         // Comments to groups are directed to the group
778                                                         // But comments to groups aren't directed to the followers collection
779                                                         // This rule is only valid when the actor isn't the group.
780                                                         // The group needs to transmit their content to their followers.
781                                                         if (($profile['type'] == 'Group') && ($profile['url'] != ($actor_profile['url'] ?? ''))) {
782                                                                 $data['to'][] = $profile['url'];
783                                                         } else {
784                                                                 $data['cc'][] = $profile['url'];
785                                                                 if (($item['private'] != Item::PRIVATE) && !empty($actor_profile['followers']) && (!$exclusive || !$is_group_thread)) {
786                                                                         $data['cc'][] = $actor_profile['followers'];
787                                                                 }
788                                                         }
789                                                 } elseif (!$exclusive && !$is_group_thread) {
790                                                         // Public thread parent post always are directed to the followers.
791                                                         if ($item['private'] != Item::PRIVATE) {
792                                                                 $data['cc'][] = $actor_profile['followers'];
793                                                         }
794                                                 }
795                                         }
796                                 }
797
798                                 // Don't include data from future posts
799                                 if ($parent['id'] >= $last_id) {
800                                         continue;
801                                 }
802
803                                 $profile = APContact::getByURL($parent['author-link'], false);
804                                 if (!empty($profile)) {
805                                         if (($profile['type'] == 'Group') || ($parent['uri'] == $item['thr-parent'])) {
806                                                 $data['to'][] = $profile['url'];
807                                         } else {
808                                                 $data['cc'][] = $profile['url'];
809                                         }
810                                 }
811                         }
812                         DBA::close($parents);
813                 }
814
815                 $data['to']       = array_unique($data['to']);
816                 $data['cc']       = array_unique($data['cc']);
817                 $data['bcc']      = array_unique($data['bcc']);
818                 $data['audience'] = array_unique($data['audience']);
819
820                 if (($key = array_search($item['author-link'], $data['to'])) !== false) {
821                         unset($data['to'][$key]);
822                 }
823
824                 if (($key = array_search($item['author-link'], $data['cc'])) !== false) {
825                         unset($data['cc'][$key]);
826                 }
827
828                 if (($key = array_search($item['author-link'], $data['bcc'])) !== false) {
829                         unset($data['bcc'][$key]);
830                 }
831
832                 foreach ($data['to'] as $to) {
833                         if (($key = array_search($to, $data['cc'])) !== false) {
834                                 unset($data['cc'][$key]);
835                         }
836
837                         if (($key = array_search($to, $data['bcc'])) !== false) {
838                                 unset($data['bcc'][$key]);
839                         }
840                 }
841
842                 foreach ($data['cc'] as $cc) {
843                         if (($key = array_search($cc, $data['bcc'])) !== false) {
844                                 unset($data['bcc'][$key]);
845                         }
846                 }
847
848                 $receivers = ['to' => array_values($data['to']), 'cc' => array_values($data['cc']), 'bcc' => array_values($data['bcc']), 'audience' => array_values($data['audience'])];
849
850                 if (!$blindcopy) {
851                         unset($receivers['bcc']);
852                 }
853
854                 if (!$blindcopy && count($receivers['audience']) == 1) {
855                         $receivers['audience'] = $receivers['audience'][0];
856                 } elseif (!$receivers['audience']) {
857                         unset($receivers['audience']);
858                 }
859
860                 return $receivers;
861         }
862
863         /**
864          * Store the receivers for the given item
865          *
866          * @param array $item
867          * @return void
868          */
869         public static function storeReceiversForItem(array $item)
870         {
871                 $receivers = self::createPermissionBlockForItem($item, true);
872                 if (empty($receivers)) {
873                         return;
874                 }
875
876                 foreach (['to' => Tag::TO, 'cc' => Tag::CC, 'bcc' => Tag::BCC, 'audience' => Tag::AUDIENCE] as $element => $type) {
877                         if (!empty($receivers[$element])) {
878                                 foreach ($receivers[$element] as $receiver) {
879                                         if ($receiver == ActivityPub::PUBLIC_COLLECTION) {
880                                                 $name = Receiver::PUBLIC_COLLECTION;
881                                         } else {
882                                                 $name = trim(parse_url($receiver, PHP_URL_PATH), '/');
883                                         }
884                                         Tag::store($item['uri-id'], $type, $name, $receiver);
885                                 }
886                         }
887                 }
888         }
889
890         /**
891          * Get a list of receivers for the provided uri-id
892          *
893          * @param array $item
894          * @param boolean $blindcopy
895          * @return void
896          */
897         public static function getReceiversForUriId(int $uri_id, bool $blindcopy)
898         {
899                 $tags = Tag::getByURIId($uri_id, [Tag::TO, Tag::CC, Tag::BCC, Tag::AUDIENCE]);
900                 if (empty($tags)) {
901                         Logger::debug('No receivers found', ['uri-id' => $uri_id]);
902                         $post = Post::selectFirst([Item::DELIVER_FIELDLIST], ['uri-id' => $uri_id, 'origin' => true]);
903                         if (!empty($post)) {
904                                 ActivityPub\Transmitter::storeReceiversForItem($post);
905                                 $tags = Tag::getByURIId($uri_id, [Tag::TO, Tag::CC, Tag::BCC, Tag::AUDIENCE]);
906                                 Logger::debug('Receivers are created', ['uri-id' => $uri_id, 'receivers' => count($tags)]);
907                         } else {
908                                 Logger::debug('Origin item not found', ['uri-id' => $uri_id]);
909                         }
910                 }
911
912                 $receivers = [
913                         'to'       => [],
914                         'cc'       => [],
915                         'bcc'      => [],
916                         'audience' => [],
917                 ];
918
919                 foreach ($tags as $receiver) {
920                         switch ($receiver['type']) {
921                                 case Tag::TO:
922                                         $receivers['to'][] = $receiver['url'];
923                                         break;
924                                 case Tag::CC:
925                                         $receivers['cc'][] = $receiver['url'];
926                                         break;
927                                 case Tag::BCC:
928                                         $receivers['bcc'][] = $receiver['url'];
929                                         break;
930                                 case Tag::AUDIENCE:
931                                         $receivers['audience'][] = $receiver['url'];
932                                         break;
933                         }
934                 }
935
936                 if (!$blindcopy) {
937                         unset($receivers['bcc']);
938                 }
939
940                 if (!$blindcopy && count($receivers['audience']) == 1) {
941                         $receivers['audience'] = $receivers['audience'][0];
942                 } elseif (!$receivers['audience']) {
943                         unset($receivers['audience']);
944                 }
945
946                 return $receivers;
947         }
948
949         /**
950          * Check if an inbox is archived
951          *
952          * @param string $url Inbox url
953          * @return boolean "true" if inbox is archived
954          */
955         public static function archivedInbox(string $url): bool
956         {
957                 return DBA::exists('inbox-status', ['url' => $url, 'archive' => true]);
958         }
959
960         /**
961          * Check if a given contact should be delivered via AP
962          *
963          * @param array $contact Contact array
964          * @param array $networks Array with networks
965          * @return bool Whether the used protocol matches ACTIVITYPUB
966          * @throws Exception
967          */
968         private static function isAPContact(array $contact, array $networks): bool
969         {
970                 if (in_array($contact['network'], $networks) || ($contact['protocol'] == Protocol::ACTIVITYPUB)) {
971                         return true;
972                 }
973
974                 return GServer::getProtocol($contact['gsid'] ?? 0) == Post\DeliveryData::ACTIVITYPUB;
975         }
976
977         /**
978          * Fetches a list of inboxes of followers of a given user
979          *
980          * @param integer $uid      User ID
981          * @param boolean $personal fetch personal inboxes
982          * @param boolean $all_ap   Retrieve all AP enabled inboxes
983          * @return array of follower inboxes
984          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
985          * @throws \ImagickException
986          */
987         public static function fetchTargetInboxesforUser(int $uid, bool $personal = false, bool $all_ap = false): array
988         {
989                 $inboxes = [];
990
991                 $isGroup = false;
992                 if (!empty($item['uid'])) {
993                         $profile = User::getOwnerDataById($item['uid']);
994                         if (!empty($profile)) {
995                                 $isGroup = $profile['account-type'] == User::ACCOUNT_TYPE_COMMUNITY;
996                         }
997                 }
998
999                 if ($all_ap) {
1000                         // Will be activated in a later step
1001                         $networks = Protocol::FEDERATED;
1002                 } else {
1003                         // For now only send to these contacts:
1004                         $networks = [Protocol::ACTIVITYPUB, Protocol::OSTATUS];
1005                 }
1006
1007                 $condition = [
1008                         'uid'          => $uid,
1009                         'self'         => false,
1010                         'archive'      => false,
1011                         'pending'      => false,
1012                         'blocked'      => false,
1013                         'network'      => Protocol::FEDERATED,
1014                         'contact-type' => [Contact::TYPE_UNKNOWN, Contact::TYPE_PERSON, Contact::TYPE_NEWS, Contact::TYPE_ORGANISATION],
1015                 ];
1016
1017                 if (!empty($uid)) {
1018                         $condition['rel'] = [Contact::FOLLOWER, Contact::FRIEND];
1019                 }
1020
1021                 $contacts = DBA::select('contact', ['id', 'url', 'network', 'protocol', 'gsid'], $condition);
1022                 while ($contact = DBA::fetch($contacts)) {
1023                         if (!self::isAPContact($contact, $networks)) {
1024                                 continue;
1025                         }
1026
1027                         if ($isGroup && ($contact['network'] == Protocol::DFRN)) {
1028                                 continue;
1029                         }
1030
1031                         if (Network::isUrlBlocked($contact['url'])) {
1032                                 continue;
1033                         }
1034
1035                         $profile = APContact::getByURL($contact['url'], false);
1036                         if (!empty($profile)) {
1037                                 if (empty($profile['sharedinbox']) || $personal || Contact::isLocal($contact['url'])) {
1038                                         $target = $profile['inbox'];
1039                                 } else {
1040                                         $target = $profile['sharedinbox'];
1041                                 }
1042                                 if (!self::archivedInbox($target)) {
1043                                         $inboxes[$target][] = $contact['id'];
1044                                 }
1045                         }
1046                 }
1047                 DBA::close($contacts);
1048
1049                 return $inboxes;
1050         }
1051
1052         /**
1053          * Fetches an array of inboxes for the given item and user
1054          *
1055          * @param array   $item     Item array
1056          * @param integer $uid      User ID
1057          * @param boolean $personal fetch personal inboxes
1058          * @return array with inboxes
1059          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1060          * @throws \ImagickException
1061          */
1062         public static function fetchTargetInboxes(array $item, int $uid, bool $personal = false): array
1063         {
1064                 $permissions = self::getReceiversForUriId($item['uri-id'], true);
1065                 if (empty($permissions)) {
1066                         return [];
1067                 }
1068
1069                 $inboxes = [];
1070
1071                 if ($item['gravity'] == Item::GRAVITY_ACTIVITY) {
1072                         $item_profile = APContact::getByURL($item['author-link'], false);
1073                 } else {
1074                         $item_profile = APContact::getByURL($item['owner-link'], false);
1075                 }
1076
1077                 if (empty($item_profile)) {
1078                         return [];
1079                 }
1080
1081                 $profile_uid = User::getIdForURL($item_profile['url']);
1082
1083                 foreach (['to', 'cc', 'bto', 'bcc', 'audience'] as $element) {
1084                         if (empty($permissions[$element])) {
1085                                 continue;
1086                         }
1087
1088                         $blindcopy = in_array($element, ['bto', 'bcc']);
1089
1090                         foreach ($permissions[$element] as $receiver) {
1091                                 if (empty($receiver) || Network::isUrlBlocked($receiver)) {
1092                                         continue;
1093                                 }
1094
1095                                 if ($item_profile && ($receiver == $item_profile['followers']) && ($uid == $profile_uid)) {
1096                                         $inboxes = array_merge_recursive($inboxes, self::fetchTargetInboxesforUser($uid, $personal, true));
1097                                 } else {
1098                                         $profile = APContact::getByURL($receiver, false);
1099                                         if (!empty($profile)) {
1100                                                 $contact = Contact::getByURLForUser($receiver, $uid, false, ['id']);
1101
1102                                                 if (empty($profile['sharedinbox']) || $personal || $blindcopy || Contact::isLocal($receiver)) {
1103                                                         $target = $profile['inbox'];
1104                                                 } else {
1105                                                         $target = $profile['sharedinbox'];
1106                                                 }
1107                                                 if (!self::archivedInbox($target) && !in_array($contact['id'], $inboxes[$target] ?? [])) {
1108                                                         $inboxes[$target][] = $contact['id'] ?? 0;
1109                                                 }
1110                                         }
1111                                 }
1112                         }
1113                 }
1114
1115                 return $inboxes;
1116         }
1117
1118         /**
1119          * Creates an array in the structure of the item table for a given mail id
1120          *
1121          * @param integer $mail_id Mail id
1122          * @return array
1123          * @throws \Exception
1124          */
1125         public static function getItemArrayFromMail(int $mail_id, bool $use_title = false): array
1126         {
1127                 $mail = DBA::selectFirst('mail', [], ['id' => $mail_id]);
1128                 if (!DBA::isResult($mail)) {
1129                         return [];
1130                 }
1131
1132                 $reply = DBA::selectFirst('mail', ['uri', 'uri-id', 'from-url'], ['parent-uri' => $mail['parent-uri'], 'reply' => false]);
1133                 if (!DBA::isResult($reply)) {
1134                         $reply = $mail;
1135                 }
1136
1137                 // Making the post more compatible for Mastodon by:
1138                 // - Making it a note and not an article (no title)
1139                 // - Moving the title into the "summary" field that is used as a "content warning"
1140
1141                 if (!$use_title) {
1142                         $mail['body']         = '[abstract]' . $mail['title'] . "[/abstract]\n" . $mail['body'];
1143                         $mail['title']        = '';
1144                 }
1145
1146                 $mail['content-warning']  = '';
1147                 $mail['author-link']      = $mail['owner-link'] = $mail['from-url'];
1148                 $mail['owner-id']         = $mail['author-id'];
1149                 $mail['allow_cid']        = '<'.$mail['contact-id'].'>';
1150                 $mail['allow_gid']        = '';
1151                 $mail['deny_cid']         = '';
1152                 $mail['deny_gid']         = '';
1153                 $mail['private']          = Item::PRIVATE;
1154                 $mail['deleted']          = false;
1155                 $mail['edited']           = $mail['created'];
1156                 $mail['plink']            = DI::baseUrl() . '/message/' . $mail['id'];
1157                 $mail['parent-uri']       = $reply['uri'];
1158                 $mail['parent-uri-id']    = $reply['uri-id'];
1159                 $mail['parent-author-id'] = Contact::getIdForURL($reply['from-url'], 0, false);
1160                 $mail['gravity']          = ($mail['reply'] ? Item::GRAVITY_COMMENT: Item::GRAVITY_PARENT);
1161                 $mail['event-type']       = '';
1162                 $mail['language']         = '';
1163                 $mail['parent']           = 0;
1164
1165                 return $mail;
1166         }
1167
1168         /**
1169          * Creates an activity array for a given mail id
1170          *
1171          * @param integer $mail_id
1172          * @param boolean $object_mode Is the activity item is used inside another object?
1173          *
1174          * @return array of activity
1175          * @throws \Exception
1176          */
1177         public static function createActivityFromMail(int $mail_id, bool $object_mode = false): array
1178         {
1179                 $mail = self::getItemArrayFromMail($mail_id);
1180                 if (empty($mail)) {
1181                         return [];
1182                 }
1183                 $object = self::createNote($mail);
1184
1185                 if (!$object_mode) {
1186                         $data = ['@context' => ActivityPub::CONTEXT];
1187                 } else {
1188                         $data = [];
1189                 }
1190
1191                 $data['id'] = $mail['uri'] . '/Create';
1192                 $data['type'] = 'Create';
1193                 $data['actor'] = $mail['author-link'];
1194                 $data['published'] = DateTimeFormat::utc($mail['created'] . '+00:00', DateTimeFormat::ATOM);
1195                 $data['instrument'] = self::getService();
1196                 $data = array_merge($data, self::createPermissionBlockForItem($mail, true));
1197
1198                 if (empty($data['to']) && !empty($data['cc'])) {
1199                         $data['to'] = $data['cc'];
1200                 }
1201
1202                 if (empty($data['to']) && !empty($data['bcc'])) {
1203                         $data['to'] = $data['bcc'];
1204                 }
1205
1206                 unset($data['cc']);
1207                 unset($data['bcc']);
1208                 unset($data['audience']);
1209
1210                 $object['to'] = $data['to'];
1211                 $object['tag'] = [['type' => 'Mention', 'href' => $object['to'][0], 'name' => '']];
1212
1213                 unset($object['cc']);
1214                 unset($object['bcc']);
1215                 unset($object['audience']);
1216
1217                 $data['directMessage'] = true;
1218
1219                 $data['object'] = $object;
1220
1221                 $owner = User::getOwnerDataById($mail['uid']);
1222
1223                 if (!$object_mode && !empty($owner)) {
1224                         return LDSignature::sign($data, $owner);
1225                 } else {
1226                         return $data;
1227                 }
1228         }
1229
1230         /**
1231          * Returns the activity type of a given item
1232          *
1233          * @param array $item Item array
1234          * @return string with activity type
1235          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1236          * @throws \ImagickException
1237          */
1238         private static function getTypeOfItem(array $item): string
1239         {
1240                 $reshared = false;
1241
1242                 // Only check for a reshare, if it is a real reshare and no quoted reshare
1243                 if (strpos($item['body'], '[share') === 0) {
1244                         $announce = self::getAnnounceArray($item);
1245                         $reshared = !empty($announce);
1246                 }
1247
1248                 if ($reshared) {
1249                         $type = 'Announce';
1250                 } elseif ($item['verb'] == Activity::POST) {
1251                         if ($item['created'] == $item['edited']) {
1252                                 $type = 'Create';
1253                         } else {
1254                                 $type = 'Update';
1255                         }
1256                 } elseif ($item['verb'] == Activity::LIKE) {
1257                         $type = 'Like';
1258                 } elseif ($item['verb'] == Activity::DISLIKE) {
1259                         $type = 'Dislike';
1260                 } elseif ($item['verb'] == Activity::ATTEND) {
1261                         $type = 'Accept';
1262                 } elseif ($item['verb'] == Activity::ATTENDNO) {
1263                         $type = 'Reject';
1264                 } elseif ($item['verb'] == Activity::ATTENDMAYBE) {
1265                         $type = 'TentativeAccept';
1266                 } elseif ($item['verb'] == Activity::FOLLOW) {
1267                         $type = 'Follow';
1268                 } elseif ($item['verb'] == Activity::TAG) {
1269                         $type = 'Add';
1270                 } elseif ($item['verb'] == Activity::ANNOUNCE) {
1271                         $type = 'Announce';
1272                 } else {
1273                         $type = '';
1274                 }
1275
1276                 return $type;
1277         }
1278
1279         /**
1280          * Creates the activity or fetches it from the cache
1281          *
1282          * @param integer $item_id           Item id
1283          * @param boolean $force             Force new cache entry
1284          * @param boolean $object_mode       true = Create the object, false = create the activity with the object
1285          * @param boolean $announce_activity true = the announced object is the activity, false = we announce the object link
1286          * @return array|false activity or false on failure
1287          * @throws \Exception
1288          */
1289         public static function createCachedActivityFromItem(int $item_id, bool $force = false, bool $object_mode = false, $announce_activity = false)
1290         {
1291                 $cachekey = 'APDelivery:createActivity:' . $item_id . ':' . (int)$object_mode . ':' . (int)$announce_activity;
1292
1293                 if (!$force) {
1294                         $data = DI::cache()->get($cachekey);
1295                         if (!is_null($data)) {
1296                                 return $data;
1297                         }
1298                 }
1299
1300                 $data = self::createActivityFromItem($item_id, $object_mode, false, $announce_activity);
1301
1302                 DI::cache()->set($cachekey, $data, Duration::QUARTER_HOUR);
1303                 return $data;
1304         }
1305
1306         /**
1307          * Creates an activity array for a given item id
1308          *
1309          * @param integer $item_id
1310          * @param boolean $object_mode       true = Create the object, false = create the activity with the object
1311          * @param boolean $api_mode          true = used for the API
1312          * @param boolean $announce_activity true = the announced object is the activity, false = we announce the object link
1313          * @return false|array
1314          * @throws \Exception
1315          */
1316         public static function createActivityFromItem(int $item_id, bool $object_mode = false, $api_mode = false, $announce_activity = false)
1317         {
1318                 $condition = ['id' => $item_id];
1319                 if (!$api_mode) {
1320                         $condition['parent-network'] = Protocol::NATIVE_SUPPORT;
1321                 }
1322                 Logger::info('Fetching activity', $condition);
1323                 $item = Post::selectFirst(Item::DELIVER_FIELDLIST, $condition);
1324                 if (!DBA::isResult($item)) {
1325                         return false;
1326                 }
1327                 return self::createActivityFromArray($item, $object_mode, $api_mode, $announce_activity);
1328         }
1329
1330         /**
1331          * Creates an activity array for a given URI-Id and uid
1332          *
1333          * @param integer $uri_id
1334          * @param integer $uid
1335          * @param boolean $object_mode       true = Create the object, false = create the activity with the object
1336          * @param boolean $api_mode          true = used for the API
1337          * @param boolean $announce_activity true = the announced object is the activity, false = we announce the object link
1338          * @return false|array
1339          * @throws \Exception
1340          */
1341         public static function createActivityFromUriId(int $uri_id, int $uid, bool $object_mode = false, $api_mode = false, $announce_activity = false)
1342         {
1343                 $condition = ['uri-id' => $uri_id, 'uid' => [0, $uid]];
1344                 if (!$api_mode) {
1345                         $condition['parent-network'] = Protocol::NATIVE_SUPPORT;
1346                 }
1347                 Logger::info('Fetching activity', $condition);
1348                 $item = Post::selectFirst(Item::DELIVER_FIELDLIST, $condition, ['order' => ['uid' => true]]);
1349                 if (!DBA::isResult($item)) {
1350                         return false;
1351                 }
1352
1353                 return self::createActivityFromArray($item, $object_mode, $api_mode, $announce_activity);
1354         }
1355
1356         /**
1357          * Creates an activity array for a given item id
1358          *
1359          * @param integer $item_id
1360          * @param boolean $object_mode       true = Create the object, false = create the activity with the object
1361          * @param boolean $api_mode          true = used for the API
1362          * @param boolean $announce_activity true = the announced object is the activity, false = we announce the object link
1363          * @return false|array
1364          * @throws \Exception
1365          */
1366         private static function createActivityFromArray(array $item, bool $object_mode = false, $api_mode = false, $announce_activity = false)
1367         {
1368                 if (!$api_mode && !$item['deleted'] && $item['network'] == Protocol::ACTIVITYPUB) {
1369                         $data = Post\Activity::getByURIId($item['uri-id']);
1370                         if (!$item['origin'] && !empty($data)) {
1371                                 if (!$object_mode) {
1372                                         Logger::info('Return stored conversation', ['item' => $item['id']]);
1373                                         return $data;
1374                                 } elseif (!empty($data['object'])) {
1375                                         Logger::info('Return stored conversation object', ['item' => $item['id']]);
1376                                         return $data['object'];
1377                                 }
1378                         }
1379                 }
1380
1381                 if (!$api_mode && !$item['origin']) {
1382                         Logger::debug('Post is not ours and is not stored', ['id' => $item['id'], 'uri-id' => $item['uri-id']]);
1383                         return false;
1384                 }
1385
1386                 $type = self::getTypeOfItem($item);
1387
1388                 if (!$object_mode) {
1389                         $data = ['@context' => $context ?? ActivityPub::CONTEXT];
1390
1391                         if ($item['deleted'] && ($item['gravity'] == Item::GRAVITY_ACTIVITY)) {
1392                                 $type = 'Undo';
1393                         } elseif ($item['deleted']) {
1394                                 $type = 'Delete';
1395                         }
1396                 } else {
1397                         $data = [];
1398                 }
1399
1400                 if ($type == 'Delete') {
1401                         $data['id'] = Item::newURI($item['guid']) . '/' . $type;;
1402                 } elseif (($item['gravity'] == Item::GRAVITY_ACTIVITY) && ($type != 'Undo')) {
1403                         $data['id'] = $item['uri'];
1404                 } else {
1405                         $data['id'] = $item['uri'] . '/' . $type;
1406                 }
1407
1408                 $data['type'] = $type;
1409
1410                 if (($type != 'Announce') || ($item['gravity'] != Item::GRAVITY_PARENT)) {
1411                         $link = $item['author-link'];
1412                         $id   = $item['author-id'];
1413                 } else {
1414                         $link = $item['owner-link'];
1415                         $id   = $item['owner-id'];
1416                 }
1417
1418                 if ($api_mode) {
1419                         $data['actor'] = self::getActorArrayByCid($id);
1420                 } else {
1421                         $data['actor'] = $link;
1422                 }
1423
1424                 $data['published'] = DateTimeFormat::utc($item['created'] . '+00:00', DateTimeFormat::ATOM);
1425
1426                 $data['instrument'] = self::getService();
1427
1428                 $data = array_merge($data, self::createPermissionBlockForItem($item, false));
1429
1430                 if (in_array($data['type'], ['Create', 'Update', 'Delete'])) {
1431                         $data['object'] = self::createNote($item, $api_mode);
1432                 } elseif ($data['type'] == 'Add') {
1433                         $data = self::createAddTag($item, $data);
1434                 } elseif ($data['type'] == 'Announce') {
1435                         if ($item['verb'] == ACTIVITY::ANNOUNCE) {
1436                                 if ($announce_activity) {
1437                                         $anounced_item = Post::selectFirst(['uid'], ['uri-id' => $item['thr-parent-id'], 'origin' => true]);
1438                                         $data['object'] = self::createActivityFromUriId($item['thr-parent-id'], $anounced_item['uid'] ?? 0);
1439                                         unset($data['object']['@context']);
1440                                 } else {
1441                                         $data['object'] = $item['thr-parent'];
1442                                 }
1443                         } else {
1444                                 $data = self::createAnnounce($item, $data, $api_mode);
1445                         }
1446                 } elseif ($data['type'] == 'Follow') {
1447                         $data['object'] = $item['parent-uri'];
1448                 } elseif ($data['type'] == 'Undo') {
1449                         $data['object'] = self::createActivityFromItem($item['id'], true);
1450                 } else {
1451                         $data['diaspora:guid'] = $item['guid'];
1452                         if (!empty($item['signed_text'])) {
1453                                 $data['diaspora:like'] = $item['signed_text'];
1454                         }
1455                         $data['object'] = $item['thr-parent'];
1456                 }
1457
1458                 if (!empty($item['contact-uid'])) {
1459                         $uid = $item['contact-uid'];
1460                 } else {
1461                         $uid = $item['uid'];
1462                 }
1463
1464                 Logger::info('Fetched activity', ['item' => $item['id'], 'uid' => $uid]);
1465
1466                 // We only sign our own activities
1467                 if (!$api_mode && !$object_mode && $item['origin']) {
1468                         $owner = User::getOwnerDataById($uid);
1469                         return LDSignature::sign($data, $owner);
1470                 } else {
1471                         return $data;
1472                 }
1473
1474                 /// @todo Create "conversation" entry
1475         }
1476
1477         /**
1478          * Creates a location entry for a given item array
1479          *
1480          * @param array $item Item array
1481          * @return array with location array
1482          */
1483         private static function createLocation(array $item): array
1484         {
1485                 $location = ['type' => 'Place'];
1486
1487                 if (!empty($item['location'])) {
1488                         $location['name'] = $item['location'];
1489                 }
1490
1491                 $coord = [];
1492
1493                 if (empty($item['coord'])) {
1494                         $coord = Map::getCoordinates($item['location']);
1495                 } else {
1496                         $coords = explode(' ', $item['coord']);
1497                         if (count($coords) == 2) {
1498                                 $coord = ['lat' => $coords[0], 'lon' => $coords[1]];
1499                         }
1500                 }
1501
1502                 if (!empty($coord['lat']) && !empty($coord['lon'])) {
1503                         $location['latitude'] = $coord['lat'];
1504                         $location['longitude'] = $coord['lon'];
1505                 }
1506
1507                 return $location;
1508         }
1509
1510         /**
1511          * Appends emoji tags to a tag array according to the tags used.
1512          *
1513          * @param array $tags Tag array
1514          * @param string $text Text containing tags like :tag:
1515          */
1516         private static function addEmojiTags(array &$tags, string $text)
1517         {
1518                 foreach (Smilies::extractUsedSmilies($text, true) as $name => $url) {
1519                         $tags[] = [
1520                                 'type' => 'Emoji',
1521                                 'name' => $name,
1522                                 'icon' => [
1523                                         'type' => 'Image',
1524                                         'url' => $url,
1525                                 ],
1526                         ];
1527                 }
1528         }
1529
1530         /**
1531          * Returns a tag array for a given item array
1532          *
1533          * @param array  $item      Item array
1534          * @param string $quote_url Url of the attached quote link
1535          * @return array of tags
1536          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1537          */
1538         private static function createTagList(array $item, string $quote_url): array
1539         {
1540                 $tags = [];
1541
1542                 $terms = Tag::getByURIId($item['uri-id'], [Tag::HASHTAG, Tag::MENTION, Tag::IMPLICIT_MENTION, Tag::EXCLUSIVE_MENTION]);
1543                 foreach ($terms as $term) {
1544                         if ($term['type'] == Tag::HASHTAG) {
1545                                 $url = DI::baseUrl() . '/search?tag=' . urlencode($term['name']);
1546                                 $tags[] = ['type' => 'Hashtag', 'href' => $url, 'name' => '#' . $term['name']];
1547                         } else {
1548                                 $contact = Contact::getByURL($term['url'], false, ['addr']);
1549                                 if (empty($contact)) {
1550                                         continue;
1551                                 }
1552                                 if (!empty($contact['addr'])) {
1553                                         $mention = '@' . $contact['addr'];
1554                                 } else {
1555                                         $mention = '@' . $term['url'];
1556                                 }
1557
1558                                 $tags[] = ['type' => 'Mention', 'href' => $term['url'], 'name' => $mention];
1559                         }
1560                 }
1561
1562                 self::addEmojiTags($tags, $item['body']);
1563
1564                 $announce = self::getAnnounceArray($item);
1565                 // Mention the original author upon commented reshares
1566                 if (!empty($announce['comment'])) {
1567                         $tags[] = ['type' => 'Mention', 'href' => $announce['actor']['url'], 'name' => '@' . $announce['actor']['addr']];
1568                 }
1569
1570                 // @see https://codeberg.org/fediverse/fep/src/branch/main/feps/fep-e232.md
1571                 if (!empty($quote_url)) {
1572                         // Currently deactivated because of compatibility issues with Pleroma
1573                         //$tags[] = [
1574                         //      'type'      => 'Link',
1575                         //      'mediaType' => 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"',
1576                         //      'href'      => $quote_url,
1577                         //      'name'      => '♲ ' . BBCode::convertForUriId($item['uri-id'], $quote_url, BBCode::ACTIVITYPUB)
1578                         //];
1579                 }
1580
1581                 return $tags;
1582         }
1583
1584         /**
1585          * Adds attachment data to the JSON document
1586          *
1587          * @param array  $item Data of the item that is to be posted
1588          *
1589          * @return array with attachment data
1590          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1591          */
1592         private static function createAttachmentList(array $item): array
1593         {
1594                 $attachments = [];
1595
1596                 $urls = [];
1597                 foreach (Post\Media::getByURIId($item['uri-id'], [Post\Media::AUDIO, Post\Media::IMAGE, Post\Media::VIDEO, Post\Media::DOCUMENT, Post\Media::TORRENT]) as $attachment) {
1598                         if (in_array($attachment['url'], $urls)) {
1599                                 continue;
1600                         }
1601                         $urls[] = $attachment['url'];
1602
1603                         $attach = ['type' => 'Document',
1604                                 'mediaType' => $attachment['mimetype'],
1605                                 'url' => $attachment['url'],
1606                                 'name' => $attachment['description']];
1607
1608                         if (!empty($attachment['height'])) {
1609                                 $attach['height'] = $attachment['height'];
1610                         }
1611
1612                         if (!empty($attachment['width'])) {
1613                                 $attach['width'] = $attachment['width'];
1614                         }
1615
1616                         if (!empty($attachment['preview'])) {
1617                                 $attach['image'] = $attachment['preview'];
1618                         }
1619
1620                         $attachments[] = $attach;
1621                 }
1622
1623                 return $attachments;
1624         }
1625
1626         /**
1627          * Callback function to replace a Friendica style mention in a mention for a summary
1628          *
1629          * @param array $match Matching values for the callback
1630          * @return string Replaced mention
1631          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1632          */
1633         private static function mentionAddrCallback(array $match): string
1634         {
1635                 if (empty($match[1])) {
1636                         return '';
1637                 }
1638
1639                 $data = Contact::getByURL($match[1], false, ['addr']);
1640                 if (empty($data['addr'])) {
1641                         return $match[0];
1642                 }
1643
1644                 return '@' . $data['addr'];
1645         }
1646
1647         /**
1648          * Remove image elements since they are added as attachment
1649          *
1650          * @param string $body HTML code
1651          * @return string with removed images
1652          */
1653         private static function removePictures(string $body): string
1654         {
1655                 return BBCode::performWithEscapedTags($body, ['code', 'noparse', 'nobb', 'pre'], function ($text) {
1656                         // Simplify image codes
1657                         $text = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '[img]$3[/img]', $text);
1658                         $text = preg_replace("/\[img\=(.*?)\](.*?)\[\/img\]/ism", '[img]$1[/img]', $text);
1659
1660                         // Now remove local links
1661                         $text = preg_replace_callback(
1662                                 '/\[url=([^\[\]]*)\]\[img\](.*)\[\/img\]\[\/url\]/Usi',
1663                                 function ($match) {
1664                                         // We remove the link when it is a link to a local photo page
1665                                         if (Photo::isLocalPage($match[1])) {
1666                                                 return '';
1667                                         }
1668                                         // otherwise we just return the link
1669                                         return '[url]' . $match[1] . '[/url]';
1670                                 },
1671                                 $text
1672                         );
1673
1674                         // Remove all pictures
1675                         return preg_replace("/\[img\]([^\[\]]*)\[\/img\]/Usi", '', $text);
1676                 });
1677         }
1678
1679         /**
1680          * Returns if the post contains sensitive content ("nsfw")
1681          *
1682          * @param integer $uri_id URI id
1683          * @return boolean Whether URI id was found
1684          * @throws \Exception
1685          */
1686         private static function isSensitive(int $uri_id): bool
1687         {
1688                 return DBA::exists('tag-view', ['uri-id' => $uri_id, 'name' => 'nsfw', 'type' => Tag::HASHTAG]);
1689         }
1690
1691         /**
1692          * Creates event data
1693          *
1694          * @param array $item Item array
1695          * @return array with the event data
1696          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1697          */
1698         private static function createEvent(array $item): array
1699         {
1700                 $event = [];
1701                 $event['name'] = $item['event-summary'];
1702                 $event['content'] = BBCode::convertForUriId($item['uri-id'], $item['event-desc'], BBCode::ACTIVITYPUB);
1703                 $event['startTime'] = DateTimeFormat::utc($item['event-start'], 'c');
1704
1705                 if (!$item['event-nofinish']) {
1706                         $event['endTime'] = DateTimeFormat::utc($item['event-finish'], 'c');
1707                 }
1708
1709                 if (!empty($item['event-location'])) {
1710                         $item['location'] = $item['event-location'];
1711                         $event['location'] = self::createLocation($item);
1712                 }
1713
1714                 // 2021.12: Backward compatibility value, all the events now "adjust" to the viewer timezone
1715                 $event['dfrn:adjust'] = true;
1716
1717                 return $event;
1718         }
1719
1720         /**
1721          * Creates a note/article object array
1722          *
1723          * @param array $item
1724          * @param bool  $api_mode
1725          * @return array with the object data
1726          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1727          * @throws \ImagickException
1728          */
1729         public static function createNote(array $item, bool $api_mode = false): array
1730         {
1731                 if (empty($item)) {
1732                         return [];
1733                 }
1734
1735                 // We are treating posts differently when they are directed to a community.
1736                 // This is done to better support Lemmy. Most of the changes should work with other systems as well.
1737                 // But to not risk compatibility issues we currently perform the changes only for communities.
1738                 if ($item['gravity'] == Item::GRAVITY_PARENT) {
1739                         $isCommunityPost = !empty(Tag::getByURIId($item['uri-id'], [Tag::EXCLUSIVE_MENTION]));
1740                         $links = Post\Media::getByURIId($item['uri-id'], [Post\Media::HTML]);
1741                         if ($isCommunityPost && (count($links) == 1)) {
1742                                 $link = $links[0]['url'];
1743                         }
1744                 } else {
1745                         $isCommunityPost = false;
1746                 }
1747
1748                 if ($item['event-type'] == 'event') {
1749                         $type = 'Event';
1750                 } elseif (!empty($item['title'])) {
1751                         if (!$isCommunityPost || empty($link)) {
1752                                 $type = 'Article';
1753                         } else {
1754                                 // "Page" is used by Lemmy for posts that contain an external link
1755                                 $type = 'Page';
1756                         }
1757                 } else {
1758                         $type = 'Note';
1759                 }
1760
1761                 if ($item['deleted']) {
1762                         $type = 'Tombstone';
1763                 }
1764
1765                 $data = [];
1766                 $data['id'] = $item['uri'];
1767                 $data['type'] = $type;
1768
1769                 if ($item['deleted']) {
1770                         return $data;
1771                 }
1772
1773                 $data['summary'] = BBCode::toPlaintext(BBCode::getAbstract($item['body'], Protocol::ACTIVITYPUB));
1774
1775                 if ($item['uri'] != $item['thr-parent']) {
1776                         $data['inReplyTo'] = $item['thr-parent'];
1777                 } else {
1778                         $data['inReplyTo'] = null;
1779                 }
1780
1781                 $data['diaspora:guid'] = $item['guid'];
1782                 $data['published'] = DateTimeFormat::utc($item['created'] . '+00:00', DateTimeFormat::ATOM);
1783
1784                 if ($item['created'] != $item['edited']) {
1785                         $data['updated'] = DateTimeFormat::utc($item['edited'] . '+00:00', DateTimeFormat::ATOM);
1786                 }
1787
1788                 $data['url'] = $link ?? $item['plink'];
1789                 if ($api_mode) {
1790                         $data['attributedTo'] = self::getActorArrayByCid($item['author-id']);
1791                 } else {
1792                         $data['attributedTo'] = $item['author-link'];
1793                 }
1794                 $data['sensitive'] = self::isSensitive($item['uri-id']);
1795
1796                 if (!empty($item['conversation']) && ($item['conversation'] != './')) {
1797                         $data['conversation'] = $data['context'] = $item['conversation'];
1798                 }
1799
1800                 if (!empty($item['title'])) {
1801                         $data['name'] = BBCode::toPlaintext($item['title'], false);
1802                 }
1803
1804                 $permission_block = self::getReceiversForUriId($item['uri-id'], false);
1805
1806                 $real_quote = false;
1807
1808                 $item = Post\Media::addHTMLAttachmentToItem($item);
1809
1810                 $body = $item['body'];
1811
1812                 if ($type == 'Note') {
1813                         $body = $item['raw-body'] ?? self::removePictures($body);
1814                 }
1815
1816                 /**
1817                  * @todo Improve the automated summary
1818                  * This part is currently deactivated. The automated summary seems to be more
1819                  * confusing than helping. But possibly we will find a better way.
1820                  * So the code is left here for now as a reminder
1821                  *
1822                  * } elseif (($type == 'Article') && empty($data['summary'])) {
1823                  *              $regexp = "/[@!]\[url\=([^\[\]]*)\].*?\[\/url\]/ism";
1824                  *              $summary = preg_replace_callback($regexp, [self::class, 'mentionAddrCallback'], $body);
1825                  *              $data['summary'] = BBCode::toPlaintext(Plaintext::shorten(self::removePictures($summary), 1000));
1826                  * }
1827                  */
1828
1829                 if (empty($item['uid']) || !Feature::isEnabled($item['uid'], 'explicit_mentions')) {
1830                         $body = self::prependMentions($body, $item['uri-id'], $item['author-link']);
1831                 }
1832
1833                 if ($type == 'Event') {
1834                         $data = array_merge($data, self::createEvent($item));
1835                 } else {
1836                         if ($isCommunityPost) {
1837                                 // For community posts we remove the visible "!user@domain.tld".
1838                                 // This improves the look at systems like Lemmy.
1839                                 // Also in the future we should control the community delivery via other methods.
1840                                 $body = preg_replace("/!\[url\=[^\[\]]*\][^\[\]]*\[\/url\]/ism", '', $body);
1841                         }
1842
1843                         if ($type == 'Page') {
1844                                 // When we transmit "Page" posts we have to remove the attachment.
1845                                 // The attachment contains the link that we already transmit in the "url" field.
1846                                 $body = BBCode::removeAttachment($body);
1847                         }
1848
1849                         $body = BBCode::setMentionsToNicknames($body);
1850
1851                         if (!empty($item['quote-uri-id']) && ($item['quote-uri-id'] != $item['uri-id'])) {
1852                                 if (Post::exists(['uri-id' => $item['quote-uri-id'], 'network' => [Protocol::ACTIVITYPUB, Protocol::DFRN]])) {
1853                                         $real_quote = true;
1854                                         $data['quoteUrl'] = $item['quote-uri'];
1855                                         $body = DI::contentItem()->addShareLink($body, $item['quote-uri-id']);
1856                                 } else {
1857                                         $body = DI::contentItem()->addSharedPost($item, $body);
1858                                 }
1859                         }
1860
1861                         $data['content'] = BBCode::convertForUriId($item['uri-id'], $body, BBCode::ACTIVITYPUB);
1862                 }
1863
1864                 // The regular "content" field does contain a minimized HTML. This is done since systems like
1865                 // Mastodon has got problems with - for example - embedded pictures.
1866                 // The contentMap does contain the unmodified HTML.
1867                 $language = self::getLanguage($item);
1868                 if (!empty($language)) {
1869                         $richbody = BBCode::setMentionsToNicknames($item['body'] ?? '');
1870                         $richbody = Post\Media::removeFromEndOfBody($richbody);
1871                         if (!empty($item['quote-uri-id']) && ($item['quote-uri-id'] != $item['uri-id'])) {
1872                                 if ($real_quote) {
1873                                         $richbody = DI::contentItem()->addShareLink($richbody, $item['quote-uri-id']);
1874                                 } else {
1875                                         $richbody = DI::contentItem()->addSharedPost($item, $richbody);
1876                                 }
1877                         }
1878                         $richbody = BBCode::replaceAttachment($richbody);
1879
1880                         $data['contentMap'][$language] = BBCode::convertForUriId($item['uri-id'], $richbody, BBCode::EXTERNAL);
1881                 }
1882
1883                 if (!empty($item['quote-uri-id']) && ($item['quote-uri-id'] != $item['uri-id'])) {
1884                         $source = DI::contentItem()->addSharedPost($item, $item['body']);
1885                 } else {
1886                         $source = $item['body'];
1887                 }
1888
1889                 $data['source'] = ['content' => $source, 'mediaType' => "text/bbcode"];
1890
1891                 if (!empty($item['signed_text']) && ($item['uri'] != $item['thr-parent'])) {
1892                         $data['diaspora:comment'] = $item['signed_text'];
1893                 }
1894
1895                 $data['attachment'] = self::createAttachmentList($item);
1896                 $data['tag'] = self::createTagList($item, $data['quoteUrl'] ?? '');
1897
1898                 if (empty($data['location']) && (!empty($item['coord']) || !empty($item['location']))) {
1899                         $data['location'] = self::createLocation($item);
1900                 }
1901
1902                 if (!empty($item['app'])) {
1903                         $data['generator'] = ['type' => 'Application', 'name' => $item['app']];
1904                 }
1905
1906                 $data = array_merge($data, $permission_block);
1907
1908                 return $data;
1909         }
1910
1911         /**
1912          * Fetches the language from the post, the user or the system.
1913          *
1914          * @param array $item
1915          * @return string language string
1916          */
1917         private static function getLanguage(array $item): string
1918         {
1919                 // Try to fetch the language from the post itself
1920                 if (!empty($item['language'])) {
1921                         $languages = array_keys(json_decode($item['language'], true));
1922                         if (!empty($languages[0])) {
1923                                 return DI::l10n()->toISO6391($languages[0]);
1924                         }
1925                 }
1926
1927                 // Otherwise use the user's language
1928                 if (!empty($item['uid'])) {
1929                         $user = DBA::selectFirst('user', ['language'], ['uid' => $item['uid']]);
1930                         if (!empty($user['language'])) {
1931                                 return DI::l10n()->toISO6391($user['language']);
1932                         }
1933                 }
1934
1935                 // And finally just use the system language
1936                 return DI::l10n()->toISO6391(DI::config()->get('system', 'language'));
1937         }
1938
1939         /**
1940          * Creates an an "add tag" entry
1941          *
1942          * @param array $item Item array
1943          * @param array $activity activity data
1944          * @return array with activity data for adding tags
1945          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1946          * @throws \ImagickException
1947          */
1948         private static function createAddTag(array $item, array $activity): array
1949         {
1950                 $object = XML::parseString($item['object']);
1951                 $target = XML::parseString($item['target']);
1952
1953                 $activity['diaspora:guid'] = $item['guid'];
1954                 $activity['actor'] = $item['author-link'];
1955                 $activity['target'] = (string)$target->id;
1956                 $activity['summary'] = BBCode::toPlaintext($item['body']);
1957                 $activity['object'] = ['id' => (string)$object->id, 'type' => 'tag', 'name' => (string)$object->title, 'content' => (string)$object->content];
1958
1959                 return $activity;
1960         }
1961
1962         /**
1963          * Creates an announce object entry
1964          *
1965          * @param array $item Item array
1966          * @param array $activity activity data
1967          * @param bool  $api_mode
1968          * @return array with activity data
1969          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1970          * @throws \ImagickException
1971          */
1972         private static function createAnnounce(array $item, array $activity, bool $api_mode = false): array
1973         {
1974                 $orig_body = $item['body'];
1975                 $announce = self::getAnnounceArray($item);
1976                 if (empty($announce)) {
1977                         $activity['type'] = 'Create';
1978                         $activity['object'] = self::createNote($item, $api_mode);
1979                         return $activity;
1980                 }
1981
1982                 if (empty($announce['comment'])) {
1983                         // Pure announce, without a quote
1984                         $activity['type'] = 'Announce';
1985                         $activity['object'] = $announce['object']['uri'];
1986                         return $activity;
1987                 }
1988
1989                 // Quote
1990                 $activity['type'] = 'Create';
1991                 $item['body'] = $announce['comment'] . "\n" . $announce['object']['plink'];
1992                 $activity['object'] = self::createNote($item, $api_mode);
1993
1994                 /// @todo Finally decide how to implement this in AP. This is a possible way:
1995                 $activity['object']['attachment'][] = self::createNote($announce['object']);
1996
1997                 $activity['object']['source']['content'] = $orig_body;
1998                 return $activity;
1999         }
2000
2001         /**
2002          * Return announce related data if the item is an announce
2003          *
2004          * @param array $item
2005          * @return array Announcement array
2006          */
2007         private static function getAnnounceArray(array $item): array
2008         {
2009                 $reshared = DI::contentItem()->getSharedPost($item, Item::DELIVER_FIELDLIST);
2010                 if (empty($reshared)) {
2011                         return [];
2012                 }
2013
2014                 if (!in_array($reshared['post']['network'], [Protocol::ACTIVITYPUB, Protocol::DFRN])) {
2015                         return [];
2016                 }
2017
2018                 $profile = APContact::getByURL($reshared['post']['author-link'], false);
2019                 if (empty($profile)) {
2020                         return [];
2021                 }
2022
2023                 return ['object' => $reshared['post'], 'actor' => $profile, 'comment' => $reshared['comment']];
2024         }
2025
2026         /**
2027          * Checks if the provided item array is an announce
2028          *
2029          * @param array $item Item array
2030          * @return boolean Whether item is an announcement
2031          */
2032         public static function isAnnounce(array $item): bool
2033         {
2034                 if (!empty($item['verb']) && ($item['verb'] == Activity::ANNOUNCE)) {
2035                         return true;
2036                 }
2037
2038                 $announce = self::getAnnounceArray($item);
2039                 if (empty($announce)) {
2040                         return false;
2041                 }
2042
2043                 return empty($announce['comment']);
2044         }
2045
2046         /**
2047          * Creates an activity id for a given contact id
2048          *
2049          * @param integer $cid Contact ID of target
2050          *
2051          * @return bool|string activity id
2052          */
2053         public static function activityIDFromContact(int $cid)
2054         {
2055                 $contact = DBA::selectFirst('contact', ['uid', 'id', 'created'], ['id' => $cid]);
2056                 if (!DBA::isResult($contact)) {
2057                         return false;
2058                 }
2059
2060                 $hash = hash('ripemd128', $contact['uid'].'-'.$contact['id'].'-'.$contact['created']);
2061                 $uuid = substr($hash, 0, 8). '-' . substr($hash, 8, 4) . '-' . substr($hash, 12, 4) . '-' . substr($hash, 16, 4) . '-' . substr($hash, 20, 12);
2062                 return DI::baseUrl() . '/activity/' . $uuid;
2063         }
2064
2065         /**
2066          * Transmits a contact suggestion to a given inbox
2067          *
2068          * @param array   $owner         Sender owner-view record
2069          * @param string  $inbox         Target inbox
2070          * @param integer $suggestion_id Suggestion ID
2071          * @return boolean was the transmission successful?
2072          * @throws \Exception
2073          */
2074         public static function sendContactSuggestion(array $owner, string $inbox, int $suggestion_id): bool
2075         {
2076                 $suggestion = DI::fsuggest()->selectOneById($suggestion_id);
2077
2078                 $data = [
2079                         '@context' => ActivityPub::CONTEXT,
2080                         'id' => DI::baseUrl() . '/activity/' . System::createGUID(),
2081                         'type' => 'Announce',
2082                         'actor' => $owner['url'],
2083                         'object' => $suggestion->url,
2084                         'content' => $suggestion->note,
2085                         'instrument' => self::getService(),
2086                         'to' => [ActivityPub::PUBLIC_COLLECTION],
2087                         'cc' => []
2088                 ];
2089
2090                 $signed = LDSignature::sign($data, $owner);
2091
2092                 Logger::info('Deliver profile deletion for user ' . $owner['uid'] . ' to ' . $inbox . ' via ActivityPub');
2093                 return HTTPSignature::transmit($signed, $inbox, $owner);
2094         }
2095
2096         /**
2097          * Transmits a profile relocation to a given inbox
2098          *
2099          * @param array  $owner Sender owner-view record
2100          * @param string $inbox Target inbox
2101          * @return boolean was the transmission successful?
2102          * @throws \Exception
2103          */
2104         public static function sendProfileRelocation(array $owner, string $inbox): bool
2105         {
2106                 $data = [
2107                         '@context' => ActivityPub::CONTEXT,
2108                         'id' => DI::baseUrl() . '/activity/' . System::createGUID(),
2109                         'type' => 'dfrn:relocate',
2110                         'actor' => $owner['url'],
2111                         'object' => $owner['url'],
2112                         'published' => DateTimeFormat::utcNow(DateTimeFormat::ATOM),
2113                         'instrument' => self::getService(),
2114                         'to' => [ActivityPub::PUBLIC_COLLECTION],
2115                         'cc' => []
2116                 ];
2117
2118                 $signed = LDSignature::sign($data, $owner);
2119
2120                 Logger::info('Deliver profile relocation for user ' . $owner['uid'] . ' to ' . $inbox . ' via ActivityPub');
2121                 return HTTPSignature::transmit($signed, $inbox, $owner);
2122         }
2123
2124         /**
2125          * Transmits a profile deletion to a given inbox
2126          *
2127          * @param array  $owner Sender owner-view record
2128          * @param string $inbox Target inbox
2129          * @return boolean was the transmission successful?
2130          * @throws \Exception
2131          */
2132         public static function sendProfileDeletion(array $owner, string $inbox): bool
2133         {
2134                 if (empty($owner['uprvkey'])) {
2135                         Logger::error('No private key for owner found, the deletion message cannot be processed.', ['user' => $owner['uid']]);
2136                         return false;
2137                 }
2138
2139                 $data = ['@context' => ActivityPub::CONTEXT,
2140                         'id' => DI::baseUrl() . '/activity/' . System::createGUID(),
2141                         'type' => 'Delete',
2142                         'actor' => $owner['url'],
2143                         'object' => $owner['url'],
2144                         'published' => DateTimeFormat::utcNow(DateTimeFormat::ATOM),
2145                         'instrument' => self::getService(),
2146                         'to' => [ActivityPub::PUBLIC_COLLECTION],
2147                         'cc' => []];
2148
2149                 $signed = LDSignature::sign($data, $owner);
2150
2151                 Logger::info('Deliver profile deletion for user ' . $owner['uid'] . ' to ' . $inbox . ' via ActivityPub');
2152                 return HTTPSignature::transmit($signed, $inbox, $owner);
2153         }
2154
2155         /**
2156          * Transmits a profile change to a given inbox
2157          *
2158          * @param array  $owner Sender owner-view record
2159          * @param string $inbox Target inbox
2160          * @return boolean was the transmission successful?
2161          * @throws HTTPException\InternalServerErrorException
2162          * @throws HTTPException\NotFoundException
2163          * @throws \ImagickException
2164          */
2165         public static function sendProfileUpdate(array $owner, string $inbox): bool
2166         {
2167                 $profile = APContact::getByURL($owner['url']);
2168
2169                 $data = ['@context' => ActivityPub::CONTEXT,
2170                         'id' => DI::baseUrl() . '/activity/' . System::createGUID(),
2171                         'type' => 'Update',
2172                         'actor' => $owner['url'],
2173                         'object' => self::getProfile($owner['uid']),
2174                         'published' => DateTimeFormat::utcNow(DateTimeFormat::ATOM),
2175                         'instrument' => self::getService(),
2176                         'to' => [$profile['followers']],
2177                         'cc' => []];
2178
2179                 $signed = LDSignature::sign($data, $owner);
2180
2181                 Logger::info('Deliver profile update for user ' . $owner['uid'] . ' to ' . $inbox . ' via ActivityPub');
2182                 return HTTPSignature::transmit($signed, $inbox, $owner);
2183         }
2184
2185         /**
2186          * Transmits a given activity to a target
2187          *
2188          * @param string  $activity Type name
2189          * @param string  $target   Target profile
2190          * @param integer $uid      User ID
2191          * @param string  $id Activity-identifier
2192          * @return bool
2193          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2194          * @throws \ImagickException
2195          * @throws \Exception
2196          */
2197         public static function sendActivity(string $activity, string $target, int $uid, string $id = ''): bool
2198         {
2199                 $profile = APContact::getByURL($target);
2200                 if (empty($profile['inbox'])) {
2201                         Logger::warning('No inbox found for target', ['target' => $target, 'profile' => $profile]);
2202                         return false;
2203                 }
2204
2205                 $owner = User::getOwnerDataById($uid);
2206                 if (empty($owner)) {
2207                         Logger::warning('No user found for actor, aborting', ['uid' => $uid]);
2208                         return false;
2209                 }
2210
2211                 if (empty($id)) {
2212                         $id = DI::baseUrl() . '/activity/' . System::createGUID();
2213                 }
2214
2215                 $data = [
2216                         '@context' => ActivityPub::CONTEXT,
2217                         'id' => $id,
2218                         'type' => $activity,
2219                         'actor' => $owner['url'],
2220                         'object' => $profile['url'],
2221                         'instrument' => self::getService(),
2222                         'to' => [$profile['url']],
2223                 ];
2224
2225                 Logger::info('Sending activity ' . $activity . ' to ' . $target . ' for user ' . $uid);
2226
2227                 $signed = LDSignature::sign($data, $owner);
2228                 return HTTPSignature::transmit($signed, $profile['inbox'], $owner);
2229         }
2230
2231         /**
2232          * Transmits a "follow object" activity to a target
2233          * This is a preparation for sending automated "follow" requests when receiving "Announce" messages
2234          *
2235          * @param string  $object Object URL
2236          * @param string  $target Target profile
2237          * @param integer $uid    User ID
2238          * @return bool
2239          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2240          * @throws \ImagickException
2241          * @throws \Exception
2242          */
2243         public static function sendFollowObject(string $object, string $target, int $uid = 0): bool
2244         {
2245                 $profile = APContact::getByURL($target);
2246                 if (empty($profile['inbox'])) {
2247                         Logger::warning('No inbox found for target', ['target' => $target, 'profile' => $profile]);
2248                         return false;
2249                 }
2250
2251                 if (empty($uid)) {
2252                         // We need to use some user as a sender. It doesn't care who it will send. We will use an administrator account.
2253                         $admin = User::getFirstAdmin(['uid']);
2254                         if (!$admin) {
2255                                 Logger::warning('No available admin user for transmission', ['target' => $target]);
2256                                 return false;
2257                         }
2258
2259                         $uid = $admin['uid'];
2260                 }
2261
2262                 $condition = ['verb' => Activity::FOLLOW, 'uid' => 0, 'parent-uri' => $object,
2263                         'author-id' => Contact::getPublicIdByUserId($uid)];
2264                 if (Post::exists($condition)) {
2265                         Logger::info('Follow for ' . $object . ' for user ' . $uid . ' does already exist.');
2266                         return false;
2267                 }
2268
2269                 $owner = User::getOwnerDataById($uid);
2270
2271                 $data = [
2272                         '@context' => ActivityPub::CONTEXT,
2273                         'id' => DI::baseUrl() . '/activity/' . System::createGUID(),
2274                         'type' => 'Follow',
2275                         'actor' => $owner['url'],
2276                         'object' => $object,
2277                         'instrument' => self::getService(),
2278                         'to' => [$profile['url']],
2279                 ];
2280
2281                 Logger::info('Sending follow ' . $object . ' to ' . $target . ' for user ' . $uid);
2282
2283                 $signed = LDSignature::sign($data, $owner);
2284                 return HTTPSignature::transmit($signed, $profile['inbox'], $owner);
2285         }
2286
2287         /**
2288          * Transmit a message that the contact request had been accepted
2289          *
2290          * @param string  $target Target profile
2291          * @param string  $id Object id
2292          * @param integer $uid    User ID
2293          * @return void
2294          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2295          * @throws \ImagickException
2296          */
2297         public static function sendContactAccept(string $target, string $id, int $uid)
2298         {
2299                 $profile = APContact::getByURL($target);
2300                 if (empty($profile['inbox'])) {
2301                         Logger::warning('No inbox found for target', ['target' => $target, 'profile' => $profile]);
2302                         return;
2303                 }
2304
2305                 $owner = User::getOwnerDataById($uid);
2306                 if (!$owner) {
2307                         Logger::notice('No user found for actor', ['uid' => $uid]);
2308                         return;
2309                 }
2310
2311                 $data = [
2312                         '@context' => ActivityPub::CONTEXT,
2313                         'id' => DI::baseUrl() . '/activity/' . System::createGUID(),
2314                         'type' => 'Accept',
2315                         'actor' => $owner['url'],
2316                         'object' => [
2317                                 'id' => $id,
2318                                 'type' => 'Follow',
2319                                 'actor' => $profile['url'],
2320                                 'object' => $owner['url']
2321                         ],
2322                         'instrument' => self::getService(),
2323                         'to' => [$profile['url']],
2324                 ];
2325
2326                 Logger::debug('Sending accept to ' . $target . ' for user ' . $uid . ' with id ' . $id);
2327
2328                 $signed = LDSignature::sign($data, $owner);
2329                 HTTPSignature::transmit($signed, $profile['inbox'], $owner);
2330         }
2331
2332         /**
2333          * Reject a contact request or terminates the contact relation
2334          *
2335          * @param string $target   Target profile
2336          * @param string $objectId Object id
2337          * @param array  $owner    Sender owner-view record
2338          * @return bool Operation success
2339          * @throws HTTPException\InternalServerErrorException
2340          * @throws \ImagickException
2341          */
2342         public static function sendContactReject(string $target, string $objectId, array $owner): bool
2343         {
2344                 $profile = APContact::getByURL($target);
2345                 if (empty($profile['inbox'])) {
2346                         Logger::warning('No inbox found for target', ['target' => $target, 'profile' => $profile]);
2347                         return false;
2348                 }
2349
2350                 $data = [
2351                         '@context' => ActivityPub::CONTEXT,
2352                         'id' => DI::baseUrl() . '/activity/' . System::createGUID(),
2353                         'type' => 'Reject',
2354                         'actor'  => $owner['url'],
2355                         'object' => [
2356                                 'id' => $objectId,
2357                                 'type' => 'Follow',
2358                                 'actor' => $profile['url'],
2359                                 'object' => $owner['url']
2360                         ],
2361                         'instrument' => self::getService(),
2362                         'to' => [$profile['url']],
2363                 ];
2364
2365                 Logger::debug('Sending reject to ' . $target . ' for user ' . $owner['uid'] . ' with id ' . $objectId);
2366
2367                 $signed = LDSignature::sign($data, $owner);
2368                 return HTTPSignature::transmit($signed, $profile['inbox'], $owner);
2369         }
2370
2371         /**
2372          * Transmits a message that we don't want to follow this contact anymore
2373          *
2374          * @param string  $target Target profile
2375          * @param integer $cid    Contact id
2376          * @param array   $owner  Sender owner-view record
2377          * @return bool success
2378          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2379          * @throws \ImagickException
2380          * @throws \Exception
2381          */
2382         public static function sendContactUndo(string $target, int $cid, array $owner): bool
2383         {
2384                 $profile = APContact::getByURL($target);
2385                 if (empty($profile['inbox'])) {
2386                         Logger::warning('No inbox found for target', ['target' => $target, 'profile' => $profile]);
2387                         return false;
2388                 }
2389
2390                 $object_id = self::activityIDFromContact($cid);
2391                 if (empty($object_id)) {
2392                         return false;
2393                 }
2394
2395                 $objectId = DI::baseUrl() . '/activity/' . System::createGUID();
2396
2397                 $data = [
2398                         '@context' => ActivityPub::CONTEXT,
2399                         'id' => $objectId,
2400                         'type' => 'Undo',
2401                         'actor' => $owner['url'],
2402                         'object' => [
2403                                 'id' => $object_id,
2404                                 'type' => 'Follow',
2405                                 'actor' => $owner['url'],
2406                                 'object' => $profile['url']
2407                         ],
2408                         'instrument' => self::getService(),
2409                         'to' => [$profile['url']],
2410                 ];
2411
2412                 Logger::info('Sending undo to ' . $target . ' for user ' . $owner['uid'] . ' with id ' . $objectId);
2413
2414                 $signed = LDSignature::sign($data, $owner);
2415                 return HTTPSignature::transmit($signed, $profile['inbox'], $owner);
2416         }
2417
2418         /**
2419          * Prepends mentions (@) to $body variable
2420          *
2421          * @param string $body HTML code
2422          * @param int    $uriId
2423          * @param string $authorLink Author link
2424          * @return string HTML code with prepended mentions
2425          */
2426         private static function prependMentions(string $body, int $uriid, string $authorLink): string
2427         {
2428                 $mentions = [];
2429
2430                 foreach (Tag::getByURIId($uriid, [Tag::IMPLICIT_MENTION]) as $tag) {
2431                         $profile = Contact::getByURL($tag['url'], false, ['addr', 'contact-type', 'nick']);
2432                         if (!empty($profile['addr'])
2433                                 && $profile['contact-type'] != Contact::TYPE_COMMUNITY
2434                                 && !strstr($body, $profile['addr'])
2435                                 && !strstr($body, $tag['url'])
2436                                 && $tag['url'] !== $authorLink
2437                         ) {
2438                                 $mentions[] = '@[url=' . $tag['url'] . ']' . $profile['nick'] . '[/url]';
2439                         }
2440                 }
2441
2442                 $mentions[] = $body;
2443
2444                 return implode(' ', $mentions);
2445         }
2446 }