]> git.mxchange.org Git - friendica.git/blob - src/Module/Contact/Hovercard.php
Changes:
[friendica.git] / src / Module / Contact / Hovercard.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2024, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Module\Contact;
23
24 use Friendica\App;
25 use Friendica\BaseModule;
26 use Friendica\Content\Widget;
27 use Friendica\Core\Config\Capability\IManageConfigValues;
28 use Friendica\Core\L10n;
29 use Friendica\Core\Session\Capability\IHandleUserSessions;
30 use Friendica\Core\System;
31 use Friendica\Model\Contact;
32 use Friendica\Module\Response;
33 use Friendica\Network\HTTPException;
34 use Friendica\Util\Profiler;
35 use Psr\Log\LoggerInterface;
36
37 /**
38  * Asynchronous HTML fragment provider for frio contact hovercards
39  */
40 class Hovercard extends BaseModule
41 {
42         /** @var IManageConfigValues */
43         private $config;
44         /** @var IHandleUserSessions */
45         private $userSession;
46
47         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 = [])
48         {
49                 parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
50
51                 $this->config      = $config;
52                 $this->userSession = $userSession;
53         }
54
55         protected function rawContent(array $request = [])
56         {
57                 $contact_url = $request['url'] ?? '';
58
59                 // Get out if the system doesn't have public access allowed
60                 if ($this->config->get('system', 'block_public') && !$this->userSession->isAuthenticated()) {
61                         throw new HTTPException\ForbiddenException();
62                 }
63
64                 /* Possible formats for relative URLs that need to be converted to the absolute contact URL:
65                  * - contact/redir/123456
66                  * - contact/123456/conversations
67                  */
68                 if (strpos($contact_url, 'contact/') === 0 && preg_match('/(\d+)/', $contact_url, $matches)) {
69                         $remote_contact = Contact::selectFirst(['nurl'], ['id' => $matches[1]]);
70                         $contact_url    = $remote_contact['nurl'] ?? '';
71                 }
72
73                 if (!$contact_url) {
74                         throw new HTTPException\BadRequestException();
75                 }
76
77                 // Search for contact data
78                 // Look if the local user has got the contact
79                 if ($this->userSession->isAuthenticated()) {
80                         $contact = Contact::getByURLForUser($contact_url, $this->userSession->getLocalUserId());
81                 } else {
82                         $contact = Contact::getByURL($contact_url, false);
83                 }
84
85                 if (!count($contact)) {
86                         throw new HTTPException\NotFoundException();
87                 }
88
89                 $this->httpExit(Widget\Hovercard::getHTML($contact, $this->userSession->getLocalUserId()));
90         }
91 }