Remove DI dependency in Contact\Hovercard module
This commit is contained in:
parent
7458721f9f
commit
36a8962333
|
@ -21,26 +21,45 @@
|
||||||
|
|
||||||
namespace Friendica\Module\Contact;
|
namespace Friendica\Module\Contact;
|
||||||
|
|
||||||
|
use Friendica\App;
|
||||||
use Friendica\BaseModule;
|
use Friendica\BaseModule;
|
||||||
|
use Friendica\Core\Config\Capability\IManageConfigValues;
|
||||||
|
use Friendica\Core\L10n;
|
||||||
use Friendica\Core\Renderer;
|
use Friendica\Core\Renderer;
|
||||||
|
use Friendica\Core\Session\Capability\IHandleUserSessions;
|
||||||
use Friendica\Core\System;
|
use Friendica\Core\System;
|
||||||
use Friendica\Database\DBA;
|
use Friendica\Database\DBA;
|
||||||
use Friendica\DI;
|
|
||||||
use Friendica\Model\Contact;
|
use Friendica\Model\Contact;
|
||||||
|
use Friendica\Module\Response;
|
||||||
use Friendica\Network\HTTPException;
|
use Friendica\Network\HTTPException;
|
||||||
|
use Friendica\Util\Profiler;
|
||||||
use Friendica\Util\Strings;
|
use Friendica\Util\Strings;
|
||||||
|
use Psr\Log\LoggerInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Asynchronous HTML fragment provider for frio contact hovercards
|
* Asynchronous HTML fragment provider for frio contact hovercards
|
||||||
*/
|
*/
|
||||||
class Hovercard extends BaseModule
|
class Hovercard extends BaseModule
|
||||||
{
|
{
|
||||||
|
/** @var IManageConfigValues */
|
||||||
|
private $config;
|
||||||
|
/** @var IHandleUserSessions */
|
||||||
|
private $userSession;
|
||||||
|
|
||||||
|
public function __construct(IHandleUserSessions $userSession, IManageConfigValues $config, L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, array $server, array $parameters = [])
|
||||||
|
{
|
||||||
|
parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
|
||||||
|
|
||||||
|
$this->config = $config;
|
||||||
|
$this->userSession = $userSession;
|
||||||
|
}
|
||||||
|
|
||||||
protected function rawContent(array $request = [])
|
protected function rawContent(array $request = [])
|
||||||
{
|
{
|
||||||
$contact_url = $_REQUEST['url'] ?? '';
|
$contact_url = $request['url'] ?? '';
|
||||||
|
|
||||||
// Get out if the system doesn't have public access allowed
|
// 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();
|
throw new HTTPException\ForbiddenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -50,7 +69,7 @@ class Hovercard extends BaseModule
|
||||||
*/
|
*/
|
||||||
if (strpos($contact_url, 'contact/') === 0 && preg_match('/(\d+)/', $contact_url, $matches)) {
|
if (strpos($contact_url, 'contact/') === 0 && preg_match('/(\d+)/', $contact_url, $matches)) {
|
||||||
$remote_contact = Contact::selectFirst(['nurl'], ['id' => $matches[1]]);
|
$remote_contact = Contact::selectFirst(['nurl'], ['id' => $matches[1]]);
|
||||||
$contact_url = $remote_contact['nurl'] ?? '';
|
$contact_url = $remote_contact['nurl'] ?? '';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$contact_url) {
|
if (!$contact_url) {
|
||||||
|
@ -59,8 +78,8 @@ class Hovercard extends BaseModule
|
||||||
|
|
||||||
// Search for contact data
|
// Search for contact data
|
||||||
// Look if the local user has got the contact
|
// Look if the local user has got the contact
|
||||||
if (DI::userSession()->isAuthenticated()) {
|
if ($this->userSession->isAuthenticated()) {
|
||||||
$contact = Contact::getByURLForUser($contact_url, DI::userSession()->getLocalUserId());
|
$contact = Contact::getByURLForUser($contact_url, $this->userSession->getLocalUserId());
|
||||||
} else {
|
} else {
|
||||||
$contact = Contact::getByURL($contact_url, false);
|
$contact = Contact::getByURL($contact_url, false);
|
||||||
}
|
}
|
||||||
|
@ -70,7 +89,7 @@ class Hovercard extends BaseModule
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get the photo_menu - the menu if possible contact actions
|
// Get the photo_menu - the menu if possible contact actions
|
||||||
if (DI::userSession()->isAuthenticated()) {
|
if ($this->userSession->isAuthenticated()) {
|
||||||
$actions = Contact::photoMenu($contact);
|
$actions = Contact::photoMenu($contact);
|
||||||
} else {
|
} else {
|
||||||
$actions = [];
|
$actions = [];
|
||||||
|
@ -78,7 +97,7 @@ class Hovercard extends BaseModule
|
||||||
|
|
||||||
// Move the contact data to the profile array so we can deliver it to
|
// Move the contact data to the profile array so we can deliver it to
|
||||||
$tpl = Renderer::getMarkupTemplate('hovercard.tpl');
|
$tpl = Renderer::getMarkupTemplate('hovercard.tpl');
|
||||||
$o = Renderer::replaceMacros($tpl, [
|
$o = Renderer::replaceMacros($tpl, [
|
||||||
'$profile' => [
|
'$profile' => [
|
||||||
'name' => $contact['name'],
|
'name' => $contact['name'],
|
||||||
'nick' => $contact['nick'],
|
'nick' => $contact['nick'],
|
||||||
|
@ -96,7 +115,6 @@ class Hovercard extends BaseModule
|
||||||
],
|
],
|
||||||
]);
|
]);
|
||||||
|
|
||||||
echo $o;
|
System::httpExit($o);
|
||||||
System::exit();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue