]> git.mxchange.org Git - friendica.git/blobdiff - src/Protocol/ActivityPub/Transmitter.php
Merge pull request #13269 from MrPetovan/bug/fix-exception-return-code
[friendica.git] / src / Protocol / ActivityPub / Transmitter.php
index ec61eb2eb34668e8c24ddb402f3e3157d8e3ee26..6c0cbd92b9cae04813e5c912331ace7501b7bc8d 100644 (file)
@@ -497,7 +497,7 @@ class Transmitter
         * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         * @throws \ImagickException
         */
-       private static function fetchPermissionBlockFromThreadParent(array $item): array
+       private static function fetchPermissionBlockFromThreadParent(array $item, bool $is_group_thread): array
        {
                if (empty($item['thr-parent-id'])) {
                        return [];
@@ -528,7 +528,9 @@ class Transmitter
                $type = [Tag::TO => 'to', Tag::CC => 'cc', Tag::BTO => 'bto', Tag::BCC => 'bcc', Tag::AUDIENCE => 'audience'];
                foreach (Tag::getByURIId($item['thr-parent-id'], [Tag::TO, Tag::CC, Tag::BTO, Tag::BCC, Tag::AUDIENCE]) as $receiver) {
                        if (!empty($parent_profile['followers']) && $receiver['url'] == $parent_profile['followers'] && !empty($item_profile['followers'])) {
-                               $permissions[$type[$receiver['type']]][] = $item_profile['followers'];
+                               if (!$is_group_thread) {
+                                       $permissions[$type[$receiver['type']]][] = $item_profile['followers'];
+                               }
                        } elseif (!in_array($receiver['url'], $exclude)) {
                                $permissions[$type[$receiver['type']]][] = $receiver['url'];
                        }
@@ -573,13 +575,16 @@ class Transmitter
                $always_bcc = false;
                $is_group   = false;
                $follower   = '';
+               $exclusive  = false;
+               $mention    = false;
+               $audience   = [];
 
                // Check if we should always deliver our stuff via BCC
                if (!empty($item['uid'])) {
                        $owner = User::getOwnerDataById($item['uid']);
                        if (!empty($owner)) {
                                $always_bcc = $owner['hide-friends'];
-                               $is_group   = ($owner['account-type'] == User::ACCOUNT_TYPE_COMMUNITY) && $owner['manually-approve'];
+                               $is_group   = ($owner['account-type'] == User::ACCOUNT_TYPE_COMMUNITY);
 
                                $profile  = APContact::getByURL($owner['url'], false);
                                $follower = $profile['followers'] ?? '';
@@ -598,40 +603,43 @@ class Transmitter
                        $is_group_thread = false;
                }
 
-               $exclusive = false;
-               $mention   = false;
-
-               $parent_tags = Tag::getByURIId($item['parent-uri-id'], [Tag::AUDIENCE, Tag::MENTION]);
-               if (!empty($parent_tags)) {
-                       $is_group_thread = false;
-                       foreach ($parent_tags as $tag) {
-                               if ($tag['type'] != Tag::AUDIENCE) {
-                                       continue;
-                               }
-                               $profile = APContact::getByURL($tag['url'], false);
-                               if (!empty($profile) && ($profile['type'] == 'Group')) {
-                                       $is_group_thread = true;
-                               }
-                       }
-                       if ($is_group_thread) {
+               if (!$is_group) {
+                       $parent_tags = Tag::getByURIId($item['parent-uri-id'], [Tag::AUDIENCE, Tag::MENTION]);
+                       if (!empty($parent_tags)) {
+                               $is_group_thread = false;
                                foreach ($parent_tags as $tag) {
-                                       if (($tag['type'] == Tag::MENTION) && ($tag['url'] == $profile['url'])) {
-                                               $mention = false;
+                                       if ($tag['type'] != Tag::AUDIENCE) {
+                                               continue;
+                                       }
+                                       $profile = APContact::getByURL($tag['url'], false);
+                                       if (!empty($profile) && ($profile['type'] == 'Group')) {
+                                               $audience[] = $tag['url'];
+                                               $is_group_thread = true;
                                        }
                                }
-                               $exclusive = !$mention;
-                       }
-               } elseif ($is_group_thread) {
-                       foreach (Tag::getByURIId($item['parent-uri-id'], [Tag::MENTION, Tag::EXCLUSIVE_MENTION]) as $term) {
-                               $profile = APContact::getByURL($term['url'], false);
-                               if (!empty($profile) && ($profile['type'] == 'Group')) {
-                                       if ($term['type'] == Tag::EXCLUSIVE_MENTION) {
-                                               $exclusive = true;
-                                       } elseif ($term['type'] == Tag::MENTION) {
-                                               $mention = true;
+                               if ($is_group_thread) {
+                                       foreach ($parent_tags as $tag) {
+                                               if (($tag['type'] == Tag::MENTION) && in_array($tag['url'], $audience)) {
+                                                       $mention = true;
+                                               }
+                                       }
+                                       $exclusive = !$mention;
+                               }
+                       } elseif ($is_group_thread) {
+                               foreach (Tag::getByURIId($item['parent-uri-id'], [Tag::MENTION, Tag::EXCLUSIVE_MENTION]) as $term) {
+                                       $profile = APContact::getByURL($term['url'], false);
+                                       if (!empty($profile) && ($profile['type'] == 'Group')) {
+                                               if ($term['type'] == Tag::EXCLUSIVE_MENTION) {
+                                                       $audience[] = $term['url'];
+                                                       $exclusive  = true;
+                                               } elseif ($term['type'] == Tag::MENTION) {
+                                                       $mention = true;
+                                               }
                                        }
                                }
                        }
+               } else {
+                       $audience[] = $owner['url'];
                }
 
                if (self::isAnnounce($item) || self::isAPPost($last_id)) {
@@ -642,7 +650,7 @@ class Transmitter
                        $networks = [Protocol::ACTIVITYPUB, Protocol::OSTATUS];
                }
 
-               $data = ['to' => [], 'cc' => [], 'bcc' => [] , 'audience' => []];
+               $data = ['to' => [], 'cc' => [], 'bcc' => [] , 'audience' => $audience];
 
                if ($item['gravity'] == Item::GRAVITY_PARENT) {
                        $actor_profile = APContact::getByURL($item['owner-link']);
@@ -650,8 +658,7 @@ class Transmitter
                        $actor_profile = APContact::getByURL($item['author-link']);
                }
 
-
-               $terms = Tag::getByURIId($item['uri-id'], [Tag::MENTION, Tag::IMPLICIT_MENTION, Tag::EXCLUSIVE_MENTION]);
+               $terms = Tag::getByURIId($item['uri-id'], [Tag::MENTION, Tag::IMPLICIT_MENTION, Tag::EXCLUSIVE_MENTION, Tag::AUDIENCE]);
 
                if ($item['private'] != Item::PRIVATE) {
                        // Directly mention the original author upon a quoted reshare.
@@ -663,8 +670,8 @@ class Transmitter
                                $data['cc'][] = $announce['actor']['url'];
                        }
 
-                       if (!$is_group_thread) {
-                               $data = array_merge($data, self::fetchPermissionBlockFromThreadParent($item));
+                       if (!$exclusive) {
+                               $data = array_merge_recursive($data, self::fetchPermissionBlockFromThreadParent($item, $is_group_thread));
                        }
 
                        // Check if the item is completely public or unlisted
@@ -677,6 +684,9 @@ class Transmitter
                        foreach ($terms as $term) {
                                $profile = APContact::getByURL($term['url'], false);
                                if (!empty($profile)) {
+                                       if (($term['type'] == Tag::AUDIENCE) && ($profile['type'] == 'Group')) {
+                                               $data['audience'][] = $profile['url'];
+                                       }
                                        if ($term['type'] == Tag::EXCLUSIVE_MENTION) {
                                                $exclusive = true;
                                                if (!empty($profile['followers']) && ($profile['type'] == 'Group')) {
@@ -705,6 +715,9 @@ class Transmitter
 
                                        $profile = APContact::getByURL($term['url'], false);
                                        if (!empty($profile)) {
+                                               if (($term['type'] == Tag::AUDIENCE) && ($profile['type'] == 'Group')) {
+                                                       $data['audience'][] = $profile['url'];
+                                               }
                                                if ($term['type'] == Tag::EXCLUSIVE_MENTION) {
                                                        $exclusive = true;
                                                        if (!empty($profile['followers']) && ($profile['type'] == 'Group')) {
@@ -748,7 +761,7 @@ class Transmitter
                        }
                }
 
-               if (!empty($item['parent']) && (!$is_group_thread || ($item['private'] == Item::PRIVATE))) {
+               if (!empty($item['parent']) && (!$exclusive || ($item['private'] == Item::PRIVATE))) {
                        if ($item['private'] == Item::PRIVATE) {
                                $condition = ['parent' => $item['parent'], 'uri-id' => $item['thr-parent-id']];
                        } else {
@@ -815,10 +828,6 @@ class Transmitter
                        unset($data['bcc'][$key]);
                }
 
-               if (($key = array_search($item['author-link'], $data['audience'])) !== false) {
-                       unset($data['audience'][$key]);
-               }
-
                foreach ($data['to'] as $to) {
                        if (($key = array_search($to, $data['cc'])) !== false) {
                                unset($data['cc'][$key]);
@@ -1009,7 +1018,7 @@ class Transmitter
                                }
 
                                if ($item_profile && ($receiver == $item_profile['followers']) && ($uid == $profile_uid)) {
-                                       $inboxes = array_merge($inboxes, self::fetchTargetInboxesforUser($uid, $personal, self::isAPPost($last_id)));
+                                       $inboxes = array_merge_recursive($inboxes, self::fetchTargetInboxesforUser($uid, $personal, self::isAPPost($last_id)));
                                } else {
                                        $profile = APContact::getByURL($receiver, false);
                                        if (!empty($profile)) {
@@ -1195,14 +1204,16 @@ class Transmitter
        /**
         * Creates the activity or fetches it from the cache
         *
-        * @param integer $item_id Item id
-        * @param boolean $force Force new cache entry
+        * @param integer $item_id           Item id
+        * @param boolean $force             Force new cache entry
+        * @param boolean $object_mode       true = Create the object, false = create the activity with the object
+        * @param boolean $announce_activity true = the announced object is the activity, false = we announce the object link
         * @return array|false activity or false on failure
         * @throws \Exception
         */
-       public static function createCachedActivityFromItem(int $item_id, bool $force = false, bool $object_mode = false)
+       public static function createCachedActivityFromItem(int $item_id, bool $force = false, bool $object_mode = false, $announce_activity = false)
        {
-               $cachekey = 'APDelivery:createActivity:' . $item_id . ':' . (int)$object_mode;
+               $cachekey = 'APDelivery:createActivity:' . $item_id . ':' . (int)$object_mode . ':' . (int)$announce_activity;
 
                if (!$force) {
                        $data = DI::cache()->get($cachekey);
@@ -1211,7 +1222,7 @@ class Transmitter
                        }
                }
 
-               $data = self::createActivityFromItem($item_id, $object_mode);
+               $data = self::createActivityFromItem($item_id, $object_mode, false, $announce_activity);
 
                DI::cache()->set($cachekey, $data, Duration::QUARTER_HOUR);
                return $data;
@@ -1221,12 +1232,13 @@ class Transmitter
         * Creates an activity array for a given item id
         *
         * @param integer $item_id
-        * @param boolean $object_mode Is the activity item is used inside another object?
-        * @param boolean $api_mode    "true" if used for the API
+        * @param boolean $object_mode       true = Create the object, false = create the activity with the object
+        * @param boolean $api_mode          true = used for the API
+        * @param boolean $announce_activity true = the announced object is the activity, false = we announce the object link
         * @return false|array
         * @throws \Exception
         */
-       public static function createActivityFromItem(int $item_id, bool $object_mode = false, $api_mode = false)
+       public static function createActivityFromItem(int $item_id, bool $object_mode = false, $api_mode = false, $announce_activity = false)
        {
                $condition = ['id' => $item_id];
                if (!$api_mode) {
@@ -1237,7 +1249,7 @@ class Transmitter
                if (!DBA::isResult($item)) {
                        return false;
                }
-               return self::createActivityFromArray($item, $object_mode, $api_mode);
+               return self::createActivityFromArray($item, $object_mode, $api_mode, $announce_activity);
        }
 
        /**
@@ -1245,12 +1257,13 @@ class Transmitter
         *
         * @param integer $uri_id
         * @param integer $uid
-        * @param boolean $object_mode Is the activity item is used inside another object?
-        * @param boolean $api_mode    "true" if used for the API
+        * @param boolean $object_mode       true = Create the object, false = create the activity with the object
+        * @param boolean $api_mode          true = used for the API
+        * @param boolean $announce_activity true = the announced object is the activity, false = we announce the object link
         * @return false|array
         * @throws \Exception
         */
-       public static function createActivityFromUriId(int $uri_id, int $uid, bool $object_mode = false, $api_mode = false)
+       public static function createActivityFromUriId(int $uri_id, int $uid, bool $object_mode = false, $api_mode = false, $announce_activity = false)
        {
                $condition = ['uri-id' => $uri_id, 'uid' => [0, $uid]];
                if (!$api_mode) {
@@ -1262,19 +1275,20 @@ class Transmitter
                        return false;
                }
 
-               return self::createActivityFromArray($item, $object_mode, $api_mode);
+               return self::createActivityFromArray($item, $object_mode, $api_mode, $announce_activity);
        }
 
        /**
         * Creates an activity array for a given item id
         *
         * @param integer $item_id
-        * @param boolean $object_mode Is the activity item is used inside another object?
-        * @param boolean $api_mode    "true" if used for the API
+        * @param boolean $object_mode       true = Create the object, false = create the activity with the object
+        * @param boolean $api_mode          true = used for the API
+        * @param boolean $announce_activity true = the announced object is the activity, false = we announce the object link
         * @return false|array
         * @throws \Exception
         */
-       private static function createActivityFromArray(array $item, bool $object_mode = false, $api_mode = false)
+       private static function createActivityFromArray(array $item, bool $object_mode = false, $api_mode = false, $announce_activity = false)
        {
                if (!$api_mode && !$item['deleted'] && $item['network'] == Protocol::ACTIVITYPUB) {
                        $data = Post\Activity::getByURIId($item['uri-id']);
@@ -1344,7 +1358,13 @@ class Transmitter
                        $data = self::createAddTag($item, $data);
                } elseif ($data['type'] == 'Announce') {
                        if ($item['verb'] == ACTIVITY::ANNOUNCE) {
-                               $data['object'] = $item['thr-parent'];
+                               if ($announce_activity) {
+                                       $anounced_item = Post::selectFirst(['uid'], ['uri-id' => $item['thr-parent-id'], 'origin' => true]);
+                                       $data['object'] = self::createActivityFromUriId($item['thr-parent-id'], $anounced_item['uid'] ?? 0);
+                                       unset($data['object']['@context']);
+                               } else {
+                                       $data['object'] = $item['thr-parent'];
+                               }
                        } else {
                                $data = self::createAnnounce($item, $data, $api_mode);
                        }