]> git.mxchange.org Git - friendica.git/blob - src/Protocol/ActivityPub/Transmitter.php
Allow using punctuation chars as smiley delimiters
[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          * @return string normalized text
1516          */
1517         private static function addEmojiTags(array &$tags, string $text): string
1518         {
1519                 $emojis = Smilies::extractUsedSmilies($text, $normalized);
1520                 foreach ($emojis as $name => $url) {
1521                         $tags[] = [
1522                                 'type' => 'Emoji',
1523                                 'name' => $name,
1524                                 'icon' => [
1525                                         'type' => 'Image',
1526                                         'url' => $url,
1527                                 ],
1528                         ];
1529                 }
1530                 return $normalized;
1531         }
1532
1533         /**
1534          * Returns a tag array for a given item array
1535          *
1536          * @param array  $item      Item array
1537          * @param string $quote_url Url of the attached quote link
1538          * @return array of tags
1539          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1540          */
1541         private static function createTagList(array $item, string $quote_url): array
1542         {
1543                 $tags = [];
1544
1545                 $terms = Tag::getByURIId($item['uri-id'], [Tag::HASHTAG, Tag::MENTION, Tag::IMPLICIT_MENTION, Tag::EXCLUSIVE_MENTION]);
1546                 foreach ($terms as $term) {
1547                         if ($term['type'] == Tag::HASHTAG) {
1548                                 $url = DI::baseUrl() . '/search?tag=' . urlencode($term['name']);
1549                                 $tags[] = ['type' => 'Hashtag', 'href' => $url, 'name' => '#' . $term['name']];
1550                         } else {
1551                                 $contact = Contact::getByURL($term['url'], false, ['addr']);
1552                                 if (empty($contact)) {
1553                                         continue;
1554                                 }
1555                                 if (!empty($contact['addr'])) {
1556                                         $mention = '@' . $contact['addr'];
1557                                 } else {
1558                                         $mention = '@' . $term['url'];
1559                                 }
1560
1561                                 $tags[] = ['type' => 'Mention', 'href' => $term['url'], 'name' => $mention];
1562                         }
1563                 }
1564
1565                 $announce = self::getAnnounceArray($item);
1566                 // Mention the original author upon commented reshares
1567                 if (!empty($announce['comment'])) {
1568                         $tags[] = ['type' => 'Mention', 'href' => $announce['actor']['url'], 'name' => '@' . $announce['actor']['addr']];
1569                 }
1570
1571                 // @see https://codeberg.org/fediverse/fep/src/branch/main/feps/fep-e232.md
1572                 if (!empty($quote_url)) {
1573                         // Currently deactivated because of compatibility issues with Pleroma
1574                         //$tags[] = [
1575                         //      'type'      => 'Link',
1576                         //      'mediaType' => 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"',
1577                         //      'href'      => $quote_url,
1578                         //      'name'      => '♲ ' . BBCode::convertForUriId($item['uri-id'], $quote_url, BBCode::ACTIVITYPUB)
1579                         //];
1580                 }
1581
1582                 return $tags;
1583         }
1584
1585         /**
1586          * Adds attachment data to the JSON document
1587          *
1588          * @param array  $item Data of the item that is to be posted
1589          *
1590          * @return array with attachment data
1591          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1592          */
1593         private static function createAttachmentList(array $item): array
1594         {
1595                 $attachments = [];
1596
1597                 $urls = [];
1598                 foreach (Post\Media::getByURIId($item['uri-id'], [Post\Media::AUDIO, Post\Media::IMAGE, Post\Media::VIDEO, Post\Media::DOCUMENT, Post\Media::TORRENT]) as $attachment) {
1599                         if (in_array($attachment['url'], $urls)) {
1600                                 continue;
1601                         }
1602                         $urls[] = $attachment['url'];
1603
1604                         $attach = ['type' => 'Document',
1605                                 'mediaType' => $attachment['mimetype'],
1606                                 'url' => $attachment['url'],
1607                                 'name' => $attachment['description']];
1608
1609                         if (!empty($attachment['height'])) {
1610                                 $attach['height'] = $attachment['height'];
1611                         }
1612
1613                         if (!empty($attachment['width'])) {
1614                                 $attach['width'] = $attachment['width'];
1615                         }
1616
1617                         if (!empty($attachment['preview'])) {
1618                                 $attach['image'] = $attachment['preview'];
1619                         }
1620
1621                         $attachments[] = $attach;
1622                 }
1623
1624                 return $attachments;
1625         }
1626
1627         /**
1628          * Callback function to replace a Friendica style mention in a mention for a summary
1629          *
1630          * @param array $match Matching values for the callback
1631          * @return string Replaced mention
1632          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1633          */
1634         private static function mentionAddrCallback(array $match): string
1635         {
1636                 if (empty($match[1])) {
1637                         return '';
1638                 }
1639
1640                 $data = Contact::getByURL($match[1], false, ['addr']);
1641                 if (empty($data['addr'])) {
1642                         return $match[0];
1643                 }
1644
1645                 return '@' . $data['addr'];
1646         }
1647
1648         /**
1649          * Remove image elements since they are added as attachment
1650          *
1651          * @param string $body HTML code
1652          * @return string with removed images
1653          */
1654         private static function removePictures(string $body): string
1655         {
1656                 return BBCode::performWithEscapedTags($body, ['code', 'noparse', 'nobb', 'pre'], function ($text) {
1657                         // Simplify image codes
1658                         $text = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '[img]$3[/img]', $text);
1659                         $text = preg_replace("/\[img\=(.*?)\](.*?)\[\/img\]/ism", '[img]$1[/img]', $text);
1660
1661                         // Now remove local links
1662                         $text = preg_replace_callback(
1663                                 '/\[url=([^\[\]]*)\]\[img\](.*)\[\/img\]\[\/url\]/Usi',
1664                                 function ($match) {
1665                                         // We remove the link when it is a link to a local photo page
1666                                         if (Photo::isLocalPage($match[1])) {
1667                                                 return '';
1668                                         }
1669                                         // otherwise we just return the link
1670                                         return '[url]' . $match[1] . '[/url]';
1671                                 },
1672                                 $text
1673                         );
1674
1675                         // Remove all pictures
1676                         return preg_replace("/\[img\]([^\[\]]*)\[\/img\]/Usi", '', $text);
1677                 });
1678         }
1679
1680         /**
1681          * Returns if the post contains sensitive content ("nsfw")
1682          *
1683          * @param integer $uri_id URI id
1684          * @return boolean Whether URI id was found
1685          * @throws \Exception
1686          */
1687         private static function isSensitive(int $uri_id): bool
1688         {
1689                 return DBA::exists('tag-view', ['uri-id' => $uri_id, 'name' => 'nsfw', 'type' => Tag::HASHTAG]);
1690         }
1691
1692         /**
1693          * Creates event data
1694          *
1695          * @param array $item Item array
1696          * @return array with the event data
1697          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1698          */
1699         private static function createEvent(array $item): array
1700         {
1701                 $event = [];
1702                 $event['name'] = $item['event-summary'];
1703                 $event['content'] = BBCode::convertForUriId($item['uri-id'], $item['event-desc'], BBCode::ACTIVITYPUB);
1704                 $event['startTime'] = DateTimeFormat::utc($item['event-start'], 'c');
1705
1706                 if (!$item['event-nofinish']) {
1707                         $event['endTime'] = DateTimeFormat::utc($item['event-finish'], 'c');
1708                 }
1709
1710                 if (!empty($item['event-location'])) {
1711                         $item['location'] = $item['event-location'];
1712                         $event['location'] = self::createLocation($item);
1713                 }
1714
1715                 // 2021.12: Backward compatibility value, all the events now "adjust" to the viewer timezone
1716                 $event['dfrn:adjust'] = true;
1717
1718                 return $event;
1719         }
1720
1721         /**
1722          * Creates a note/article object array
1723          *
1724          * @param array $item
1725          * @param bool  $api_mode
1726          * @return array with the object data
1727          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1728          * @throws \ImagickException
1729          */
1730         public static function createNote(array $item, bool $api_mode = false): array
1731         {
1732                 if (empty($item)) {
1733                         return [];
1734                 }
1735
1736                 // We are treating posts differently when they are directed to a community.
1737                 // This is done to better support Lemmy. Most of the changes should work with other systems as well.
1738                 // But to not risk compatibility issues we currently perform the changes only for communities.
1739                 if ($item['gravity'] == Item::GRAVITY_PARENT) {
1740                         $isCommunityPost = !empty(Tag::getByURIId($item['uri-id'], [Tag::EXCLUSIVE_MENTION]));
1741                         $links = Post\Media::getByURIId($item['uri-id'], [Post\Media::HTML]);
1742                         if ($isCommunityPost && (count($links) == 1)) {
1743                                 $link = $links[0]['url'];
1744                         }
1745                 } else {
1746                         $isCommunityPost = false;
1747                 }
1748
1749                 if ($item['event-type'] == 'event') {
1750                         $type = 'Event';
1751                 } elseif (!empty($item['title'])) {
1752                         if (!$isCommunityPost || empty($link)) {
1753                                 $type = 'Article';
1754                         } else {
1755                                 // "Page" is used by Lemmy for posts that contain an external link
1756                                 $type = 'Page';
1757                         }
1758                 } else {
1759                         $type = 'Note';
1760                 }
1761
1762                 if ($item['deleted']) {
1763                         $type = 'Tombstone';
1764                 }
1765
1766                 $data = [];
1767                 $data['id'] = $item['uri'];
1768                 $data['type'] = $type;
1769
1770                 if ($item['deleted']) {
1771                         return $data;
1772                 }
1773
1774                 $data['summary'] = BBCode::toPlaintext(BBCode::getAbstract($item['body'], Protocol::ACTIVITYPUB));
1775
1776                 if ($item['uri'] != $item['thr-parent']) {
1777                         $data['inReplyTo'] = $item['thr-parent'];
1778                 } else {
1779                         $data['inReplyTo'] = null;
1780                 }
1781
1782                 $data['diaspora:guid'] = $item['guid'];
1783                 $data['published'] = DateTimeFormat::utc($item['created'] . '+00:00', DateTimeFormat::ATOM);
1784
1785                 if ($item['created'] != $item['edited']) {
1786                         $data['updated'] = DateTimeFormat::utc($item['edited'] . '+00:00', DateTimeFormat::ATOM);
1787                 }
1788
1789                 $data['url'] = $link ?? $item['plink'];
1790                 if ($api_mode) {
1791                         $data['attributedTo'] = self::getActorArrayByCid($item['author-id']);
1792                 } else {
1793                         $data['attributedTo'] = $item['author-link'];
1794                 }
1795                 $data['sensitive'] = self::isSensitive($item['uri-id']);
1796
1797                 if (!empty($item['conversation']) && ($item['conversation'] != './')) {
1798                         $data['conversation'] = $data['context'] = $item['conversation'];
1799                 }
1800
1801                 if (!empty($item['title'])) {
1802                         $data['name'] = BBCode::toPlaintext($item['title'], false);
1803                 }
1804
1805                 $permission_block = self::getReceiversForUriId($item['uri-id'], false);
1806
1807                 $real_quote = false;
1808
1809                 $item = Post\Media::addHTMLAttachmentToItem($item);
1810
1811                 $body = $item['body'];
1812                 $emojis = [];
1813                 if ($type == 'Note') {
1814                         $body = $item['raw-body'] ?? self::removePictures($body);
1815                 }
1816                 $body = self::addEmojiTags($emojis, $body);
1817
1818                 /**
1819                  * @todo Improve the automated summary
1820                  * This part is currently deactivated. The automated summary seems to be more
1821                  * confusing than helping. But possibly we will find a better way.
1822                  * So the code is left here for now as a reminder
1823                  *
1824                  * } elseif (($type == 'Article') && empty($data['summary'])) {
1825                  *              $regexp = "/[@!]\[url\=([^\[\]]*)\].*?\[\/url\]/ism";
1826                  *              $summary = preg_replace_callback($regexp, [self::class, 'mentionAddrCallback'], $body);
1827                  *              $data['summary'] = BBCode::toPlaintext(Plaintext::shorten(self::removePictures($summary), 1000));
1828                  * }
1829                  */
1830
1831                 if (empty($item['uid']) || !Feature::isEnabled($item['uid'], 'explicit_mentions')) {
1832                         $body = self::prependMentions($body, $item['uri-id'], $item['author-link']);
1833                 }
1834
1835                 if ($type == 'Event') {
1836                         $data = array_merge($data, self::createEvent($item));
1837                 } else {
1838                         if ($isCommunityPost) {
1839                                 // For community posts we remove the visible "!user@domain.tld".
1840                                 // This improves the look at systems like Lemmy.
1841                                 // Also in the future we should control the community delivery via other methods.
1842                                 $body = preg_replace("/!\[url\=[^\[\]]*\][^\[\]]*\[\/url\]/ism", '', $body);
1843                         }
1844
1845                         if ($type == 'Page') {
1846                                 // When we transmit "Page" posts we have to remove the attachment.
1847                                 // The attachment contains the link that we already transmit in the "url" field.
1848                                 $body = BBCode::removeAttachment($body);
1849                         }
1850
1851                         $body = BBCode::setMentionsToNicknames($body);
1852
1853                         if (!empty($item['quote-uri-id']) && ($item['quote-uri-id'] != $item['uri-id'])) {
1854                                 if (Post::exists(['uri-id' => $item['quote-uri-id'], 'network' => [Protocol::ACTIVITYPUB, Protocol::DFRN]])) {
1855                                         $real_quote = true;
1856                                         $data['quoteUrl'] = $item['quote-uri'];
1857                                         $body = DI::contentItem()->addShareLink($body, $item['quote-uri-id']);
1858                                 } else {
1859                                         $body = DI::contentItem()->addSharedPost($item, $body);
1860                                 }
1861                         }
1862
1863                         $data['content'] = BBCode::convertForUriId($item['uri-id'], $body, BBCode::ACTIVITYPUB);
1864                 }
1865
1866                 // The regular "content" field does contain a minimized HTML. This is done since systems like
1867                 // Mastodon has got problems with - for example - embedded pictures.
1868                 // The contentMap does contain the unmodified HTML.
1869                 $language = self::getLanguage($item);
1870                 if (!empty($language)) {
1871                         $richbody = BBCode::setMentionsToNicknames($item['body'] ?? '');
1872                         $richbody = Post\Media::removeFromEndOfBody($richbody);
1873                         if (!empty($item['quote-uri-id']) && ($item['quote-uri-id'] != $item['uri-id'])) {
1874                                 if ($real_quote) {
1875                                         $richbody = DI::contentItem()->addShareLink($richbody, $item['quote-uri-id']);
1876                                 } else {
1877                                         $richbody = DI::contentItem()->addSharedPost($item, $richbody);
1878                                 }
1879                         }
1880                         $richbody = BBCode::replaceAttachment($richbody);
1881
1882                         $data['contentMap'][$language] = BBCode::convertForUriId($item['uri-id'], $richbody, BBCode::EXTERNAL);
1883                 }
1884
1885                 if (!empty($item['quote-uri-id']) && ($item['quote-uri-id'] != $item['uri-id'])) {
1886                         $source = DI::contentItem()->addSharedPost($item, $item['body']);
1887                 } else {
1888                         $source = $item['body'];
1889                 }
1890
1891                 $data['source'] = ['content' => $source, 'mediaType' => "text/bbcode"];
1892
1893                 if (!empty($item['signed_text']) && ($item['uri'] != $item['thr-parent'])) {
1894                         $data['diaspora:comment'] = $item['signed_text'];
1895                 }
1896
1897                 $data['attachment'] = self::createAttachmentList($item);
1898                 $data['tag'] = array_merge(self::createTagList($item, $data['quoteUrl'] ?? ''), $emojis);
1899
1900                 if (empty($data['location']) && (!empty($item['coord']) || !empty($item['location']))) {
1901                         $data['location'] = self::createLocation($item);
1902                 }
1903
1904                 if (!empty($item['app'])) {
1905                         $data['generator'] = ['type' => 'Application', 'name' => $item['app']];
1906                 }
1907
1908                 $data = array_merge($data, $permission_block);
1909
1910                 return $data;
1911         }
1912
1913         /**
1914          * Fetches the language from the post, the user or the system.
1915          *
1916          * @param array $item
1917          * @return string language string
1918          */
1919         private static function getLanguage(array $item): string
1920         {
1921                 // Try to fetch the language from the post itself
1922                 if (!empty($item['language'])) {
1923                         $languages = array_keys(json_decode($item['language'], true));
1924                         if (!empty($languages[0])) {
1925                                 return DI::l10n()->toISO6391($languages[0]);
1926                         }
1927                 }
1928
1929                 // Otherwise use the user's language
1930                 if (!empty($item['uid'])) {
1931                         $user = DBA::selectFirst('user', ['language'], ['uid' => $item['uid']]);
1932                         if (!empty($user['language'])) {
1933                                 return DI::l10n()->toISO6391($user['language']);
1934                         }
1935                 }
1936
1937                 // And finally just use the system language
1938                 return DI::l10n()->toISO6391(DI::config()->get('system', 'language'));
1939         }
1940
1941         /**
1942          * Creates an an "add tag" entry
1943          *
1944          * @param array $item Item array
1945          * @param array $activity activity data
1946          * @return array with activity data for adding tags
1947          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1948          * @throws \ImagickException
1949          */
1950         private static function createAddTag(array $item, array $activity): array
1951         {
1952                 $object = XML::parseString($item['object']);
1953                 $target = XML::parseString($item['target']);
1954
1955                 $activity['diaspora:guid'] = $item['guid'];
1956                 $activity['actor'] = $item['author-link'];
1957                 $activity['target'] = (string)$target->id;
1958                 $activity['summary'] = BBCode::toPlaintext($item['body']);
1959                 $activity['object'] = ['id' => (string)$object->id, 'type' => 'tag', 'name' => (string)$object->title, 'content' => (string)$object->content];
1960
1961                 return $activity;
1962         }
1963
1964         /**
1965          * Creates an announce object entry
1966          *
1967          * @param array $item Item array
1968          * @param array $activity activity data
1969          * @param bool  $api_mode
1970          * @return array with activity data
1971          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1972          * @throws \ImagickException
1973          */
1974         private static function createAnnounce(array $item, array $activity, bool $api_mode = false): array
1975         {
1976                 $orig_body = $item['body'];
1977                 $announce = self::getAnnounceArray($item);
1978                 if (empty($announce)) {
1979                         $activity['type'] = 'Create';
1980                         $activity['object'] = self::createNote($item, $api_mode);
1981                         return $activity;
1982                 }
1983
1984                 if (empty($announce['comment'])) {
1985                         // Pure announce, without a quote
1986                         $activity['type'] = 'Announce';
1987                         $activity['object'] = $announce['object']['uri'];
1988                         return $activity;
1989                 }
1990
1991                 // Quote
1992                 $activity['type'] = 'Create';
1993                 $item['body'] = $announce['comment'] . "\n" . $announce['object']['plink'];
1994                 $activity['object'] = self::createNote($item, $api_mode);
1995
1996                 /// @todo Finally decide how to implement this in AP. This is a possible way:
1997                 $activity['object']['attachment'][] = self::createNote($announce['object']);
1998
1999                 $activity['object']['source']['content'] = $orig_body;
2000                 return $activity;
2001         }
2002
2003         /**
2004          * Return announce related data if the item is an announce
2005          *
2006          * @param array $item
2007          * @return array Announcement array
2008          */
2009         private static function getAnnounceArray(array $item): array
2010         {
2011                 $reshared = DI::contentItem()->getSharedPost($item, Item::DELIVER_FIELDLIST);
2012                 if (empty($reshared)) {
2013                         return [];
2014                 }
2015
2016                 if (!in_array($reshared['post']['network'], [Protocol::ACTIVITYPUB, Protocol::DFRN])) {
2017                         return [];
2018                 }
2019
2020                 $profile = APContact::getByURL($reshared['post']['author-link'], false);
2021                 if (empty($profile)) {
2022                         return [];
2023                 }
2024
2025                 return ['object' => $reshared['post'], 'actor' => $profile, 'comment' => $reshared['comment']];
2026         }
2027
2028         /**
2029          * Checks if the provided item array is an announce
2030          *
2031          * @param array $item Item array
2032          * @return boolean Whether item is an announcement
2033          */
2034         public static function isAnnounce(array $item): bool
2035         {
2036                 if (!empty($item['verb']) && ($item['verb'] == Activity::ANNOUNCE)) {
2037                         return true;
2038                 }
2039
2040                 $announce = self::getAnnounceArray($item);
2041                 if (empty($announce)) {
2042                         return false;
2043                 }
2044
2045                 return empty($announce['comment']);
2046         }
2047
2048         /**
2049          * Creates an activity id for a given contact id
2050          *
2051          * @param integer $cid Contact ID of target
2052          *
2053          * @return bool|string activity id
2054          */
2055         public static function activityIDFromContact(int $cid)
2056         {
2057                 $contact = DBA::selectFirst('contact', ['uid', 'id', 'created'], ['id' => $cid]);
2058                 if (!DBA::isResult($contact)) {
2059                         return false;
2060                 }
2061
2062                 $hash = hash('ripemd128', $contact['uid'].'-'.$contact['id'].'-'.$contact['created']);
2063                 $uuid = substr($hash, 0, 8). '-' . substr($hash, 8, 4) . '-' . substr($hash, 12, 4) . '-' . substr($hash, 16, 4) . '-' . substr($hash, 20, 12);
2064                 return DI::baseUrl() . '/activity/' . $uuid;
2065         }
2066
2067         /**
2068          * Transmits a contact suggestion to a given inbox
2069          *
2070          * @param array   $owner         Sender owner-view record
2071          * @param string  $inbox         Target inbox
2072          * @param integer $suggestion_id Suggestion ID
2073          * @return boolean was the transmission successful?
2074          * @throws \Exception
2075          */
2076         public static function sendContactSuggestion(array $owner, string $inbox, int $suggestion_id): bool
2077         {
2078                 $suggestion = DI::fsuggest()->selectOneById($suggestion_id);
2079
2080                 $data = [
2081                         '@context' => ActivityPub::CONTEXT,
2082                         'id' => DI::baseUrl() . '/activity/' . System::createGUID(),
2083                         'type' => 'Announce',
2084                         'actor' => $owner['url'],
2085                         'object' => $suggestion->url,
2086                         'content' => $suggestion->note,
2087                         'instrument' => self::getService(),
2088                         'to' => [ActivityPub::PUBLIC_COLLECTION],
2089                         'cc' => []
2090                 ];
2091
2092                 $signed = LDSignature::sign($data, $owner);
2093
2094                 Logger::info('Deliver profile deletion for user ' . $owner['uid'] . ' to ' . $inbox . ' via ActivityPub');
2095                 return HTTPSignature::transmit($signed, $inbox, $owner);
2096         }
2097
2098         /**
2099          * Transmits a profile relocation to a given inbox
2100          *
2101          * @param array  $owner Sender owner-view record
2102          * @param string $inbox Target inbox
2103          * @return boolean was the transmission successful?
2104          * @throws \Exception
2105          */
2106         public static function sendProfileRelocation(array $owner, string $inbox): bool
2107         {
2108                 $data = [
2109                         '@context' => ActivityPub::CONTEXT,
2110                         'id' => DI::baseUrl() . '/activity/' . System::createGUID(),
2111                         'type' => 'dfrn:relocate',
2112                         'actor' => $owner['url'],
2113                         'object' => $owner['url'],
2114                         'published' => DateTimeFormat::utcNow(DateTimeFormat::ATOM),
2115                         'instrument' => self::getService(),
2116                         'to' => [ActivityPub::PUBLIC_COLLECTION],
2117                         'cc' => []
2118                 ];
2119
2120                 $signed = LDSignature::sign($data, $owner);
2121
2122                 Logger::info('Deliver profile relocation for user ' . $owner['uid'] . ' to ' . $inbox . ' via ActivityPub');
2123                 return HTTPSignature::transmit($signed, $inbox, $owner);
2124         }
2125
2126         /**
2127          * Transmits a profile deletion to a given inbox
2128          *
2129          * @param array  $owner Sender owner-view record
2130          * @param string $inbox Target inbox
2131          * @return boolean was the transmission successful?
2132          * @throws \Exception
2133          */
2134         public static function sendProfileDeletion(array $owner, string $inbox): bool
2135         {
2136                 if (empty($owner['uprvkey'])) {
2137                         Logger::error('No private key for owner found, the deletion message cannot be processed.', ['user' => $owner['uid']]);
2138                         return false;
2139                 }
2140
2141                 $data = ['@context' => ActivityPub::CONTEXT,
2142                         'id' => DI::baseUrl() . '/activity/' . System::createGUID(),
2143                         'type' => 'Delete',
2144                         'actor' => $owner['url'],
2145                         'object' => $owner['url'],
2146                         'published' => DateTimeFormat::utcNow(DateTimeFormat::ATOM),
2147                         'instrument' => self::getService(),
2148                         'to' => [ActivityPub::PUBLIC_COLLECTION],
2149                         'cc' => []];
2150
2151                 $signed = LDSignature::sign($data, $owner);
2152
2153                 Logger::info('Deliver profile deletion for user ' . $owner['uid'] . ' to ' . $inbox . ' via ActivityPub');
2154                 return HTTPSignature::transmit($signed, $inbox, $owner);
2155         }
2156
2157         /**
2158          * Transmits a profile change to a given inbox
2159          *
2160          * @param array  $owner Sender owner-view record
2161          * @param string $inbox Target inbox
2162          * @return boolean was the transmission successful?
2163          * @throws HTTPException\InternalServerErrorException
2164          * @throws HTTPException\NotFoundException
2165          * @throws \ImagickException
2166          */
2167         public static function sendProfileUpdate(array $owner, string $inbox): bool
2168         {
2169                 $profile = APContact::getByURL($owner['url']);
2170
2171                 $data = ['@context' => ActivityPub::CONTEXT,
2172                         'id' => DI::baseUrl() . '/activity/' . System::createGUID(),
2173                         'type' => 'Update',
2174                         'actor' => $owner['url'],
2175                         'object' => self::getProfile($owner['uid']),
2176                         'published' => DateTimeFormat::utcNow(DateTimeFormat::ATOM),
2177                         'instrument' => self::getService(),
2178                         'to' => [$profile['followers']],
2179                         'cc' => []];
2180
2181                 $signed = LDSignature::sign($data, $owner);
2182
2183                 Logger::info('Deliver profile update for user ' . $owner['uid'] . ' to ' . $inbox . ' via ActivityPub');
2184                 return HTTPSignature::transmit($signed, $inbox, $owner);
2185         }
2186
2187         /**
2188          * Transmits a given activity to a target
2189          *
2190          * @param string  $activity Type name
2191          * @param string  $target   Target profile
2192          * @param integer $uid      User ID
2193          * @param string  $id Activity-identifier
2194          * @return bool
2195          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2196          * @throws \ImagickException
2197          * @throws \Exception
2198          */
2199         public static function sendActivity(string $activity, string $target, int $uid, string $id = ''): bool
2200         {
2201                 $profile = APContact::getByURL($target);
2202                 if (empty($profile['inbox'])) {
2203                         Logger::warning('No inbox found for target', ['target' => $target, 'profile' => $profile]);
2204                         return false;
2205                 }
2206
2207                 $owner = User::getOwnerDataById($uid);
2208                 if (empty($owner)) {
2209                         Logger::warning('No user found for actor, aborting', ['uid' => $uid]);
2210                         return false;
2211                 }
2212
2213                 if (empty($id)) {
2214                         $id = DI::baseUrl() . '/activity/' . System::createGUID();
2215                 }
2216
2217                 $data = [
2218                         '@context' => ActivityPub::CONTEXT,
2219                         'id' => $id,
2220                         'type' => $activity,
2221                         'actor' => $owner['url'],
2222                         'object' => $profile['url'],
2223                         'instrument' => self::getService(),
2224                         'to' => [$profile['url']],
2225                 ];
2226
2227                 Logger::info('Sending activity ' . $activity . ' to ' . $target . ' for user ' . $uid);
2228
2229                 $signed = LDSignature::sign($data, $owner);
2230                 return HTTPSignature::transmit($signed, $profile['inbox'], $owner);
2231         }
2232
2233         /**
2234          * Transmits a "follow object" activity to a target
2235          * This is a preparation for sending automated "follow" requests when receiving "Announce" messages
2236          *
2237          * @param string  $object Object URL
2238          * @param string  $target Target profile
2239          * @param integer $uid    User ID
2240          * @return bool
2241          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2242          * @throws \ImagickException
2243          * @throws \Exception
2244          */
2245         public static function sendFollowObject(string $object, string $target, int $uid = 0): bool
2246         {
2247                 $profile = APContact::getByURL($target);
2248                 if (empty($profile['inbox'])) {
2249                         Logger::warning('No inbox found for target', ['target' => $target, 'profile' => $profile]);
2250                         return false;
2251                 }
2252
2253                 if (empty($uid)) {
2254                         // We need to use some user as a sender. It doesn't care who it will send. We will use an administrator account.
2255                         $admin = User::getFirstAdmin(['uid']);
2256                         if (!$admin) {
2257                                 Logger::warning('No available admin user for transmission', ['target' => $target]);
2258                                 return false;
2259                         }
2260
2261                         $uid = $admin['uid'];
2262                 }
2263
2264                 $condition = ['verb' => Activity::FOLLOW, 'uid' => 0, 'parent-uri' => $object,
2265                         'author-id' => Contact::getPublicIdByUserId($uid)];
2266                 if (Post::exists($condition)) {
2267                         Logger::info('Follow for ' . $object . ' for user ' . $uid . ' does already exist.');
2268                         return false;
2269                 }
2270
2271                 $owner = User::getOwnerDataById($uid);
2272
2273                 $data = [
2274                         '@context' => ActivityPub::CONTEXT,
2275                         'id' => DI::baseUrl() . '/activity/' . System::createGUID(),
2276                         'type' => 'Follow',
2277                         'actor' => $owner['url'],
2278                         'object' => $object,
2279                         'instrument' => self::getService(),
2280                         'to' => [$profile['url']],
2281                 ];
2282
2283                 Logger::info('Sending follow ' . $object . ' to ' . $target . ' for user ' . $uid);
2284
2285                 $signed = LDSignature::sign($data, $owner);
2286                 return HTTPSignature::transmit($signed, $profile['inbox'], $owner);
2287         }
2288
2289         /**
2290          * Transmit a message that the contact request had been accepted
2291          *
2292          * @param string  $target Target profile
2293          * @param string  $id Object id
2294          * @param integer $uid    User ID
2295          * @return void
2296          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2297          * @throws \ImagickException
2298          */
2299         public static function sendContactAccept(string $target, string $id, int $uid)
2300         {
2301                 $profile = APContact::getByURL($target);
2302                 if (empty($profile['inbox'])) {
2303                         Logger::warning('No inbox found for target', ['target' => $target, 'profile' => $profile]);
2304                         return;
2305                 }
2306
2307                 $owner = User::getOwnerDataById($uid);
2308                 if (!$owner) {
2309                         Logger::notice('No user found for actor', ['uid' => $uid]);
2310                         return;
2311                 }
2312
2313                 $data = [
2314                         '@context' => ActivityPub::CONTEXT,
2315                         'id' => DI::baseUrl() . '/activity/' . System::createGUID(),
2316                         'type' => 'Accept',
2317                         'actor' => $owner['url'],
2318                         'object' => [
2319                                 'id' => $id,
2320                                 'type' => 'Follow',
2321                                 'actor' => $profile['url'],
2322                                 'object' => $owner['url']
2323                         ],
2324                         'instrument' => self::getService(),
2325                         'to' => [$profile['url']],
2326                 ];
2327
2328                 Logger::debug('Sending accept to ' . $target . ' for user ' . $uid . ' with id ' . $id);
2329
2330                 $signed = LDSignature::sign($data, $owner);
2331                 HTTPSignature::transmit($signed, $profile['inbox'], $owner);
2332         }
2333
2334         /**
2335          * Reject a contact request or terminates the contact relation
2336          *
2337          * @param string $target   Target profile
2338          * @param string $objectId Object id
2339          * @param array  $owner    Sender owner-view record
2340          * @return bool Operation success
2341          * @throws HTTPException\InternalServerErrorException
2342          * @throws \ImagickException
2343          */
2344         public static function sendContactReject(string $target, string $objectId, array $owner): bool
2345         {
2346                 $profile = APContact::getByURL($target);
2347                 if (empty($profile['inbox'])) {
2348                         Logger::warning('No inbox found for target', ['target' => $target, 'profile' => $profile]);
2349                         return false;
2350                 }
2351
2352                 $data = [
2353                         '@context' => ActivityPub::CONTEXT,
2354                         'id' => DI::baseUrl() . '/activity/' . System::createGUID(),
2355                         'type' => 'Reject',
2356                         'actor'  => $owner['url'],
2357                         'object' => [
2358                                 'id' => $objectId,
2359                                 'type' => 'Follow',
2360                                 'actor' => $profile['url'],
2361                                 'object' => $owner['url']
2362                         ],
2363                         'instrument' => self::getService(),
2364                         'to' => [$profile['url']],
2365                 ];
2366
2367                 Logger::debug('Sending reject to ' . $target . ' for user ' . $owner['uid'] . ' with id ' . $objectId);
2368
2369                 $signed = LDSignature::sign($data, $owner);
2370                 return HTTPSignature::transmit($signed, $profile['inbox'], $owner);
2371         }
2372
2373         /**
2374          * Transmits a message that we don't want to follow this contact anymore
2375          *
2376          * @param string  $target Target profile
2377          * @param integer $cid    Contact id
2378          * @param array   $owner  Sender owner-view record
2379          * @return bool success
2380          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2381          * @throws \ImagickException
2382          * @throws \Exception
2383          */
2384         public static function sendContactUndo(string $target, int $cid, array $owner): bool
2385         {
2386                 $profile = APContact::getByURL($target);
2387                 if (empty($profile['inbox'])) {
2388                         Logger::warning('No inbox found for target', ['target' => $target, 'profile' => $profile]);
2389                         return false;
2390                 }
2391
2392                 $object_id = self::activityIDFromContact($cid);
2393                 if (empty($object_id)) {
2394                         return false;
2395                 }
2396
2397                 $objectId = DI::baseUrl() . '/activity/' . System::createGUID();
2398
2399                 $data = [
2400                         '@context' => ActivityPub::CONTEXT,
2401                         'id' => $objectId,
2402                         'type' => 'Undo',
2403                         'actor' => $owner['url'],
2404                         'object' => [
2405                                 'id' => $object_id,
2406                                 'type' => 'Follow',
2407                                 'actor' => $owner['url'],
2408                                 'object' => $profile['url']
2409                         ],
2410                         'instrument' => self::getService(),
2411                         'to' => [$profile['url']],
2412                 ];
2413
2414                 Logger::info('Sending undo to ' . $target . ' for user ' . $owner['uid'] . ' with id ' . $objectId);
2415
2416                 $signed = LDSignature::sign($data, $owner);
2417                 return HTTPSignature::transmit($signed, $profile['inbox'], $owner);
2418         }
2419
2420         /**
2421          * Prepends mentions (@) to $body variable
2422          *
2423          * @param string $body HTML code
2424          * @param int    $uriId
2425          * @param string $authorLink Author link
2426          * @return string HTML code with prepended mentions
2427          */
2428         private static function prependMentions(string $body, int $uriid, string $authorLink): string
2429         {
2430                 $mentions = [];
2431
2432                 foreach (Tag::getByURIId($uriid, [Tag::IMPLICIT_MENTION]) as $tag) {
2433                         $profile = Contact::getByURL($tag['url'], false, ['addr', 'contact-type', 'nick']);
2434                         if (!empty($profile['addr'])
2435                                 && $profile['contact-type'] != Contact::TYPE_COMMUNITY
2436                                 && !strstr($body, $profile['addr'])
2437                                 && !strstr($body, $tag['url'])
2438                                 && $tag['url'] !== $authorLink
2439                         ) {
2440                                 $mentions[] = '@[url=' . $tag['url'] . ']' . $profile['nick'] . '[/url]';
2441                         }
2442                 }
2443
2444                 $mentions[] = $body;
2445
2446                 return implode(' ', $mentions);
2447         }
2448 }