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\DBA;
19 use Friendica\Model\Contact;
20 use Friendica\Protocol\Diaspora;
21 use Friendica\Util\DateTimeFormat;
22 use Friendica\Util\Network;
23 use Friendica\Util\Temporal;
25 require_once 'include/dba.php';
26 require_once 'mod/proxy.php';
31 * @brief Returns a formatted location string from the given profile array
33 * @param array $profile Profile array (Generated from the "profile" table)
35 * @return string Location string
37 public static function formatLocation(array $profile)
41 if (!empty($profile['locality'])) {
42 $location .= $profile['locality'];
45 if (!empty($profile['region']) && (defaults($profile, 'locality', '') != $profile['region'])) {
50 $location .= $profile['region'];
53 if (!empty($profile['country-name'])) {
58 $location .= $profile['country-name'];
66 * Loads a profile into the page sidebar.
68 * The function requires a writeable copy of the main App structure, and the nickname
69 * of a registered local account.
71 * If the viewer is an authenticated remote viewer, the profile displayed is the
72 * one that has been configured for his/her viewing in the Contact manager.
73 * Passing a non-zero profile ID can also allow a preview of a selected profile
76 * Profile information is placed in the App structure for later retrieval.
77 * Honours the owner's chosen theme for display.
79 * @attention Should only be run in the _init() functions of a module. That ensures that
80 * the theme is chosen before the _init() function of a theme is run, which will usually
81 * load a lot of theme-specific content
83 * @brief Loads a profile into the page sidebar.
84 * @param object $a App
85 * @param string $nickname string
86 * @param int $profile int
87 * @param array $profiledata array
88 * @param boolean $show_connect Show connect link
90 public static function load(App $a, $nickname, $profile = 0, array $profiledata = [], $show_connect = true)
92 $user = DBA::selectFirst('user', ['uid'], ['nickname' => $nickname, 'account_removed' => false]);
94 if (!DBA::isResult($user) && empty($profiledata)) {
95 logger('profile error: ' . $a->query_string, LOGGER_DEBUG);
96 notice(L10n::t('Requested account is not available.') . EOL);
101 if (count($profiledata) > 0) {
102 // Add profile data to sidebar
103 $a->page['aside'] .= self::sidebar($profiledata, true, $show_connect);
105 if (!DBA::isResult($user)) {
110 $pdata = self::getByNickname($nickname, $user['uid'], $profile);
112 if (empty($pdata) && empty($profiledata)) {
113 logger('profile error: ' . $a->query_string, LOGGER_DEBUG);
114 notice(L10n::t('Requested profile is not available.') . EOL);
120 $pdata = ['uid' => 0, 'profile_uid' => 0, 'is-default' => false,'name' => $nickname];
123 // fetch user tags if this isn't the default profile
125 if (!$pdata['is-default']) {
127 "SELECT `pub_keywords` FROM `profile` WHERE `uid` = %d AND `is-default` = 1 LIMIT 1",
128 intval($pdata['profile_uid'])
130 if ($x && count($x)) {
131 $pdata['pub_keywords'] = $x[0]['pub_keywords'];
135 $a->profile = $pdata;
136 $a->profile_uid = $pdata['profile_uid'];
138 $a->profile['mobile-theme'] = PConfig::get($a->profile['profile_uid'], 'system', 'mobile_theme');
139 $a->profile['network'] = NETWORK_DFRN;
141 $a->page['title'] = $a->profile['name'] . ' @ ' . Config::get('config', 'sitename');
143 if (!$profiledata && !PConfig::get(local_user(), 'system', 'always_my_theme')) {
144 $_SESSION['theme'] = $a->profile['theme'];
147 $_SESSION['mobile-theme'] = $a->profile['mobile-theme'];
150 * load/reload current theme info
153 $a->set_template_engine(); // reset the template engine to the default in case the user's theme doesn't specify one
155 $theme_info_file = 'view/theme/' . $a->getCurrentTheme() . '/theme.php';
156 if (file_exists($theme_info_file)) {
157 require_once $theme_info_file;
160 if (local_user() && local_user() == $a->profile['uid'] && $profiledata) {
161 $a->page['aside'] .= replace_macros(
162 get_markup_template('profile_edlink.tpl'),
164 '$editprofile' => L10n::t('Edit profile'),
165 '$profid' => $a->profile['id']
170 $block = ((Config::get('system', 'block_public') && !local_user() && !remote_user()) ? true : false);
174 * By now, the contact block isn't shown, when a different profile is given
175 * But: When this profile was on the same server, then we could display the contacts
178 $a->page['aside'] .= self::sidebar($a->profile, $block, $show_connect);
185 * Get all profile data of a local user
187 * If the viewer is an authenticated remote viewer, the profile displayed is the
188 * one that has been configured for his/her viewing in the Contact manager.
189 * Passing a non-zero profile ID can also allow a preview of a selected profile
192 * Includes all available profile data
194 * @brief Get all profile data of a local user
195 * @param string $nickname nick
196 * @param int $uid uid
197 * @param int $profile_id ID of the profile
200 public static function getByNickname($nickname, $uid = 0, $profile_id = 0)
202 if (remote_user() && count($_SESSION['remote'])) {
203 foreach ($_SESSION['remote'] as $visitor) {
204 if ($visitor['uid'] == $uid) {
205 $contact = DBA::selectFirst('contact', ['profile-id'], ['id' => $visitor['cid']]);
206 if (DBA::isResult($contact)) {
207 $profile_id = $contact['profile-id'];
217 $profile = DBA::fetchFirst(
218 "SELECT `contact`.`id` AS `contact_id`, `contact`.`photo` AS `contact_photo`,
219 `contact`.`thumb` AS `contact_thumb`, `contact`.`micro` AS `contact_micro`,
220 `profile`.`uid` AS `profile_uid`, `profile`.*,
221 `contact`.`avatar-date` AS picdate, `contact`.`addr`, `contact`.`url`, `user`.*
223 INNER JOIN `contact` on `contact`.`uid` = `profile`.`uid` AND `contact`.`self`
224 INNER JOIN `user` ON `profile`.`uid` = `user`.`uid`
225 WHERE `user`.`nickname` = ? AND `profile`.`id` = ? LIMIT 1",
230 if (!DBA::isResult($profile)) {
231 $profile = DBA::fetchFirst(
232 "SELECT `contact`.`id` AS `contact_id`, `contact`.`photo` as `contact_photo`,
233 `contact`.`thumb` AS `contact_thumb`, `contact`.`micro` AS `contact_micro`,
234 `profile`.`uid` AS `profile_uid`, `profile`.*,
235 `contact`.`avatar-date` AS picdate, `contact`.`addr`, `contact`.`url`, `user`.*
237 INNER JOIN `contact` ON `contact`.`uid` = `profile`.`uid` AND `contact`.`self`
238 INNER JOIN `user` ON `profile`.`uid` = `user`.`uid`
239 WHERE `user`.`nickname` = ? AND `profile`.`is-default` LIMIT 1",
248 * Formats a profile for display in the sidebar.
250 * It is very difficult to templatise the HTML completely
251 * because of all the conditional logic.
253 * @brief Formats a profile for display in the sidebar.
254 * @param array $profile
256 * @param boolean $show_connect Show connect link
258 * @return string HTML sidebar module
260 * @note Returns empty string if passed $profile is wrong type or not populated
262 * @hooks 'profile_sidebar_enter'
263 * array $profile - profile data
264 * @hooks 'profile_sidebar'
267 private static function sidebar($profile, $block = 0, $show_connect = true)
274 // This function can also use contact information in $profile
275 $is_contact = x($profile, 'cid');
277 if (!is_array($profile) && !count($profile)) {
281 $profile['picdate'] = urlencode(defaults($profile, 'picdate', ''));
283 if (($profile['network'] != '') && ($profile['network'] != NETWORK_DFRN)) {
284 $profile['network_name'] = format_network_name($profile['network'], $profile['url']);
286 $profile['network_name'] = '';
289 Addon::callHooks('profile_sidebar_enter', $profile);
292 // don't show connect link to yourself
293 $connect = $profile['uid'] != local_user() ? L10n::t('Connect') : false;
295 // don't show connect link to authenticated visitors either
296 if (remote_user() && count($_SESSION['remote'])) {
297 foreach ($_SESSION['remote'] as $visitor) {
298 if ($visitor['uid'] == $profile['uid']) {
305 if (!$show_connect) {
311 // Is the local user already connected to that user?
312 if ($connect && local_user()) {
313 if (isset($profile['url'])) {
314 $profile_url = normalise_link($profile['url']);
316 $profile_url = normalise_link(System::baseUrl() . '/profile/' . $profile['nickname']);
319 if (DBA::exists('contact', ['pending' => false, 'uid' => local_user(), 'nurl' => $profile_url])) {
324 if ($connect && ($profile['network'] != NETWORK_DFRN) && !isset($profile['remoteconnect'])) {
328 $remoteconnect = null;
329 if (isset($profile['remoteconnect'])) {
330 $remoteconnect = $profile['remoteconnect'];
333 if ($connect && ($profile['network'] == NETWORK_DFRN) && !isset($remoteconnect)) {
334 $subscribe_feed = L10n::t('Atom feed');
336 $subscribe_feed = false;
339 if (remote_user() || (self::getMyURL() && x($profile, 'unkmail') && ($profile['uid'] != local_user()))) {
340 $wallmessage = L10n::t('Message');
341 $wallmessage_link = 'wallmessage/' . $profile['nickname'];
345 "SELECT `url` FROM `contact` WHERE `uid` = %d AND `id` = '%s' AND `rel` = %d",
346 intval($profile['uid']),
347 intval(remote_user()),
348 intval(Contact::FRIEND)
352 "SELECT `url` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' AND `rel` = %d",
353 intval($profile['uid']),
354 DBA::escape(normalise_link(self::getMyURL())),
355 intval(Contact::FRIEND)
359 $remote_url = $r[0]['url'];
360 $message_path = preg_replace('=(.*)/profile/(.*)=ism', '$1/message/new/', $remote_url);
361 $wallmessage_link = $message_path . base64_encode($profile['addr']);
364 $wallmessage = false;
365 $wallmessage_link = false;
368 // show edit profile to yourself
369 if (!$is_contact && $profile['uid'] == local_user() && Feature::isEnabled(local_user(), 'multi_profiles')) {
370 $profile['edit'] = [System::baseUrl() . '/profiles', L10n::t('Profiles'), '', L10n::t('Manage/edit profiles')];
372 "SELECT * FROM `profile` WHERE `uid` = %d",
377 'chg_photo' => L10n::t('Change profile photo'),
378 'cr_new' => L10n::t('Create New Profile'),
382 if (DBA::isResult($r)) {
383 foreach ($r as $rr) {
384 $profile['menu']['entries'][] = [
385 'photo' => $rr['thumb'],
387 'alt' => L10n::t('Profile Image'),
388 'profile_name' => $rr['profile-name'],
389 'isdefault' => $rr['is-default'],
390 'visibile_to_everybody' => L10n::t('visible to everybody'),
391 'edit_visibility' => L10n::t('Edit visibility'),
396 if (!$is_contact && $profile['uid'] == local_user() && !Feature::isEnabled(local_user(), 'multi_profiles')) {
397 $profile['edit'] = [System::baseUrl() . '/profiles/' . $profile['id'], L10n::t('Edit profile'), '', L10n::t('Edit profile')];
399 'chg_photo' => L10n::t('Change profile photo'),
405 // Fetch the account type
406 $account_type = Contact::getAccountType($profile);
408 if (x($profile, 'address')
409 || x($profile, 'location')
410 || x($profile, 'locality')
411 || x($profile, 'region')
412 || x($profile, 'postal-code')
413 || x($profile, 'country-name')
415 $location = L10n::t('Location:');
418 $gender = x($profile, 'gender') ? L10n::t('Gender:') : false;
419 $marital = x($profile, 'marital') ? L10n::t('Status:') : false;
420 $homepage = x($profile, 'homepage') ? L10n::t('Homepage:') : false;
421 $about = x($profile, 'about') ? L10n::t('About:') : false;
422 $xmpp = x($profile, 'xmpp') ? L10n::t('XMPP:') : false;
424 if ((x($profile, 'hidewall') || $block) && !local_user() && !remote_user()) {
425 $location = $gender = $marital = $homepage = $about = false;
428 $split_name = Diaspora::splitName($profile['name']);
429 $firstname = $split_name['first'];
430 $lastname = $split_name['last'];
432 if (x($profile, 'guid')) {
434 'guid' => $profile['guid'],
435 'podloc' => System::baseUrl(),
436 'searchable' => (($profile['publish'] && $profile['net-publish']) ? 'true' : 'false' ),
437 'nickname' => $profile['nickname'],
438 'fullname' => $profile['name'],
439 'firstname' => $firstname,
440 'lastname' => $lastname,
441 'photo300' => defaults($profile, 'contact_photo', ''),
442 'photo100' => defaults($profile, 'contact_thumb', ''),
443 'photo50' => defaults($profile, 'contact_micro', ''),
453 $contact_block = contact_block();
455 if (is_array($a->profile) && !$a->profile['hide-friends']) {
457 "SELECT `gcontact`.`updated` FROM `contact` INNER JOIN `gcontact` WHERE `gcontact`.`nurl` = `contact`.`nurl` AND `self` AND `uid` = %d LIMIT 1",
458 intval($a->profile['uid'])
460 if (DBA::isResult($r)) {
461 $updated = date('c', strtotime($r[0]['updated']));
465 "SELECT COUNT(*) AS `total` FROM `contact`
467 AND NOT `self` AND NOT `blocked` AND NOT `pending`
468 AND NOT `hidden` AND NOT `archive`
469 AND `network` IN ('%s', '%s', '%s', '')",
470 intval($profile['uid']),
471 DBA::escape(NETWORK_DFRN),
472 DBA::escape(NETWORK_DIASPORA),
473 DBA::escape(NETWORK_OSTATUS)
475 if (DBA::isResult($r)) {
476 $contacts = intval($r[0]['total']);
482 foreach ($profile as $k => $v) {
483 $k = str_replace('-', '_', $k);
487 if (isset($p['about'])) {
488 $p['about'] = BBCode::convert($p['about']);
491 if (isset($p['address'])) {
492 $p['address'] = BBCode::convert($p['address']);
494 $p['address'] = BBCode::convert($p['location']);
497 if (isset($p['photo'])) {
498 $p['photo'] = proxy_url($p['photo'], false, PROXY_SIZE_SMALL);
501 $p['url'] = Contact::magicLink(defaults($p, 'url', $profile_url));
503 $tpl = get_markup_template('profile_vcard.tpl');
504 $o .= replace_macros($tpl, [
507 '$connect' => $connect,
508 '$remoteconnect' => $remoteconnect,
509 '$subscribe_feed' => $subscribe_feed,
510 '$wallmessage' => $wallmessage,
511 '$wallmessage_link' => $wallmessage_link,
512 '$account_type' => $account_type,
513 '$location' => $location,
514 '$gender' => $gender,
515 '$marital' => $marital,
516 '$homepage' => $homepage,
518 '$network' => L10n::t('Network:'),
519 '$contacts' => $contacts,
520 '$updated' => $updated,
521 '$diaspora' => $diaspora,
522 '$contact_block' => $contact_block,
525 $arr = ['profile' => &$profile, 'entry' => &$o];
527 Addon::callHooks('profile_sidebar', $arr);
532 public static function getBirthdays()
537 if (!local_user() || $a->is_mobile || $a->is_tablet) {
542 * $mobile_detect = new Mobile_Detect();
543 * $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
548 $bd_format = L10n::t('g A l F d'); // 8 AM Friday January 18
549 $bd_short = L10n::t('F d');
551 $cachekey = 'get_birthdays:' . local_user();
552 $r = Cache::get($cachekey);
555 "SELECT `event`.*, `event`.`id` AS `eid`, `contact`.* FROM `event`
556 INNER JOIN `contact` ON `contact`.`id` = `event`.`cid`
557 WHERE `event`.`uid` = ? AND `type` = 'birthday' AND `start` < ? AND `finish` > ?
558 ORDER BY `start` ASC ",
560 DateTimeFormat::utc('now + 6 days'),
561 DateTimeFormat::utcNow()
563 if (DBA::isResult($s)) {
564 $r = DBA::toArray($s);
565 Cache::set($cachekey, $r, CACHE_HOUR);
571 if (DBA::isResult($r)) {
572 $now = strtotime('now');
576 foreach ($r as $rr) {
577 if (strlen($rr['name'])) {
580 if ((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now)) {
584 $classtoday = $istoday ? ' birthday-today ' : '';
586 foreach ($r as &$rr) {
587 if (!strlen($rr['name'])) {
593 if (in_array($rr['cid'], $cids)) {
596 $cids[] = $rr['cid'];
598 $today = (((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now)) ? true : false);
600 $rr['link'] = Contact::magicLink($rr['url']);
601 $rr['title'] = $rr['name'];
602 $rr['date'] = day_translate(DateTimeFormat::convert($rr['start'], $a->timezone, 'UTC', $rr['adjust'] ? $bd_format : $bd_short)) . (($today) ? ' ' . L10n::t('[today]') : '');
603 $rr['startime'] = null;
604 $rr['today'] = $today;
608 $tpl = get_markup_template('birthdays_reminder.tpl');
609 return replace_macros($tpl, [
610 '$baseurl' => System::baseUrl(),
611 '$classtoday' => $classtoday,
613 '$event_reminders' => L10n::t('Birthday Reminders'),
614 '$event_title' => L10n::t('Birthdays this week:'),
616 '$lbr' => '{', // raw brackets mess up if/endif macro processing
621 public static function getEventsReminderHTML()
626 if (!local_user() || $a->is_mobile || $a->is_tablet) {
631 * $mobile_detect = new Mobile_Detect();
632 * $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
637 $bd_format = L10n::t('g A l F d'); // 8 AM Friday January 18
644 ON `item`.`uid` = `event`.`uid`
645 AND `item`.`parent-uri` = `event`.`uri`
646 WHERE `event`.`uid` = ?
647 AND `event`.`type` != 'birthday'
648 AND `event`.`start` < ?
649 AND `event`.`start` >= ?
650 AND `item`.`author-id` = ?
651 AND (`item`.`verb` = ? OR `item`.`verb` = ?)
653 AND NOT `item`.`deleted`
654 ORDER BY `event`.`start` ASC",
656 DateTimeFormat::utc('now + 7 days'),
657 DateTimeFormat::utc('now - 1 days'),
665 if (DBA::isResult($s)) {
668 while ($rr = DBA::fetch($s)) {
669 if (strlen($rr['name'])) {
673 $strt = DateTimeFormat::convert($rr['start'], $rr['convert'] ? $a->timezone : 'UTC', 'UTC', 'Y-m-d');
674 if ($strt === DateTimeFormat::timezoneNow($a->timezone, 'Y-m-d')) {
678 $title = strip_tags(html_entity_decode(BBCode::convert($rr['summary']), ENT_QUOTES, 'UTF-8'));
680 if (strlen($title) > 35) {
681 $title = substr($title, 0, 32) . '... ';
684 $description = substr(strip_tags(BBCode::convert($rr['desc'])), 0, 32) . '... ';
686 $description = L10n::t('[No description]');
689 $strt = DateTimeFormat::convert($rr['start'], $rr['convert'] ? $a->timezone : 'UTC');
691 if (substr($strt, 0, 10) < DateTimeFormat::timezoneNow($a->timezone, 'Y-m-d')) {
695 $today = ((substr($strt, 0, 10) === DateTimeFormat::timezoneNow($a->timezone, 'Y-m-d')) ? true : false);
697 $rr['title'] = $title;
698 $rr['description'] = $description;
699 $rr['date'] = day_translate(DateTimeFormat::convert($rr['start'], $rr['adjust'] ? $a->timezone : 'UTC', 'UTC', $bd_format)) . (($today) ? ' ' . L10n::t('[today]') : '');
700 $rr['startime'] = $strt;
701 $rr['today'] = $today;
706 $classtoday = (($istoday) ? 'event-today' : '');
708 $tpl = get_markup_template('events_reminder.tpl');
709 return replace_macros($tpl, [
710 '$baseurl' => System::baseUrl(),
711 '$classtoday' => $classtoday,
712 '$count' => count($r),
713 '$event_reminders' => L10n::t('Event Reminders'),
714 '$event_title' => L10n::t('Upcoming events the next 7 days:'),
719 public static function getAdvanced(App $a)
722 $uid = $a->profile['uid'];
724 $o .= replace_macros(
725 get_markup_template('section_title.tpl'),
726 ['$title' => L10n::t('Profile')]
729 if ($a->profile['name']) {
730 $tpl = get_markup_template('profile_advanced.tpl');
734 $profile['fullname'] = [L10n::t('Full Name:'), $a->profile['name']];
736 if (Feature::isEnabled($uid, 'profile_membersince')) {
737 $profile['membersince'] = [L10n::t('Member since:'), DateTimeFormat::local($a->profile['register_date'])];
740 if ($a->profile['gender']) {
741 $profile['gender'] = [L10n::t('Gender:'), $a->profile['gender']];
744 if (($a->profile['dob']) && ($a->profile['dob'] > '0001-01-01')) {
745 $year_bd_format = L10n::t('j F, Y');
746 $short_bd_format = L10n::t('j F');
748 $val = day_translate(
749 intval($a->profile['dob']) ?
750 DateTimeFormat::utc($a->profile['dob'] . ' 00:00 +00:00', $year_bd_format)
751 : DateTimeFormat::utc('2001-' . substr($a->profile['dob'], 5) . ' 00:00 +00:00', $short_bd_format)
754 $profile['birthday'] = [L10n::t('Birthday:'), $val];
757 if (!empty($a->profile['dob'])
758 && $a->profile['dob'] > '0001-01-01'
759 && $age = Temporal::getAgeByTimezone($a->profile['dob'], $a->profile['timezone'], '')
761 $profile['age'] = [L10n::t('Age:'), $age];
764 if ($a->profile['marital']) {
765 $profile['marital'] = [L10n::t('Status:'), $a->profile['marital']];
768 /// @TODO Maybe use x() here, plus below?
769 if ($a->profile['with']) {
770 $profile['marital']['with'] = $a->profile['with'];
773 if (strlen($a->profile['howlong']) && $a->profile['howlong'] >= NULL_DATE) {
774 $profile['howlong'] = Temporal::getRelativeDate($a->profile['howlong'], L10n::t('for %1$d %2$s'));
777 if ($a->profile['sexual']) {
778 $profile['sexual'] = [L10n::t('Sexual Preference:'), $a->profile['sexual']];
781 if ($a->profile['homepage']) {
782 $profile['homepage'] = [L10n::t('Homepage:'), linkify($a->profile['homepage'])];
785 if ($a->profile['hometown']) {
786 $profile['hometown'] = [L10n::t('Hometown:'), linkify($a->profile['hometown'])];
789 if ($a->profile['pub_keywords']) {
790 $profile['pub_keywords'] = [L10n::t('Tags:'), $a->profile['pub_keywords']];
793 if ($a->profile['politic']) {
794 $profile['politic'] = [L10n::t('Political Views:'), $a->profile['politic']];
797 if ($a->profile['religion']) {
798 $profile['religion'] = [L10n::t('Religion:'), $a->profile['religion']];
801 if ($txt = prepare_text($a->profile['about'])) {
802 $profile['about'] = [L10n::t('About:'), $txt];
805 if ($txt = prepare_text($a->profile['interest'])) {
806 $profile['interest'] = [L10n::t('Hobbies/Interests:'), $txt];
809 if ($txt = prepare_text($a->profile['likes'])) {
810 $profile['likes'] = [L10n::t('Likes:'), $txt];
813 if ($txt = prepare_text($a->profile['dislikes'])) {
814 $profile['dislikes'] = [L10n::t('Dislikes:'), $txt];
817 if ($txt = prepare_text($a->profile['contact'])) {
818 $profile['contact'] = [L10n::t('Contact information and Social Networks:'), $txt];
821 if ($txt = prepare_text($a->profile['music'])) {
822 $profile['music'] = [L10n::t('Musical interests:'), $txt];
825 if ($txt = prepare_text($a->profile['book'])) {
826 $profile['book'] = [L10n::t('Books, literature:'), $txt];
829 if ($txt = prepare_text($a->profile['tv'])) {
830 $profile['tv'] = [L10n::t('Television:'), $txt];
833 if ($txt = prepare_text($a->profile['film'])) {
834 $profile['film'] = [L10n::t('Film/dance/culture/entertainment:'), $txt];
837 if ($txt = prepare_text($a->profile['romance'])) {
838 $profile['romance'] = [L10n::t('Love/Romance:'), $txt];
841 if ($txt = prepare_text($a->profile['work'])) {
842 $profile['work'] = [L10n::t('Work/employment:'), $txt];
845 if ($txt = prepare_text($a->profile['education'])) {
846 $profile['education'] = [L10n::t('School/education:'), $txt];
849 //show subcribed forum if it is enabled in the usersettings
850 if (Feature::isEnabled($uid, 'forumlist_profile')) {
851 $profile['forumlist'] = [L10n::t('Forums:'), ForumManager::profileAdvanced($uid)];
854 if ($a->profile['uid'] == local_user()) {
855 $profile['edit'] = [System::baseUrl() . '/profiles/' . $a->profile['id'], L10n::t('Edit profile'), '', L10n::t('Edit profile')];
858 return replace_macros($tpl, [
859 '$title' => L10n::t('Profile'),
860 '$basic' => L10n::t('Basic'),
861 '$advanced' => L10n::t('Advanced'),
862 '$profile' => $profile
869 public static function getTabs($a, $is_owner = false, $nickname = null)
871 if (is_null($nickname)) {
872 $nickname = $a->user['nickname'];
876 if (x($_GET, 'tab')) {
877 $tab = notags(trim($_GET['tab']));
880 $url = System::baseUrl() . '/profile/' . $nickname;
884 'label' => L10n::t('Status'),
886 'sel' => !$tab && $a->argv[0] == 'profile' ? 'active' : '',
887 'title' => L10n::t('Status Messages and Posts'),
888 'id' => 'status-tab',
892 'label' => L10n::t('Profile'),
893 'url' => $url . '/?tab=profile',
894 'sel' => $tab == 'profile' ? 'active' : '',
895 'title' => L10n::t('Profile Details'),
896 'id' => 'profile-tab',
900 'label' => L10n::t('Photos'),
901 'url' => System::baseUrl() . '/photos/' . $nickname,
902 'sel' => !$tab && $a->argv[0] == 'photos' ? 'active' : '',
903 'title' => L10n::t('Photo Albums'),
908 'label' => L10n::t('Videos'),
909 'url' => System::baseUrl() . '/videos/' . $nickname,
910 'sel' => !$tab && $a->argv[0] == 'videos' ? 'active' : '',
911 'title' => L10n::t('Videos'),
917 // the calendar link for the full featured events calendar
918 if ($is_owner && $a->theme_events_in_profile) {
920 'label' => L10n::t('Events'),
921 'url' => System::baseUrl() . '/events',
922 'sel' => !$tab && $a->argv[0] == 'events' ? 'active' : '',
923 'title' => L10n::t('Events and Calendar'),
924 'id' => 'events-tab',
927 // if the user is not the owner of the calendar we only show a calendar
928 // with the public events of the calendar owner
929 } elseif (!$is_owner) {
931 'label' => L10n::t('Events'),
932 'url' => System::baseUrl() . '/cal/' . $nickname,
933 'sel' => !$tab && $a->argv[0] == 'cal' ? 'active' : '',
934 'title' => L10n::t('Events and Calendar'),
935 'id' => 'events-tab',
942 'label' => L10n::t('Personal Notes'),
943 'url' => System::baseUrl() . '/notes',
944 'sel' => !$tab && $a->argv[0] == 'notes' ? 'active' : '',
945 'title' => L10n::t('Only You Can See This'),
951 if (!empty($_SESSION['new_member']) && $is_owner) {
953 'label' => L10n::t('Tips for New Members'),
954 'url' => System::baseUrl() . '/newmember',
956 'title' => L10n::t('Tips for New Members'),
957 'id' => 'newmember-tab',
961 if (!$is_owner && empty($a->profile['hide-friends'])) {
963 'label' => L10n::t('Contacts'),
964 'url' => System::baseUrl() . '/viewcontacts/' . $nickname,
965 'sel' => !$tab && $a->argv[0] == 'viewcontacts' ? 'active' : '',
966 'title' => L10n::t('Contacts'),
967 'id' => 'viewcontacts-tab',
972 $arr = ['is_owner' => $is_owner, 'nickname' => $nickname, 'tab' => $tab, 'tabs' => $tabs];
973 Addon::callHooks('profile_tabs', $arr);
975 $tpl = get_markup_template('common_tabs.tpl');
977 return replace_macros($tpl, ['$tabs' => $arr['tabs']]);
981 * Retrieves the my_url session variable
985 public static function getMyURL()
987 if (x($_SESSION, 'my_url')) {
988 return $_SESSION['my_url'];
994 * Process the 'zrl' parameter and initiate the remote authentication.
996 * This method checks if the visitor has a public contact entry and
997 * redirects the visitor to his/her instance to start the magic auth (Authentication)
1000 * Ported from Hubzilla: https://framagit.org/hubzilla/core/blob/master/include/channel.php
1002 * @param App $a Application instance.
1004 public static function zrlInit(App $a)
1006 $my_url = self::getMyURL();
1007 $my_url = Network::isUrlValid($my_url);
1010 if (!local_user()) {
1011 // Is it a DDoS attempt?
1012 // The check fetches the cached value from gprobe to reduce the load for this system
1013 $urlparts = parse_url($my_url);
1015 $result = Cache::get('gprobe:' . $urlparts['host']);
1016 if ((!is_null($result)) && (in_array($result['network'], [NETWORK_FEED, NETWORK_PHANTOM]))) {
1017 logger('DDoS attempt detected for ' . $urlparts['host'] . ' by ' . $_SERVER['REMOTE_ADDR'] . '. server data: ' . print_r($_SERVER, true), LOGGER_DEBUG);
1021 Worker::add(PRIORITY_LOW, 'GProbe', $my_url);
1022 $arr = ['zrl' => $my_url, 'url' => $a->cmd];
1023 Addon::callHooks('zrl_init', $arr);
1025 // Try to find the public contact entry of the visitor.
1026 $cid = Contact::getIdForURL($my_url);
1028 logger('No contact record found for ' . $my_url, LOGGER_DEBUG);
1032 $contact = DBA::selectFirst('contact',['id', 'url'], ['id' => $cid]);
1034 if (DBA::isResult($contact) && remote_user() && remote_user() == $contact['id']) {
1035 // The visitor is already authenticated.
1039 logger('Not authenticated. Invoking reverse magic-auth for ' . $my_url, LOGGER_DEBUG);
1041 // Try to avoid recursion - but send them home to do a proper magic auth.
1042 $query = str_replace(array('?zrl=', '&zid='), array('?rzrl=', '&rzrl='), $a->query_string);
1043 // The other instance needs to know where to redirect.
1044 $dest = urlencode(System::baseUrl() . '/' . $query);
1046 // We need to extract the basebath from the profile url
1047 // to redirect the visitors '/magic' module.
1048 // Note: We should have the basepath of a contact also in the contact table.
1049 $urlarr = explode('/profile/', $contact['url']);
1050 $basepath = $urlarr[0];
1052 if ($basepath != System::baseUrl() && !strstr($dest, '/magic') && !strstr($dest, '/rmagic')) {
1053 goaway($basepath . '/magic' . '?f=&owa=1&dest=' . $dest);
1060 * OpenWebAuth authentication.
1062 * Ported from Hubzilla: https://framagit.org/hubzilla/core/blob/master/include/zid.php
1064 * @param string $token
1066 public static function openWebAuthInit($token)
1070 // Clean old OpenWebAuthToken entries.
1071 OpenWebAuthToken::purge('owt', '3 MINUTE');
1073 // Check if the token we got is the same one
1074 // we have stored in the database.
1075 $visitor_handle = OpenWebAuthToken::getMeta('owt', 0, $token);
1077 if($visitor_handle === false) {
1081 // Try to find the public contact entry of the visitor.
1082 $cid = Contact::getIdForURL($visitor_handle);
1084 logger('owt: unable to finger ' . $visitor_handle, LOGGER_DEBUG);
1088 $visitor = DBA::selectFirst('contact', [], ['id' => $cid]);
1090 // Authenticate the visitor.
1091 $_SESSION['authenticated'] = 1;
1092 $_SESSION['visitor_id'] = $visitor['id'];
1093 $_SESSION['visitor_handle'] = $visitor['addr'];
1094 $_SESSION['visitor_home'] = $visitor['url'];
1095 $_SESSION['my_url'] = $visitor['url'];
1098 'visitor' => $visitor,
1099 'url' => $a->query_string
1102 * @hooks magic_auth_success
1103 * Called when a magic-auth was successful.
1104 * * \e array \b visitor
1105 * * \e string \b url
1107 Addon::callHooks('magic_auth_success', $arr);
1109 $a->contact = $arr['visitor'];
1111 info(L10n::t('OpenWebAuth: %1$s welcomes %2$s', $a->get_hostname(), $visitor['name']));
1113 logger('OpenWebAuth: auth success from ' . $visitor['addr'], LOGGER_DEBUG);
1116 public static function zrl($s, $force = false)
1121 if ((!strpos($s, '/profile/')) && (!$force)) {
1124 if ($force && substr($s, -1, 1) !== '/') {
1127 $achar = strpos($s, '?') ? '&' : '?';
1128 $mine = self::getMyURL();
1129 if ($mine && !link_compare($mine, $s)) {
1130 return $s . $achar . 'zrl=' . urlencode($mine);
1136 * Get the user ID of the page owner.
1138 * Used from within PCSS themes to set theme parameters. If there's a
1139 * puid request variable, that is the "page owner" and normally their theme
1140 * settings take precedence; unless a local user sets the "always_my_theme"
1141 * system pconfig, which means they don't want to see anybody else's theme
1142 * settings except their own while on this site.
1144 * @brief Get the user ID of the page owner
1145 * @return int user ID
1147 * @note Returns local_user instead of user ID if "always_my_theme"
1150 public static function getThemeUid()
1152 $uid = ((!empty($_REQUEST['puid'])) ? intval($_REQUEST['puid']) : 0);
1153 if ((local_user()) && ((PConfig::get(local_user(), 'system', 'always_my_theme')) || (!$uid))) {
1154 return local_user();
1161 * Stip zrl parameter from a string.
1163 * @param string $s The input string.
1164 * @return string The zrl.
1166 public static function stripZrls($s)
1168 return preg_replace('/[\?&]zrl=(.*?)([\?&]|$)/is', '', $s);
1172 * Stip query parameter from a string.
1174 * @param string $s The input string.
1175 * @return string The query parameter.
1177 public static function stripQueryParam($s, $param)
1179 return preg_replace('/[\?&]' . $param . '=(.*?)(&|$)/ism', '$2', $s);