$parameters['nickname']]); if (DBA::isResult($user)) { // The function returns an empty array when the account is removed, expired or blocked $data = ActivityPub\Transmitter::getProfile($user['uid']); if (!empty($data)) { System::jsonExit($data, 'application/activity+json'); } } if (DBA::exists('userd', ['username' => $parameters['nickname']])) { // Known deleted user $data = ActivityPub\Transmitter::getDeletedUser($parameters['nickname']); System::jsonError(410, $data); } else { // Any other case (unknown, blocked, nverified, expired, no profile, no self contact) System::jsonError(404, []); } } } public static function content(array $parameters = []) { $a = DI::app(); if (DI::config()->get('system', 'block_public') && !local_user() && !Session::getRemoteContactID($a->profile['profile_uid'])) { return Login::form(); } ProfileModel::load($a, $parameters['nickname']); DI::page()['htmlhead'] .= "\n"; $blocked = !local_user() && !Session::getRemoteContactID($a->profile['profile_uid']) && DI::config()->get('system', 'block_public'); $userblock = !local_user() && !Session::getRemoteContactID($a->profile['profile_uid']) && $a->profile['hidewall']; if (!empty($a->profile['page-flags']) && $a->profile['page-flags'] == User::PAGE_FLAGS_COMMUNITY) { DI::page()['htmlhead'] .= '' . "\n"; } if (!empty($a->profile['openidserver'])) { DI::page()['htmlhead'] .= '' . "\n"; } if (!empty($a->profile['openid'])) { $delegate = strstr($a->profile['openid'], '://') ? $a->profile['openid'] : 'https://' . $a->profile['openid']; DI::page()['htmlhead'] .= '' . "\n"; } // site block if (!$blocked && !$userblock) { $keywords = str_replace(['#', ',', ' ', ',,'], ['', ' ', ',', ','], $a->profile['pub_keywords'] ?? ''); if (strlen($keywords)) { DI::page()['htmlhead'] .= '' . "\n"; } } DI::page()['htmlhead'] .= '' . "\n"; if (!$a->profile['net-publish'] || $a->profile['hidewall']) { DI::page()['htmlhead'] .= '' . "\n"; } DI::page()['htmlhead'] .= '' . "\n"; DI::page()['htmlhead'] .= '' . "\n"; DI::page()['htmlhead'] .= '' . "\n"; DI::page()['htmlhead'] .= '' . "\n"; $uri = urlencode('acct:' . $a->profile['nickname'] . '@' . DI::baseUrl()->getHostname() . (DI::baseUrl()->getUrlPath() ? '/' . DI::baseUrl()->getUrlPath() : '')); DI::page()['htmlhead'] .= '' . "\n"; header('Link: <' . DI::baseUrl() . '/xrd/?uri=' . $uri . '>; rel="lrdd"; type="application/xrd+xml"', false); $dfrn_pages = ['request', 'confirm', 'notify', 'poll']; foreach ($dfrn_pages as $dfrn) { DI::page()['htmlhead'] .= '' . "\n"; } DI::page()['htmlhead'] .= '' . "\n"; $o = ''; Nav::setSelected('home'); $remote_contact = Session::getRemoteContactID($a->profile['profile_uid']); $is_owner = local_user() == $a->profile['profile_uid']; if (!empty($a->profile['hidewall']) && !$is_owner && !$remote_contact) { notice(DI::l10n()->t('Access to this profile has been restricted.')); return ''; } $o .= ProfileModel::getTabs($a, 'profile', $is_owner, $a->profile['nickname']); $o .= ProfileModel::getAdvanced($a); Hook::callAll('profile_advanced', $o); return $o; } }