X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FContact%2FHovercard.php;h=4d58d994c283a4a473afea3c3fe5f408e920c4d6;hb=c62762297cf2a06bad998a2b950b96102cb6e682;hp=34560313d7d571ce0dc2b3f078f0206299603a42;hpb=b67c10812ab962d1ec05cd8c9e256c503d64ca60;p=friendica.git diff --git a/src/Module/Contact/Hovercard.php b/src/Module/Contact/Hovercard.php index 34560313d7..4d58d994c2 100644 --- a/src/Module/Contact/Hovercard.php +++ b/src/Module/Contact/Hovercard.php @@ -1,6 +1,6 @@ get('system', 'block_public') && !Session::isAuthenticated()) { - throw new HTTPException\ForbiddenException(); - } + $this->config = $config; + $this->userSession = $userSession; + } - // If a contact is connected the url is internally changed to 'redir/CID'. We need the pure url to search for - // the contact. So we strip out the contact id from the internal url and look in the contact table for - // the real url (nurl) - if (strpos($contact_url, 'redir/') === 0) { - $cid = intval(substr($contact_url, 6)); - } + protected function rawContent(array $request = []) + { + $contact_url = $request['url'] ?? ''; - if (strpos($contact_url, 'contact/') === 0) { - $cid = intval(substr($contact_url, 8)); + // Get out if the system doesn't have public access allowed + if ($this->config->get('system', 'block_public') && !$this->userSession->isAuthenticated()) { + throw new HTTPException\ForbiddenException(); } - if (!empty($cid)) { - $remote_contact = Contact::selectFirst(['nurl'], ['id' => $cid]); - $contact_url = $remote_contact['nurl'] ?? ''; + /* Possible formats for relative URLs that need to be converted to the absolute contact URL: + * - contact/redir/123456 + * - contact/123456/conversations + */ + if (strpos($contact_url, 'contact/') === 0 && preg_match('/(\d+)/', $contact_url, $matches)) { + $remote_contact = Contact::selectFirst(['nurl'], ['id' => $matches[1]]); + $contact_url = $remote_contact['nurl'] ?? ''; } - $contact = []; - - // if it's the url containing https it should be converted to http if (!$contact_url) { throw new HTTPException\BadRequestException(); } // Search for contact data // Look if the local user has got the contact - if (Session::isAuthenticated()) { - $contact = Contact::getByURLForUser($contact_url, local_user()); + if ($this->userSession->isAuthenticated()) { + $contact = Contact::getByURLForUser($contact_url, $this->userSession->getLocalUserId()); } else { $contact = Contact::getByURL($contact_url, false); } @@ -80,15 +89,15 @@ class Hovercard extends BaseModule } // Get the photo_menu - the menu if possible contact actions - if (Session::isAuthenticated()) { - $actions = Contact::photoMenu($contact); + if ($this->userSession->isAuthenticated()) { + $actions = Contact::photoMenu($contact, $this->userSession->getLocalUserId()); } else { $actions = []; } // Move the contact data to the profile array so we can deliver it to $tpl = Renderer::getMarkupTemplate('hovercard.tpl'); - $o = Renderer::replaceMacros($tpl, [ + $o = Renderer::replaceMacros($tpl, [ '$profile' => [ 'name' => $contact['name'], 'nick' => $contact['nick'], @@ -101,12 +110,11 @@ class Hovercard extends BaseModule 'network_link' => Strings::formatNetworkName($contact['network'], $contact['url']), 'tags' => $contact['keywords'], 'bd' => $contact['bd'] <= DBA::NULL_DATE ? '' : $contact['bd'], - 'account_type' => Contact::getAccountType($contact), + 'account_type' => Contact::getAccountType($contact['contact-type']), 'actions' => $actions, ], ]); - echo $o; - exit(); + System::httpExit($o); } }