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