]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/HCard.php
Merge pull request #11069 from nupplaphil/feat/reenable_tests
[friendica.git] / src / Module / HCard.php
index 3310749bc33e930c2959238871bb78bab02f0c84..12ea65f136fb2c16432100616575c83113f4cc73 100644 (file)
@@ -34,21 +34,19 @@ use Friendica\Network\HTTPException;
  */
 class HCard extends BaseModule
 {
-       public static function rawContent(array $parameters = [])
+       protected function content(array $request = []): string
        {
-               $a = DI::app();
-
-               if ((local_user()) && ($parameters['action'] ?? '') === 'view') {
+               if ((local_user()) && ($this->parameters['action'] ?? '') === 'view') {
                        // A logged in user views a profile of a user
-                       $nickname = $a->getLoggedInUserNickname();
-               } elseif (empty($parameters['action'])) {
+                       $nickname = DI::app()->getLoggedInUserNickname();
+               } elseif (empty($this->parameters['action'])) {
                        // Show the profile hCard
-                       $nickname = $parameters['profile'];
+                       $nickname = $this->parameters['profile'];
                } else {
                        throw new HTTPException\NotFoundException(DI::l10n()->t('No profile'));
                }
 
-               $profile = Profile::load($a, $nickname, false);
+               $profile = User::getOwnerDataByNick($nickname);
 
                if (empty($profile)) {
                        throw new HTTPException\NotFoundException(DI::l10n()->t('User not found.'));
@@ -67,15 +65,6 @@ class HCard extends BaseModule
                        $page['htmlhead'] .= '<link rel="openid.delegate" href="' . $delegate . '" />' . "\r\n";
                }
 
-               // check if blocked
-               if (DI::config()->get('system', 'block_public') && !Session::isAuthenticated()) {
-                       $keywords = $profile['pub_keywords'] ?? '';
-                       $keywords = str_replace([',', ' ', ',,'], [' ', ',', ','], $keywords);
-                       if (strlen($keywords)) {
-                               $page['htmlhead'] .= '<meta name="keywords" content="' . $keywords . '" />' . "\r\n";
-                       }
-               }
-
                $baseUrl = DI::baseUrl();
 
                $uri = urlencode('acct:' . $profile['nickname'] . '@' . $baseUrl->getHostname() . ($baseUrl->getUrlPath() ? '/' . $baseUrl->getUrlPath() : ''));
@@ -88,5 +77,20 @@ class HCard extends BaseModule
                foreach (['request', 'confirm', 'notify', 'poll'] as $dfrn) {
                        $page['htmlhead'] .= "<link rel=\"dfrn-{$dfrn}\" href=\"" . $baseUrl->get() . "/dfrn_{$dfrn}/{$nickname}\" />\r\n";
                }
+
+               $block = (DI::config()->get('system', 'block_public') && !Session::isAuthenticated());
+
+               // check if blocked
+               if ($block) {
+                       $keywords = $profile['pub_keywords'] ?? '';
+                       $keywords = str_replace([',', ' ', ',,'], [' ', ',', ','], $keywords);
+                       if (strlen($keywords)) {
+                               $page['htmlhead'] .= '<meta name="keywords" content="' . $keywords . '" />' . "\r\n";
+                       }
+               }
+
+               $page['aside'] = Profile::getVCardHtml($profile, $block, false);
+
+               return '';
        }
 }