3 * @file include/identity.php
6 require_once('include/ForumManager.php');
7 require_once('include/bbcode.php');
8 require_once("mod/proxy.php");
12 * @brief Loads a profile into the page sidebar.
14 * The function requires a writeable copy of the main App structure, and the nickname
15 * of a registered local account.
17 * If the viewer is an authenticated remote viewer, the profile displayed is the
18 * one that has been configured for his/her viewing in the Contact manager.
19 * Passing a non-zero profile ID can also allow a preview of a selected profile
22 * Profile information is placed in the App structure for later retrieval.
23 * Honours the owner's chosen theme for display.
25 * @attention Should only be run in the _init() functions of a module. That ensures that
26 * the theme is chosen before the _init() function of a theme is run, which will usually
27 * load a lot of theme-specific content
30 * @param string $nickname
32 * @param array $profiledata
34 function profile_load(&$a, $nickname, $profile = 0, $profiledata = array()) {
36 $user = q("SELECT `uid` FROM `user` WHERE `nickname` = '%s' LIMIT 1",
40 if(!$user && count($user) && !count($profiledata)) {
41 logger('profile error: ' . $a->query_string, LOGGER_DEBUG);
42 notice( t('Requested account is not available.') . EOL );
47 $pdata = get_profiledata_by_nick($nickname, $user[0]['uid'], $profile);
49 if(($pdata === false) || (!count($pdata)) && !count($profiledata)) {
50 logger('profile error: ' . $a->query_string, LOGGER_DEBUG);
51 notice( t('Requested profile is not available.') . EOL );
56 // fetch user tags if this isn't the default profile
58 if(!$pdata['is-default']) {
59 $x = q("SELECT `pub_keywords` FROM `profile` WHERE `uid` = %d AND `is-default` = 1 LIMIT 1",
60 intval($pdata['profile_uid'])
63 $pdata['pub_keywords'] = $x[0]['pub_keywords'];
67 $a->profile_uid = $pdata['profile_uid'];
69 $a->profile['mobile-theme'] = get_pconfig($a->profile['profile_uid'], 'system', 'mobile_theme');
70 $a->profile['network'] = NETWORK_DFRN;
72 $a->page['title'] = $a->profile['name'] . " @ " . $a->config['sitename'];
74 if (!$profiledata && !get_pconfig(local_user(),'system','always_my_theme'))
75 $_SESSION['theme'] = $a->profile['theme'];
77 $_SESSION['mobile-theme'] = $a->profile['mobile-theme'];
80 * load/reload current theme info
83 $a->set_template_engine(); // reset the template engine to the default in case the user's theme doesn't specify one
85 $theme_info_file = "view/theme/".current_theme()."/theme.php";
86 if (file_exists($theme_info_file)){
87 require_once($theme_info_file);
90 if(! (x($a->page,'aside')))
91 $a->page['aside'] = '';
93 if(local_user() && local_user() == $a->profile['uid'] && $profiledata) {
94 $a->page['aside'] .= replace_macros(get_markup_template('profile_edlink.tpl'),array(
95 '$editprofile' => t('Edit profile'),
96 '$profid' => $a->profile['id']
100 $block = (((get_config('system','block_public')) && (! local_user()) && (! remote_user())) ? true : false);
104 * By now, the contact block isn't shown, when a different profile is given
105 * But: When this profile was on the same server, then we could display the contacts
108 $a->page['aside'] .= profile_sidebar($profiledata, true);
110 $a->page['aside'] .= profile_sidebar($a->profile, $block);
113 $a->page['aside'] .= contact_block();*/
120 * @brief Get all profil data of a local user
122 * If the viewer is an authenticated remote viewer, the profile displayed is the
123 * one that has been configured for his/her viewing in the Contact manager.
124 * Passing a non-zero profile ID can also allow a preview of a selected profile
127 * @param string $nickname
129 * @param int $profile
132 * Includes all available profile data
134 function get_profiledata_by_nick($nickname, $uid = 0, $profile = 0) {
135 if(remote_user() && count($_SESSION['remote'])) {
136 foreach($_SESSION['remote'] as $visitor) {
137 if($visitor['uid'] == $uid) {
138 $r = q("SELECT `profile-id` FROM `contact` WHERE `id` = %d LIMIT 1",
139 intval($visitor['cid'])
142 $profile = $r[0]['profile-id'];
151 $profile_int = intval($profile);
152 $r = q("SELECT `contact`.`id` AS `contact_id`, `profile`.`uid` AS `profile_uid`, `profile`.*,
153 `contact`.`avatar-date` AS picdate, `contact`.`addr`, `user`.*
155 INNER JOIN `contact` on `contact`.`uid` = `profile`.`uid` AND `contact`.`self`
156 INNER JOIN `user` ON `profile`.`uid` = `user`.`uid`
157 WHERE `user`.`nickname` = '%s' AND `profile`.`id` = %d LIMIT 1",
162 if((!$r) && (!count($r))) {
163 $r = q("SELECT `contact`.`id` AS `contact_id`, `profile`.`uid` AS `profile_uid`, `profile`.*,
164 `contact`.`avatar-date` AS picdate, `contact`.`addr`, `user`.*
166 INNER JOIN `contact` ON `contact`.`uid` = `profile`.`uid` AND `contact`.`self`
167 INNER JOIN `user` ON `profile`.`uid` = `user`.`uid`
168 WHERE `user`.`nickname` = '%s' AND `profile`.`is-default` LIMIT 1",
179 * @brief Formats a profile for display in the sidebar.
181 * It is very difficult to templatise the HTML completely
182 * because of all the conditional logic.
184 * @param array $profile
187 * @return HTML string stuitable for sidebar inclusion
189 * @note Returns empty string if passed $profile is wrong type or not populated
191 * @hooks 'profile_sidebar_enter'
192 * array $profile - profile data
193 * @hooks 'profile_sidebar'
196 function profile_sidebar($profile, $block = 0) {
204 if((! is_array($profile)) && (! count($profile)))
207 $profile['picdate'] = urlencode($profile['picdate']);
209 if (($profile['network'] != "") AND ($profile['network'] != NETWORK_DFRN)) {
210 $profile['network_name'] = format_network_name($profile['network'],$profile['url']);
212 $profile['network_name'] = "";
214 call_hooks('profile_sidebar_enter', $profile);
217 // don't show connect link to yourself
218 $connect = (($profile['uid'] != local_user()) ? t('Connect') : False);
220 // don't show connect link to authenticated visitors either
221 if(remote_user() && count($_SESSION['remote'])) {
222 foreach($_SESSION['remote'] as $visitor) {
223 if($visitor['uid'] == $profile['uid']) {
230 // Is the local user already connected to that user?
231 if ($connect AND local_user()) {
232 if (isset($profile["url"]))
233 $profile_url = normalise_link($profile["url"]);
235 $profile_url = normalise_link($a->get_baseurl()."/profile/".$profile["nickname"]);
237 $r = q("SELECT * FROM `contact` WHERE NOT `pending` AND `uid` = %d AND `nurl` = '%s'",
238 local_user(), $profile_url);
243 if ($connect AND ($profile['network'] != NETWORK_DFRN) AND !isset($profile['remoteconnect']))
246 $remoteconnect = NULL;
247 if (isset($profile['remoteconnect']))
248 $remoteconnect = $profile['remoteconnect'];
250 if ($connect AND ($profile['network'] == NETWORK_DFRN) AND !isset($remoteconnect))
251 $subscribe_feed = t("Atom feed");
253 $subscribe_feed = false;
255 if (remote_user() OR (get_my_url() && $profile['unkmail'] && ($profile['uid'] != local_user()))) {
256 $wallmessage = t('Message');
257 $wallmessage_link = "wallmessage/".$profile["nickname"];
260 $r = q("SELECT `url` FROM `contact` WHERE `uid` = %d AND `id` = '%s' AND `rel` = %d",
261 intval($profile['uid']),
262 intval(remote_user()),
263 intval(CONTACT_IS_FRIEND));
265 $r = q("SELECT `url` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' AND `rel` = %d",
266 intval($profile['uid']),
267 dbesc(normalise_link(get_my_url())),
268 intval(CONTACT_IS_FRIEND));
271 $remote_url = $r[0]["url"];
272 $message_path = preg_replace("=(.*)/profile/(.*)=ism", "$1/message/new/", $remote_url);
273 $wallmessage_link = $message_path.base64_encode($profile["addr"]);
276 $wallmessage = false;
277 $wallmessage_link = false;
280 // show edit profile to yourself
281 if ($profile['uid'] == local_user() && feature_enabled(local_user(),'multi_profiles')) {
282 $profile['edit'] = array($a->get_baseurl(). '/profiles', t('Profiles'),"", t('Manage/edit profiles'));
283 $r = q("SELECT * FROM `profile` WHERE `uid` = %d",
286 $profile['menu'] = array(
287 'chg_photo' => t('Change profile photo'),
288 'cr_new' => t('Create New Profile'),
289 'entries' => array(),
295 $profile['menu']['entries'][] = array(
296 'photo' => $rr['thumb'],
298 'alt' => t('Profile Image'),
299 'profile_name' => $rr['profile-name'],
300 'isdefault' => $rr['is-default'],
301 'visibile_to_everybody' => t('visible to everybody'),
302 'edit_visibility' => t('Edit visibility'),
310 if ($profile['uid'] == local_user() && !feature_enabled(local_user(),'multi_profiles')) {
311 $profile['edit'] = array($a->get_baseurl(). '/profiles/'.$profile['id'], t('Edit profile'),"", t('Edit profile'));
312 $profile['menu'] = array(
313 'chg_photo' => t('Change profile photo'),
315 'entries' => array(),
319 // Fetch the account type
320 $account_type = account_type($profile);
322 if((x($profile,'address') == 1)
323 || (x($profile,'location') == 1)
324 || (x($profile,'locality') == 1)
325 || (x($profile,'region') == 1)
326 || (x($profile,'postal-code') == 1)
327 || (x($profile,'country-name') == 1))
328 $location = t('Location:');
330 $gender = ((x($profile,'gender') == 1) ? t('Gender:') : False);
333 $marital = ((x($profile,'marital') == 1) ? t('Status:') : False);
335 $homepage = ((x($profile,'homepage') == 1) ? t('Homepage:') : False);
337 $about = ((x($profile,'about') == 1) ? t('About:') : False);
339 $xmpp = ((x($profile,'xmpp') == 1) ? t('XMPP:') : False);
341 if(($profile['hidewall'] || $block) && (! local_user()) && (! remote_user())) {
342 $location = $pdesc = $gender = $marital = $homepage = $about = False;
345 $firstname = ((strpos($profile['name'],' '))
346 ? trim(substr($profile['name'],0,strpos($profile['name'],' '))) : $profile['name']);
347 $lastname = (($firstname === $profile['name']) ? '' : trim(substr($profile['name'],strlen($firstname))));
349 if ($profile['guid'] != "")
351 'guid' => $profile['guid'],
352 'podloc' => $a->get_baseurl(),
353 'searchable' => (($profile['publish'] && $profile['net-publish']) ? 'true' : 'false' ),
354 'nickname' => $profile['nickname'],
355 'fullname' => $profile['name'],
356 'firstname' => $firstname,
357 'lastname' => $lastname,
358 'photo300' => $a->get_baseurl() . '/photo/custom/300/' . $profile['uid'] . '.jpg',
359 'photo100' => $a->get_baseurl() . '/photo/custom/100/' . $profile['uid'] . '.jpg',
360 'photo50' => $a->get_baseurl() . '/photo/custom/50/' . $profile['uid'] . '.jpg',
366 $contact_block = contact_block();
368 if(is_array($a->profile) AND !$a->profile['hide-friends']) {
369 $r = q("SELECT `gcontact`.`updated` FROM `contact` INNER JOIN `gcontact` WHERE `gcontact`.`nurl` = `contact`.`nurl` AND `self` AND `uid` = %d LIMIT 1",
370 intval($a->profile['uid']));
372 $updated = date("c", strtotime($r[0]['updated']));
374 $r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE `uid` = %d AND NOT `self` AND NOT `blocked` AND NOT `hidden` AND NOT `archive`
375 AND `network` IN ('%s', '%s', '%s', '')",
376 intval($profile['uid']),
378 dbesc(NETWORK_DIASPORA),
379 dbesc(NETWORK_OSTATUS)
382 $contacts = intval($r[0]['total']);
387 foreach($profile as $k => $v) {
388 $k = str_replace('-','_',$k);
392 if (isset($p["about"]))
393 $p["about"] = bbcode($p["about"]);
395 if (isset($p["address"]))
396 $p["address"] = bbcode($p["address"]);
398 $p["address"] = bbcode($p["location"]);
400 if (isset($p["photo"]))
401 $p["photo"] = proxy_url($p["photo"], false, PROXY_SIZE_SMALL);
403 if($a->theme['template_engine'] === 'internal')
404 $location = template_escape($location);
406 $tpl = get_markup_template('profile_vcard.tpl');
407 $o .= replace_macros($tpl, array(
410 '$connect' => $connect,
411 '$remoteconnect' => $remoteconnect,
412 '$subscribe_feed' => $subscribe_feed,
413 '$wallmessage' => $wallmessage,
414 '$wallmessage_link' => $wallmessage_link,
415 '$account_type' => $account_type,
416 '$location' => $location,
417 '$gender' => $gender,
418 // '$pdesc' => $pdesc,
419 '$marital' => $marital,
420 '$homepage' => $homepage,
422 '$network' => t('Network:'),
423 '$contacts' => $contacts,
424 '$updated' => $updated,
425 '$diaspora' => $diaspora,
426 '$contact_block' => $contact_block,
429 $arr = array('profile' => &$profile, 'entry' => &$o);
431 call_hooks('profile_sidebar', $arr);
437 function get_birthdays() {
442 if(! local_user() || $a->is_mobile || $a->is_tablet)
445 // $mobile_detect = new Mobile_Detect();
446 // $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
451 $bd_format = t('g A l F d') ; // 8 AM Friday January 18
452 $bd_short = t('F d');
454 $r = q("SELECT `event`.*, `event`.`id` AS `eid`, `contact`.* FROM `event`
455 INNER JOIN `contact` ON `contact`.`id` = `event`.`cid`
456 WHERE `event`.`uid` = %d AND `type` = 'birthday' AND `start` < '%s' AND `finish` > '%s'
457 ORDER BY `start` ASC ",
458 intval(local_user()),
459 dbesc(datetime_convert('UTC','UTC','now + 6 days')),
460 dbesc(datetime_convert('UTC','UTC','now'))
463 if($r && count($r)) {
465 $now = strtotime('now');
470 if(strlen($rr['name']))
472 if((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now))
475 $classtoday = $istoday ? ' birthday-today ' : '';
477 foreach($r as &$rr) {
478 if(! strlen($rr['name']))
483 if(in_array($rr['cid'],$cids))
485 $cids[] = $rr['cid'];
487 $today = (((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now)) ? true : false);
490 if($rr['network'] === NETWORK_DFRN) {
491 $sparkle = " sparkle";
492 $url = $a->get_baseurl() . '/redir/' . $rr['cid'];
496 $rr['title'] = $rr['name'];
497 $rr['date'] = day_translate(datetime_convert('UTC', $a->timezone, $rr['start'], $rr['adjust'] ? $bd_format : $bd_short)) . (($today) ? ' ' . t('[today]') : '');
498 $rr['startime'] = Null;
499 $rr['today'] = $today;
504 $tpl = get_markup_template("birthdays_reminder.tpl");
505 return replace_macros($tpl, array(
506 '$baseurl' => $a->get_baseurl(),
507 '$classtoday' => $classtoday,
509 '$event_reminders' => t('Birthday Reminders'),
510 '$event_title' => t('Birthdays this week:'),
512 '$lbr' => '{', // raw brackets mess up if/endif macro processing
519 function get_events() {
521 require_once('include/bbcode.php');
525 if(! local_user() || $a->is_mobile || $a->is_tablet)
529 // $mobile_detect = new Mobile_Detect();
530 // $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
535 $bd_format = t('g A l F d') ; // 8 AM Friday January 18
536 $bd_short = t('F d');
538 $r = q("SELECT `event`.* FROM `event`
539 WHERE `event`.`uid` = %d AND `type` != 'birthday' AND `start` < '%s' AND `start` >= '%s'
540 ORDER BY `start` ASC ",
541 intval(local_user()),
542 dbesc(datetime_convert('UTC','UTC','now + 7 days')),
543 dbesc(datetime_convert('UTC','UTC','now - 1 days'))
546 if($r && count($r)) {
547 $now = strtotime('now');
550 if(strlen($rr['name']))
553 $strt = datetime_convert('UTC',$rr['convert'] ? $a->timezone : 'UTC',$rr['start'],'Y-m-d');
554 if($strt === datetime_convert('UTC',$a->timezone,'now','Y-m-d'))
557 $classtoday = (($istoday) ? 'event-today' : '');
561 foreach($r as &$rr) {
562 $title = strip_tags(html_entity_decode(bbcode($rr['summary']),ENT_QUOTES,'UTF-8'));
564 if(strlen($title) > 35)
565 $title = substr($title,0,32) . '... ';
567 $description = substr(strip_tags(bbcode($rr['desc'])),0,32) . '... ';
569 $description = t('[No description]');
571 $strt = datetime_convert('UTC',$rr['convert'] ? $a->timezone : 'UTC',$rr['start']);
573 if(substr($strt,0,10) < datetime_convert('UTC',$a->timezone,'now','Y-m-d')) {
578 $today = ((substr($strt,0,10) === datetime_convert('UTC',$a->timezone,'now','Y-m-d')) ? true : false);
580 $rr['title'] = $title;
581 $rr['description'] = $desciption;
582 $rr['date'] = day_translate(datetime_convert('UTC', $rr['adjust'] ? $a->timezone : 'UTC', $rr['start'], $bd_format)) . (($today) ? ' ' . t('[today]') : '');
583 $rr['startime'] = $strt;
584 $rr['today'] = $today;
588 $tpl = get_markup_template("events_reminder.tpl");
589 return replace_macros($tpl, array(
590 '$baseurl' => $a->get_baseurl(),
591 '$classtoday' => $classtoday,
592 '$count' => count($r) - $skip,
593 '$event_reminders' => t('Event Reminders'),
594 '$event_title' => t('Events this week:'),
599 function advanced_profile(&$a) {
602 $uid = $a->profile['uid'];
604 $o .= replace_macros(get_markup_template('section_title.tpl'),array(
605 '$title' => t('Profile')
608 if($a->profile['name']) {
610 $tpl = get_markup_template('profile_advanced.tpl');
614 $profile['fullname'] = array( t('Full Name:'), $a->profile['name'] ) ;
616 if($a->profile['gender']) $profile['gender'] = array( t('Gender:'), $a->profile['gender'] );
619 if(($a->profile['dob']) && ($a->profile['dob'] != '0000-00-00')) {
621 $year_bd_format = t('j F, Y');
622 $short_bd_format = t('j F');
625 $val = ((intval($a->profile['dob']))
626 ? day_translate(datetime_convert('UTC','UTC',$a->profile['dob'] . ' 00:00 +00:00',$year_bd_format))
627 : day_translate(datetime_convert('UTC','UTC','2001-' . substr($a->profile['dob'],5) . ' 00:00 +00:00',$short_bd_format)));
629 $profile['birthday'] = array( t('Birthday:'), $val);
633 if($age = age($a->profile['dob'],$a->profile['timezone'],'')) $profile['age'] = array( t('Age:'), $age );
636 if($a->profile['marital']) $profile['marital'] = array( t('Status:'), $a->profile['marital']);
639 if($a->profile['with']) $profile['marital']['with'] = $a->profile['with'];
641 if(strlen($a->profile['howlong']) && $a->profile['howlong'] !== '0000-00-00 00:00:00') {
642 $profile['howlong'] = relative_date($a->profile['howlong'], t('for %1$d %2$s'));
645 if($a->profile['sexual']) $profile['sexual'] = array( t('Sexual Preference:'), $a->profile['sexual'] );
647 if($a->profile['homepage']) $profile['homepage'] = array( t('Homepage:'), linkify($a->profile['homepage']) );
649 if($a->profile['hometown']) $profile['hometown'] = array( t('Hometown:'), linkify($a->profile['hometown']) );
651 if($a->profile['pub_keywords']) $profile['pub_keywords'] = array( t('Tags:'), $a->profile['pub_keywords']);
653 if($a->profile['politic']) $profile['politic'] = array( t('Political Views:'), $a->profile['politic']);
655 if($a->profile['religion']) $profile['religion'] = array( t('Religion:'), $a->profile['religion']);
657 if($txt = prepare_text($a->profile['about'])) $profile['about'] = array( t('About:'), $txt );
659 if($txt = prepare_text($a->profile['interest'])) $profile['interest'] = array( t('Hobbies/Interests:'), $txt);
661 if($txt = prepare_text($a->profile['likes'])) $profile['likes'] = array( t('Likes:'), $txt);
663 if($txt = prepare_text($a->profile['dislikes'])) $profile['dislikes'] = array( t('Dislikes:'), $txt);
666 if($txt = prepare_text($a->profile['contact'])) $profile['contact'] = array( t('Contact information and Social Networks:'), $txt);
668 if($txt = prepare_text($a->profile['music'])) $profile['music'] = array( t('Musical interests:'), $txt);
670 if($txt = prepare_text($a->profile['book'])) $profile['book'] = array( t('Books, literature:'), $txt);
672 if($txt = prepare_text($a->profile['tv'])) $profile['tv'] = array( t('Television:'), $txt);
674 if($txt = prepare_text($a->profile['film'])) $profile['film'] = array( t('Film/dance/culture/entertainment:'), $txt);
676 if($txt = prepare_text($a->profile['romance'])) $profile['romance'] = array( t('Love/Romance:'), $txt);
678 if($txt = prepare_text($a->profile['work'])) $profile['work'] = array( t('Work/employment:'), $txt);
680 if($txt = prepare_text($a->profile['education'])) $profile['education'] = array( t('School/education:'), $txt );
682 //show subcribed forum if it is enabled in the usersettings
683 if (feature_enabled($uid,'forumlist_profile')) {
684 $profile['forumlist'] = array( t('Forums:'), ForumManager::profile_advanced($uid));
687 if ($a->profile['uid'] == local_user())
688 $profile['edit'] = array($a->get_baseurl(). '/profiles/'.$a->profile['id'], t('Edit profile'),"", t('Edit profile'));
690 return replace_macros($tpl, array(
691 '$title' => t('Profile'),
692 '$basic' => t('Basic'),
693 '$advanced' => t('Advanced'),
694 '$profile' => $profile
701 function profile_tabs($a, $is_owner=False, $nickname=Null){
702 //echo "<pre>"; var_dump($a->user); killme();
704 if (is_null($nickname))
705 $nickname = $a->user['nickname'];
708 $tab = notags(trim($_GET['tab']));
710 $url = $a->get_baseurl() . '/profile/' . $nickname;
714 'label'=>t('Status'),
716 'sel' => ((!isset($tab)&&$a->argv[0]=='profile')?'active':''),
717 'title' => t('Status Messages and Posts'),
718 'id' => 'status-tab',
722 'label' => t('Profile'),
723 'url' => $url.'/?tab=profile',
724 'sel' => ((isset($tab) && $tab=='profile')?'active':''),
725 'title' => t('Profile Details'),
726 'id' => 'profile-tab',
730 'label' => t('Photos'),
731 'url' => $a->get_baseurl() . '/photos/' . $nickname,
732 'sel' => ((!isset($tab)&&$a->argv[0]=='photos')?'active':''),
733 'title' => t('Photo Albums'),
738 'label' => t('Videos'),
739 'url' => $a->get_baseurl() . '/videos/' . $nickname,
740 'sel' => ((!isset($tab)&&$a->argv[0]=='videos')?'active':''),
741 'title' => t('Videos'),
747 // the calendar link for the full featured events calendar
748 if ($is_owner && $a->theme_events_in_profile) {
750 'label' => t('Events'),
751 'url' => $a->get_baseurl() . '/events',
752 'sel' =>((!isset($tab)&&$a->argv[0]=='events')?'active':''),
753 'title' => t('Events and Calendar'),
754 'id' => 'events-tab',
757 // if the user is not the owner of the calendar we only show a calendar
758 // with the public events of the calendar owner
759 } elseif (! $is_owner) {
761 'label' => t('Events'),
762 'url' => $a->get_baseurl() . '/cal/' . $nickname,
763 'sel' =>((!isset($tab)&&$a->argv[0]=='cal')?'active':''),
764 'title' => t('Events and Calendar'),
765 'id' => 'events-tab',
772 'label' => t('Personal Notes'),
773 'url' => $a->get_baseurl() . '/notes',
774 'sel' =>((!isset($tab)&&$a->argv[0]=='notes')?'active':''),
775 'title' => t('Only You Can See This'),
781 if ((! $is_owner) && ((count($a->profile)) || (! $a->profile['hide-friends']))) {
783 'label' => t('Contacts'),
784 'url' => $a->get_baseurl() . '/viewcontacts/' . $nickname,
785 'sel' => ((!isset($tab)&&$a->argv[0]=='viewcontacts')?'active':''),
786 'title' => t('Contacts'),
787 'id' => 'viewcontacts-tab',
792 $arr = array('is_owner' => $is_owner, 'nickname' => $nickname, 'tab' => (($tab) ? $tab : false), 'tabs' => $tabs);
793 call_hooks('profile_tabs', $arr);
795 $tpl = get_markup_template('common_tabs.tpl');
797 return replace_macros($tpl,array('$tabs' => $arr['tabs']));
800 function get_my_url() {
801 if(x($_SESSION,'my_url'))
802 return $_SESSION['my_url'];
806 function zrl_init(&$a) {
807 $tmp_str = get_my_url();
808 if(validate_url($tmp_str)) {
810 // Is it a DDoS attempt?
811 // The check fetches the cached value from gprobe to reduce the load for this system
812 $urlparts = parse_url($tmp_str);
814 $result = Cache::get("gprobe:".$urlparts["host"]);
815 if (!is_null($result)) {
816 $result = unserialize($result);
817 if (in_array($result["network"], array(NETWORK_FEED, NETWORK_PHANTOM))) {
818 logger("DDoS attempt detected for ".$urlparts["host"]." by ".$_SERVER["REMOTE_ADDR"].". server data: ".print_r($_SERVER, true), LOGGER_DEBUG);
823 proc_run(PRIORITY_LOW, 'include/gprobe.php',bin2hex($tmp_str));
824 $arr = array('zrl' => $tmp_str, 'url' => $a->cmd);
825 call_hooks('zrl_init',$arr);
829 function zrl($s,$force = false) {
832 if((! strpos($s,'/profile/')) && (! $force))
834 if($force && substr($s,-1,1) !== '/')
836 $achar = strpos($s,'?') ? '&' : '?';
837 $mine = get_my_url();
838 if($mine and ! link_compare($mine,$s))
839 return $s . $achar . 'zrl=' . urlencode($mine);
844 * @brief Get the user ID of the page owner
846 * Used from within PCSS themes to set theme parameters. If there's a
847 * puid request variable, that is the "page owner" and normally their theme
848 * settings take precedence; unless a local user sets the "always_my_theme"
849 * system pconfig, which means they don't want to see anybody else's theme
850 * settings except their own while on this site.
852 * @return int user ID
854 * @note Returns local_user instead of user ID if "always_my_theme"
857 function get_theme_uid() {
858 $uid = (($_REQUEST['puid']) ? intval($_REQUEST['puid']) : 0);
860 if((get_pconfig(local_user(),'system','always_my_theme')) || (! $uid))