X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FContact%2FHovercard.php;h=4d58d994c283a4a473afea3c3fe5f408e920c4d6;hb=c62762297cf2a06bad998a2b950b96102cb6e682;hp=5c82fd2c4243217303853dcd2aafc867773ef224;hpb=83c04ac433a706d19433e819529b0a3b23640443;p=friendica.git diff --git a/src/Module/Contact/Hovercard.php b/src/Module/Contact/Hovercard.php index 5c82fd2c42..4d58d994c2 100644 --- a/src/Module/Contact/Hovercard.php +++ b/src/Module/Contact/Hovercard.php @@ -1,6 +1,6 @@ config = $config; + $this->userSession = $userSession; + } + protected function rawContent(array $request = []) { - $contact_url = $_REQUEST['url'] ?? ''; + $contact_url = $request['url'] ?? ''; // Get out if the system doesn't have public access allowed - if (DI::config()->get('system', 'block_public') && !DI::userSession()->isAuthenticated()) { + if ($this->config->get('system', 'block_public') && !$this->userSession->isAuthenticated()) { throw new HTTPException\ForbiddenException(); } @@ -50,7 +69,7 @@ class Hovercard extends BaseModule */ 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_url = $remote_contact['nurl'] ?? ''; } if (!$contact_url) { @@ -59,8 +78,8 @@ class Hovercard extends BaseModule // Search for contact data // Look if the local user has got the contact - if (DI::userSession()->isAuthenticated()) { - $contact = Contact::getByURLForUser($contact_url, DI::userSession()->getLocalUserId()); + if ($this->userSession->isAuthenticated()) { + $contact = Contact::getByURLForUser($contact_url, $this->userSession->getLocalUserId()); } else { $contact = Contact::getByURL($contact_url, false); } @@ -70,15 +89,15 @@ class Hovercard extends BaseModule } // Get the photo_menu - the menu if possible contact actions - if (DI::userSession()->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'], @@ -96,7 +115,6 @@ class Hovercard extends BaseModule ], ]); - echo $o; - System::exit(); + System::httpExit($o); } }