X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FContent%2FItem.php;h=c7438d2593b57ec0f939f643bcc1c4e067590430;hb=ddd2c72be8e7245389f97d74dd847f5a20410936;hp=c94ec1299b3f5bc0bb9482cc1e8844cc2b91e705;hpb=1dbc9bd472c1ed4048386f5d5c8ace5ef77af71b;p=friendica.git diff --git a/src/Content/Item.php b/src/Content/Item.php index c94ec1299b..c7438d2593 100644 --- a/src/Content/Item.php +++ b/src/Content/Item.php @@ -1,6 +1,6 @@ activity->match($item['verb'], Activity::TAG)) { $fields = [ - 'author-id', 'author-link', 'author-name', 'author-network', + 'author-id', 'author-link', 'author-name', 'author-network', 'author-link', 'author-alias', 'verb', 'object-type', 'resource-id', 'body', 'plink' ]; $obj = Post::selectFirst($fields, ['uri' => $item['parent-uri']]); @@ -382,7 +383,7 @@ class Item 'url' => $item['author-link'], 'alias' => $item['author-alias'], ]; - $profile_link = Contact::magicLinkByContact($author, $item['author-link']); + $profile_link = Contact::magicLinkByContact($author, Contact::getProfileLink($author)); if (strpos($profile_link, 'contact/redir/') === 0) { $status_link = $profile_link . '?' . http_build_query(['url' => $item['author-link'] . '/status']); $photos_link = $profile_link . '?' . http_build_query(['url' => $item['author-link'] . '/photos']); @@ -635,7 +636,7 @@ class Item public function addSharedPost(array $item, string $body = ''): string { if (empty($body)) { - $body = $item['body']; + $body = $item['body'] ?? ''; } if (empty($item['quote-uri-id']) || ($item['quote-uri-id'] == $item['uri-id'])) { @@ -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,40 @@ class Item )); } } + + public function copyPermissions(int $fromUriId, int $toUriId, int $parentUriId) + { + $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']]); + $parent = Post::selectFirstPost(['author-id'], ['uri-id' => $parentUriId]); + $parent_author = DBA::selectFirst('account-view', ['ap-followers'], ['id' => $parent['author-id']]); + + $followers = ''; + foreach (array_column(Tag::getByURIId($parentUriId, [Tag::TO, Tag::CC, Tag::BCC]), 'url') as $url) { + if ($url == $parent_author['ap-followers']) { + $followers = $url; + break; + } + } + + $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']) { + if (!empty($followers)) { + $receiver['url'] = $followers; + $receiver['name'] = trim(parse_url($receiver['url'], PHP_URL_PATH), '/'); + Tag::store($toUriId, $receiver['type'], $receiver['name'], $receiver['url']); + } + $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']); + } + } }