]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/PermissionTooltip.php
Merge pull request #12025 from annando/no-boot-src-module
[friendica.git] / src / Module / PermissionTooltip.php
index a58465b40ecc2fdd0684eb964920d8958a2c684d..453bb5d3ac70bdf7d2000b98be1db6f755a7652d 100644 (file)
@@ -22,6 +22,8 @@
 namespace Friendica\Module;
 
 use Friendica\Core\Hook;
+use Friendica\Core\Session;
+use Friendica\Core\System;
 use Friendica\Database\DBA;
 use Friendica\DI;
 use Friendica\Model\APContact;
@@ -48,7 +50,7 @@ class PermissionTooltip extends \Friendica\BaseModule
                        throw new HTTPException\BadRequestException(DI::l10n()->t('Wrong type "%s", expected one of: %s', $type, implode(', ', $expectedTypes)));
                }
 
-               $condition = ['id' => $referenceId, 'uid' => [0, local_user()]];
+               $condition = ['id' => $referenceId, 'uid' => [0, Session::getLocalUser()]];
                if ($type == 'item') {
                        $fields = ['uid', 'psid', 'private', 'uri-id'];
                        $model = Post::selectFirst($fields, $condition);
@@ -83,15 +85,15 @@ class PermissionTooltip extends \Friendica\BaseModule
                                        case Item::PUBLIC:
                                                $receivers = DI::l10n()->t('Public');
                                                break;
-                                       
+
                                        case Item::UNLISTED:
                                                $receivers = DI::l10n()->t('Unlisted');
                                                break;
-                                       
+
                                        case Item::PRIVATE:
                                                $receivers = DI::l10n()->t('Limited/Private');
                                                break;
-                               }                               
+                               }
                        }
                } else {
                        $receivers = '';
@@ -164,20 +166,19 @@ class PermissionTooltip extends \Friendica\BaseModule
                } else {
                        echo $o . $receivers;
                }
-
-               exit();
+               System::exit();
        }
 
        /**
         * Fetch a list of receivers
         *
         * @param int $uriId
-        * @return string 
+        * @return string
         */
-       private function fetchReceivers(int $uriId):string
+       private function fetchReceivers(int $uriId): string
        {
                $own_url = '';
-               $uid = local_user();
+               $uid = Session::getLocalUser();
                if ($uid) {
                        $owner = User::getOwnerDataById($uid);
                        if (!empty($owner['url'])) {
@@ -192,19 +193,24 @@ class PermissionTooltip extends \Friendica\BaseModule
                                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'];
-                               } elseif ($receiver['tag-type'] == Tag::COLLECTION) {
+                       switch (Tag::getTargetType($receiver['url'], false)) {
+                               case Tag::PUBLIC_COLLECTION:
+                                       $receivers[$receiver['type']][] = DI::l10n()->t('Public');
+                                       break;
+                               case Tag::GENERAL_COLLECTION:
                                        $receivers[$receiver['type']][] = DI::l10n()->t('Collection (%s)', $receiver['name']);
-                               } else {
+                                       break;
+                               case Tag::FOLLOWER_COLLECTION:
+                                       $apcontact = DBA::selectFirst('apcontact', ['name'], ['followers' => $receiver['url']]);
+                                       $receivers[$receiver['type']][] = DI::l10n()->t('Followers (%s)', $apcontact['name'] ?? $receiver['name']);
+                                       break;
+                               case Tag::ACCOUNT:
+                                       $apcontact = APContact::getByURL($receiver['url'], false);
+                                       $receivers[$receiver['type']][] = $apcontact['name'] ?? $receiver['name'];
+                                       break;
+                               default:
                                        $receivers[$receiver['type']][] = $receiver['name'];
-                               }
+                                       break;
                        }
                }