]> git.mxchange.org Git - friendica.git/blob - src/Module/Contact/Hovercard.php
Merge pull request #12208 from MrPetovan/bug/12059-display-not-found
[friendica.git] / src / Module / Contact / Hovercard.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, 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\BaseModule;
25 use Friendica\Core\Renderer;
26 use Friendica\Core\System;
27 use Friendica\Database\DBA;
28 use Friendica\DI;
29 use Friendica\Model\Contact;
30 use Friendica\Network\HTTPException;
31 use Friendica\Util\Strings;
32
33 /**
34  * Asynchronous HTML fragment provider for frio contact hovercards
35  */
36 class Hovercard extends BaseModule
37 {
38         protected function rawContent(array $request = [])
39         {
40                 $contact_url = $_REQUEST['url'] ?? '';
41
42                 // Get out if the system doesn't have public access allowed
43                 if (DI::config()->get('system', 'block_public') && !DI::userSession()->isAuthenticated()) {
44                         throw new HTTPException\ForbiddenException();
45                 }
46
47                 // If a contact is connected the url is internally changed to 'contact/redir/CID'. We need the pure url to search for
48                 // the contact. So we strip out the contact id from the internal url and look in the contact table for
49                 // the real url (nurl)
50                 if (strpos($contact_url, 'contact/') === 0) {
51                         $remote_contact = Contact::selectFirst(['nurl'], ['id' => intval(basename($contact_url))]);
52                         $contact_url = $remote_contact['nurl'] ?? '';
53                 }
54
55                 if (!$contact_url) {
56                         throw new HTTPException\BadRequestException();
57                 }
58
59                 // Search for contact data
60                 // Look if the local user has got the contact
61                 if (DI::userSession()->isAuthenticated()) {
62                         $contact = Contact::getByURLForUser($contact_url, DI::userSession()->getLocalUserId());
63                 } else {
64                         $contact = Contact::getByURL($contact_url, false);
65                 }
66
67                 if (!count($contact)) {
68                         throw new HTTPException\NotFoundException();
69                 }
70
71                 // Get the photo_menu - the menu if possible contact actions
72                 if (DI::userSession()->isAuthenticated()) {
73                         $actions = Contact::photoMenu($contact);
74                 } else {
75                         $actions = [];
76                 }
77
78                 // Move the contact data to the profile array so we can deliver it to
79                 $tpl = Renderer::getMarkupTemplate('hovercard.tpl');
80                 $o = Renderer::replaceMacros($tpl, [
81                         '$profile' => [
82                                 'name'         => $contact['name'],
83                                 'nick'         => $contact['nick'],
84                                 'addr'         => $contact['addr'] ?: $contact['url'],
85                                 'thumb'        => Contact::getThumb($contact),
86                                 'url'          => Contact::magicLinkByContact($contact),
87                                 'nurl'         => $contact['nurl'],
88                                 'location'     => $contact['location'],
89                                 'about'        => $contact['about'],
90                                 'network_link' => Strings::formatNetworkName($contact['network'], $contact['url']),
91                                 'tags'         => $contact['keywords'],
92                                 'bd'           => $contact['bd'] <= DBA::NULL_DATE ? '' : $contact['bd'],
93                                 'account_type' => Contact::getAccountType($contact['contact-type']),
94                                 'actions'      => $actions,
95                         ],
96                 ]);
97
98                 echo $o;
99                 System::exit();
100         }
101 }