]> git.mxchange.org Git - friendica.git/blob - include/identity.php
Merge pull request #2212 from annando/1512-xrd
[friendica.git] / include / identity.php
1 <?php
2 /**
3  * @file include/identity.php
4  */
5
6 require_once('include/forums.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)
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         if (isset($profile['remoteconnect']))
241                 $remoteconnect = $profile['remoteconnect'];
242
243         if ($connect AND ($profile['network'] == NETWORK_DFRN) AND !isset($remoteconnect))
244                 $subscribe_feed = t("Atom feed");
245         else
246                 $subscribe_feed = false;
247
248         if(get_my_url() && $profile['unkmail'] && ($profile['uid'] != local_user()))
249                 $wallmessage = t('Message');
250         else
251                 $wallmessage = false;
252
253         // show edit profile to yourself
254         if ($profile['uid'] == local_user() && feature_enabled(local_user(),'multi_profiles')) {
255                 $profile['edit'] = array($a->get_baseurl(). '/profiles', t('Profiles'),"", t('Manage/edit profiles'));
256                 $r = q("SELECT * FROM `profile` WHERE `uid` = %d",
257                                 local_user());
258
259                 $profile['menu'] = array(
260                         'chg_photo' => t('Change profile photo'),
261                         'cr_new' => t('Create New Profile'),
262                         'entries' => array(),
263                 );
264
265                 if(count($r)) {
266
267                         foreach($r as $rr) {
268                                 $profile['menu']['entries'][] = array(
269                                         'photo' => $rr['thumb'],
270                                         'id' => $rr['id'],
271                                         'alt' => t('Profile Image'),
272                                         'profile_name' => $rr['profile-name'],
273                                         'isdefault' => $rr['is-default'],
274                                         'visibile_to_everybody' =>  t('visible to everybody'),
275                                         'edit_visibility' => t('Edit visibility'),
276
277                                 );
278                         }
279
280
281                 }
282         }
283         if ($profile['uid'] == local_user() && !feature_enabled(local_user(),'multi_profiles')) {
284                 $profile['edit'] = array($a->get_baseurl(). '/profiles/'.$profile['id'], t('Edit profile'),"", t('Edit profile'));
285                 $profile['menu'] = array(
286                         'chg_photo' => t('Change profile photo'),
287                         'cr_new' => null,
288                         'entries' => array(),
289                 );
290         }
291
292         // check if profile is a forum
293         if((intval($profile['page-flags']) == PAGE_COMMUNITY)
294                         || (intval($profile['page-flags']) == PAGE_PRVGROUP)
295                         || (intval($profile['forum']))
296                         || (intval($profile['prv']))
297                         || (intval($profile['community'])))
298                 $account_type = t('Forum');
299         else
300                 $account_type = "";
301
302         if((x($profile,'address') == 1)
303                         || (x($profile,'locality') == 1)
304                         || (x($profile,'region') == 1)
305                         || (x($profile,'postal-code') == 1)
306                         || (x($profile,'country-name') == 1))
307                 $location = t('Location:');
308
309         $gender = ((x($profile,'gender') == 1) ? t('Gender:') : False);
310
311
312         $marital = ((x($profile,'marital') == 1) ?  t('Status:') : False);
313
314         $homepage = ((x($profile,'homepage') == 1) ?  t('Homepage:') : False);
315
316         $about = ((x($profile,'about') == 1) ?  t('About:') : False);
317
318         if(($profile['hidewall'] || $block) && (! local_user()) && (! remote_user())) {
319                 $location = $pdesc = $gender = $marital = $homepage = $about = False;
320         }
321
322         $firstname = ((strpos($profile['name'],' '))
323                         ? trim(substr($profile['name'],0,strpos($profile['name'],' '))) : $profile['name']);
324         $lastname = (($firstname === $profile['name']) ? '' : trim(substr($profile['name'],strlen($firstname))));
325
326         $diaspora = array(
327                 'guid' => $profile['guid'],
328                 'podloc' => $a->get_baseurl(),
329                 'searchable' => (($profile['publish'] && $profile['net-publish']) ? 'true' : 'false' ),
330                 'nickname' => $profile['nickname'],
331                 'fullname' => $profile['name'],
332                 'firstname' => $firstname,
333                 'lastname' => $lastname,
334                 'photo300' => $a->get_cached_avatar_image($a->get_baseurl() . '/photo/custom/300/' . $profile['uid'] . '.jpg'),
335                 'photo100' => $a->get_cached_avatar_image($a->get_baseurl() . '/photo/custom/100/' . $profile['uid'] . '.jpg'),
336                 'photo50' => $a->get_cached_avatar_image($a->get_baseurl() . '/photo/custom/50/'  . $profile['uid'] . '.jpg'),
337         );
338
339         if (!$block){
340                 $contact_block = contact_block();
341
342                 if(is_array($a->profile) AND !$a->profile['hide-friends']) {
343                         $r = q("SELECT `gcontact`.`updated` FROM `contact` INNER JOIN `gcontact` WHERE `gcontact`.`nurl` = `contact`.`nurl` AND `self` AND `uid` = %d LIMIT 1",
344                                 intval($a->profile['uid']));
345                         if(count($r))
346                                 $updated =  date("c", strtotime($r[0]['updated']));
347
348                         $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
349                                         AND `network` IN ('%s', '%s', '%s', '')",
350                                 intval($profile['uid']),
351                                 dbesc(NETWORK_DFRN),
352                                 dbesc(NETWORK_DIASPORA),
353                                 dbesc(NETWORK_OSTATUS)
354                         );
355                         if(count($r))
356                                 $contacts = intval($r[0]['total']);
357                 }
358         }
359
360         $p = array();
361         foreach($profile as $k => $v) {
362                 $k = str_replace('-','_',$k);
363                 $p[$k] = $v;
364         }
365
366         if (isset($p["about"]))
367                 $p["about"] = bbcode($p["about"]);
368
369         if (isset($p["address"]))
370                 $p["address"] = bbcode($p["address"]);
371
372         if (isset($p["photo"]))
373                 $p["photo"] = proxy_url($p["photo"], false, PROXY_SIZE_SMALL);
374
375         if($a->theme['template_engine'] === 'internal')
376                 $location = template_escape($location);
377
378         $tpl = get_markup_template('profile_vcard.tpl');
379         $o .= replace_macros($tpl, array(
380                 '$profile' => $p,
381                 '$connect'  => $connect,
382                 '$remoteconnect'  => $remoteconnect,
383                 '$subscribe_feed' => $subscribe_feed,
384                 '$wallmessage' => $wallmessage,
385                 '$account_type' => $account_type,
386                 '$location' => $location,
387                 '$gender'   => $gender,
388 //                      '$pdesc'        => $pdesc,
389                 '$marital'  => $marital,
390                 '$homepage' => $homepage,
391                 '$about' => $about,
392                 '$network' =>  t('Network:'),
393                 '$contacts' => $contacts,
394                 '$updated' => $updated,
395                 '$diaspora' => $diaspora,
396                 '$contact_block' => $contact_block,
397         ));
398
399
400         $arr = array('profile' => &$profile, 'entry' => &$o);
401
402         call_hooks('profile_sidebar', $arr);
403
404         return $o;
405 }
406
407
408 function get_birthdays() {
409
410         $a = get_app();
411         $o = '';
412
413         if(! local_user() || $a->is_mobile || $a->is_tablet)
414                 return $o;
415
416 //              $mobile_detect = new Mobile_Detect();
417 //              $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
418
419 //              if($is_mobile)
420 //                      return $o;
421
422         $bd_format = t('g A l F d') ; // 8 AM Friday January 18
423         $bd_short = t('F d');
424
425         $r = q("SELECT `event`.*, `event`.`id` AS `eid`, `contact`.* FROM `event`
426                         INNER JOIN `contact` ON `contact`.`id` = `event`.`cid`
427                         WHERE `event`.`uid` = %d AND `type` = 'birthday' AND `start` < '%s' AND `finish` > '%s'
428                         ORDER BY `start` ASC ",
429                         intval(local_user()),
430                         dbesc(datetime_convert('UTC','UTC','now + 6 days')),
431                         dbesc(datetime_convert('UTC','UTC','now'))
432         );
433
434         if($r && count($r)) {
435                 $total = 0;
436                 $now = strtotime('now');
437                 $cids = array();
438
439                 $istoday = false;
440                 foreach($r as $rr) {
441                         if(strlen($rr['name']))
442                                 $total ++;
443                         if((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now))
444                                 $istoday = true;
445                 }
446                 $classtoday = $istoday ? ' birthday-today ' : '';
447                 if($total) {
448                         foreach($r as &$rr) {
449                                 if(! strlen($rr['name']))
450                                         continue;
451
452                                 // avoid duplicates
453
454                                 if(in_array($rr['cid'],$cids))
455                                         continue;
456                                 $cids[] = $rr['cid'];
457
458                                 $today = (((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now)) ? true : false);
459                                 $sparkle = '';
460                                 $url = $rr['url'];
461                                 if($rr['network'] === NETWORK_DFRN) {
462                                         $sparkle = " sparkle";
463                                         $url = $a->get_baseurl() . '/redir/'  . $rr['cid'];
464                                 }
465
466                                 $rr['link'] = $url;
467                                 $rr['title'] = $rr['name'];
468                                 $rr['date'] = day_translate(datetime_convert('UTC', $a->timezone, $rr['start'], $rr['adjust'] ? $bd_format : $bd_short)) . (($today) ?  ' ' . t('[today]') : '');
469                                 $rr['startime'] = Null;
470                                 $rr['today'] = $today;
471
472                         }
473                 }
474         }
475         $tpl = get_markup_template("birthdays_reminder.tpl");
476         return replace_macros($tpl, array(
477                 '$baseurl' => $a->get_baseurl(),
478                 '$classtoday' => $classtoday,
479                 '$count' => $total,
480                 '$event_reminders' => t('Birthday Reminders'),
481                 '$event_title' => t('Birthdays this week:'),
482                 '$events' => $r,
483                 '$lbr' => '{',  // raw brackets mess up if/endif macro processing
484                 '$rbr' => '}'
485
486         ));
487 }
488
489
490 function get_events() {
491
492         require_once('include/bbcode.php');
493
494         $a = get_app();
495
496         if(! local_user() || $a->is_mobile || $a->is_tablet)
497                 return $o;
498
499
500 //              $mobile_detect = new Mobile_Detect();
501 //              $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
502
503 //              if($is_mobile)
504 //                      return $o;
505
506         $bd_format = t('g A l F d') ; // 8 AM Friday January 18
507         $bd_short = t('F d');
508
509         $r = q("SELECT `event`.* FROM `event`
510                         WHERE `event`.`uid` = %d AND `type` != 'birthday' AND `start` < '%s' AND `start` >= '%s'
511                         ORDER BY `start` ASC ",
512                         intval(local_user()),
513                         dbesc(datetime_convert('UTC','UTC','now + 7 days')),
514                         dbesc(datetime_convert('UTC','UTC','now - 1 days'))
515         );
516
517         if($r && count($r)) {
518                 $now = strtotime('now');
519                 $istoday = false;
520                 foreach($r as $rr) {
521                         if(strlen($rr['name']))
522                                 $total ++;
523
524                         $strt = datetime_convert('UTC',$rr['convert'] ? $a->timezone : 'UTC',$rr['start'],'Y-m-d');
525                         if($strt === datetime_convert('UTC',$a->timezone,'now','Y-m-d'))
526                                 $istoday = true;
527                 }
528                 $classtoday = (($istoday) ? 'event-today' : '');
529
530                 $skip = 0;
531
532                 foreach($r as &$rr) {
533                         $title = strip_tags(html_entity_decode(bbcode($rr['summary']),ENT_QUOTES,'UTF-8'));
534
535                         if(strlen($title) > 35)
536                                 $title = substr($title,0,32) . '... ';
537
538                         $description = substr(strip_tags(bbcode($rr['desc'])),0,32) . '... ';
539                         if(! $description)
540                                 $description = t('[No description]');
541
542                         $strt = datetime_convert('UTC',$rr['convert'] ? $a->timezone : 'UTC',$rr['start']);
543
544                         if(substr($strt,0,10) < datetime_convert('UTC',$a->timezone,'now','Y-m-d')) {
545                                 $skip++;
546                                 continue;
547                         }
548
549                         $today = ((substr($strt,0,10) === datetime_convert('UTC',$a->timezone,'now','Y-m-d')) ? true : false);
550
551                         $rr['title'] = $title;
552                         $rr['description'] = $desciption;
553                         $rr['date'] = day_translate(datetime_convert('UTC', $rr['adjust'] ? $a->timezone : 'UTC', $rr['start'], $bd_format)) . (($today) ?  ' ' . t('[today]') : '');
554                         $rr['startime'] = $strt;
555                         $rr['today'] = $today;
556                 }
557         }
558
559         $tpl = get_markup_template("events_reminder.tpl");
560         return replace_macros($tpl, array(
561                 '$baseurl' => $a->get_baseurl(),
562                 '$classtoday' => $classtoday,
563                 '$count' => count($r) - $skip,
564                 '$event_reminders' => t('Event Reminders'),
565                 '$event_title' => t('Events this week:'),
566                 '$events' => $r,
567         ));
568 }
569
570 function advanced_profile(&$a) {
571
572         $o = '';
573         $uid = $a->profile['uid'];
574
575         $o .= replace_macros(get_markup_template('section_title.tpl'),array(
576                 '$title' => t('Profile')
577         ));
578
579         if($a->profile['name']) {
580
581                 $tpl = get_markup_template('profile_advanced.tpl');
582
583                 $profile = array();
584
585                 $profile['fullname'] = array( t('Full Name:'), $a->profile['name'] ) ;
586
587                 if($a->profile['gender']) $profile['gender'] = array( t('Gender:'),  $a->profile['gender'] );
588
589
590                 if(($a->profile['dob']) && ($a->profile['dob'] != '0000-00-00')) {
591
592                         $year_bd_format = t('j F, Y');
593                         $short_bd_format = t('j F');
594
595
596                         $val = ((intval($a->profile['dob']))
597                                 ? day_translate(datetime_convert('UTC','UTC',$a->profile['dob'] . ' 00:00 +00:00',$year_bd_format))
598                                 : day_translate(datetime_convert('UTC','UTC','2001-' . substr($a->profile['dob'],5) . ' 00:00 +00:00',$short_bd_format)));
599
600                         $profile['birthday'] = array( t('Birthday:'), $val);
601
602                 }
603
604                 if($age = age($a->profile['dob'],$a->profile['timezone'],''))  $profile['age'] = array( t('Age:'), $age );
605
606
607                 if($a->profile['marital']) $profile['marital'] = array( t('Status:'), $a->profile['marital']);
608
609
610                 if($a->profile['with']) $profile['marital']['with'] = $a->profile['with'];
611
612                 if(strlen($a->profile['howlong']) && $a->profile['howlong'] !== '0000-00-00 00:00:00') {
613                                 $profile['howlong'] = relative_date($a->profile['howlong'], t('for %1$d %2$s'));
614                 }
615
616                 if($a->profile['sexual']) $profile['sexual'] = array( t('Sexual Preference:'), $a->profile['sexual'] );
617
618                 if($a->profile['homepage']) $profile['homepage'] = array( t('Homepage:'), linkify($a->profile['homepage']) );
619
620                 if($a->profile['hometown']) $profile['hometown'] = array( t('Hometown:'), linkify($a->profile['hometown']) );
621
622                 if($a->profile['pub_keywords']) $profile['pub_keywords'] = array( t('Tags:'), $a->profile['pub_keywords']);
623
624                 if($a->profile['politic']) $profile['politic'] = array( t('Political Views:'), $a->profile['politic']);
625
626                 if($a->profile['religion']) $profile['religion'] = array( t('Religion:'), $a->profile['religion']);
627
628                 if($txt = prepare_text($a->profile['about'])) $profile['about'] = array( t('About:'), $txt );
629
630                 if($txt = prepare_text($a->profile['interest'])) $profile['interest'] = array( t('Hobbies/Interests:'), $txt);
631
632                 if($txt = prepare_text($a->profile['likes'])) $profile['likes'] = array( t('Likes:'), $txt);
633
634                 if($txt = prepare_text($a->profile['dislikes'])) $profile['dislikes'] = array( t('Dislikes:'), $txt);
635
636
637                 if($txt = prepare_text($a->profile['contact'])) $profile['contact'] = array( t('Contact information and Social Networks:'), $txt);
638
639                 if($txt = prepare_text($a->profile['music'])) $profile['music'] = array( t('Musical interests:'), $txt);
640
641                 if($txt = prepare_text($a->profile['book'])) $profile['book'] = array( t('Books, literature:'), $txt);
642
643                 if($txt = prepare_text($a->profile['tv'])) $profile['tv'] = array( t('Television:'), $txt);
644
645                 if($txt = prepare_text($a->profile['film'])) $profile['film'] = array( t('Film/dance/culture/entertainment:'), $txt);
646
647                 if($txt = prepare_text($a->profile['romance'])) $profile['romance'] = array( t('Love/Romance:'), $txt);
648
649                 if($txt = prepare_text($a->profile['work'])) $profile['work'] = array( t('Work/employment:'), $txt);
650
651                 if($txt = prepare_text($a->profile['education'])) $profile['education'] = array( t('School/education:'), $txt );
652         
653                 //show subcribed forum if it is enabled in the usersettings
654                 if (feature_enabled($uid,'forumlist_profile')) {
655                         $profile['forumlist'] = array( t('Forums:'), forumlist_profile_advanced($uid));
656                 }
657
658                 if ($a->profile['uid'] == local_user())
659                         $profile['edit'] = array($a->get_baseurl(). '/profiles/'.$a->profile['id'], t('Edit profile'),"", t('Edit profile'));
660
661                 return replace_macros($tpl, array(
662                         '$title' => t('Profile'),
663                         '$profile' => $profile
664                 ));
665         }
666
667         return '';
668 }
669
670 function profile_tabs($a, $is_owner=False, $nickname=Null){
671         //echo "<pre>"; var_dump($a->user); killme();
672
673         if (is_null($nickname))
674                 $nickname  = $a->user['nickname'];
675
676         if(x($_GET,'tab'))
677                 $tab = notags(trim($_GET['tab']));
678
679         $url = $a->get_baseurl() . '/profile/' . $nickname;
680
681         $tabs = array(
682                 array(
683                         'label'=>t('Status'),
684                         'url' => $url,
685                         'sel' => ((!isset($tab)&&$a->argv[0]=='profile')?'active':''),
686                         'title' => t('Status Messages and Posts'),
687                         'id' => 'status-tab',
688                         'accesskey' => 'm',
689                 ),
690                 array(
691                         'label' => t('Profile'),
692                         'url'   => $url.'/?tab=profile',
693                         'sel'   => ((isset($tab) && $tab=='profile')?'active':''),
694                         'title' => t('Profile Details'),
695                         'id' => 'profile-tab',
696                         'accesskey' => 'r',
697                 ),
698                 array(
699                         'label' => t('Photos'),
700                         'url'   => $a->get_baseurl() . '/photos/' . $nickname,
701                         'sel'   => ((!isset($tab)&&$a->argv[0]=='photos')?'active':''),
702                         'title' => t('Photo Albums'),
703                         'id' => 'photo-tab',
704                         'accesskey' => 'h',
705                 ),
706                 array(
707                         'label' => t('Videos'),
708                         'url'   => $a->get_baseurl() . '/videos/' . $nickname,
709                         'sel'   => ((!isset($tab)&&$a->argv[0]=='videos')?'active':''),
710                         'title' => t('Videos'),
711                         'id' => 'video-tab',
712                         'accesskey' => 'v',
713                 ),
714         );
715
716         if ($is_owner){
717                 if ($a->theme_events_in_profile)
718                         $tabs[] = array(
719                                 'label' => t('Events'),
720                                 'url'   => $a->get_baseurl() . '/events',
721                                 'sel'   =>((!isset($tab)&&$a->argv[0]=='events')?'active':''),
722                                 'title' => t('Events and Calendar'),
723                                 'id' => 'events-tab',
724                                 'accesskey' => 'e',
725                         );
726                 $tabs[] = array(
727                         'label' => t('Personal Notes'),
728                         'url'   => $a->get_baseurl() . '/notes',
729                         'sel'   =>((!isset($tab)&&$a->argv[0]=='notes')?'active':''),
730                         'title' => t('Only You Can See This'),
731                         'id' => 'notes-tab',
732                         'accesskey' => 't',
733                 );
734         }
735
736         if ((! $is_owner) && ((count($a->profile)) || (! $a->profile['hide-friends']))) {
737                 $tabs[] = array(
738                         'label' => t('Contacts'),
739                         'url'   => $a->get_baseurl() . '/viewcontacts/' . $nickname,
740                         'sel'   => ((!isset($tab)&&$a->argv[0]=='viewcontacts')?'active':''),
741                         'title' => t('Contacts'),
742                         'id' => 'viewcontacts-tab',
743                         'accesskey' => 'k',
744                 );
745         }
746
747         $arr = array('is_owner' => $is_owner, 'nickname' => $nickname, 'tab' => (($tab) ? $tab : false), 'tabs' => $tabs);
748         call_hooks('profile_tabs', $arr);
749
750         $tpl = get_markup_template('common_tabs.tpl');
751
752         return replace_macros($tpl,array('$tabs' => $arr['tabs']));
753 }
754
755 function get_my_url() {
756         if(x($_SESSION,'my_url'))
757                 return $_SESSION['my_url'];
758         return false;
759 }
760
761 function zrl_init(&$a) {
762         $tmp_str = get_my_url();
763         if(validate_url($tmp_str)) {
764
765                 // Is it a DDoS attempt?
766                 // The check fetches the cached value from gprobe to reduce the load for this system
767                 $urlparts = parse_url($tmp_str);
768
769                 $result = Cache::get("gprobe:".$urlparts["host"]);
770                 if (!is_null($result)) {
771                         $result = unserialize($result);
772                         if (in_array($result["network"], array(NETWORK_FEED, NETWORK_PHANTOM))) {
773                                 logger("DDoS attempt detected for ".$urlparts["host"]." by ".$_SERVER["REMOTE_ADDR"].". server data: ".print_r($_SERVER, true), LOGGER_DEBUG);
774                                 return;
775                         }
776                 }
777
778                 proc_run('php','include/gprobe.php',bin2hex($tmp_str));
779                 $arr = array('zrl' => $tmp_str, 'url' => $a->cmd);
780                 call_hooks('zrl_init',$arr);
781         }
782 }
783
784 function zrl($s,$force = false) {
785         if(! strlen($s))
786                 return $s;
787         if((! strpos($s,'/profile/')) && (! $force))
788                 return $s;
789         if($force && substr($s,-1,1) !== '/')
790                 $s = $s . '/';
791         $achar = strpos($s,'?') ? '&' : '?';
792         $mine = get_my_url();
793         if($mine and ! link_compare($mine,$s))
794                 return $s . $achar . 'zrl=' . urlencode($mine);
795         return $s;
796 }
797
798 /**
799  * @brief Get the user ID of the page owner
800  *
801  * Used from within PCSS themes to set theme parameters. If there's a
802  * puid request variable, that is the "page owner" and normally their theme
803  * settings take precedence; unless a local user sets the "always_my_theme"
804  * system pconfig, which means they don't want to see anybody else's theme
805  * settings except their own while on this site.
806  *
807  * @return int user ID
808  * 
809  * @note Returns local_user instead of user ID if "always_my_theme"
810  *      is set to true
811  */
812 function get_theme_uid() {
813         $uid = (($_REQUEST['puid']) ? intval($_REQUEST['puid']) : 0);
814         if(local_user()) {
815                 if((get_pconfig(local_user(),'system','always_my_theme')) || (! $uid))
816                         return local_user();
817         }
818
819         return $uid;
820 }