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