. * */ namespace Friendica\Module; use Friendica\BaseModule; use Friendica\Core\Session; use Friendica\DI; use Friendica\Model\Profile; use Friendica\Model\User; use Friendica\Network\HTTPException; /** * Loads a profile for the hCard page * @see http://microformats.org/wiki/hcard */ class HCard extends BaseModule { public static function content(array $parameters = []) { if ((local_user()) && ($parameters['action'] ?? '') === 'view') { // A logged in user views a profile of a user $nickname = DI::app()->getLoggedInUserNickname(); } elseif (empty($parameters['action'])) { // Show the profile hCard $nickname = $parameters['profile']; } else { throw new HTTPException\NotFoundException(DI::l10n()->t('No profile')); } $profile = User::getOwnerDataByNick($nickname); if (empty($profile)) { throw new HTTPException\NotFoundException(DI::l10n()->t('User not found.')); } $page = DI::page(); if (!empty($profile['page-flags']) && ($profile['page-flags'] == User::PAGE_FLAGS_COMMUNITY)) { $page['htmlhead'] .= ''; } if (!empty($profile['openidserver'])) { $page['htmlhead'] .= '' . "\r\n"; } if (!empty($profile['openid'])) { $delegate = ((strstr($profile['openid'], '://')) ? $profile['openid'] : 'http://' . $profile['openid']); $page['htmlhead'] .= '' . "\r\n"; } $baseUrl = DI::baseUrl(); $uri = urlencode('acct:' . $profile['nickname'] . '@' . $baseUrl->getHostname() . ($baseUrl->getUrlPath() ? '/' . $baseUrl->getUrlPath() : '')); $page['htmlhead'] .= '' . "\r\n"; $page['htmlhead'] .= '' . "\r\n"; $page['htmlhead'] .= '' . "\r\n"; header('Link: <' . $baseUrl->get() . '/xrd/?uri=' . $uri . '>; rel="lrdd"; type="application/xrd+xml"', false); foreach (['request', 'confirm', 'notify', 'poll'] as $dfrn) { $page['htmlhead'] .= "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'] .= '' . "\r\n"; } } $page['aside'] = Profile::getVCardHtml($profile, $block, false); return ''; } }