]> git.mxchange.org Git - friendica.git/blob - src/Module/Profile/Profile.php
Merge pull request #10543 from annando/app-variables
[friendica.git] / src / Module / Profile / Profile.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, 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\Profile;
23
24 use Friendica\Content\Feature;
25 use Friendica\Content\ForumManager;
26 use Friendica\Content\Nav;
27 use Friendica\Content\Text\BBCode;
28 use Friendica\Content\Text\HTML;
29 use Friendica\Content\Widget;
30 use Friendica\Core\Hook;
31 use Friendica\Core\Protocol;
32 use Friendica\Core\Renderer;
33 use Friendica\Core\Session;
34 use Friendica\Core\System;
35 use Friendica\Database\DBA;
36 use Friendica\DI;
37 use Friendica\Model\Contact;
38 use Friendica\Model\Profile as ProfileModel;
39 use Friendica\Model\Tag;
40 use Friendica\Model\User;
41 use Friendica\Module\BaseProfile;
42 use Friendica\Module\Security\Login;
43 use Friendica\Network\HTTPException;
44 use Friendica\Protocol\ActivityPub;
45 use Friendica\Util\DateTimeFormat;
46 use Friendica\Util\Temporal;
47
48 class Profile extends BaseProfile
49 {
50         public static function rawContent(array $parameters = [])
51         {
52                 if (ActivityPub::isRequest()) {
53                         $user = DBA::selectFirst('user', ['uid'], ['nickname' => $parameters['nickname']]);
54                         if (DBA::isResult($user)) {
55                                 // The function returns an empty array when the account is removed, expired or blocked
56                                 $data = ActivityPub\Transmitter::getProfile($user['uid']);
57                                 if (!empty($data)) {
58                                         header('Access-Control-Allow-Origin: *');
59                                         header('Cache-Control: max-age=23200, stale-while-revalidate=23200');
60                                         System::jsonExit($data, 'application/activity+json');
61                                 }
62                         }
63
64                         if (DBA::exists('userd', ['username' => $parameters['nickname']])) {
65                                 // Known deleted user
66                                 $data = ActivityPub\Transmitter::getDeletedUser($parameters['nickname']);
67
68                                 System::jsonError(410, $data);
69                         } else {
70                                 // Any other case (unknown, blocked, nverified, expired, no profile, no self contact)
71                                 System::jsonError(404, []);
72                         }
73                 }
74         }
75
76         public static function content(array $parameters = [])
77         {
78                 $a = DI::app();
79
80                 $profile = ProfileModel::load($a, $parameters['nickname']);
81                 if (!$profile) {
82                         throw new HTTPException\NotFoundException(DI::l10n()->t('Profile not found.'));
83                 }
84
85                 $remote_contact_id = Session::getRemoteContactID($profile['uid']);
86
87                 if (DI::config()->get('system', 'block_public') && !local_user() && !$remote_contact_id) {
88                         return Login::form();
89                 }
90
91                 $is_owner = local_user() == $profile['uid'];
92
93                 if (!empty($profile['hidewall']) && !$is_owner && !$remote_contact_id) {
94                         throw new HTTPException\ForbiddenException(DI::l10n()->t('Access to this profile has been restricted.'));
95                 }
96
97                 if (!empty($profile['page-flags']) && $profile['page-flags'] == User::PAGE_FLAGS_COMMUNITY) {
98                         DI::page()['htmlhead'] .= '<meta name="friendica.community" content="true" />' . "\n";
99                 }
100
101                 DI::page()['htmlhead'] .= self::buildHtmlHead($profile, $parameters['nickname'], $remote_contact_id);
102
103                 Nav::setSelected('home');
104
105                 $is_owner = local_user() == $profile['uid'];
106                 $o = self::getTabsHTML($a, 'profile', $is_owner, $profile);
107
108                 if (!empty($profile['hidewall']) && !$is_owner && !$remote_contact_id) {
109                         notice(DI::l10n()->t('Access to this profile has been restricted.'));
110                         return '';
111                 }
112
113                 $view_as_contacts = [];
114                 $view_as_contact_id = 0;
115                 $view_as_contact_alert = '';
116                 if ($is_owner) {
117                         $view_as_contact_id = intval($_GET['viewas'] ?? 0);
118
119                         $view_as_contacts = Contact::selectToArray(['id', 'name'], [
120                                 'uid' => local_user(),
121                                 'rel' => [Contact::FOLLOWER, Contact::SHARING, Contact::FRIEND],
122                                 'network' => Protocol::DFRN,
123                                 'blocked' => false,
124                         ]);
125
126                         $view_as_contact_ids = array_column($view_as_contacts, 'id');
127
128                         // User manually provided a contact ID they aren't privy to, silently defaulting to their own view
129                         if (!in_array($view_as_contact_id, $view_as_contact_ids)) {
130                                 $view_as_contact_id = 0;
131                         }
132
133                         if (($key = array_search($view_as_contact_id, $view_as_contact_ids)) !== false) {
134                                 $view_as_contact_alert = DI::l10n()->t(
135                                         'You\'re currently viewing your profile as <b>%s</b> <a href="%s" class="btn btn-sm pull-right">Cancel</a>',
136                                         htmlentities($view_as_contacts[$key]['name'], ENT_COMPAT, 'UTF-8'),
137                                         'profile/' . $parameters['nickname'] . '/profile'
138                                 );
139                         }
140                 }
141
142                 $basic_fields = [];
143
144                 $basic_fields += self::buildField('fullname', DI::l10n()->t('Full Name:'), $profile['name']);
145
146                 if (Feature::isEnabled($profile['uid'], 'profile_membersince')) {
147                         $basic_fields += self::buildField(
148                                 'membersince',
149                                 DI::l10n()->t('Member since:'),
150                                 DateTimeFormat::local($profile['register_date'])
151                         );
152                 }
153
154                 if (!empty($profile['dob']) && $profile['dob'] > DBA::NULL_DATE) {
155                         $year_bd_format = DI::l10n()->t('j F, Y');
156                         $short_bd_format = DI::l10n()->t('j F');
157
158                         $dob = DI::l10n()->getDay(
159                                 intval($profile['dob']) ?
160                                         DateTimeFormat::utc($profile['dob'] . ' 00:00 +00:00', $year_bd_format)
161                                         : DateTimeFormat::utc('2001-' . substr($profile['dob'], 5) . ' 00:00 +00:00', $short_bd_format)
162                         );
163
164                         $basic_fields += self::buildField('dob', DI::l10n()->t('Birthday:'), $dob);
165
166                         if ($age = Temporal::getAgeByTimezone($profile['dob'], $profile['timezone'])) {
167                                 $basic_fields += self::buildField('age', DI::l10n()->t('Age: '), DI::l10n()->tt('%d year old', '%d years old', $age));
168                         }
169                 }
170
171                 if ($profile['about']) {
172                         $basic_fields += self::buildField('about', DI::l10n()->t('Description:'), BBCode::convertForUriId($profile['uri-id'], $profile['about']));
173                 }
174
175                 if ($profile['xmpp']) {
176                         $basic_fields += self::buildField('xmpp', DI::l10n()->t('XMPP:'), $profile['xmpp']);
177                 }
178
179                 if ($profile['homepage']) {
180                         $basic_fields += self::buildField('homepage', DI::l10n()->t('Homepage:'), HTML::toLink($profile['homepage']));
181                 }
182
183                 if (
184                         $profile['address']
185                         || $profile['locality']
186                         || $profile['postal-code']
187                         || $profile['region']
188                         || $profile['country-name']
189                 ) {
190                         $basic_fields += self::buildField('location', DI::l10n()->t('Location:'), ProfileModel::formatLocation($profile));
191                 }
192
193                 if ($profile['pub_keywords']) {
194                         $tags = [];
195                         // Separator is defined in Module\Settings\Profile\Index::cleanKeywords
196                         foreach (explode(', ', $profile['pub_keywords']) as $tag_label) {
197                                 $tags[] = [
198                                         'url' => '/search?tag=' . $tag_label,
199                                         'label' => Tag::TAG_CHARACTER[Tag::HASHTAG] . $tag_label,
200                                 ];
201                         }
202
203                         $basic_fields += self::buildField('pub_keywords', DI::l10n()->t('Tags:'), $tags);
204                 }
205
206                 $custom_fields = [];
207
208                 // Defaults to the current logged in user self contact id to show self-only fields
209                 $contact_id = $view_as_contact_id ?: $remote_contact_id ?: 0;
210
211                 if ($is_owner && $contact_id === 0) {
212                         $profile_fields = DI::profileField()->selectByUserId($profile['uid']);
213                 } else {
214                         $profile_fields = DI::profileField()->selectByContactId($contact_id, $profile['uid']);
215                 }
216
217                 foreach ($profile_fields as $profile_field) {
218                         $custom_fields += self::buildField(
219                                 'custom_' . $profile_field->order,
220                                 $profile_field->label,
221                                 BBCode::convertForUriId($profile['uri-id'], $profile_field->value),
222                                 'aprofile custom'
223                         );
224                 };
225
226                 //show subcribed forum if it is enabled in the usersettings
227                 if (Feature::isEnabled($profile['uid'], 'forumlist_profile')) {
228                         $custom_fields += self::buildField(
229                                 'forumlist',
230                                 DI::l10n()->t('Forums:'),
231                                 ForumManager::profileAdvanced($profile['uid'])
232                         );
233                 }
234
235                 $tpl = Renderer::getMarkupTemplate('profile/profile.tpl');
236                 $o .= Renderer::replaceMacros($tpl, [
237                         '$title' => DI::l10n()->t('Profile'),
238                         '$yourself' => DI::l10n()->t('Yourself'),
239                         '$view_as_contacts' => $view_as_contacts,
240                         '$view_as_contact_id' => $view_as_contact_id,
241                         '$view_as_contact_alert' => $view_as_contact_alert,
242                         '$view_as' => DI::l10n()->t('View profile as:'),
243                         '$submit' => DI::l10n()->t('Submit'),
244                         '$basic' => DI::l10n()->t('Basic'),
245                         '$advanced' => DI::l10n()->t('Advanced'),
246                         '$is_owner' => $profile['uid'] == local_user(),
247                         '$query_string' => DI::args()->getQueryString(),
248                         '$basic_fields' => $basic_fields,
249                         '$custom_fields' => $custom_fields,
250                         '$profile' => $profile,
251                         '$edit_link' => [
252                                 'url' => DI::baseUrl() . '/settings/profile', DI::l10n()->t('Edit profile'),
253                                 'title' => '',
254                                 'label' => DI::l10n()->t('Edit profile')
255                         ],
256                         '$viewas_link' => [
257                                 'url' =>  DI::args()->getQueryString() . '#viewas',
258                                 'title' => '',
259                                 'label' => DI::l10n()->t('View as')
260                         ],
261                 ]);
262
263                 Hook::callAll('profile_advanced', $o);
264
265                 return $o;
266         }
267
268         /**
269          * Creates a profile field structure to be used in the profile template
270          *
271          * @param string $name  Arbitrary name of the field
272          * @param string $label Display label of the field
273          * @param mixed  $value Display value of the field
274          * @param string $class Optional CSS class to apply to the field
275          * @return array
276          */
277         private static function buildField(string $name, string $label, $value, string $class = 'aprofile')
278         {
279                 return [$name => [
280                         'id' => 'aprofile-' . $name,
281                         'class' => $class,
282                         'label' => $label,
283                         'value' => $value,
284                 ]];
285         }
286
287         private static function buildHtmlHead(array $profile, string $nickname, int $remote_contact_id)
288         {
289                 $baseUrl = DI::baseUrl();
290
291                 $htmlhead = "\n";
292
293                 if (!empty($profile['page-flags']) && $profile['page-flags'] == User::PAGE_FLAGS_COMMUNITY) {
294                         $htmlhead .= '<meta name="friendica.community" content="true" />' . "\n";
295                 }
296
297                 if (!empty($profile['openidserver'])) {
298                         $htmlhead .= '<link rel="openid.server" href="' . $profile['openidserver'] . '" />' . "\n";
299                 }
300
301                 if (!empty($profile['openid'])) {
302                         $delegate = strstr($profile['openid'], '://') ? $profile['openid'] : 'https://' . $profile['openid'];
303                         $htmlhead .= '<link rel="openid.delegate" href="' . $delegate . '" />' . "\n";
304                 }
305
306                 // site block
307                 $blocked   = !local_user() && !$remote_contact_id && DI::config()->get('system', 'block_public');
308                 $userblock = !local_user() && !$remote_contact_id && $profile['hidewall'];
309                 if (!$blocked && !$userblock) {
310                         $keywords = str_replace(['#', ',', ' ', ',,'], ['', ' ', ',', ','], $profile['pub_keywords'] ?? '');
311                         if (strlen($keywords)) {
312                                 $htmlhead .= '<meta name="keywords" content="' . $keywords . '" />' . "\n";
313                         }
314                 }
315
316                 $htmlhead .= '<meta name="dfrn-global-visibility" content="' . ($profile['net-publish'] ? 'true' : 'false') . '" />' . "\n";
317
318                 if (!$profile['net-publish']) {
319                         $htmlhead .= '<meta content="noindex, noarchive" name="robots" />' . "\n";
320                 }
321
322                 $htmlhead .= '<link rel="alternate" type="application/atom+xml" href="' . $baseUrl . '/dfrn_poll/' . $nickname . '" title="DFRN: ' . DI::l10n()->t('%s\'s timeline', $profile['name']) . '"/>' . "\n";
323                 $htmlhead .= '<link rel="alternate" type="application/atom+xml" href="' . $baseUrl . '/feed/' . $nickname . '/" title="' . DI::l10n()->t('%s\'s posts', $profile['name']) . '"/>' . "\n";
324                 $htmlhead .= '<link rel="alternate" type="application/atom+xml" href="' . $baseUrl . '/feed/' . $nickname . '/comments" title="' . DI::l10n()->t('%s\'s comments', $profile['name']) . '"/>' . "\n";
325                 $htmlhead .= '<link rel="alternate" type="application/atom+xml" href="' . $baseUrl . '/feed/' . $nickname . '/activity" title="' . DI::l10n()->t('%s\'s timeline', $profile['name']) . '"/>' . "\n";
326                 $uri = urlencode('acct:' . $profile['nickname'] . '@' . $baseUrl->getHostname() . ($baseUrl->getUrlPath() ? '/' . $baseUrl->getUrlPath() : ''));
327                 $htmlhead .= '<link rel="lrdd" type="application/xrd+xml" href="' . $baseUrl . '/xrd/?uri=' . $uri . '" />' . "\n";
328                 header('Link: <' . $baseUrl . '/xrd/?uri=' . $uri . '>; rel="lrdd"; type="application/xrd+xml"', false);
329
330                 $dfrn_pages = ['request', 'confirm', 'notify', 'poll'];
331                 foreach ($dfrn_pages as $dfrn) {
332                         $htmlhead .= '<link rel="dfrn-' . $dfrn . '" href="' . $baseUrl . '/dfrn_' . $dfrn . '/' . $nickname . '" />' . "\n";
333                 }
334                 $htmlhead .= '<link rel="dfrn-poco" href="' . $baseUrl . '/poco/' . $nickname . '" />' . "\n";
335
336                 return $htmlhead;
337         }
338 }