]> git.mxchange.org Git - friendica.git/blob - src/Module/Contact/Hovercard.php
620b96095a4077d3307e6d03b6f9c6ce89080c73
[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/redir/') === 0) {
51                         $cid = intval(substr($contact_url, 6));
52                 } elseif (strpos($contact_url, 'contact/') === 0) {
53                         $cid = intval(substr($contact_url, 8));
54                 }
55
56                 if (!empty($cid)) {                     
57                         $remote_contact = Contact::selectFirst(['nurl'], ['id' => $cid]);
58                         $contact_url = $remote_contact['nurl'] ?? '';
59                 }
60
61                 $contact = [];
62
63                 // if it's the url containing https it should be converted to http
64                 if (!$contact_url) {
65                         throw new HTTPException\BadRequestException();
66                 }
67
68                 // Search for contact data
69                 // Look if the local user has got the contact
70                 if (DI::userSession()->isAuthenticated()) {
71                         $contact = Contact::getByURLForUser($contact_url, DI::userSession()->getLocalUserId());
72                 } else {
73                         $contact = Contact::getByURL($contact_url, false);
74                 }
75
76                 if (!count($contact)) {
77                         throw new HTTPException\NotFoundException();
78                 }
79
80                 // Get the photo_menu - the menu if possible contact actions
81                 if (DI::userSession()->isAuthenticated()) {
82                         $actions = Contact::photoMenu($contact);
83                 } else {
84                         $actions = [];
85                 }
86
87                 // Move the contact data to the profile array so we can deliver it to
88                 $tpl = Renderer::getMarkupTemplate('hovercard.tpl');
89                 $o = Renderer::replaceMacros($tpl, [
90                         '$profile' => [
91                                 'name'         => $contact['name'],
92                                 'nick'         => $contact['nick'],
93                                 'addr'         => $contact['addr'] ?: $contact['url'],
94                                 'thumb'        => Contact::getThumb($contact),
95                                 'url'          => Contact::magicLinkByContact($contact),
96                                 'nurl'         => $contact['nurl'],
97                                 'location'     => $contact['location'],
98                                 'about'        => $contact['about'],
99                                 'network_link' => Strings::formatNetworkName($contact['network'], $contact['url']),
100                                 'tags'         => $contact['keywords'],
101                                 'bd'           => $contact['bd'] <= DBA::NULL_DATE ? '' : $contact['bd'],
102                                 'account_type' => Contact::getAccountType($contact['contact-type']),
103                                 'actions'      => $actions,
104                         ],
105                 ]);
106
107                 echo $o;
108                 System::exit();
109         }
110 }