]> git.mxchange.org Git - friendica.git/blob - src/Content/Widget/VCard.php
Change label of mention-button
[friendica.git] / src / Content / Widget / VCard.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, 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\Content\Widget;
23
24 use Friendica\Content\ContactSelector;
25 use Friendica\Content\Text\BBCode;
26 use Friendica\Core\Logger;
27 use Friendica\Core\Protocol;
28 use Friendica\Core\Renderer;
29 use Friendica\Core\System;
30 use Friendica\DI;
31 use Friendica\Model\Contact;
32 use Friendica\Util\Network;
33 use Friendica\Util\Strings;
34
35 /**
36  * VCard widget
37  *
38  * @author Michael Vogel
39  */
40 class VCard
41 {
42         /**
43          * Get HTML for vcard block
44          *
45          * @template widget/vcard.tpl
46          * @return string
47          */
48         public static function getHTML(array $contact): string
49         {
50                 if (!isset($contact['network']) || !isset($contact['id'])) {
51                         Logger::warning('Incomplete contact', ['contact' => $contact ?? [], 'callstack' => System::callstack(20)]);
52                 }
53
54                 if (!Network::isValidHttpUrl($contact['url']) && Network::isValidHttpUrl($contact['alias'])) {
55                         $contact_url = $contact['alias'];
56                 } else {
57                         $contact_url = $contact['url'];
58                 }
59
60                 if ($contact['network'] != '') {
61                         $network_link   = Strings::formatNetworkName($contact['network'], $contact_url);
62                         $network_avatar = ContactSelector::networkToIcon($contact['network'], $contact_url);
63                 } else {
64                         $network_link   = '';
65                         $network_avatar = '';
66                 }
67
68                 $follow_link      = '';
69                 $unfollow_link    = '';
70                 $wallmessage_link = '';
71                 $showforum_link   = '';
72
73                 $photo   = Contact::getPhoto($contact);
74
75                 if (DI::userSession()->getLocalUserId()) {
76                         if ($contact['uid']) {
77                                 $id      = $contact['id'];
78                                 $rel     = $contact['rel'];
79                                 $pending = $contact['pending'];
80                         } else {
81                                 $pcontact = Contact::selectFirst([], ['uid' => DI::userSession()->getLocalUserId(), 'uri-id' => $contact['uri-id'], 'deleted' => false]);
82
83                                 $id      = $pcontact['id'] ?? 0;
84                                 $rel     = $pcontact['rel'] ?? Contact::NOTHING;
85                                 $pending = $pcontact['pending'] ?? false;
86
87                                 if (!empty($pcontact) && in_array($pcontact['network'], [Protocol::MAIL, Protocol::FEED])) {
88                                         $photo = Contact::getPhoto($pcontact);
89                                 }
90                         }
91
92                         if (empty($contact['self']) && Protocol::supportsFollow($contact['network'])) {
93                                 if (in_array($rel, [Contact::SHARING, Contact::FRIEND])) {
94                                         $unfollow_link = 'contact/unfollow?url=' . urlencode($contact_url) . '&auto=1';
95                                 } elseif (!$pending) {
96                                         $follow_link = 'contact/follow?url=' . urlencode($contact_url) . '&auto=1';
97                                 }
98                         }
99
100                         if (in_array($rel, [Contact::FOLLOWER, Contact::FRIEND]) && Contact::canReceivePrivateMessages($contact)) {
101                                 $wallmessage_link = 'message/new/' . $id;
102                         }
103                 }
104
105                 return Renderer::replaceMacros(Renderer::getMarkupTemplate('widget/vcard.tpl'), [
106                         '$contact'          => $contact,
107                         '$photo'            => $photo,
108                         '$url'              => Contact::magicLinkByContact($contact, $contact_url),
109                         '$about'            => BBCode::convertForUriId($contact['uri-id'] ?? 0, $contact['about'] ?? ''),
110                         '$xmpp'             => DI::l10n()->t('XMPP:'),
111                         '$matrix'           => DI::l10n()->t('Matrix:'),
112                         '$location'         => DI::l10n()->t('Location:'),
113                         '$network_link'     => $network_link,
114                         '$network_avatar'   => $network_avatar,
115                         '$network'          => DI::l10n()->t('Network:'),
116                         '$account_type'     => Contact::getAccountType($contact['contact-type']),
117                         '$follow'           => DI::l10n()->t('Follow'),
118                         '$follow_link'      => $follow_link,
119                         '$unfollow'         => DI::l10n()->t('Unfollow'),
120                         '$unfollow_link'    => $unfollow_link,
121                         '$wallmessage'      => DI::l10n()->t('Message'),
122                         '$wallmessage_link' => $wallmessage_link,
123                         '$showforum'        => DI::l10n()->t('Show forum'),
124                         '$showforum_link'   => $showforum_link,
125                         '$mentioning'       => DI::l10n()->t('Mention'),
126                         '$post2group'       => DI::l10n()->t('Post to group'),
127                 ]);
128         }
129 }