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