]> git.mxchange.org Git - friendica.git/blob - include/identity.php
b3dbea8fc6ab860974fdf06f58e13919d04ac31a
[friendica.git] / include / identity.php
1 <?php
2 /**
3  * @file include/identity.php
4  */
5
6 require_once('include/ForumManager.php');
7 require_once('include/bbcode.php');
8 require_once("mod/proxy.php");
9
10 /**
11  *
12  * @brief Loads a profile into the page sidebar.
13  *
14  * The function requires a writeable copy of the main App structure, and the nickname
15  * of a registered local account.
16  *
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
20  * by the owner.
21  *
22  * Profile information is placed in the App structure for later retrieval.
23  * Honours the owner's chosen theme for display.
24  *
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
28  *
29  * @param App $a
30  * @param string $nickname
31  * @param int $profile
32  * @param array $profiledata
33  */
34 function profile_load(&$a, $nickname, $profile = 0, $profiledata = array()) {
35
36         $user = q("SELECT `uid` FROM `user` WHERE `nickname` = '%s' LIMIT 1",
37                 dbesc($nickname)
38         );
39
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 );
43                 $a->error = 404;
44                 return;
45         }
46
47         $pdata = get_profiledata_by_nick($nickname, $user[0]['uid'], $profile);
48
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 );
52                 $a->error = 404;
53                 return;
54         }
55
56         // fetch user tags if this isn't the default profile
57
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'])
61                 );
62                 if($x && count($x))
63                         $pdata['pub_keywords'] = $x[0]['pub_keywords'];
64         }
65
66         $a->profile = $pdata;
67         $a->profile_uid = $pdata['profile_uid'];
68
69         $a->profile['mobile-theme'] = get_pconfig($a->profile['profile_uid'], 'system', 'mobile_theme');
70         $a->profile['network'] = NETWORK_DFRN;
71
72         $a->page['title'] = $a->profile['name'] . " @ " . $a->config['sitename'];
73
74                 if (!$profiledata  && !get_pconfig(local_user(),'system','always_my_theme'))
75                         $_SESSION['theme'] = $a->profile['theme'];
76
77         $_SESSION['mobile-theme'] = $a->profile['mobile-theme'];
78
79         /*
80          * load/reload current theme info
81          */
82
83         $a->set_template_engine(); // reset the template engine to the default in case the user's theme doesn't specify one
84
85         $theme_info_file = "view/theme/".current_theme()."/theme.php";
86         if (file_exists($theme_info_file)){
87                 require_once($theme_info_file);
88         }
89
90         if(! (x($a->page,'aside')))
91                 $a->page['aside'] = '';
92
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']
97                 ));
98         }
99
100         $block = (((get_config('system','block_public')) && (! local_user()) && (! remote_user())) ? true : false);
101
102         /**
103          * @todo
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
106          */
107         if ($profiledata)
108                 $a->page['aside'] .= profile_sidebar($profiledata, true);
109         else
110                 $a->page['aside'] .= profile_sidebar($a->profile, $block);
111
112         /*if(! $block)
113          $a->page['aside'] .= contact_block();*/
114
115         return;
116 }
117
118
119 /**
120  * @brief Get all profil data of a local user
121  * 
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
125  * by the owner
126  * 
127  * @param string $nickname
128  * @param int $uid
129  * @param int $profile
130  *      ID of the profile
131  * @returns array
132  *      Includes all available profile data
133  */
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'])
140                                         );
141                                         if(count($r))
142                                                 $profile = $r[0]['profile-id'];
143                                         break;
144                                 }
145                         }
146                 }
147
148         $r = null;
149
150         if($profile) {
151                 $profile_int = intval($profile);
152                 $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `contact`.`avatar-date` AS picdate, `contact`.`addr`, `user`.* FROM `profile`
153                                 INNER JOIN `contact` on `contact`.`uid` = `profile`.`uid` INNER JOIN `user` ON `profile`.`uid` = `user`.`uid`
154                                 WHERE `user`.`nickname` = '%s' AND `profile`.`id` = %d AND `contact`.`self` = 1 LIMIT 1",
155                                 dbesc($nickname),
156                                 intval($profile_int)
157                 );
158         }
159         if((!$r) && (!count($r))) {
160                 $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `contact`.`avatar-date` AS picdate, `contact`.`addr`, `user`.* FROM `profile`
161                                 INNER JOIN `contact` ON `contact`.`uid` = `profile`.`uid` INNER JOIN `user` ON `profile`.`uid` = `user`.`uid`
162                                 WHERE `user`.`nickname` = '%s' AND `profile`.`is-default` = 1 AND `contact`.`self` = 1 LIMIT 1",
163                                 dbesc($nickname)
164                 );
165         }
166
167         return $r[0];
168
169 }
170
171
172 /**
173  * @brief Formats a profile for display in the sidebar.
174  * 
175  * It is very difficult to templatise the HTML completely
176  * because of all the conditional logic.
177  * 
178  * @param array $profile
179  * @param int $block
180  * 
181  * @return HTML string stuitable for sidebar inclusion
182  * 
183  * @note Returns empty string if passed $profile is wrong type or not populated
184  * 
185  * @hooks 'profile_sidebar_enter'
186  *      array $profile - profile data
187  * @hooks 'profile_sidebar'
188  *      array $arr
189  */
190 function profile_sidebar($profile, $block = 0) {
191         $a = get_app();
192
193         $o = '';
194         $location = false;
195         $address = false;
196 //              $pdesc = true;
197
198         if((! is_array($profile)) && (! count($profile)))
199                 return $o;
200
201         $profile['picdate'] = urlencode($profile['picdate']);
202
203         if (($profile['network'] != "") AND ($profile['network'] != NETWORK_DFRN)) {
204                 $profile['network_name'] = format_network_name($profile['network'],$profile['url']);
205         } else
206                 $profile['network_name'] = "";
207
208         call_hooks('profile_sidebar_enter', $profile);
209
210
211         // don't show connect link to yourself
212         $connect = (($profile['uid'] != local_user()) ? t('Connect')  : False);
213
214         // don't show connect link to authenticated visitors either
215         if(remote_user() && count($_SESSION['remote'])) {
216                 foreach($_SESSION['remote'] as $visitor) {
217                         if($visitor['uid'] == $profile['uid']) {
218                                 $connect = false;
219                                 break;
220                         }
221                 }
222         }
223
224         // Is the local user already connected to that user?
225         if ($connect AND local_user()) {
226                 if (isset($profile["url"]))
227                         $profile_url = normalise_link($profile["url"]);
228                 else
229                         $profile_url = normalise_link($a->get_baseurl()."/profile/".$profile["nickname"]);
230
231                 $r = q("SELECT * FROM `contact` WHERE NOT `pending` AND `uid` = %d AND `nurl` = '%s'",
232                         local_user(), $profile_url);
233                 if (count($r))
234                         $connect = false;
235         }
236
237         if ($connect AND ($profile['network'] != NETWORK_DFRN) AND !isset($profile['remoteconnect']))
238                 $connect = false;
239
240         $remoteconnect = NULL;
241         if (isset($profile['remoteconnect']))
242                 $remoteconnect = $profile['remoteconnect'];
243
244         if ($connect AND ($profile['network'] == NETWORK_DFRN) AND !isset($remoteconnect))
245                 $subscribe_feed = t("Atom feed");
246         else
247                 $subscribe_feed = false;
248
249         if (remote_user() OR (get_my_url() && $profile['unkmail'] && ($profile['uid'] != local_user()))) {
250                 $wallmessage = t('Message');
251                 $wallmessage_link = "wallmessage/".$profile["nickname"];
252
253                 if (remote_user()) {
254                         $r = q("SELECT `url` FROM `contact` WHERE `uid` = %d AND `id` = '%s' AND `rel` = %d",
255                                 intval($profile['uid']),
256                                 intval(remote_user()),
257                                 intval(CONTACT_IS_FRIEND));
258                 } else {
259                         $r = q("SELECT `url` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' AND `rel` = %d",
260                                 intval($profile['uid']),
261                                 dbesc(normalise_link(get_my_url())),
262                                 intval(CONTACT_IS_FRIEND));
263                 }
264                 if ($r) {
265                         $remote_url = $r[0]["url"];
266                         $message_path = preg_replace("=(.*)/profile/(.*)=ism", "$1/message/new/", $remote_url);
267                         $wallmessage_link = $message_path.base64_encode($profile["addr"]);
268                 }
269         } else {
270                 $wallmessage = false;
271                 $wallmessage_link = false;
272         }
273
274         // show edit profile to yourself
275         if ($profile['uid'] == local_user() && feature_enabled(local_user(),'multi_profiles')) {
276                 $profile['edit'] = array($a->get_baseurl(). '/profiles', t('Profiles'),"", t('Manage/edit profiles'));
277                 $r = q("SELECT * FROM `profile` WHERE `uid` = %d",
278                                 local_user());
279
280                 $profile['menu'] = array(
281                         'chg_photo' => t('Change profile photo'),
282                         'cr_new' => t('Create New Profile'),
283                         'entries' => array(),
284                 );
285
286                 if(count($r)) {
287
288                         foreach($r as $rr) {
289                                 $profile['menu']['entries'][] = array(
290                                         'photo' => $rr['thumb'],
291                                         'id' => $rr['id'],
292                                         'alt' => t('Profile Image'),
293                                         'profile_name' => $rr['profile-name'],
294                                         'isdefault' => $rr['is-default'],
295                                         'visibile_to_everybody' =>  t('visible to everybody'),
296                                         'edit_visibility' => t('Edit visibility'),
297
298                                 );
299                         }
300
301
302                 }
303         }
304         if ($profile['uid'] == local_user() && !feature_enabled(local_user(),'multi_profiles')) {
305                 $profile['edit'] = array($a->get_baseurl(). '/profiles/'.$profile['id'], t('Edit profile'),"", t('Edit profile'));
306                 $profile['menu'] = array(
307                         'chg_photo' => t('Change profile photo'),
308                         'cr_new' => null,
309                         'entries' => array(),
310                 );
311         }
312
313         // Fetch the account type
314         $account_type = account_type($profile);
315
316         if((x($profile,'address') == 1)
317                         || (x($profile,'location') == 1)
318                         || (x($profile,'locality') == 1)
319                         || (x($profile,'region') == 1)
320                         || (x($profile,'postal-code') == 1)
321                         || (x($profile,'country-name') == 1))
322                 $location = t('Location:');
323
324         $gender = ((x($profile,'gender') == 1) ? t('Gender:') : False);
325
326
327         $marital = ((x($profile,'marital') == 1) ?  t('Status:') : False);
328
329         $homepage = ((x($profile,'homepage') == 1) ?  t('Homepage:') : False);
330
331         $about = ((x($profile,'about') == 1) ?  t('About:') : False);
332
333         $xmpp = ((x($profile,'xmpp') == 1) ?  t('XMPP:') : False);
334
335         if(($profile['hidewall'] || $block) && (! local_user()) && (! remote_user())) {
336                 $location = $pdesc = $gender = $marital = $homepage = $about = False;
337         }
338
339         $firstname = ((strpos($profile['name'],' '))
340                         ? trim(substr($profile['name'],0,strpos($profile['name'],' '))) : $profile['name']);
341         $lastname = (($firstname === $profile['name']) ? '' : trim(substr($profile['name'],strlen($firstname))));
342
343         if ($profile['guid'] != "")
344                 $diaspora = array(
345                         'guid' => $profile['guid'],
346                         'podloc' => $a->get_baseurl(),
347                         'searchable' => (($profile['publish'] && $profile['net-publish']) ? 'true' : 'false' ),
348                         'nickname' => $profile['nickname'],
349                         'fullname' => $profile['name'],
350                         'firstname' => $firstname,
351                         'lastname' => $lastname,
352                         'photo300' => $a->get_baseurl() . '/photo/custom/300/' . $profile['uid'] . '.jpg',
353                         'photo100' => $a->get_baseurl() . '/photo/custom/100/' . $profile['uid'] . '.jpg',
354                         'photo50' => $a->get_baseurl() . '/photo/custom/50/'  . $profile['uid'] . '.jpg',
355                 );
356         else
357                 $diaspora = false;
358
359         if (!$block){
360                 $contact_block = contact_block();
361
362                 if(is_array($a->profile) AND !$a->profile['hide-friends']) {
363                         $r = q("SELECT `gcontact`.`updated` FROM `contact` INNER JOIN `gcontact` WHERE `gcontact`.`nurl` = `contact`.`nurl` AND `self` AND `uid` = %d LIMIT 1",
364                                 intval($a->profile['uid']));
365                         if(count($r))
366                                 $updated =  date("c", strtotime($r[0]['updated']));
367
368                         $r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0
369                                         AND `network` IN ('%s', '%s', '%s', '')",
370                                 intval($profile['uid']),
371                                 dbesc(NETWORK_DFRN),
372                                 dbesc(NETWORK_DIASPORA),
373                                 dbesc(NETWORK_OSTATUS)
374                         );
375                         if(count($r))
376                                 $contacts = intval($r[0]['total']);
377                 }
378         }
379
380         $p = array();
381         foreach($profile as $k => $v) {
382                 $k = str_replace('-','_',$k);
383                 $p[$k] = $v;
384         }
385
386         if (isset($p["about"]))
387                 $p["about"] = bbcode($p["about"]);
388
389         if (isset($p["address"]))
390                 $p["address"] = bbcode($p["address"]);
391         else
392                 $p["address"] = bbcode($p["location"]);
393
394         if (isset($p["photo"]))
395                 $p["photo"] = proxy_url($p["photo"], false, PROXY_SIZE_SMALL);
396
397         if($a->theme['template_engine'] === 'internal')
398                 $location = template_escape($location);
399
400         $tpl = get_markup_template('profile_vcard.tpl');
401         $o .= replace_macros($tpl, array(
402                 '$profile' => $p,
403                 '$xmpp' => $xmpp,
404                 '$connect'  => $connect,
405                 '$remoteconnect'  => $remoteconnect,
406                 '$subscribe_feed' => $subscribe_feed,
407                 '$wallmessage' => $wallmessage,
408                 '$wallmessage_link' => $wallmessage_link,
409                 '$account_type' => $account_type,
410                 '$location' => $location,
411                 '$gender'   => $gender,
412 //                      '$pdesc'        => $pdesc,
413                 '$marital'  => $marital,
414                 '$homepage' => $homepage,
415                 '$about' => $about,
416                 '$network' =>  t('Network:'),
417                 '$contacts' => $contacts,
418                 '$updated' => $updated,
419                 '$diaspora' => $diaspora,
420                 '$contact_block' => $contact_block,
421         ));
422
423         $arr = array('profile' => &$profile, 'entry' => &$o);
424
425         call_hooks('profile_sidebar', $arr);
426
427         return $o;
428 }
429
430
431 function get_birthdays() {
432
433         $a = get_app();
434         $o = '';
435
436         if(! local_user() || $a->is_mobile || $a->is_tablet)
437                 return $o;
438
439 //              $mobile_detect = new Mobile_Detect();
440 //              $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
441
442 //              if($is_mobile)
443 //                      return $o;
444
445         $bd_format = t('g A l F d') ; // 8 AM Friday January 18
446         $bd_short = t('F d');
447
448         $r = q("SELECT `event`.*, `event`.`id` AS `eid`, `contact`.* FROM `event`
449                         INNER JOIN `contact` ON `contact`.`id` = `event`.`cid`
450                         WHERE `event`.`uid` = %d AND `type` = 'birthday' AND `start` < '%s' AND `finish` > '%s'
451                         ORDER BY `start` ASC ",
452                         intval(local_user()),
453                         dbesc(datetime_convert('UTC','UTC','now + 6 days')),
454                         dbesc(datetime_convert('UTC','UTC','now'))
455         );
456
457         if($r && count($r)) {
458                 $total = 0;
459                 $now = strtotime('now');
460                 $cids = array();
461
462                 $istoday = false;
463                 foreach($r as $rr) {
464                         if(strlen($rr['name']))
465                                 $total ++;
466                         if((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now))
467                                 $istoday = true;
468                 }
469                 $classtoday = $istoday ? ' birthday-today ' : '';
470                 if($total) {
471                         foreach($r as &$rr) {
472                                 if(! strlen($rr['name']))
473                                         continue;
474
475                                 // avoid duplicates
476
477                                 if(in_array($rr['cid'],$cids))
478                                         continue;
479                                 $cids[] = $rr['cid'];
480
481                                 $today = (((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now)) ? true : false);
482                                 $sparkle = '';
483                                 $url = $rr['url'];
484                                 if($rr['network'] === NETWORK_DFRN) {
485                                         $sparkle = " sparkle";
486                                         $url = $a->get_baseurl() . '/redir/'  . $rr['cid'];
487                                 }
488
489                                 $rr['link'] = $url;
490                                 $rr['title'] = $rr['name'];
491                                 $rr['date'] = day_translate(datetime_convert('UTC', $a->timezone, $rr['start'], $rr['adjust'] ? $bd_format : $bd_short)) . (($today) ?  ' ' . t('[today]') : '');
492                                 $rr['startime'] = Null;
493                                 $rr['today'] = $today;
494
495                         }
496                 }
497         }
498         $tpl = get_markup_template("birthdays_reminder.tpl");
499         return replace_macros($tpl, array(
500                 '$baseurl' => $a->get_baseurl(),
501                 '$classtoday' => $classtoday,
502                 '$count' => $total,
503                 '$event_reminders' => t('Birthday Reminders'),
504                 '$event_title' => t('Birthdays this week:'),
505                 '$events' => $r,
506                 '$lbr' => '{',  // raw brackets mess up if/endif macro processing
507                 '$rbr' => '}'
508
509         ));
510 }
511
512
513 function get_events() {
514
515         require_once('include/bbcode.php');
516
517         $a = get_app();
518
519         if(! local_user() || $a->is_mobile || $a->is_tablet)
520                 return $o;
521
522
523 //              $mobile_detect = new Mobile_Detect();
524 //              $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
525
526 //              if($is_mobile)
527 //                      return $o;
528
529         $bd_format = t('g A l F d') ; // 8 AM Friday January 18
530         $bd_short = t('F d');
531
532         $r = q("SELECT `event`.* FROM `event`
533                         WHERE `event`.`uid` = %d AND `type` != 'birthday' AND `start` < '%s' AND `start` >= '%s'
534                         ORDER BY `start` ASC ",
535                         intval(local_user()),
536                         dbesc(datetime_convert('UTC','UTC','now + 7 days')),
537                         dbesc(datetime_convert('UTC','UTC','now - 1 days'))
538         );
539
540         if($r && count($r)) {
541                 $now = strtotime('now');
542                 $istoday = false;
543                 foreach($r as $rr) {
544                         if(strlen($rr['name']))
545                                 $total ++;
546
547                         $strt = datetime_convert('UTC',$rr['convert'] ? $a->timezone : 'UTC',$rr['start'],'Y-m-d');
548                         if($strt === datetime_convert('UTC',$a->timezone,'now','Y-m-d'))
549                                 $istoday = true;
550                 }
551                 $classtoday = (($istoday) ? 'event-today' : '');
552
553                 $skip = 0;
554
555                 foreach($r as &$rr) {
556                         $title = strip_tags(html_entity_decode(bbcode($rr['summary']),ENT_QUOTES,'UTF-8'));
557
558                         if(strlen($title) > 35)
559                                 $title = substr($title,0,32) . '... ';
560
561                         $description = substr(strip_tags(bbcode($rr['desc'])),0,32) . '... ';
562                         if(! $description)
563                                 $description = t('[No description]');
564
565                         $strt = datetime_convert('UTC',$rr['convert'] ? $a->timezone : 'UTC',$rr['start']);
566
567                         if(substr($strt,0,10) < datetime_convert('UTC',$a->timezone,'now','Y-m-d')) {
568                                 $skip++;
569                                 continue;
570                         }
571
572                         $today = ((substr($strt,0,10) === datetime_convert('UTC',$a->timezone,'now','Y-m-d')) ? true : false);
573
574                         $rr['title'] = $title;
575                         $rr['description'] = $desciption;
576                         $rr['date'] = day_translate(datetime_convert('UTC', $rr['adjust'] ? $a->timezone : 'UTC', $rr['start'], $bd_format)) . (($today) ?  ' ' . t('[today]') : '');
577                         $rr['startime'] = $strt;
578                         $rr['today'] = $today;
579                 }
580         }
581
582         $tpl = get_markup_template("events_reminder.tpl");
583         return replace_macros($tpl, array(
584                 '$baseurl' => $a->get_baseurl(),
585                 '$classtoday' => $classtoday,
586                 '$count' => count($r) - $skip,
587                 '$event_reminders' => t('Event Reminders'),
588                 '$event_title' => t('Events this week:'),
589                 '$events' => $r,
590         ));
591 }
592
593 function advanced_profile(&$a) {
594
595         $o = '';
596         $uid = $a->profile['uid'];
597
598         $o .= replace_macros(get_markup_template('section_title.tpl'),array(
599                 '$title' => t('Profile')
600         ));
601
602         if($a->profile['name']) {
603
604                 $tpl = get_markup_template('profile_advanced.tpl');
605
606                 $profile = array();
607
608                 $profile['fullname'] = array( t('Full Name:'), $a->profile['name'] ) ;
609
610                 if($a->profile['gender']) $profile['gender'] = array( t('Gender:'),  $a->profile['gender'] );
611
612
613                 if(($a->profile['dob']) && ($a->profile['dob'] != '0000-00-00')) {
614
615                         $year_bd_format = t('j F, Y');
616                         $short_bd_format = t('j F');
617
618
619                         $val = ((intval($a->profile['dob']))
620                                 ? day_translate(datetime_convert('UTC','UTC',$a->profile['dob'] . ' 00:00 +00:00',$year_bd_format))
621                                 : day_translate(datetime_convert('UTC','UTC','2001-' . substr($a->profile['dob'],5) . ' 00:00 +00:00',$short_bd_format)));
622
623                         $profile['birthday'] = array( t('Birthday:'), $val);
624
625                 }
626
627                 if($age = age($a->profile['dob'],$a->profile['timezone'],''))  $profile['age'] = array( t('Age:'), $age );
628
629
630                 if($a->profile['marital']) $profile['marital'] = array( t('Status:'), $a->profile['marital']);
631
632
633                 if($a->profile['with']) $profile['marital']['with'] = $a->profile['with'];
634
635                 if(strlen($a->profile['howlong']) && $a->profile['howlong'] !== '0000-00-00 00:00:00') {
636                                 $profile['howlong'] = relative_date($a->profile['howlong'], t('for %1$d %2$s'));
637                 }
638
639                 if($a->profile['sexual']) $profile['sexual'] = array( t('Sexual Preference:'), $a->profile['sexual'] );
640
641                 if($a->profile['homepage']) $profile['homepage'] = array( t('Homepage:'), linkify($a->profile['homepage']) );
642
643                 if($a->profile['hometown']) $profile['hometown'] = array( t('Hometown:'), linkify($a->profile['hometown']) );
644
645                 if($a->profile['pub_keywords']) $profile['pub_keywords'] = array( t('Tags:'), $a->profile['pub_keywords']);
646
647                 if($a->profile['politic']) $profile['politic'] = array( t('Political Views:'), $a->profile['politic']);
648
649                 if($a->profile['religion']) $profile['religion'] = array( t('Religion:'), $a->profile['religion']);
650
651                 if($txt = prepare_text($a->profile['about'])) $profile['about'] = array( t('About:'), $txt );
652
653                 if($txt = prepare_text($a->profile['interest'])) $profile['interest'] = array( t('Hobbies/Interests:'), $txt);
654
655                 if($txt = prepare_text($a->profile['likes'])) $profile['likes'] = array( t('Likes:'), $txt);
656
657                 if($txt = prepare_text($a->profile['dislikes'])) $profile['dislikes'] = array( t('Dislikes:'), $txt);
658
659
660                 if($txt = prepare_text($a->profile['contact'])) $profile['contact'] = array( t('Contact information and Social Networks:'), $txt);
661
662                 if($txt = prepare_text($a->profile['music'])) $profile['music'] = array( t('Musical interests:'), $txt);
663
664                 if($txt = prepare_text($a->profile['book'])) $profile['book'] = array( t('Books, literature:'), $txt);
665
666                 if($txt = prepare_text($a->profile['tv'])) $profile['tv'] = array( t('Television:'), $txt);
667
668                 if($txt = prepare_text($a->profile['film'])) $profile['film'] = array( t('Film/dance/culture/entertainment:'), $txt);
669
670                 if($txt = prepare_text($a->profile['romance'])) $profile['romance'] = array( t('Love/Romance:'), $txt);
671
672                 if($txt = prepare_text($a->profile['work'])) $profile['work'] = array( t('Work/employment:'), $txt);
673
674                 if($txt = prepare_text($a->profile['education'])) $profile['education'] = array( t('School/education:'), $txt );
675         
676                 //show subcribed forum if it is enabled in the usersettings
677                 if (feature_enabled($uid,'forumlist_profile')) {
678                         $profile['forumlist'] = array( t('Forums:'), ForumManager::profile_advanced($uid));
679                 }
680
681                 if ($a->profile['uid'] == local_user())
682                         $profile['edit'] = array($a->get_baseurl(). '/profiles/'.$a->profile['id'], t('Edit profile'),"", t('Edit profile'));
683
684                 return replace_macros($tpl, array(
685                         '$title' => t('Profile'),
686                         '$basic' => t('Basic'),
687                         '$advanced' => t('Advanced'),
688                         '$profile' => $profile
689                 ));
690         }
691
692         return '';
693 }
694
695 function profile_tabs($a, $is_owner=False, $nickname=Null){
696         //echo "<pre>"; var_dump($a->user); killme();
697
698         if (is_null($nickname))
699                 $nickname  = $a->user['nickname'];
700
701         if(x($_GET,'tab'))
702                 $tab = notags(trim($_GET['tab']));
703
704         $url = $a->get_baseurl() . '/profile/' . $nickname;
705
706         $tabs = array(
707                 array(
708                         'label'=>t('Status'),
709                         'url' => $url,
710                         'sel' => ((!isset($tab)&&$a->argv[0]=='profile')?'active':''),
711                         'title' => t('Status Messages and Posts'),
712                         'id' => 'status-tab',
713                         'accesskey' => 'm',
714                 ),
715                 array(
716                         'label' => t('Profile'),
717                         'url'   => $url.'/?tab=profile',
718                         'sel'   => ((isset($tab) && $tab=='profile')?'active':''),
719                         'title' => t('Profile Details'),
720                         'id' => 'profile-tab',
721                         'accesskey' => 'r',
722                 ),
723                 array(
724                         'label' => t('Photos'),
725                         'url'   => $a->get_baseurl() . '/photos/' . $nickname,
726                         'sel'   => ((!isset($tab)&&$a->argv[0]=='photos')?'active':''),
727                         'title' => t('Photo Albums'),
728                         'id' => 'photo-tab',
729                         'accesskey' => 'h',
730                 ),
731                 array(
732                         'label' => t('Videos'),
733                         'url'   => $a->get_baseurl() . '/videos/' . $nickname,
734                         'sel'   => ((!isset($tab)&&$a->argv[0]=='videos')?'active':''),
735                         'title' => t('Videos'),
736                         'id' => 'video-tab',
737                         'accesskey' => 'v',
738                 ),
739         );
740
741         // the calendar link for the full featured events calendar
742         if ($is_owner && $a->theme_events_in_profile) {
743                         $tabs[] = array(
744                                 'label' => t('Events'),
745                                 'url'   => $a->get_baseurl() . '/events',
746                                 'sel'   =>((!isset($tab)&&$a->argv[0]=='events')?'active':''),
747                                 'title' => t('Events and Calendar'),
748                                 'id' => 'events-tab',
749                                 'accesskey' => 'e',
750                         );
751         // if the user is not the owner of the calendar we only show a calendar
752         // with the public events of the calendar owner
753         } elseif (! $is_owner) {
754                 $tabs[] = array(
755                                 'label' => t('Events'),
756                                 'url'   => $a->get_baseurl() . '/cal/' . $nickname,
757                                 'sel'   =>((!isset($tab)&&$a->argv[0]=='cal')?'active':''),
758                                 'title' => t('Events and Calendar'),
759                                 'id' => 'events-tab',
760                                 'accesskey' => 'e',
761                         );
762         }
763
764         if ($is_owner){
765                 $tabs[] = array(
766                         'label' => t('Personal Notes'),
767                         'url'   => $a->get_baseurl() . '/notes',
768                         'sel'   =>((!isset($tab)&&$a->argv[0]=='notes')?'active':''),
769                         'title' => t('Only You Can See This'),
770                         'id' => 'notes-tab',
771                         'accesskey' => 't',
772                 );
773         }
774
775         if ((! $is_owner) && ((count($a->profile)) || (! $a->profile['hide-friends']))) {
776                 $tabs[] = array(
777                         'label' => t('Contacts'),
778                         'url'   => $a->get_baseurl() . '/viewcontacts/' . $nickname,
779                         'sel'   => ((!isset($tab)&&$a->argv[0]=='viewcontacts')?'active':''),
780                         'title' => t('Contacts'),
781                         'id' => 'viewcontacts-tab',
782                         'accesskey' => 'k',
783                 );
784         }
785
786         $arr = array('is_owner' => $is_owner, 'nickname' => $nickname, 'tab' => (($tab) ? $tab : false), 'tabs' => $tabs);
787         call_hooks('profile_tabs', $arr);
788
789         $tpl = get_markup_template('common_tabs.tpl');
790
791         return replace_macros($tpl,array('$tabs' => $arr['tabs']));
792 }
793
794 function get_my_url() {
795         if(x($_SESSION,'my_url'))
796                 return $_SESSION['my_url'];
797         return false;
798 }
799
800 function zrl_init(&$a) {
801         $tmp_str = get_my_url();
802         if(validate_url($tmp_str)) {
803
804                 // Is it a DDoS attempt?
805                 // The check fetches the cached value from gprobe to reduce the load for this system
806                 $urlparts = parse_url($tmp_str);
807
808                 $result = Cache::get("gprobe:".$urlparts["host"]);
809                 if (!is_null($result)) {
810                         $result = unserialize($result);
811                         if (in_array($result["network"], array(NETWORK_FEED, NETWORK_PHANTOM))) {
812                                 logger("DDoS attempt detected for ".$urlparts["host"]." by ".$_SERVER["REMOTE_ADDR"].". server data: ".print_r($_SERVER, true), LOGGER_DEBUG);
813                                 return;
814                         }
815                 }
816
817                 proc_run(PRIORITY_LOW, 'include/gprobe.php',bin2hex($tmp_str));
818                 $arr = array('zrl' => $tmp_str, 'url' => $a->cmd);
819                 call_hooks('zrl_init',$arr);
820         }
821 }
822
823 function zrl($s,$force = false) {
824         if(! strlen($s))
825                 return $s;
826         if((! strpos($s,'/profile/')) && (! $force))
827                 return $s;
828         if($force && substr($s,-1,1) !== '/')
829                 $s = $s . '/';
830         $achar = strpos($s,'?') ? '&' : '?';
831         $mine = get_my_url();
832         if($mine and ! link_compare($mine,$s))
833                 return $s . $achar . 'zrl=' . urlencode($mine);
834         return $s;
835 }
836
837 /**
838  * @brief Get the user ID of the page owner
839  *
840  * Used from within PCSS themes to set theme parameters. If there's a
841  * puid request variable, that is the "page owner" and normally their theme
842  * settings take precedence; unless a local user sets the "always_my_theme"
843  * system pconfig, which means they don't want to see anybody else's theme
844  * settings except their own while on this site.
845  *
846  * @return int user ID
847  * 
848  * @note Returns local_user instead of user ID if "always_my_theme"
849  *      is set to true
850  */
851 function get_theme_uid() {
852         $uid = (($_REQUEST['puid']) ? intval($_REQUEST['puid']) : 0);
853         if(local_user()) {
854                 if((get_pconfig(local_user(),'system','always_my_theme')) || (! $uid))
855                         return local_user();
856         }
857
858         return $uid;
859 }