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