]> git.mxchange.org Git - friendica.git/commitdiff
Display the BCC receiver when it is the local user
authorMichael <heluecht@pirati.ca>
Thu, 24 Feb 2022 07:09:34 +0000 (07:09 +0000)
committerMichael <heluecht@pirati.ca>
Thu, 24 Feb 2022 07:09:34 +0000 (07:09 +0000)
src/Module/PermissionTooltip.php
view/lang/C/messages.po

index 372c508d6f6f217465513918d00c0188597073b0..032dc9c380827b8e7fd54001647257cb9fc24f9e 100644 (file)
@@ -24,9 +24,11 @@ namespace Friendica\Module;
 use Friendica\Core\Hook;
 use Friendica\Database\DBA;
 use Friendica\DI;
+use Friendica\Model\APContact;
 use Friendica\Model\Group;
 use Friendica\Model\Post;
 use Friendica\Model\Tag;
+use Friendica\Model\User;
 use Friendica\Network\HTTPException;
 use Friendica\Protocol\ActivityPub;
 
@@ -159,15 +161,30 @@ class PermissionTooltip extends \Friendica\BaseModule
         */
        private function fetchReceivers(int $uriId):string
        {
-               // We only fetch "to" and "cc", because "bcc" should never be displayed
+               $own_url = '';
+               $uid = local_user();
+               if ($uid) {
+                       $owner = User::getOwnerDataById($uid);
+                       if (!empty($owner['url'])) {
+                               $own_url = $owner['url'];
+                       }
+               }
+
                $receivers = [];
-               foreach (Tag::getByURIId($uriId, [Tag::TO, Tag::CC]) as $receiver) {
+               foreach (Tag::getByURIId($uriId, [Tag::TO, Tag::CC, Tag::BCC]) as $receiver) {
+                       // We only display BCC when it contains the current user
+                       if (($receiver['type'] == Tag::BCC) && ($receiver['url'] != $own_url)) {
+                               continue;
+                       }
+
                        if ($receiver['url'] == ActivityPub::PUBLIC_COLLECTION) {
                                $receivers[$receiver['type']][] = DI::l10n()->t('Public');
                        } else {
                                $apcontact = DBA::selectFirst('apcontact', ['name'], ['followers' => $receiver['url']]);
                                if (!empty($apcontact['name'])) {
                                        $receivers[$receiver['type']][] = DI::l10n()->t('Followers (%s)', $apcontact['name']);
+                               } elseif ($apcontact = APContact::getByURL($receiver['url'], false)) {
+                                       $receivers[$receiver['type']][] = $apcontact['name'];
                                } else {
                                        $receivers[$receiver['type']][] = $receiver['name'];
                                }
@@ -190,6 +207,9 @@ class PermissionTooltip extends \Friendica\BaseModule
                                case Tag::CC:
                                        $output .= DI::l10n()->t('<b>CC:</b> %s<br>', implode(', ', $receiver));
                                        break;
+                               case Tag::BCC:
+                                       $output .= DI::l10n()->t('<b>BCC:</b> %s<br>', implode(', ', $receiver));
+                                       break;
                        }
                }
 
index ea72ffd87e276f192183f1cd1ae8dad55f097bb4..7bf333005c65c3904ad1b073a9e8f44429e292b2 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: 2022.05-dev\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-02-23 20:09+0000\n"
+"POT-Creation-Date: 2022-02-24 07:09+0000\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -237,7 +237,7 @@ msgstr ""
 msgid "Permission settings"
 msgstr ""
 
-#: mod/editpost.php:116 src/Core/ACL.php:325
+#: mod/editpost.php:116 src/Core/ACL.php:326
 msgid "CC: email addresses"
 msgstr ""
 
@@ -255,7 +255,7 @@ msgstr ""
 msgid "Categories (comma-separated list)"
 msgstr ""
 
-#: mod/editpost.php:123 src/Core/ACL.php:326
+#: mod/editpost.php:123 src/Core/ACL.php:327
 msgid "Example: bob@example.com, mary@example.com"
 msgstr ""
 
@@ -2156,9 +2156,9 @@ msgstr ""
 msgid "All contacts"
 msgstr ""
 
-#: src/BaseModule.php:409 src/Content/Widget.php:231 src/Core/ACL.php:193
-#: src/Module/Contact.php:367 src/Module/PermissionTooltip.php:104
-#: src/Module/PermissionTooltip.php:126
+#: src/BaseModule.php:409 src/Content/Widget.php:231 src/Core/ACL.php:194
+#: src/Module/Contact.php:367 src/Module/PermissionTooltip.php:106
+#: src/Module/PermissionTooltip.php:128
 msgid "Followers"
 msgstr ""
 
@@ -3301,49 +3301,49 @@ msgstr ""
 msgid "Unfollow"
 msgstr ""
 
-#: src/Core/ACL.php:164 src/Module/Profile/Profile.php:242
+#: src/Core/ACL.php:165 src/Module/Profile/Profile.php:242
 msgid "Yourself"
 msgstr ""
 
-#: src/Core/ACL.php:200 src/Module/PermissionTooltip.php:110
-#: src/Module/PermissionTooltip.php:132
+#: src/Core/ACL.php:201 src/Module/PermissionTooltip.php:112
+#: src/Module/PermissionTooltip.php:134
 msgid "Mutuals"
 msgstr ""
 
-#: src/Core/ACL.php:292
+#: src/Core/ACL.php:293
 msgid "Post to Email"
 msgstr ""
 
-#: src/Core/ACL.php:319 src/Module/PermissionTooltip.php:166
+#: src/Core/ACL.php:320 src/Module/PermissionTooltip.php:181
 msgid "Public"
 msgstr ""
 
-#: src/Core/ACL.php:320
+#: src/Core/ACL.php:321
 msgid ""
 "This content will be shown to all your followers and can be seen in the "
 "community pages and by anyone with its link."
 msgstr ""
 
-#: src/Core/ACL.php:321
+#: src/Core/ACL.php:322
 msgid "Limited/Private"
 msgstr ""
 
-#: src/Core/ACL.php:322
+#: src/Core/ACL.php:323
 msgid ""
 "This content will be shown only to the people in the first box, to the "
 "exception of the people mentioned in the second box. It won't appear "
 "anywhere public."
 msgstr ""
 
-#: src/Core/ACL.php:323
+#: src/Core/ACL.php:324
 msgid "Show to:"
 msgstr ""
 
-#: src/Core/ACL.php:324
+#: src/Core/ACL.php:325
 msgid "Except to:"
 msgstr ""
 
-#: src/Core/ACL.php:327
+#: src/Core/ACL.php:328
 msgid "Connectors"
 msgstr ""
 
@@ -4275,7 +4275,7 @@ msgstr ""
 msgid "View on separate page"
 msgstr ""
 
-#: src/Model/Mail.php:134 src/Model/Mail.php:266
+#: src/Model/Mail.php:137 src/Model/Mail.php:265
 msgid "[no subject]"
 msgstr ""
 
@@ -8559,43 +8559,48 @@ msgstr ""
 msgid "Unsupported or missing grant type"
 msgstr ""
 
-#: src/Module/PermissionTooltip.php:45
+#: src/Module/PermissionTooltip.php:47
 #, php-format
 msgid "Wrong type \"%s\", expected one of: %s"
 msgstr ""
 
-#: src/Module/PermissionTooltip.php:62
+#: src/Module/PermissionTooltip.php:64
 msgid "Model not found"
 msgstr ""
 
-#: src/Module/PermissionTooltip.php:89
+#: src/Module/PermissionTooltip.php:91
 msgid "Remote privacy information not available."
 msgstr ""
 
-#: src/Module/PermissionTooltip.php:98
+#: src/Module/PermissionTooltip.php:100
 msgid "Visible to:"
 msgstr ""
 
-#: src/Module/PermissionTooltip.php:170
+#: src/Module/PermissionTooltip.php:185
 #, php-format
 msgid "Followers (%s)"
 msgstr ""
 
-#: src/Module/PermissionTooltip.php:184
+#: src/Module/PermissionTooltip.php:201
 #, php-format
 msgid "%d more"
 msgstr ""
 
-#: src/Module/PermissionTooltip.php:188
+#: src/Module/PermissionTooltip.php:205
 #, php-format
 msgid "<b>To:</b> %s<br>"
 msgstr ""
 
-#: src/Module/PermissionTooltip.php:191
+#: src/Module/PermissionTooltip.php:208
 #, php-format
 msgid "<b>CC:</b> %s<br>"
 msgstr ""
 
+#: src/Module/PermissionTooltip.php:211
+#, php-format
+msgid "<b>BCC:</b> %s<br>"
+msgstr ""
+
 #: src/Module/Photo.php:123
 msgid "The Photo is not available."
 msgstr ""