3 * @file src/Model/Profile.php
5 namespace Friendica\Model;
8 use Friendica\Content\Feature;
9 use Friendica\Content\ForumManager;
10 use Friendica\Content\Text\BBCode;
11 use Friendica\Core\Addon;
12 use Friendica\Core\Cache;
13 use Friendica\Core\Config;
14 use Friendica\Core\L10n;
15 use Friendica\Core\PConfig;
16 use Friendica\Core\System;
17 use Friendica\Core\Worker;
18 use Friendica\Database\DBM;
19 use Friendica\Model\Contact;
20 use Friendica\Model\OpenWebAuthToken;
21 use Friendica\Protocol\Diaspora;
22 use Friendica\Util\DateTimeFormat;
23 use Friendica\Util\Network;
24 use Friendica\Util\Temporal;
27 require_once 'include/dba.php';
28 require_once 'mod/proxy.php';
33 * @brief Returns a formatted location string from the given profile array
35 * @param array $profile Profile array (Generated from the "profile" table)
37 * @return string Location string
39 public static function formatLocation(array $profile)
43 if (!empty($profile['locality'])) {
44 $location .= $profile['locality'];
47 if (!empty($profile['region']) && (defaults($profile, 'locality', '') != $profile['region'])) {
52 $location .= $profile['region'];
55 if (!empty($profile['country-name'])) {
60 $location .= $profile['country-name'];
68 * Loads a profile into the page sidebar.
70 * The function requires a writeable copy of the main App structure, and the nickname
71 * of a registered local account.
73 * If the viewer is an authenticated remote viewer, the profile displayed is the
74 * one that has been configured for his/her viewing in the Contact manager.
75 * Passing a non-zero profile ID can also allow a preview of a selected profile
78 * Profile information is placed in the App structure for later retrieval.
79 * Honours the owner's chosen theme for display.
81 * @attention Should only be run in the _init() functions of a module. That ensures that
82 * the theme is chosen before the _init() function of a theme is run, which will usually
83 * load a lot of theme-specific content
85 * @brief Loads a profile into the page sidebar.
86 * @param object $a App
87 * @param string $nickname string
88 * @param int $profile int
89 * @param array $profiledata array
90 * @param boolean $show_connect Show connect link
92 public static function load(App $a, $nickname, $profile = 0, $profiledata = [], $show_connect = true)
94 $user = dba::selectFirst('user', ['uid'], ['nickname' => $nickname, 'account_removed' => false]);
96 if (!DBM::is_result($user) && empty($profiledata)) {
97 logger('profile error: ' . $a->query_string, LOGGER_DEBUG);
98 notice(L10n::t('Requested account is not available.') . EOL);
103 if (empty($a->page['aside'])) {
104 $a->page['aside'] = '';
108 $a->page['aside'] .= self::sidebar($profiledata, true, $show_connect);
110 if (!DBM::is_result($user)) {
115 $pdata = self::getByNickname($nickname, $user['uid'], $profile);
117 if (empty($pdata) && empty($profiledata)) {
118 logger('profile error: ' . $a->query_string, LOGGER_DEBUG);
119 notice(L10n::t('Requested profile is not available.') . EOL);
124 // fetch user tags if this isn't the default profile
126 if (!$pdata['is-default']) {
128 "SELECT `pub_keywords` FROM `profile` WHERE `uid` = %d AND `is-default` = 1 LIMIT 1",
129 intval($pdata['profile_uid'])
131 if ($x && count($x)) {
132 $pdata['pub_keywords'] = $x[0]['pub_keywords'];
136 $a->profile = $pdata;
137 $a->profile_uid = $pdata['profile_uid'];
139 $a->profile['mobile-theme'] = PConfig::get($a->profile['profile_uid'], 'system', 'mobile_theme');
140 $a->profile['network'] = NETWORK_DFRN;
142 $a->page['title'] = $a->profile['name'] . ' @ ' . $a->config['sitename'];
144 if (!$profiledata && !PConfig::get(local_user(), 'system', 'always_my_theme')) {
145 $_SESSION['theme'] = $a->profile['theme'];
148 $_SESSION['mobile-theme'] = $a->profile['mobile-theme'];
151 * load/reload current theme info
154 $a->set_template_engine(); // reset the template engine to the default in case the user's theme doesn't specify one
156 $theme_info_file = 'view/theme/' . $a->getCurrentTheme() . '/theme.php';
157 if (file_exists($theme_info_file)) {
158 require_once $theme_info_file;
161 if (local_user() && local_user() == $a->profile['uid'] && $profiledata) {
162 $a->page['aside'] .= replace_macros(
163 get_markup_template('profile_edlink.tpl'),
165 '$editprofile' => L10n::t('Edit profile'),
166 '$profid' => $a->profile['id']
171 $block = ((Config::get('system', 'block_public') && !local_user() && !remote_user()) ? true : false);
175 * By now, the contact block isn't shown, when a different profile is given
176 * But: When this profile was on the same server, then we could display the contacts
179 $a->page['aside'] .= self::sidebar($a->profile, $block, $show_connect);
186 * Get all profile data of a local user
188 * If the viewer is an authenticated remote viewer, the profile displayed is the
189 * one that has been configured for his/her viewing in the Contact manager.
190 * Passing a non-zero profile ID can also allow a preview of a selected profile
193 * Includes all available profile data
195 * @brief Get all profile data of a local user
196 * @param string $nickname nick
197 * @param int $uid uid
198 * @param int $profile_id ID of the profile
201 public static function getByNickname($nickname, $uid = 0, $profile_id = 0)
203 if (remote_user() && count($_SESSION['remote'])) {
204 foreach ($_SESSION['remote'] as $visitor) {
205 if ($visitor['uid'] == $uid) {
206 $contact = dba::selectFirst('contact', ['profile-id'], ['id' => $visitor['cid']]);
207 if (DBM::is_result($contact)) {
208 $profile_id = $contact['profile-id'];
218 $profile = dba::fetch_first(
219 "SELECT `contact`.`id` AS `contact_id`, `contact`.`photo` AS `contact_photo`,
220 `contact`.`thumb` AS `contact_thumb`, `contact`.`micro` AS `contact_micro`,
221 `profile`.`uid` AS `profile_uid`, `profile`.*,
222 `contact`.`avatar-date` AS picdate, `contact`.`addr`, `contact`.`url`, `user`.*
224 INNER JOIN `contact` on `contact`.`uid` = `profile`.`uid` AND `contact`.`self`
225 INNER JOIN `user` ON `profile`.`uid` = `user`.`uid`
226 WHERE `user`.`nickname` = ? AND `profile`.`id` = ? LIMIT 1",
231 if (!DBM::is_result($profile)) {
232 $profile = dba::fetch_first(
233 "SELECT `contact`.`id` AS `contact_id`, `contact`.`photo` as `contact_photo`,
234 `contact`.`thumb` AS `contact_thumb`, `contact`.`micro` AS `contact_micro`,
235 `profile`.`uid` AS `profile_uid`, `profile`.*,
236 `contact`.`avatar-date` AS picdate, `contact`.`addr`, `contact`.`url`, `user`.*
238 INNER JOIN `contact` ON `contact`.`uid` = `profile`.`uid` AND `contact`.`self`
239 INNER JOIN `user` ON `profile`.`uid` = `user`.`uid`
240 WHERE `user`.`nickname` = ? AND `profile`.`is-default` LIMIT 1",
249 * Formats a profile for display in the sidebar.
251 * It is very difficult to templatise the HTML completely
252 * because of all the conditional logic.
254 * @brief Formats a profile for display in the sidebar.
255 * @param array $profile
257 * @param boolean $show_connect Show connect link
259 * @return string HTML sidebar module
261 * @note Returns empty string if passed $profile is wrong type or not populated
263 * @hooks 'profile_sidebar_enter'
264 * array $profile - profile data
265 * @hooks 'profile_sidebar'
268 private static function sidebar($profile, $block = 0, $show_connect = true)
275 // This function can also use contact information in $profile
276 $is_contact = x($profile, 'cid');
278 if (!is_array($profile) && !count($profile)) {
282 $profile['picdate'] = urlencode(defaults($profile, 'picdate', ''));
284 if (($profile['network'] != '') && ($profile['network'] != NETWORK_DFRN)) {
285 $profile['network_name'] = format_network_name($profile['network'], $profile['url']);
287 $profile['network_name'] = '';
290 Addon::callHooks('profile_sidebar_enter', $profile);
293 // don't show connect link to yourself
294 $connect = $profile['uid'] != local_user() ? L10n::t('Connect') : false;
296 // don't show connect link to authenticated visitors either
297 if (remote_user() && count($_SESSION['remote'])) {
298 foreach ($_SESSION['remote'] as $visitor) {
299 if ($visitor['uid'] == $profile['uid']) {
306 if (!$show_connect) {
312 // Is the local user already connected to that user?
313 if ($connect && local_user()) {
314 if (isset($profile['url'])) {
315 $profile_url = normalise_link($profile['url']);
317 $profile_url = normalise_link(System::baseUrl() . '/profile/' . $profile['nickname']);
320 if (dba::exists('contact', ['pending' => false, 'uid' => local_user(), 'nurl' => $profile_url])) {
325 if ($connect && ($profile['network'] != NETWORK_DFRN) && !isset($profile['remoteconnect'])) {
329 $remoteconnect = null;
330 if (isset($profile['remoteconnect'])) {
331 $remoteconnect = $profile['remoteconnect'];
334 if ($connect && ($profile['network'] == NETWORK_DFRN) && !isset($remoteconnect)) {
335 $subscribe_feed = L10n::t('Atom feed');
337 $subscribe_feed = false;
340 if (remote_user() || (self::getMyURL() && x($profile, 'unkmail') && ($profile['uid'] != local_user()))) {
341 $wallmessage = L10n::t('Message');
342 $wallmessage_link = 'wallmessage/' . $profile['nickname'];
346 "SELECT `url` FROM `contact` WHERE `uid` = %d AND `id` = '%s' AND `rel` = %d",
347 intval($profile['uid']),
348 intval(remote_user()),
349 intval(CONTACT_IS_FRIEND)
353 "SELECT `url` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' AND `rel` = %d",
354 intval($profile['uid']),
355 dbesc(normalise_link(self::getMyURL())),
356 intval(CONTACT_IS_FRIEND)
360 $remote_url = $r[0]['url'];
361 $message_path = preg_replace('=(.*)/profile/(.*)=ism', '$1/message/new/', $remote_url);
362 $wallmessage_link = $message_path . base64_encode($profile['addr']);
365 $wallmessage = false;
366 $wallmessage_link = false;
369 // show edit profile to yourself
370 if (!$is_contact && $profile['uid'] == local_user() && Feature::isEnabled(local_user(), 'multi_profiles')) {
371 $profile['edit'] = [System::baseUrl() . '/profiles', L10n::t('Profiles'), '', L10n::t('Manage/edit profiles')];
373 "SELECT * FROM `profile` WHERE `uid` = %d",
378 'chg_photo' => L10n::t('Change profile photo'),
379 'cr_new' => L10n::t('Create New Profile'),
383 if (DBM::is_result($r)) {
384 foreach ($r as $rr) {
385 $profile['menu']['entries'][] = [
386 'photo' => $rr['thumb'],
388 'alt' => L10n::t('Profile Image'),
389 'profile_name' => $rr['profile-name'],
390 'isdefault' => $rr['is-default'],
391 'visibile_to_everybody' => L10n::t('visible to everybody'),
392 'edit_visibility' => L10n::t('Edit visibility'),
397 if (!$is_contact && $profile['uid'] == local_user() && !Feature::isEnabled(local_user(), 'multi_profiles')) {
398 $profile['edit'] = [System::baseUrl() . '/profiles/' . $profile['id'], L10n::t('Edit profile'), '', L10n::t('Edit profile')];
400 'chg_photo' => L10n::t('Change profile photo'),
406 // Fetch the account type
407 $account_type = Contact::getAccountType($profile);
409 if (x($profile, 'address')
410 || x($profile, 'location')
411 || x($profile, 'locality')
412 || x($profile, 'region')
413 || x($profile, 'postal-code')
414 || x($profile, 'country-name')
416 $location = L10n::t('Location:');
419 $gender = x($profile, 'gender') ? L10n::t('Gender:') : false;
420 $marital = x($profile, 'marital') ? L10n::t('Status:') : false;
421 $homepage = x($profile, 'homepage') ? L10n::t('Homepage:') : false;
422 $about = x($profile, 'about') ? L10n::t('About:') : false;
423 $xmpp = x($profile, 'xmpp') ? L10n::t('XMPP:') : false;
425 if ((x($profile, 'hidewall') || $block) && !local_user() && !remote_user()) {
426 $location = $gender = $marital = $homepage = $about = false;
429 $split_name = Diaspora::splitName($profile['name']);
430 $firstname = $split_name['first'];
431 $lastname = $split_name['last'];
433 if (x($profile, 'guid')) {
435 'guid' => $profile['guid'],
436 'podloc' => System::baseUrl(),
437 'searchable' => (($profile['publish'] && $profile['net-publish']) ? 'true' : 'false' ),
438 'nickname' => $profile['nickname'],
439 'fullname' => $profile['name'],
440 'firstname' => $firstname,
441 'lastname' => $lastname,
442 'photo300' => defaults($profile, 'contact_photo', ''),
443 'photo100' => defaults($profile, 'contact_thumb', ''),
444 'photo50' => defaults($profile, 'contact_micro', ''),
454 $contact_block = contact_block();
456 if (is_array($a->profile) && !$a->profile['hide-friends']) {
458 "SELECT `gcontact`.`updated` FROM `contact` INNER JOIN `gcontact` WHERE `gcontact`.`nurl` = `contact`.`nurl` AND `self` AND `uid` = %d LIMIT 1",
459 intval($a->profile['uid'])
461 if (DBM::is_result($r)) {
462 $updated = date('c', strtotime($r[0]['updated']));
466 "SELECT COUNT(*) AS `total` FROM `contact`
468 AND NOT `self` AND NOT `blocked` AND NOT `pending`
469 AND NOT `hidden` AND NOT `archive`
470 AND `network` IN ('%s', '%s', '%s', '')",
471 intval($profile['uid']),
473 dbesc(NETWORK_DIASPORA),
474 dbesc(NETWORK_OSTATUS)
476 if (DBM::is_result($r)) {
477 $contacts = intval($r[0]['total']);
483 foreach ($profile as $k => $v) {
484 $k = str_replace('-', '_', $k);
488 if (isset($p['about'])) {
489 $p['about'] = BBCode::convert($p['about']);
492 if (isset($p['address'])) {
493 $p['address'] = BBCode::convert($p['address']);
495 $p['address'] = BBCode::convert($p['location']);
498 if (isset($p['photo'])) {
499 $p['photo'] = proxy_url($p['photo'], false, PROXY_SIZE_SMALL);
502 $p['url'] = Contact::magicLink(defaults($p, 'url', $profile_url));
504 $tpl = get_markup_template('profile_vcard.tpl');
505 $o .= replace_macros($tpl, [
508 '$connect' => $connect,
509 '$remoteconnect' => $remoteconnect,
510 '$subscribe_feed' => $subscribe_feed,
511 '$wallmessage' => $wallmessage,
512 '$wallmessage_link' => $wallmessage_link,
513 '$account_type' => $account_type,
514 '$location' => $location,
515 '$gender' => $gender,
516 '$marital' => $marital,
517 '$homepage' => $homepage,
519 '$network' => L10n::t('Network:'),
520 '$contacts' => $contacts,
521 '$updated' => $updated,
522 '$diaspora' => $diaspora,
523 '$contact_block' => $contact_block,
526 $arr = ['profile' => &$profile, 'entry' => &$o];
528 Addon::callHooks('profile_sidebar', $arr);
533 public static function getBirthdays()
538 if (!local_user() || $a->is_mobile || $a->is_tablet) {
543 * $mobile_detect = new Mobile_Detect();
544 * $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
549 $bd_format = L10n::t('g A l F d'); // 8 AM Friday January 18
550 $bd_short = L10n::t('F d');
552 $cachekey = 'get_birthdays:' . local_user();
553 $r = Cache::get($cachekey);
556 "SELECT `event`.*, `event`.`id` AS `eid`, `contact`.* FROM `event`
557 INNER JOIN `contact` ON `contact`.`id` = `event`.`cid`
558 WHERE `event`.`uid` = ? AND `type` = 'birthday' AND `start` < ? AND `finish` > ?
559 ORDER BY `start` ASC ",
561 DateTimeFormat::utc('now + 6 days'),
562 DateTimeFormat::utcNow()
564 if (DBM::is_result($s)) {
565 $r = dba::inArray($s);
566 Cache::set($cachekey, $r, CACHE_HOUR);
572 if (DBM::is_result($r)) {
573 $now = strtotime('now');
577 foreach ($r as $rr) {
578 if (strlen($rr['name'])) {
581 if ((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now)) {
585 $classtoday = $istoday ? ' birthday-today ' : '';
587 foreach ($r as &$rr) {
588 if (!strlen($rr['name'])) {
594 if (in_array($rr['cid'], $cids)) {
597 $cids[] = $rr['cid'];
599 $today = (((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now)) ? true : false);
601 $rr['link'] = Contact::magicLink($rr['url']);
602 $rr['title'] = $rr['name'];
603 $rr['date'] = day_translate(DateTimeFormat::convert($rr['start'], $a->timezone, 'UTC', $rr['adjust'] ? $bd_format : $bd_short)) . (($today) ? ' ' . L10n::t('[today]') : '');
604 $rr['startime'] = null;
605 $rr['today'] = $today;
609 $tpl = get_markup_template('birthdays_reminder.tpl');
610 return replace_macros($tpl, [
611 '$baseurl' => System::baseUrl(),
612 '$classtoday' => $classtoday,
614 '$event_reminders' => L10n::t('Birthday Reminders'),
615 '$event_title' => L10n::t('Birthdays this week:'),
617 '$lbr' => '{', // raw brackets mess up if/endif macro processing
622 public static function getEventsReminderHTML()
627 if (!local_user() || $a->is_mobile || $a->is_tablet) {
632 * $mobile_detect = new Mobile_Detect();
633 * $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
638 $bd_format = L10n::t('g A l F d'); // 8 AM Friday January 18
645 ON `item`.`uid` = `event`.`uid`
646 AND `item`.`parent-uri` = `event`.`uri`
647 WHERE `event`.`uid` = ?
648 AND `event`.`type` != 'birthday'
649 AND `event`.`start` < ?
650 AND `event`.`start` >= ?
651 AND `item`.`author-id` = ?
652 AND (`item`.`verb` = ? OR `item`.`verb` = ?)
654 AND NOT `item`.`deleted`
655 ORDER BY `event`.`start` ASC",
657 DateTimeFormat::utc('now + 7 days'),
658 DateTimeFormat::utc('now - 1 days'),
666 if (DBM::is_result($s)) {
669 while ($rr = dba::fetch($s)) {
670 if (strlen($rr['name'])) {
674 $strt = DateTimeFormat::convert($rr['start'], $rr['convert'] ? $a->timezone : 'UTC', 'UTC', 'Y-m-d');
675 if ($strt === DateTimeFormat::timezoneNow($a->timezone, 'Y-m-d')) {
679 $title = strip_tags(html_entity_decode(BBCode::convert($rr['summary']), ENT_QUOTES, 'UTF-8'));
681 if (strlen($title) > 35) {
682 $title = substr($title, 0, 32) . '... ';
685 $description = substr(strip_tags(BBCode::convert($rr['desc'])), 0, 32) . '... ';
687 $description = L10n::t('[No description]');
690 $strt = DateTimeFormat::convert($rr['start'], $rr['convert'] ? $a->timezone : 'UTC');
692 if (substr($strt, 0, 10) < DateTimeFormat::timezoneNow($a->timezone, 'Y-m-d')) {
696 $today = ((substr($strt, 0, 10) === DateTimeFormat::timezoneNow($a->timezone, 'Y-m-d')) ? true : false);
698 $rr['title'] = $title;
699 $rr['description'] = $description;
700 $rr['date'] = day_translate(DateTimeFormat::convert($rr['start'], $rr['adjust'] ? $a->timezone : 'UTC', 'UTC', $bd_format)) . (($today) ? ' ' . L10n::t('[today]') : '');
701 $rr['startime'] = $strt;
702 $rr['today'] = $today;
707 $classtoday = (($istoday) ? 'event-today' : '');
709 $tpl = get_markup_template('events_reminder.tpl');
710 return replace_macros($tpl, [
711 '$baseurl' => System::baseUrl(),
712 '$classtoday' => $classtoday,
713 '$count' => count($r),
714 '$event_reminders' => L10n::t('Event Reminders'),
715 '$event_title' => L10n::t('Upcoming events the next 7 days:'),
720 public static function getAdvanced(App $a)
723 $uid = $a->profile['uid'];
725 $o .= replace_macros(
726 get_markup_template('section_title.tpl'),
727 ['$title' => L10n::t('Profile')]
730 if ($a->profile['name']) {
731 $tpl = get_markup_template('profile_advanced.tpl');
735 $profile['fullname'] = [L10n::t('Full Name:'), $a->profile['name']];
737 if (Feature::isEnabled($uid, 'profile_membersince')) {
738 $profile['membersince'] = [L10n::t('Member since:'), DateTimeFormat::local($a->profile['register_date'])];
741 if ($a->profile['gender']) {
742 $profile['gender'] = [L10n::t('Gender:'), $a->profile['gender']];
745 if (($a->profile['dob']) && ($a->profile['dob'] > '0001-01-01')) {
746 $year_bd_format = L10n::t('j F, Y');
747 $short_bd_format = L10n::t('j F');
749 $val = day_translate(
750 intval($a->profile['dob']) ?
751 DateTimeFormat::utc($a->profile['dob'] . ' 00:00 +00:00', $year_bd_format)
752 : DateTimeFormat::utc('2001-' . substr($a->profile['dob'], 5) . ' 00:00 +00:00', $short_bd_format)
755 $profile['birthday'] = [L10n::t('Birthday:'), $val];
758 if (!empty($a->profile['dob'])
759 && $a->profile['dob'] > '0001-01-01'
760 && $age = Temporal::getAgeByTimezone($a->profile['dob'], $a->profile['timezone'], '')
762 $profile['age'] = [L10n::t('Age:'), $age];
765 if ($a->profile['marital']) {
766 $profile['marital'] = [L10n::t('Status:'), $a->profile['marital']];
769 /// @TODO Maybe use x() here, plus below?
770 if ($a->profile['with']) {
771 $profile['marital']['with'] = $a->profile['with'];
774 if (strlen($a->profile['howlong']) && $a->profile['howlong'] >= NULL_DATE) {
775 $profile['howlong'] = Temporal::getRelativeDate($a->profile['howlong'], L10n::t('for %1$d %2$s'));
778 if ($a->profile['sexual']) {
779 $profile['sexual'] = [L10n::t('Sexual Preference:'), $a->profile['sexual']];
782 if ($a->profile['homepage']) {
783 $profile['homepage'] = [L10n::t('Homepage:'), linkify($a->profile['homepage'])];
786 if ($a->profile['hometown']) {
787 $profile['hometown'] = [L10n::t('Hometown:'), linkify($a->profile['hometown'])];
790 if ($a->profile['pub_keywords']) {
791 $profile['pub_keywords'] = [L10n::t('Tags:'), $a->profile['pub_keywords']];
794 if ($a->profile['politic']) {
795 $profile['politic'] = [L10n::t('Political Views:'), $a->profile['politic']];
798 if ($a->profile['religion']) {
799 $profile['religion'] = [L10n::t('Religion:'), $a->profile['religion']];
802 if ($txt = prepare_text($a->profile['about'])) {
803 $profile['about'] = [L10n::t('About:'), $txt];
806 if ($txt = prepare_text($a->profile['interest'])) {
807 $profile['interest'] = [L10n::t('Hobbies/Interests:'), $txt];
810 if ($txt = prepare_text($a->profile['likes'])) {
811 $profile['likes'] = [L10n::t('Likes:'), $txt];
814 if ($txt = prepare_text($a->profile['dislikes'])) {
815 $profile['dislikes'] = [L10n::t('Dislikes:'), $txt];
818 if ($txt = prepare_text($a->profile['contact'])) {
819 $profile['contact'] = [L10n::t('Contact information and Social Networks:'), $txt];
822 if ($txt = prepare_text($a->profile['music'])) {
823 $profile['music'] = [L10n::t('Musical interests:'), $txt];
826 if ($txt = prepare_text($a->profile['book'])) {
827 $profile['book'] = [L10n::t('Books, literature:'), $txt];
830 if ($txt = prepare_text($a->profile['tv'])) {
831 $profile['tv'] = [L10n::t('Television:'), $txt];
834 if ($txt = prepare_text($a->profile['film'])) {
835 $profile['film'] = [L10n::t('Film/dance/culture/entertainment:'), $txt];
838 if ($txt = prepare_text($a->profile['romance'])) {
839 $profile['romance'] = [L10n::t('Love/Romance:'), $txt];
842 if ($txt = prepare_text($a->profile['work'])) {
843 $profile['work'] = [L10n::t('Work/employment:'), $txt];
846 if ($txt = prepare_text($a->profile['education'])) {
847 $profile['education'] = [L10n::t('School/education:'), $txt];
850 //show subcribed forum if it is enabled in the usersettings
851 if (Feature::isEnabled($uid, 'forumlist_profile')) {
852 $profile['forumlist'] = [L10n::t('Forums:'), ForumManager::profileAdvanced($uid)];
855 if ($a->profile['uid'] == local_user()) {
856 $profile['edit'] = [System::baseUrl() . '/profiles/' . $a->profile['id'], L10n::t('Edit profile'), '', L10n::t('Edit profile')];
859 return replace_macros($tpl, [
860 '$title' => L10n::t('Profile'),
861 '$basic' => L10n::t('Basic'),
862 '$advanced' => L10n::t('Advanced'),
863 '$profile' => $profile
870 public static function getTabs($a, $is_owner = false, $nickname = null)
872 if (is_null($nickname)) {
873 $nickname = $a->user['nickname'];
877 if (x($_GET, 'tab')) {
878 $tab = notags(trim($_GET['tab']));
881 $url = System::baseUrl() . '/profile/' . $nickname;
885 'label' => L10n::t('Status'),
887 'sel' => !$tab && $a->argv[0] == 'profile' ? 'active' : '',
888 'title' => L10n::t('Status Messages and Posts'),
889 'id' => 'status-tab',
893 'label' => L10n::t('Profile'),
894 'url' => $url . '/?tab=profile',
895 'sel' => $tab == 'profile' ? 'active' : '',
896 'title' => L10n::t('Profile Details'),
897 'id' => 'profile-tab',
901 'label' => L10n::t('Photos'),
902 'url' => System::baseUrl() . '/photos/' . $nickname,
903 'sel' => !$tab && $a->argv[0] == 'photos' ? 'active' : '',
904 'title' => L10n::t('Photo Albums'),
909 'label' => L10n::t('Videos'),
910 'url' => System::baseUrl() . '/videos/' . $nickname,
911 'sel' => !$tab && $a->argv[0] == 'videos' ? 'active' : '',
912 'title' => L10n::t('Videos'),
918 // the calendar link for the full featured events calendar
919 if ($is_owner && $a->theme_events_in_profile) {
921 'label' => L10n::t('Events'),
922 'url' => System::baseUrl() . '/events',
923 'sel' => !$tab && $a->argv[0] == 'events' ? 'active' : '',
924 'title' => L10n::t('Events and Calendar'),
925 'id' => 'events-tab',
928 // if the user is not the owner of the calendar we only show a calendar
929 // with the public events of the calendar owner
930 } elseif (!$is_owner) {
932 'label' => L10n::t('Events'),
933 'url' => System::baseUrl() . '/cal/' . $nickname,
934 'sel' => !$tab && $a->argv[0] == 'cal' ? 'active' : '',
935 'title' => L10n::t('Events and Calendar'),
936 'id' => 'events-tab',
943 'label' => L10n::t('Personal Notes'),
944 'url' => System::baseUrl() . '/notes',
945 'sel' => !$tab && $a->argv[0] == 'notes' ? 'active' : '',
946 'title' => L10n::t('Only You Can See This'),
952 if (!empty($_SESSION['new_member']) && $is_owner) {
954 'label' => L10n::t('Tips for New Members'),
955 'url' => System::baseUrl() . '/newmember',
957 'title' => L10n::t('Tips for New Members'),
958 'id' => 'newmember-tab',
962 if (!$is_owner && empty($a->profile['hide-friends'])) {
964 'label' => L10n::t('Contacts'),
965 'url' => System::baseUrl() . '/viewcontacts/' . $nickname,
966 'sel' => !$tab && $a->argv[0] == 'viewcontacts' ? 'active' : '',
967 'title' => L10n::t('Contacts'),
968 'id' => 'viewcontacts-tab',
973 $arr = ['is_owner' => $is_owner, 'nickname' => $nickname, 'tab' => $tab, 'tabs' => $tabs];
974 Addon::callHooks('profile_tabs', $arr);
976 $tpl = get_markup_template('common_tabs.tpl');
978 return replace_macros($tpl, ['$tabs' => $arr['tabs']]);
982 * Retrieves the my_url session variable
986 public static function getMyURL()
988 if (x($_SESSION, 'my_url')) {
989 return $_SESSION['my_url'];
995 * Process the 'zrl' parameter and initiate the remote authentication.
997 * This method checks if the visitor has a public contact entry and
998 * redirects the visitor to his/her instance to start the magic auth (Authentication)
1001 * Ported from Hubzilla: https://framagit.org/hubzilla/core/blob/master/include/channel.php
1003 * @param App $a Application instance.
1005 public static function zrlInit(App $a)
1007 $my_url = self::getMyURL();
1008 $my_url = Network::isUrlValid($my_url);
1011 if (!local_user()) {
1012 // Is it a DDoS attempt?
1013 // The check fetches the cached value from gprobe to reduce the load for this system
1014 $urlparts = parse_url($my_url);
1016 $result = Cache::get('gprobe:' . $urlparts['host']);
1017 if ((!is_null($result)) && (in_array($result['network'], [NETWORK_FEED, NETWORK_PHANTOM]))) {
1018 logger('DDoS attempt detected for ' . $urlparts['host'] . ' by ' . $_SERVER['REMOTE_ADDR'] . '. server data: ' . print_r($_SERVER, true), LOGGER_DEBUG);
1022 Worker::add(PRIORITY_LOW, 'GProbe', $my_url);
1023 $arr = ['zrl' => $my_url, 'url' => $a->cmd];
1024 Addon::callHooks('zrl_init', $arr);
1026 // Try to find the public contact entry of the visitor.
1027 $cid = Contact::getIdForURL($my_url);
1029 logger('No contact record found for ' . $my_url, LOGGER_DEBUG);
1033 $contact = dba::selectFirst('contact',['id', 'url'], ['id' => $cid]);
1035 if (DBM::is_result($contact) && remote_user() && remote_user() == $contact['id']) {
1036 // The visitor is already authenticated.
1040 logger('Not authenticated. Invoking reverse magic-auth for ' . $my_url, LOGGER_DEBUG);
1042 // Try to avoid recursion - but send them home to do a proper magic auth.
1043 $query = str_replace(array('?zrl=', '&zid='), array('?rzrl=', '&rzrl='), $a->query_string);
1044 // The other instance needs to know where to redirect.
1045 $dest = urlencode(System::baseUrl() . '/' . $query);
1047 // We need to extract the basebath from the profile url
1048 // to redirect the visitors '/magic' module.
1049 // Note: We should have the basepath of a contact also in the contact table.
1050 $urlarr = explode('/profile/', $contact['url']);
1051 $basepath = $urlarr[0];
1053 if ($basepath != System::baseUrl() && !strstr($dest, '/magic') && !strstr($dest, '/rmagic')) {
1054 goaway($basepath . '/magic' . '?f=&owa=1&dest=' . $dest);
1061 * OpenWebAuth authentication.
1063 * Ported from Hubzilla: https://framagit.org/hubzilla/core/blob/master/include/zid.php
1065 * @param string $token
1067 public static function openWebAuthInit($token)
1071 // Clean old OpenWebAuthToken entries.
1072 OpenWebAuthToken::purge('owt', '3 MINUTE');
1074 // Check if the token we got is the same one
1075 // we have stored in the database.
1076 $visitor_handle = OpenWebAuthToken::getMeta('owt', 0, $token);
1078 if($visitor_handle === false) {
1082 // Try to find the public contact entry of the visitor.
1083 $cid = Contact::getIdForURL($visitor_handle);
1085 logger('owt: unable to finger ' . $visitor_handle, LOGGER_DEBUG);
1089 $visitor = dba::selectFirst('contact', [], ['id' => $cid]);
1091 // Authenticate the visitor.
1092 $_SESSION['authenticated'] = 1;
1093 $_SESSION['visitor_id'] = $visitor['id'];
1094 $_SESSION['visitor_handle'] = $visitor['addr'];
1095 $_SESSION['visitor_home'] = $visitor['url'];
1096 $_SESSION['my_url'] = $visitor['url'];
1099 'visitor' => $visitor,
1100 'url' => $a->query_string
1103 * @hooks magic_auth_success
1104 * Called when a magic-auth was successful.
1105 * * \e array \b visitor
1106 * * \e string \b url
1108 Addon::callHooks('magic_auth_success', $arr);
1110 $a->contact = $arr['visitor'];
1112 info(L10n::t('OpenWebAuth: %1$s welcomes %2$s', $a->get_hostname(), $visitor['name']));
1114 logger('OpenWebAuth: auth success from ' . $visitor['addr'], LOGGER_DEBUG);
1117 public static function zrl($s, $force = false)
1122 if ((!strpos($s, '/profile/')) && (!$force)) {
1125 if ($force && substr($s, -1, 1) !== '/') {
1128 $achar = strpos($s, '?') ? '&' : '?';
1129 $mine = self::getMyURL();
1130 if ($mine && !link_compare($mine, $s)) {
1131 return $s . $achar . 'zrl=' . urlencode($mine);
1137 * Get the user ID of the page owner.
1139 * Used from within PCSS themes to set theme parameters. If there's a
1140 * puid request variable, that is the "page owner" and normally their theme
1141 * settings take precedence; unless a local user sets the "always_my_theme"
1142 * system pconfig, which means they don't want to see anybody else's theme
1143 * settings except their own while on this site.
1145 * @brief Get the user ID of the page owner
1146 * @return int user ID
1148 * @note Returns local_user instead of user ID if "always_my_theme"
1151 public static function getThemeUid()
1153 $uid = ((!empty($_REQUEST['puid'])) ? intval($_REQUEST['puid']) : 0);
1154 if ((local_user()) && ((PConfig::get(local_user(), 'system', 'always_my_theme')) || (!$uid))) {
1155 return local_user();
1162 * Stip zrl parameter from a string.
1164 * @param string $s The input string.
1165 * @return string The zrl.
1167 public static function stripZrls($s)
1169 return preg_replace('/[\?&]zrl=(.*?)([\?&]|$)/is', '', $s);
1173 * Stip query parameter from a string.
1175 * @param string $s The input string.
1176 * @return string The query parameter.
1178 public static function stripQueryParam($s, $param)
1180 return preg_replace('/[\?&]' . $param . '=(.*?)(&|$)/ism', '$2', $s);