]> git.mxchange.org Git - friendica.git/blob - src/Module/Profile/Profile.php
Merge pull request #1 from friendica/develop
[friendica.git] / src / Module / Profile / Profile.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\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\Core\Hook;
30 use Friendica\Core\Protocol;
31 use Friendica\Core\Renderer;
32 use Friendica\Core\Session;
33 use Friendica\Core\System;
34 use Friendica\Database\DBA;
35 use Friendica\DI;
36 use Friendica\Model\Contact;
37 use Friendica\Model\Profile as ProfileModel;
38 use Friendica\Model\Tag;
39 use Friendica\Model\User;
40 use Friendica\Module\BaseProfile;
41 use Friendica\Module\Security\Login;
42 use Friendica\Network\HTTPException;
43 use Friendica\Protocol\ActivityPub;
44 use Friendica\Util\DateTimeFormat;
45 use Friendica\Util\Temporal;
46
47 class Profile extends BaseProfile
48 {
49         public static function rawContent(array $parameters = [])
50         {
51                 if (ActivityPub::isRequest()) {
52                         $user = DBA::selectFirst('user', ['uid'], ['nickname' => $parameters['nickname']]);
53                         if (DBA::isResult($user)) {
54                                 // The function returns an empty array when the account is removed, expired or blocked
55                                 $data = ActivityPub\Transmitter::getProfile($user['uid']);
56                                 if (!empty($data)) {
57                                         header('Access-Control-Allow-Origin: *');
58                                         header('Cache-Control: max-age=23200, stale-while-revalidate=23200');
59                                         System::jsonExit($data, 'application/activity+json');
60                                 }
61                         }
62
63                         if (DBA::exists('userd', ['username' => $parameters['nickname']])) {
64                                 // Known deleted user
65                                 $data = ActivityPub\Transmitter::getDeletedUser($parameters['nickname']);
66
67                                 System::jsonError(410, $data);
68                         } else {
69                                 // Any other case (unknown, blocked, nverified, expired, no profile, no self contact)
70                                 System::jsonError(404, []);
71                         }
72                 }
73         }
74
75         public static function content(array $parameters = [])
76         {
77                 $a = DI::app();
78
79                 ProfileModel::load($a, $parameters['nickname']);
80
81                 if (!$a->profile) {
82                         throw new HTTPException\NotFoundException(DI::l10n()->t('Profile not found.'));
83                 }
84
85                 $remote_contact_id = Session::getRemoteContactID($a->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() == $a->profile_uid;
92
93                 if (!empty($a->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($a->profile['page-flags']) && $a->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($a->profile, $parameters['nickname'], $remote_contact_id);
102
103                 Nav::setSelected('home');
104
105                 $is_owner = local_user() == $a->profile['uid'];
106                 $o = self::getTabsHTML($a, 'profile', $is_owner, $a->profile['nickname']);
107
108                 if (!empty($a->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:'), $a->profile['name']);
145
146                 if (Feature::isEnabled($a->profile_uid, 'profile_membersince')) {
147                         $basic_fields += self::buildField(
148                                 'membersince',
149                                 DI::l10n()->t('Member since:'),
150                                 DateTimeFormat::local($a->profile['register_date'])
151                         );
152                 }
153
154                 if (!empty($a->profile['dob']) && $a->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($a->profile['dob']) ?
160                                         DateTimeFormat::utc($a->profile['dob'] . ' 00:00 +00:00', $year_bd_format)
161                                         : DateTimeFormat::utc('2001-' . substr($a->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($a->profile['dob'], $a->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 ($a->profile['about']) {
172                         $basic_fields += self::buildField('about', DI::l10n()->t('Description:'), BBCode::convert($a->profile['about']));
173                 }
174
175                 if ($a->profile['xmpp']) {
176                         $basic_fields += self::buildField('xmpp', DI::l10n()->t('XMPP:'), $a->profile['xmpp']);
177                 }
178
179                 if ($a->profile['homepage']) {
180                         $basic_fields += self::buildField('homepage', DI::l10n()->t('Homepage:'), HTML::toLink($a->profile['homepage']));
181                 }
182
183                 if (
184                         $a->profile['address']
185                         || $a->profile['locality']
186                         || $a->profile['postal-code']
187                         || $a->profile['region']
188                         || $a->profile['country-name']
189                 ) {
190                         $basic_fields += self::buildField('location', DI::l10n()->t('Location:'), ProfileModel::formatLocation($a->profile));
191                 }
192
193                 if ($a->profile['pub_keywords']) {
194                         $tags = [];
195                         foreach (explode(',', $a->profile['pub_keywords']) as $tag_label) {
196                                 $tags[] = [
197                                         'url' => '/search?tag=' . $tag_label,
198                                         'label' => Tag::TAG_CHARACTER[Tag::HASHTAG] . $tag_label,
199                                 ];
200                         }
201
202                         $basic_fields += self::buildField('pub_keywords', DI::l10n()->t('Tags:'), $tags);
203                 }
204
205                 $custom_fields = [];
206
207                 // Defaults to the current logged in user self contact id to show self-only fields
208                 $contact_id = $view_as_contact_id ?: $remote_contact_id ?: 0;
209
210                 if ($is_owner && $contact_id === 0) {
211                         $profile_fields = DI::profileField()->selectByUserId($a->profile_uid);
212                 } else {
213                         $profile_fields = DI::profileField()->selectByContactId($contact_id, $a->profile_uid);
214                 }
215
216                 foreach ($profile_fields as $profile_field) {
217                         $custom_fields += self::buildField(
218                                 'custom_' . $profile_field->order,
219                                 $profile_field->label,
220                                 BBCode::convert($profile_field->value),
221                                 'aprofile custom'
222                         );
223                 };
224
225                 //show subcribed forum if it is enabled in the usersettings
226                 if (Feature::isEnabled($a->profile_uid, 'forumlist_profile')) {
227                         $custom_fields += self::buildField(
228                                 'forumlist',
229                                 DI::l10n()->t('Forums:'),
230                                 ForumManager::profileAdvanced($a->profile_uid)
231                         );
232                 }
233
234                 $tpl = Renderer::getMarkupTemplate('profile/index.tpl');
235                 $o .= Renderer::replaceMacros($tpl, [
236                         '$title' => DI::l10n()->t('Profile'),
237                         '$view_as_contacts' => $view_as_contacts,
238                         '$view_as_contact_id' => $view_as_contact_id,
239                         '$view_as_contact_alert' => $view_as_contact_alert,
240                         '$view_as' => DI::l10n()->t('View profile as:'),
241                         '$submit' => DI::l10n()->t('Submit'),
242                         '$basic' => DI::l10n()->t('Basic'),
243                         '$advanced' => DI::l10n()->t('Advanced'),
244                         '$is_owner' => $a->profile_uid == local_user(),
245                         '$query_string' => DI::args()->getQueryString(),
246                         '$basic_fields' => $basic_fields,
247                         '$custom_fields' => $custom_fields,
248                         '$profile' => $a->profile,
249                         '$edit_link' => [
250                                 'url' => DI::baseUrl() . '/settings/profile', DI::l10n()->t('Edit profile'),
251                                 'title' => '',
252                                 'label' => DI::l10n()->t('Edit profile')
253                         ],
254                         '$viewas_link' => [
255                                 'url' =>  DI::args()->getQueryString() . '#viewas',
256                                 'title' => '',
257                                 'label' => DI::l10n()->t('View as')
258                         ],
259                 ]);
260
261                 Hook::callAll('profile_advanced', $o);
262
263                 return $o;
264         }
265
266         /**
267          * Creates a profile field structure to be used in the profile template
268          *
269          * @param string $name  Arbitrary name of the field
270          * @param string $label Display label of the field
271          * @param mixed  $value Display value of the field
272          * @param string $class Optional CSS class to apply to the field
273          * @return array
274          */
275         private static function buildField(string $name, string $label, $value, string $class = 'aprofile')
276         {
277                 return [$name => [
278                         'id' => 'aprofile-' . $name,
279                         'class' => $class,
280                         'label' => $label,
281                         'value' => $value,
282                 ]];
283         }
284
285         private static function buildHtmlHead(array $profile, string $nickname, int $remote_contact_id)
286         {
287                 $baseUrl = DI::baseUrl();
288
289                 $htmlhead = "\n";
290
291                 if (!empty($profile['page-flags']) && $profile['page-flags'] == User::PAGE_FLAGS_COMMUNITY) {
292                         $htmlhead .= '<meta name="friendica.community" content="true" />' . "\n";
293                 }
294
295                 if (!empty($profile['openidserver'])) {
296                         $htmlhead .= '<link rel="openid.server" href="' . $profile['openidserver'] . '" />' . "\n";
297                 }
298
299                 if (!empty($profile['openid'])) {
300                         $delegate = strstr($profile['openid'], '://') ? $profile['openid'] : 'https://' . $profile['openid'];
301                         $htmlhead .= '<link rel="openid.delegate" href="' . $delegate . '" />' . "\n";
302                 }
303
304                 // site block
305                 $blocked   = !local_user() && !$remote_contact_id && DI::config()->get('system', 'block_public');
306                 $userblock = !local_user() && !$remote_contact_id && $profile['hidewall'];
307                 if (!$blocked && !$userblock) {
308                         $keywords = str_replace(['#', ',', ' ', ',,'], ['', ' ', ',', ','], $profile['pub_keywords'] ?? '');
309                         if (strlen($keywords)) {
310                                 $htmlhead .= '<meta name="keywords" content="' . $keywords . '" />' . "\n";
311                         }
312                 }
313
314                 $htmlhead .= '<meta name="dfrn-global-visibility" content="' . ($profile['net-publish'] ? 'true' : 'false') . '" />' . "\n";
315
316                 if (!$profile['net-publish']) {
317                         $htmlhead .= '<meta content="noindex, noarchive" name="robots" />' . "\n";
318                 }
319
320                 $htmlhead .= '<link rel="alternate" type="application/atom+xml" href="' . $baseUrl . '/dfrn_poll/' . $nickname . '" title="DFRN: ' . DI::l10n()->t('%s\'s timeline', $profile['name']) . '"/>' . "\n";
321                 $htmlhead .= '<link rel="alternate" type="application/atom+xml" href="' . $baseUrl . '/feed/' . $nickname . '/" title="' . DI::l10n()->t('%s\'s posts', $profile['name']) . '"/>' . "\n";
322                 $htmlhead .= '<link rel="alternate" type="application/atom+xml" href="' . $baseUrl . '/feed/' . $nickname . '/comments" title="' . DI::l10n()->t('%s\'s comments', $profile['name']) . '"/>' . "\n";
323                 $htmlhead .= '<link rel="alternate" type="application/atom+xml" href="' . $baseUrl . '/feed/' . $nickname . '/activity" title="' . DI::l10n()->t('%s\'s timeline', $profile['name']) . '"/>' . "\n";
324                 $uri = urlencode('acct:' . $profile['nickname'] . '@' . $baseUrl->getHostname() . ($baseUrl->getUrlPath() ? '/' . $baseUrl->getUrlPath() : ''));
325                 $htmlhead .= '<link rel="lrdd" type="application/xrd+xml" href="' . $baseUrl . '/xrd/?uri=' . $uri . '" />' . "\n";
326                 header('Link: <' . $baseUrl . '/xrd/?uri=' . $uri . '>; rel="lrdd"; type="application/xrd+xml"', false);
327
328                 $dfrn_pages = ['request', 'confirm', 'notify', 'poll'];
329                 foreach ($dfrn_pages as $dfrn) {
330                         $htmlhead .= '<link rel="dfrn-' . $dfrn . '" href="' . $baseUrl . '/dfrn_' . $dfrn . '/' . $nickname . '" />' . "\n";
331                 }
332                 $htmlhead .= '<link rel="dfrn-poco" href="' . $baseUrl . '/poco/' . $nickname . '" />' . "\n";
333
334                 return $htmlhead;
335         }
336 }