]> git.mxchange.org Git - friendica.git/blobdiff - src/Content/Item.php
Remove DI dependency in Object\Api\Mastodon\Instance
[friendica.git] / src / Content / Item.php
index 48dcb80d321a04579cbd9e1f7ff4257c5f11306b..ab5ff1698f8db1f9d8bf8ae1dd406f14e93d902d 100644 (file)
@@ -48,6 +48,7 @@ use Friendica\Model\User;
 use Friendica\Network\HTTPException;
 use Friendica\Object\EMail\ItemCCEMail;
 use Friendica\Protocol\Activity;
+use Friendica\Protocol\ActivityPub;
 use Friendica\Util\ACLFormatter;
 use Friendica\Util\DateTimeFormat;
 use Friendica\Util\Emailer;
@@ -991,12 +992,14 @@ class Item
                        $post['deny_gid']  = $owner['deny_gid'];
                }
 
-               if ($post['allow_gid'] || $post['allow_cid'] || $post['deny_gid'] || $post['deny_cid']) {
-                       $post['private'] = ItemModel::PRIVATE;
-               } elseif ($this->pConfig->get($post['uid'], 'system', 'unlisted')) {
-                       $post['private'] = ItemModel::UNLISTED;
-               } else {
-                       $post['private'] = ItemModel::PUBLIC;
+               if (!isset($post['private'])) {
+                       if ($post['allow_gid'] || $post['allow_cid'] || $post['deny_gid'] || $post['deny_cid']) {
+                               $post['private'] = ItemModel::PRIVATE;
+                       } elseif ($this->pConfig->get($post['uid'], 'system', 'unlisted')) {
+                               $post['private'] = ItemModel::UNLISTED;
+                       } else {
+                               $post['private'] = ItemModel::PUBLIC;
+                       }
                }
 
                if (empty($post['contact-id'])) {
@@ -1066,4 +1069,25 @@ class Item
                        ));
                }
        }
+
+       public function copyPermissions(int $fromUriId, int $toUriId)
+       {
+               $from        = Post::selectFirstPost(['author-id'], ['uri-id' => $fromUriId]);
+               $from_author = DBA::selectFirst('account-view', ['ap-followers'], ['id' => $from['author-id']]);
+               $to          = Post::selectFirstPost(['author-id'], ['uri-id' => $toUriId]);
+               $to_author   = DBA::selectFirst('account-view', ['ap-followers'], ['id' => $to['author-id']]);
+
+               $existing = array_column(Tag::getByURIId($toUriId, [Tag::TO, Tag::CC, Tag::BCC]), 'url');
+
+               foreach (Tag::getByURIId($fromUriId, [Tag::TO, Tag::CC, Tag::BCC]) as $receiver) {
+                       if ($receiver['url'] == $from_author['ap-followers']) {
+                               $receiver['url']  = $to_author['ap-followers'];
+                               $receiver['name'] = trim(parse_url($receiver['url'], PHP_URL_PATH), '/');
+                       }
+                       if (in_array($receiver['url'], $existing)) {
+                               continue;
+                       }
+                       Tag::store($toUriId, $receiver['type'], $receiver['name'], $receiver['url']);
+               }
+       }
 }