]> git.mxchange.org Git - friendica.git/blob - boot.php
profile_tabs hook
[friendica.git] / boot.php
1 <?php
2
3 require_once('include/config.php');
4 require_once('include/network.php');
5 require_once('include/plugin.php');
6 require_once('include/text.php');
7 require_once('include/pgettext.php');
8 require_once('include/nav.php');
9 require_once('include/cache.php');
10
11 define ( 'FRIENDICA_PLATFORM',     'Friendica');
12 define ( 'FRIENDICA_VERSION',      '2.3.1294' );
13 define ( 'DFRN_PROTOCOL_VERSION',  '2.23'    );
14 define ( 'DB_UPDATE_VERSION',      1133      );
15
16 define ( 'EOL',                    "<br />\r\n"     );
17 define ( 'ATOM_TIME',              'Y-m-d\TH:i:s\Z' );
18
19
20 /**
21  *
22  * Image storage quality. Lower numbers save space at cost of image detail.
23  * For ease of upgrade, please do not change here. Change jpeg quality with 
24  * $a->config['system']['jpeg_quality'] = n; 
25  * in .htconfig.php, where n is netween 1 and 100, and with very poor results 
26  * below about 50 
27  *
28  */
29
30 define ( 'JPEG_QUALITY',            100  );         
31
32 /**
33  * SSL redirection policies
34  */
35
36 define ( 'SSL_POLICY_NONE',         0 );
37 define ( 'SSL_POLICY_FULL',         1 );
38 define ( 'SSL_POLICY_SELFSIGN',     2 );
39
40
41 /**
42  * log levels
43  */
44
45 define ( 'LOGGER_NORMAL',          0 );
46 define ( 'LOGGER_TRACE',           1 );
47 define ( 'LOGGER_DEBUG',           2 );
48 define ( 'LOGGER_DATA',            3 );
49 define ( 'LOGGER_ALL',             4 );
50
51 /**
52  * registration policies
53  */
54
55 define ( 'REGISTER_CLOSED',        0 );
56 define ( 'REGISTER_APPROVE',       1 );
57 define ( 'REGISTER_OPEN',          2 );
58
59 /**
60  * relationship types
61  */
62
63 define ( 'CONTACT_IS_FOLLOWER', 1);
64 define ( 'CONTACT_IS_SHARING',  2);
65 define ( 'CONTACT_IS_FRIEND',   3);
66
67
68 /**
69  * Hook array order
70  */
71  
72 define ( 'HOOK_HOOK',      0);
73 define ( 'HOOK_FILE',      1);
74 define ( 'HOOK_FUNCTION',  2);
75
76 /**
77  *
78  * page/profile types
79  *
80  * PAGE_NORMAL is a typical personal profile account
81  * PAGE_SOAPBOX automatically approves all friend requests as CONTACT_IS_SHARING, (readonly)
82  * PAGE_COMMUNITY automatically approves all friend requests as CONTACT_IS_SHARING, but with 
83  *      write access to wall and comments (no email and not included in page owner's ACL lists)
84  * PAGE_FREELOVE automatically approves all friend requests as full friends (CONTACT_IS_FRIEND). 
85  *
86  */
87
88 define ( 'PAGE_NORMAL',            0 );
89 define ( 'PAGE_SOAPBOX',           1 );
90 define ( 'PAGE_COMMUNITY',         2 );
91 define ( 'PAGE_FREELOVE',          3 );
92 define ( 'PAGE_BLOG',              4 );
93
94 /**
95  * Network and protocol family types 
96  */
97
98 define ( 'NETWORK_ZOT',              'zot!');    // Zot!
99 define ( 'NETWORK_DFRN',             'dfrn');    // Friendica, Mistpark, other DFRN implementations
100 define ( 'NETWORK_OSTATUS',          'stat');    // status.net, identi.ca, GNU-social, other OStatus implementations
101 define ( 'NETWORK_FEED',             'feed');    // RSS/Atom feeds with no known "post/notify" protocol
102 define ( 'NETWORK_DIASPORA',         'dspr');    // Diaspora
103 define ( 'NETWORK_MAIL',             'mail');    // IMAP/POP
104 define ( 'NETWORK_MAIL2',            'mai2');    // extended IMAP/POP
105 define ( 'NETWORK_FACEBOOK',         'face');    // Facebook API     
106 define ( 'NETWORK_LINKEDIN',         'lnkd');    // LinkedIn
107 define ( 'NETWORK_XMPP',             'xmpp');    // XMPP     
108 define ( 'NETWORK_MYSPACE',          'mysp');    // MySpace
109 define ( 'NETWORK_GPLUS',            'goog');    // Google+
110
111 /**
112  * Maximum number of "people who like (or don't like) this"  that we will list by name
113  */
114
115 define ( 'MAX_LIKERS',    75);
116
117 /**
118  * Communication timeout
119  */
120
121 define ( 'ZCURL_TIMEOUT' , (-1));
122
123
124 /**
125  * email notification options
126  */
127
128 define ( 'NOTIFY_INTRO',    0x0001 );
129 define ( 'NOTIFY_CONFIRM',  0x0002 );
130 define ( 'NOTIFY_WALL',     0x0004 );
131 define ( 'NOTIFY_COMMENT',  0x0008 );
132 define ( 'NOTIFY_MAIL',     0x0010 );
133 define ( 'NOTIFY_SUGGEST',  0x0020 );
134 define ( 'NOTIFY_PROFILE',  0x0040 );
135 define ( 'NOTIFY_TAGSELF',  0x0080 );
136 define ( 'NOTIFY_TAGSHARE', 0x0100 );
137
138 define ( 'NOTIFY_SYSTEM',   0x8000 );
139
140
141 /**
142  * various namespaces we may need to parse
143  */
144
145 define ( 'NAMESPACE_ZOT',             'http://purl.org/macgirvin/zot' );
146 define ( 'NAMESPACE_DFRN' ,           'http://purl.org/macgirvin/dfrn/1.0' ); 
147 define ( 'NAMESPACE_THREAD' ,         'http://purl.org/syndication/thread/1.0' );
148 define ( 'NAMESPACE_TOMB' ,           'http://purl.org/atompub/tombstones/1.0' );
149 define ( 'NAMESPACE_ACTIVITY',        'http://activitystrea.ms/spec/1.0/' );
150 define ( 'NAMESPACE_ACTIVITY_SCHEMA', 'http://activitystrea.ms/schema/1.0/' );
151 define ( 'NAMESPACE_MEDIA',           'http://purl.org/syndication/atommedia' );
152 define ( 'NAMESPACE_SALMON_ME',       'http://salmon-protocol.org/ns/magic-env' );
153 define ( 'NAMESPACE_OSTATUSSUB',      'http://ostatus.org/schema/1.0/subscribe' );
154 define ( 'NAMESPACE_GEORSS',          'http://www.georss.org/georss' );
155 define ( 'NAMESPACE_POCO',            'http://portablecontacts.net/spec/1.0' );
156 define ( 'NAMESPACE_FEED',            'http://schemas.google.com/g/2010#updates-from' );
157 define ( 'NAMESPACE_OSTATUS',         'http://ostatus.org/schema/1.0' );
158 define ( 'NAMESPACE_STATUSNET',       'http://status.net/schema/api/1/' );
159 define ( 'NAMESPACE_ATOM1',           'http://www.w3.org/2005/Atom' );
160 /**
161  * activity stream defines
162  */
163
164 define ( 'ACTIVITY_LIKE',        NAMESPACE_ACTIVITY_SCHEMA . 'like' );
165 define ( 'ACTIVITY_DISLIKE',     NAMESPACE_DFRN            . '/dislike' );
166 define ( 'ACTIVITY_OBJ_HEART',   NAMESPACE_DFRN            . '/heart' );
167
168 define ( 'ACTIVITY_FRIEND',      NAMESPACE_ACTIVITY_SCHEMA . 'make-friend' );
169 define ( 'ACTIVITY_REQ_FRIEND',  NAMESPACE_ACTIVITY_SCHEMA . 'request-friend' );
170 define ( 'ACTIVITY_UNFRIEND',    NAMESPACE_ACTIVITY_SCHEMA . 'remove-friend' );
171 define ( 'ACTIVITY_FOLLOW',      NAMESPACE_ACTIVITY_SCHEMA . 'follow' );
172 define ( 'ACTIVITY_UNFOLLOW',    NAMESPACE_ACTIVITY_SCHEMA . 'stop-following' );
173 define ( 'ACTIVITY_POST',        NAMESPACE_ACTIVITY_SCHEMA . 'post' );
174 define ( 'ACTIVITY_UPDATE',      NAMESPACE_ACTIVITY_SCHEMA . 'update' );
175 define ( 'ACTIVITY_TAG',         NAMESPACE_ACTIVITY_SCHEMA . 'tag' );
176 define ( 'ACTIVITY_FAVORITE',    NAMESPACE_ACTIVITY_SCHEMA . 'favorite' );
177
178 define ( 'ACTIVITY_OBJ_COMMENT', NAMESPACE_ACTIVITY_SCHEMA . 'comment' );
179 define ( 'ACTIVITY_OBJ_NOTE',    NAMESPACE_ACTIVITY_SCHEMA . 'note' );
180 define ( 'ACTIVITY_OBJ_PERSON',  NAMESPACE_ACTIVITY_SCHEMA . 'person' );
181 define ( 'ACTIVITY_OBJ_PHOTO',   NAMESPACE_ACTIVITY_SCHEMA . 'photo' );
182 define ( 'ACTIVITY_OBJ_P_PHOTO', NAMESPACE_ACTIVITY_SCHEMA . 'profile-photo' );
183 define ( 'ACTIVITY_OBJ_ALBUM',   NAMESPACE_ACTIVITY_SCHEMA . 'photo-album' );
184 define ( 'ACTIVITY_OBJ_EVENT',   NAMESPACE_ACTIVITY_SCHEMA . 'event' );
185 define ( 'ACTIVITY_OBJ_TAGTERM', NAMESPACE_DFRN            . '/tagterm' );
186
187 /**
188  * item weight for query ordering
189  */
190
191 define ( 'GRAVITY_PARENT',       0);
192 define ( 'GRAVITY_LIKE',         3);
193 define ( 'GRAVITY_COMMENT',      6);
194
195 /**
196  *
197  * Reverse the effect of magic_quotes_gpc if it is enabled.
198  * Please disable magic_quotes_gpc so we don't have to do this.
199  * See http://php.net/manual/en/security.magicquotes.disabling.php
200  *
201  */
202
203 function startup() {
204         error_reporting(E_ERROR | E_WARNING | E_PARSE);
205         set_time_limit(0);
206
207         // This has to be quite large to deal with embedded private photos
208         ini_set('pcre.backtrack_limit', 500000);
209
210
211         if (get_magic_quotes_gpc()) {
212         $process = array(&$_GET, &$_POST, &$_COOKIE, &$_REQUEST);
213             while (list($key, $val) = each($process)) {
214             foreach ($val as $k => $v) {
215                     unset($process[$key][$k]);
216                 if (is_array($v)) {
217                         $process[$key][stripslashes($k)] = $v;
218                         $process[] = &$process[$key][stripslashes($k)];
219                 } else {
220                         $process[$key][stripslashes($k)] = stripslashes($v);
221                 }
222                 }
223         }
224             unset($process);
225         }
226
227 }
228
229 /**
230  *
231  * class: App
232  *
233  * Our main application structure for the life of this page
234  * Primarily deals with the URL that got us here
235  * and tries to make some sense of it, and 
236  * stores our page contents and config storage
237  * and anything else that might need to be passed around 
238  * before we spit the page out. 
239  *
240  */
241
242 if(! class_exists('App')) {
243 class App {
244
245         public  $module_loaded = false;
246         public  $query_string;
247         public  $config;
248         public  $page;
249         public  $profile;
250         public  $user;
251         public  $cid;
252         public  $contact;
253         public  $contacts;
254         public  $page_contact;
255         public  $content;
256         public  $data = array();
257         public  $error = false;
258         public  $cmd;
259         public  $argv;
260         public  $argc;
261         public  $module;
262         public  $pager;
263         public  $strings;   
264         public  $path;
265         public  $hooks;
266         public  $timezone;
267         public  $interactive = true;
268         public  $plugins;
269         public  $apps = array();
270         public  $identities;
271         
272         public $nav_sel;
273
274         private $scheme;
275         private $hostname;
276         private $baseurl;
277         private $db;
278
279         private $curl_code;
280         private $curl_headers;
281
282         function __construct() {
283
284                 $this->config = array();
285                 $this->page = array();
286                 $this->pager= array();
287
288                 $this->query_string = '';
289
290                 startup();
291
292                 $this->scheme = 'http';
293                 if(x($_SERVER,'HTTPS') && $_SERVER['HTTPS'])
294                         $this->scheme = 'https';
295                 elseif(x($_SERVER,'SERVER_PORT') && (intval($_SERVER['SERVER_PORT']) == 443)) 
296                         $this->scheme = 'https';
297
298
299                 if(x($_SERVER,'SERVER_NAME')) {
300                         $this->hostname = $_SERVER['SERVER_NAME'];
301                         if(x($_SERVER,'SERVER_PORT') && $_SERVER['SERVER_PORT'] != 80 && $_SERVER['SERVER_PORT'] != 443)
302                                 $this->hostname .= ':' . $_SERVER['SERVER_PORT'];
303                         /** 
304                          * Figure out if we are running at the top of a domain
305                          * or in a sub-directory and adjust accordingly
306                          */
307
308                         $path = trim(dirname($_SERVER['SCRIPT_NAME']),'/\\');
309                         if(isset($path) && strlen($path) && ($path != $this->path))
310                                 $this->path = $path;
311                 }
312
313                 set_include_path(
314                         "include/$this->hostname" . PATH_SEPARATOR 
315                         . 'include' . PATH_SEPARATOR 
316                         . 'library' . PATH_SEPARATOR 
317                         . 'library/phpsec' . PATH_SEPARATOR 
318                         . '.' );
319
320                 if((x($_SERVER,'QUERY_STRING')) && substr($_SERVER['QUERY_STRING'],0,2) === "q=") {
321                         $this->query_string = substr($_SERVER['QUERY_STRING'],2);
322                         // removing trailing / - maybe a nginx problem
323                         if (substr($this->query_string, 0, 1) == "/")
324                                 $this->query_string = substr($this->query_string, 1);
325                 }
326                 if(x($_GET,'q'))
327                         $this->cmd = trim($_GET['q'],'/\\');
328
329                 // unix style "homedir"
330
331                 if(substr($this->cmd,0,1) === '~')
332                         $this->cmd = 'profile/' . substr($this->cmd,1);
333
334                 // Diaspora style profile url
335
336                 if(substr($this->cmd,0,2) === 'u/')
337                         $this->cmd = 'profile/' . substr($this->cmd,2);
338
339                 /**
340                  *
341                  * Break the URL path into C style argc/argv style arguments for our
342                  * modules. Given "http://example.com/module/arg1/arg2", $this->argc
343                  * will be 3 (integer) and $this->argv will contain:
344                  *   [0] => 'module'
345                  *   [1] => 'arg1'
346                  *   [2] => 'arg2'
347                  *
348                  *
349                  * There will always be one argument. If provided a naked domain
350                  * URL, $this->argv[0] is set to "home".
351                  *
352                  */
353
354                 $this->argv = explode('/',$this->cmd);
355                 $this->argc = count($this->argv);
356                 if((array_key_exists('0',$this->argv)) && strlen($this->argv[0])) {
357                         $this->module = str_replace(".", "_", $this->argv[0]);
358                 }
359                 else {
360                         $this->argc = 1;
361                         $this->argv = array('home');
362                         $this->module = 'home';
363                 }
364
365                 /**
366                  * Special handling for the webfinger/lrdd host XRD file
367                  */
368
369                 if($this->cmd === '.well-known/host-meta') {
370                         $this->argc = 1;
371                         $this->argv = array('hostxrd');
372                         $this->module = 'hostxrd';
373                 }
374
375                 /**
376                  * See if there is any page number information, and initialise 
377                  * pagination
378                  */
379
380                 $this->pager['page'] = ((x($_GET,'page')) ? $_GET['page'] : 1);
381                 $this->pager['itemspage'] = 50;
382                 $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
383                 $this->pager['total'] = 0;
384         }
385
386         function get_baseurl($ssl = false) {
387
388                 $scheme = $this->scheme;
389
390                 if((x($this->config,'system')) && (x($this->config['system'],'ssl_policy'))) {
391                         if(intval($this->config['system']['ssl_policy']) === intval(SSL_POLICY_FULL)) 
392                                 $scheme = 'https';
393
394 //                      We need to populate the $ssl flag across the entire program before turning this on.
395 //                      Basically, we'll have $ssl = true on any links which can only be seen by a logged in user
396 //                      (and also the login link). Anything seen by an outsider will have it turned off.
397 //                      At present, setting SSL_POLICY_SELFSIGN will only force remote contacts to update their 
398 //                      contact links to this site with "http:" if they are currently using "https:"
399
400 //                      if($this->config['system']['ssl_policy'] == SSL_POLICY_SELFSIGN) {
401 //                              if($ssl)
402 //                                      $scheme = 'https';
403 //                              else
404 //                                      $scheme = 'http';
405 //                      }
406                 }
407
408                 $this->baseurl = $scheme . "://" . $this->hostname . ((isset($this->path) && strlen($this->path)) ? '/' . $this->path : '' );
409                 return $this->baseurl;
410         }
411
412         function set_baseurl($url) {
413                 $parsed = @parse_url($url);
414
415                 $this->baseurl = $url;
416
417                 if($parsed) {           
418                         $this->scheme = $parsed['scheme'];
419
420                         $this->hostname = $parsed['host'];
421                         if(x($parsed,'port'))
422                                 $this->hostname .= ':' . $parsed['port'];
423                         if(x($parsed,'path'))
424                                 $this->path = trim($parsed['path'],'\\/');
425                 }
426
427         }
428
429         function get_hostname() {
430                 return $this->hostname;
431         }
432
433         function set_hostname($h) {
434                 $this->hostname = $h;
435         }
436
437         function set_path($p) {
438                 $this->path = trim(trim($p),'/');
439         } 
440
441         function get_path() {
442                 return $this->path;
443         }
444
445         function set_pager_total($n) {
446                 $this->pager['total'] = intval($n);
447         }
448
449         function set_pager_itemspage($n) {
450                 $this->pager['itemspage'] = intval($n);
451                 $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
452
453         } 
454
455         function init_pagehead() {
456                 $interval = ((local_user()) ? get_pconfig(local_user(),'system','update_interval') : 40000);
457                 if($interval < 10000)
458                         $interval = 40000;
459
460                 $this->page['title'] = $this->config['sitename'];
461                 $tpl = file_get_contents('view/head.tpl');
462                 $this->page['htmlhead'] = replace_macros($tpl,array(
463                         '$baseurl' => $this->get_baseurl(), // FIXME for z_path!!!!
464                         '$generator' => 'Friendica' . ' ' . FRIENDICA_VERSION,
465                         '$delitem' => t('Delete this item?'),
466                         '$comment' => t('Comment'),
467                         '$showmore' => t('show more'),
468                         '$showfewer' => t('show fewer'),
469                         '$update_interval' => $interval
470                 ));
471         }
472
473         function set_curl_code($code) {
474                 $this->curl_code = $code;
475         }
476
477         function get_curl_code() {
478                 return $this->curl_code;
479         }
480
481         function set_curl_headers($headers) {
482                 $this->curl_headers = $headers;
483         }
484
485         function get_curl_headers() {
486                 return $this->curl_headers;
487         }
488
489
490 }}
491
492 // retrieve the App structure
493 // useful in functions which require it but don't get it passed to them
494
495 if(! function_exists('get_app')) {
496 function get_app() {
497         global $a;
498         return $a;
499 }};
500
501
502 // Multi-purpose function to check variable state.
503 // Usage: x($var) or $x($array,'key')
504 // returns false if variable/key is not set
505 // if variable is set, returns 1 if has 'non-zero' value, otherwise returns 0.
506 // e.g. x('') or x(0) returns 0;
507
508 if(! function_exists('x')) {
509 function x($s,$k = NULL) {
510         if($k != NULL) {
511                 if((is_array($s)) && (array_key_exists($k,$s))) {
512                         if($s[$k])
513                                 return (int) 1;
514                         return (int) 0;
515                 }
516                 return false;
517         }
518         else {          
519                 if(isset($s)) {
520                         if($s) {
521                                 return (int) 1;
522                         }
523                         return (int) 0;
524                 }
525                 return false;
526         }
527 }}
528
529 // called from db initialisation if db is dead.
530
531 if(! function_exists('system_unavailable')) {
532 function system_unavailable() {
533         include('system_unavailable.php');
534         system_down();
535         killme();
536 }}
537
538
539
540 function clean_urls() {
541         global $a;
542 //      if($a->config['system']['clean_urls'])
543                 return true;
544 //      return false;
545 }
546
547 function z_path() {
548         global $a;
549         $base = $a->get_baseurl();
550         if(! clean_urls())
551                 $base .= '/?q=';
552         return $base;
553 }
554
555 function z_root() {
556         global $a;
557         return $a->get_baseurl();
558 }
559
560 function absurl($path) {
561         if(strpos($path,'/') === 0)
562                 return z_path() . $path;
563         return $path;
564 }
565
566
567 // Primarily involved with database upgrade, but also sets the 
568 // base url for use in cmdline programs which don't have
569 // $_SERVER variables, and synchronising the state of installed plugins.
570
571
572 if(! function_exists('check_config')) {
573 function check_config(&$a) {
574
575         $build = get_config('system','build');
576         if(! x($build))
577                 $build = set_config('system','build',DB_UPDATE_VERSION);
578
579         $url = get_config('system','url');
580
581         // if the url isn't set or the stored url is radically different 
582         // than the currently visited url, store the current value accordingly.
583         // "Radically different" ignores common variations such as http vs https 
584         // and www.example.com vs example.com.
585
586         if((! x($url)) || (! link_compare($url,$a->get_baseurl())))
587                 $url = set_config('system','url',$a->get_baseurl());
588
589         if($build != DB_UPDATE_VERSION) {
590                 $stored = intval($build);
591                 $current = intval(DB_UPDATE_VERSION);
592                 if(($stored < $current) && file_exists('update.php')) {
593
594                         load_config('database');
595
596                         // We're reporting a different version than what is currently installed.
597                         // Run any existing update scripts to bring the database up to current.
598
599                         require_once('update.php');
600
601                         // make sure that boot.php and update.php are the same release, we might be
602                         // updating right this very second and the correct version of the update.php
603                         // file may not be here yet. This can happen on a very busy site.
604
605                         if(DB_UPDATE_VERSION == UPDATE_VERSION) {
606
607                                 for($x = $stored; $x < $current; $x ++) {
608                                         if(function_exists('update_' . $x)) {
609
610                                                 // There could be a lot of processes running or about to run.
611                                                 // We want exactly one process to run the update command.
612                                                 // So store the fact that we're taking responsibility
613                                                 // after first checking to see if somebody else already has.
614
615                                                 // If the update fails or times-out completely you may need to 
616                                                 // delete the config entry to try again.
617
618                                                 if(get_config('database','update_' . $x))
619                                                         break;
620                                                 set_config('database','update_' . $x, '1');
621
622                                                 // call the specific update
623
624                                                 $func = 'update_' . $x;
625                                                 $func($a);
626                                         }
627                                 }
628                                 set_config('system','build', DB_UPDATE_VERSION);
629                         }
630                 }
631         }
632
633         /**
634          *
635          * Synchronise plugins:
636          *
637          * $a->config['system']['addon'] contains a comma-separated list of names
638          * of plugins/addons which are used on this system. 
639          * Go through the database list of already installed addons, and if we have
640          * an entry, but it isn't in the config list, call the uninstall procedure
641          * and mark it uninstalled in the database (for now we'll remove it).
642          * Then go through the config list and if we have a plugin that isn't installed,
643          * call the install procedure and add it to the database.
644          *
645          */
646
647         $r = q("SELECT * FROM `addon` WHERE `installed` = 1");
648         if(count($r))
649                 $installed = $r;
650         else
651                 $installed = array();
652
653         $plugins = get_config('system','addon');
654         $plugins_arr = array();
655
656         if($plugins)
657                 $plugins_arr = explode(',',str_replace(' ', '',$plugins));
658
659         $a->plugins = $plugins_arr;
660
661         $installed_arr = array();
662
663         if(count($installed)) {
664                 foreach($installed as $i) {
665                         if(! in_array($i['name'],$plugins_arr)) {
666                                 uninstall_plugin($i['name']);
667                         }
668                         else
669                                 $installed_arr[] = $i['name'];
670                 }
671         }
672
673         if(count($plugins_arr)) {
674                 foreach($plugins_arr as $p) {
675                         if(! in_array($p,$installed_arr)) {
676                                 install_plugin($p);
677                         }
678                 }
679         }
680
681
682         load_hooks();
683
684         return;
685 }}
686
687
688 function get_guid($size=16) {
689         $exists = true; // assume by default that we don't have a unique guid
690         do {
691                 $s = random_string($size);
692                 $r = q("select id from guid where guid = '%s' limit 1", dbesc($s));
693                 if(! count($r))
694                         $exists = false;
695         } while($exists);
696         q("insert into guid ( guid ) values ( '%s' ) ", dbesc($s));
697         return $s;
698 }
699
700
701 // wrapper for adding a login box. If $register == true provide a registration
702 // link. This will most always depend on the value of $a->config['register_policy'].
703 // returns the complete html for inserting into the page
704
705 if(! function_exists('login')) {
706 function login($register = false, $hiddens=false) {
707         $a = get_app();
708         $o = "";
709         $reg = false;
710         if ($register) {
711                 $reg = array(
712                         'title' => t('Create a New Account'),
713                         'desc' => t('Register')
714                 );
715         }
716
717         $noid = get_config('system','no_openid');
718         
719         $dest_url = $a->get_baseurl(true) . '/' . $a->query_string;
720
721         if(local_user()) {
722                 $tpl = get_markup_template("logout.tpl");
723         }
724         else {
725                 $tpl = get_markup_template("login.tpl");
726                 $_SESSION['return_url'] = $a->query_string;
727         }
728
729
730         $o .= replace_macros($tpl,array(
731
732                 '$dest_url'     => $dest_url,
733                 '$logout'       => t('Logout'),
734                 '$login'        => t('Login'),
735                 
736                 '$lname'                => array('username', t('Nickname or Email address: ') , '', ''),
737                 '$lpassword'    => array('password', t('Password: '), '', ''),
738                 
739                 '$openid'               => !$noid,
740                 '$lopenid'      => array('openid_url', t('Or login using OpenID: '),'',''),
741                 
742                 '$hiddens'      => $hiddens,
743                 
744                 '$register'     => $reg,
745                 
746                 '$lostpass'     => t('Forgot your password?'),
747                 '$lostlink'     => t('Password Reset'),
748         ));
749
750         call_hooks('login_hook',$o);
751
752         return $o;
753 }}
754
755 // Used to end the current process, after saving session state. 
756
757 if(! function_exists('killme')) {
758 function killme() {
759         session_write_close();
760         exit;
761 }}
762
763 // redirect to another URL and terminate this process.
764
765 if(! function_exists('goaway')) {
766 function goaway($s) {
767         header("Location: $s");
768         killme();
769 }}
770
771
772 // Returns the uid of locally logged in user or false.
773
774 if(! function_exists('local_user')) {
775 function local_user() {
776         if((x($_SESSION,'authenticated')) && (x($_SESSION,'uid')))
777                 return intval($_SESSION['uid']);
778         return false;
779 }}
780
781 // Returns contact id of authenticated site visitor or false
782
783 if(! function_exists('remote_user')) {
784 function remote_user() {
785         if((x($_SESSION,'authenticated')) && (x($_SESSION,'visitor_id')))
786                 return intval($_SESSION['visitor_id']);
787         return false;
788 }}
789
790 // contents of $s are displayed prominently on the page the next time
791 // a page is loaded. Usually used for errors or alerts.
792
793 if(! function_exists('notice')) {
794 function notice($s) {
795         $a = get_app();
796         if(! x($_SESSION,'sysmsg'))     $_SESSION['sysmsg'] = array();
797         if($a->interactive)
798                 $_SESSION['sysmsg'][] = $s;
799 }}
800 if(! function_exists('info')) {
801 function info($s) {
802         $a = get_app();
803         if(! x($_SESSION,'sysmsg_info')) $_SESSION['sysmsg_info'] = array();
804         if($a->interactive)
805                 $_SESSION['sysmsg_info'][] = $s;
806 }}
807
808
809 // wrapper around config to limit the text length of an incoming message
810
811 if(! function_exists('get_max_import_size')) {
812 function get_max_import_size() {
813         global $a;
814         return ((x($a->config,'max_import_size')) ? $a->config['max_import_size'] : 0 );
815 }}
816
817
818
819 /**
820  *
821  * Function : profile_load
822  * @parameter App    $a
823  * @parameter string $nickname
824  * @parameter int    $profile
825  *
826  * Summary: Loads a profile into the page sidebar. 
827  * The function requires a writeable copy of the main App structure, and the nickname
828  * of a registered local account.
829  *
830  * If the viewer is an authenticated remote viewer, the profile displayed is the
831  * one that has been configured for his/her viewing in the Contact manager.
832  * Passing a non-zero profile ID can also allow a preview of a selected profile
833  * by the owner.
834  *
835  * Profile information is placed in the App structure for later retrieval.
836  * Honours the owner's chosen theme for display. 
837  *
838  */
839
840 if(! function_exists('profile_load')) {
841 function profile_load(&$a, $nickname, $profile = 0) {
842         if(remote_user()) {
843                 $r = q("SELECT `profile-id` FROM `contact` WHERE `id` = %d LIMIT 1",
844                         intval($_SESSION['visitor_id']));
845                 if(count($r))
846                         $profile = $r[0]['profile-id'];
847         } 
848
849         $r = null;
850                           
851         if($profile) {
852                 $profile_int = intval($profile);
853                 $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `contact`.`avatar-date` AS picdate, `user`.* FROM `profile` 
854                         left join `contact` on `contact`.`uid` = `profile`.`uid` LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid`
855                         WHERE `user`.`nickname` = '%s' AND `profile`.`id` = %d and `contact`.`self` = 1 LIMIT 1",
856                         dbesc($nickname),
857                         intval($profile_int)
858                 );
859         }
860         if((! $r) && (!  count($r))) {  
861                 $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `contact`.`avatar-date` AS picdate, `user`.* FROM `profile` 
862                         left join `contact` on `contact`.`uid` = `profile`.`uid` LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid`
863                         WHERE `user`.`nickname` = '%s' AND `profile`.`is-default` = 1 and `contact`.`self` = 1 LIMIT 1",
864                         dbesc($nickname)
865                 );
866         }
867
868         if(($r === false) || (! count($r))) {
869                 notice( t('Requested profile is not available.') . EOL );
870                 $a->error = 404;
871                 return;
872         }
873         
874         // fetch user tags if this isn't the default profile
875
876         if(! $r[0]['is-default']) {
877                 $x = q("select `pub_keywords` from `profile` where uid = %d and `is-default` = 1 limit 1",
878                         intval($profile_uid)
879                 );
880                 if($x && count($x))
881                         $r[0]['pub_keywords'] = $x[0]['pub_keywords'];
882         }
883
884         $a->profile = $r[0];
885
886
887         $a->page['title'] = $a->profile['name'] . " @ " . $a->config['sitename'];
888         $_SESSION['theme'] = $a->profile['theme'];
889
890         /**
891          * load/reload current theme info
892          */
893         $theme_info_file = "view/theme/".current_theme()."/theme.php";
894         if (file_exists($theme_info_file)){
895                 require_once($theme_info_file);
896         }
897
898         if(! (x($a->page,'aside')))
899                 $a->page['aside'] = '';
900
901         if(local_user() && local_user() == $a->profile['uid']) {
902                 $a->page['aside'] .= replace_macros(get_markup_template('profile_edlink.tpl'),array(
903                         '$editprofile' => t('Edit profile'),
904                         '$profid' => $a->profile['id']
905                 ));
906         }
907
908         $block = (((get_config('system','block_public')) && (! local_user()) && (! remote_user())) ? true : false);
909
910         $a->page['aside'] .= profile_sidebar($a->profile, $block);
911
912         /*if(! $block)
913                 $a->page['aside'] .= contact_block();*/
914
915         return;
916 }}
917
918
919 /**
920  *
921  * Function: profile_sidebar
922  *
923  * Formats a profile for display in the sidebar.
924  * It is very difficult to templatise the HTML completely
925  * because of all the conditional logic.
926  *
927  * @parameter: array $profile
928  *
929  * Returns HTML string stuitable for sidebar inclusion
930  * Exceptions: Returns empty string if passed $profile is wrong type or not populated
931  *
932  */
933
934
935 if(! function_exists('profile_sidebar')) {
936 function profile_sidebar($profile, $block = 0) {
937
938         $a = get_app();
939
940         $o = '';
941         $location = false;
942         $address = false;
943         $pdesc = true;
944
945         if((! is_array($profile)) && (! count($profile)))
946                 return $o;
947
948         $profile['picdate'] = urlencode($profile['picdate']);
949
950         call_hooks('profile_sidebar_enter', $profile);
951
952         
953         // don't show connect link to yourself
954         $connect = (($profile['uid'] != local_user()) ? t('Connect')  : False);
955
956         // don't show connect link to authenticated visitors either
957
958         if((remote_user()) && ($_SESSION['visitor_visiting'] == $profile['uid']))
959                 $connect = False; 
960
961
962         // show edit profile to yourself
963         if ($profile['uid'] == local_user()) {
964                 $profile['edit'] = array($a->get_baseurl(). '/profiles', t('Profiles'),"", t('Manage/edit profiles'));
965                 
966                 $r = q("SELECT * FROM `profile` WHERE `uid` = %d",
967                                 local_user());
968                 
969                 $profile['menu'] = array(
970                         'chg_photo' => t('Change profile photo'),
971                         'cr_new' => t('Create New Profile'),
972                         'entries' => array(),
973                 );
974                                 
975                 if(count($r)) {
976
977                         foreach($r as $rr) {
978                                 $profile['menu']['entries'][] = array(
979                                         'photo' => $rr['thumb'],
980                                         'id' => $rr['id'],
981                                         'alt' => t('Profile Image'),
982                                         'profile_name' => $rr['profile-name'],
983                                         'isdefault' => $rr['is-default'],
984                                         'visibile_to_everybody' =>  t('visible to everybody'),
985                                         'edit_visibility' => t('Edit visibility'),
986                                         
987                                 );
988                         }
989
990
991                 }
992                 
993                 
994         }
995
996
997
998         
999         if((x($profile,'address') == 1) 
1000                 || (x($profile,'locality') == 1) 
1001                 || (x($profile,'region') == 1) 
1002                 || (x($profile,'postal-code') == 1) 
1003                 || (x($profile,'country-name') == 1))
1004                 $location = t('Location:');
1005
1006         $gender = ((x($profile,'gender') == 1) ? t('Gender:') : False);
1007
1008
1009         $marital = ((x($profile,'marital') == 1) ?  t('Status:') : False);
1010
1011         $homepage = ((x($profile,'homepage') == 1) ?  t('Homepage:') : False);
1012
1013         if(($profile['hidewall'] || $block) && (! local_user()) && (! remote_user())) {
1014                 $location = $pdesc = $gender = $marital = $homepage = False;
1015         }
1016
1017         $firstname = ((strpos($profile['name'],' ')) 
1018                 ? trim(substr($profile['name'],0,strpos($profile['name'],' '))) : $profile['name']);
1019         $lastname = (($firstname === $profile['name']) ? '' : trim(substr($profile['name'],strlen($firstname))));
1020
1021         $diaspora = array(
1022                 'podloc' => $a->get_baseurl(),
1023                 'searchable' => (($profile['publish'] && $profile['net-publish']) ? 'true' : 'false' ),
1024                 'nickname' => $profile['nickname'],
1025                 'fullname' => $profile['name'],
1026                 'firstname' => $firstname,
1027                 'lastname' => $lastname,
1028                 'photo300' => $a->get_baseurl() . '/photo/custom/300/' . $profile['uid'] . '.jpg',
1029                 'photo100' => $a->get_baseurl() . '/photo/custom/100/' . $profile['uid'] . '.jpg',
1030                 'photo50' => $a->get_baseurl() . '/photo/custom/50/'  . $profile['uid'] . '.jpg',
1031         );
1032
1033         if (!$block){
1034                 $contact_block = contact_block();
1035         }
1036
1037
1038         $tpl = get_markup_template('profile_vcard.tpl');
1039
1040         $o .= replace_macros($tpl, array(
1041                 '$profile' => $profile,
1042                 '$connect'  => $connect,                
1043                 '$location' => template_escape($location),
1044                 '$gender'   => $gender,
1045                 '$pdesc'        => $pdesc,
1046                 '$marital'  => $marital,
1047                 '$homepage' => $homepage,
1048                 '$diaspora' => $diaspora,
1049                 '$contact_block' => $contact_block,
1050         ));
1051
1052
1053         $arr = array('profile' => &$profile, 'entry' => &$o);
1054
1055         call_hooks('profile_sidebar', $arr);
1056
1057         return $o;
1058 }}
1059
1060
1061 if(! function_exists('get_birthdays')) {
1062 function get_birthdays() {
1063
1064         $a = get_app();
1065         $o = '';
1066
1067         if(! local_user())
1068                 return $o;
1069
1070         $bd_format = t('g A l F d') ; // 8 AM Friday January 18
1071         $bd_short = t('F d');
1072
1073         $r = q("SELECT `event`.*, `event`.`id` AS `eid`, `contact`.* FROM `event` 
1074                 LEFT JOIN `contact` ON `contact`.`id` = `event`.`cid` 
1075                 WHERE `event`.`uid` = %d AND `type` = 'birthday' AND `start` < '%s' AND `finish` > '%s' 
1076                 ORDER BY `start` ASC ",
1077                 intval(local_user()),
1078                 dbesc(datetime_convert('UTC','UTC','now + 6 days')),
1079                 dbesc(datetime_convert('UTC','UTC','now'))
1080         );
1081
1082         if($r && count($r)) {
1083                 $total = 0;
1084                 $now = strtotime('now');
1085                 $cids = array();
1086
1087                 $istoday = false;
1088                 foreach($r as $rr) {
1089                         if(strlen($rr['name']))
1090                                 $total ++;
1091                                 if((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now))
1092                                         $istoday = true;
1093                 }
1094                 $classtoday = $istoday ? ' birthday-today ' : '';
1095                 if($total) {
1096                         $o .= '<div id="birthday-notice" class="birthday-notice fakelink' . $classtoday . '" onclick=openClose(\'birthday-wrapper\'); >' . t('Birthday Reminders') . ' ' . '(' . $total . ')' . '</div>'; 
1097                         $o .= '<div id="birthday-wrapper" style="display: none;" ><div id="birthday-title">' . t('Birthdays this week:') . '</div>'; 
1098                         $o .= '<div id="birthday-title-end"></div>';
1099
1100                         foreach($r as $rr) {
1101                                 if(! strlen($rr['name']))
1102                                         continue;
1103
1104                                 // avoid duplicates
1105
1106                                 if(in_array($rr['cid'],$cids))
1107                                         continue;
1108                                 $cids[] = $rr['cid'];
1109
1110                                 $today = (((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now)) ? true : false); 
1111                                 $sparkle = '';
1112                                 $url = $rr['url'];
1113                                 if($rr['network'] === NETWORK_DFRN) {
1114                                         $sparkle = " sparkle";
1115                                         $url = $a->get_baseurl() . '/redir/'  . $rr['cid'];
1116                                 }
1117         
1118                                 $o .= '<div class="birthday-list" id="birthday-' . $rr['eid'] . '"><a class="birthday-link$sparkle" target="redir" href="' 
1119                                 . $url . '">' . $rr['name'] . '</a> ' 
1120                                 . day_translate(datetime_convert('UTC', $a->timezone, $rr['start'], $rr['adjust'] ? $bd_format : $bd_short)) . (($today) ?  ' ' . t('[today]') : '')
1121                                 . '</div>' ;
1122                         }
1123                         $o .= '</div></div>';
1124                 }
1125         }
1126         return $o;
1127 }}
1128
1129
1130 if(! function_exists('get_events')) {
1131 function get_events() {
1132
1133         require_once('include/bbcode.php');
1134
1135         $a = get_app();
1136         $o = '';
1137
1138         if(! local_user())
1139                 return $o;
1140
1141         $bd_format = t('g A l F d') ; // 8 AM Friday January 18
1142         $bd_short = t('F d');
1143
1144         $r = q("SELECT `event`.* FROM `event` 
1145                 WHERE `event`.`uid` = %d AND `type` != 'birthday' AND `start` < '%s' AND `start` > '%s'
1146                 ORDER BY `start` ASC ",
1147                 intval(local_user()),
1148                 dbesc(datetime_convert('UTC','UTC','now + 6 days')),
1149                 dbesc(datetime_convert('UTC','UTC','now - 1 days'))
1150         );
1151
1152         if($r && count($r)) {
1153                 $now = strtotime('now');
1154                 $istoday = false;
1155                 foreach($r as $rr) {
1156                         if(strlen($rr['name']))
1157                                 $total ++;
1158
1159                         $strt = datetime_convert('UTC',$rr['convert'] ? $a->timezone : 'UTC',$rr['start'],'Y-m-d');
1160                         if($strt === datetime_convert('UTC',$a->timezone,'now','Y-m-d'))
1161                                 $istoday = true;
1162                 }
1163                 $classtoday = (($istoday) ? ' event-today ' : '');
1164
1165                 $o .= '<div id="event-notice" class="birthday-notice fakelink' . $classtoday . '" onclick=openClose(\'event-wrapper\'); >' . t('Event Reminders') . ' ' . '(' . count($r) . ')' . '</div>'; 
1166                 $o .= '<div id="event-wrapper" style="display: none;" ><div id="event-title">' . t('Events this week:') . '</div>'; 
1167                 $o .= '<div id="event-title-end"></div>';
1168
1169                 foreach($r as $rr) {
1170
1171                         if($rr['adjust'])
1172                                 $md = datetime_convert('UTC',$a->timezone,$rr['start'],'Y/m\#\l\i\n\k\-j');
1173                         else
1174                                 $md = datetime_convert('UTC','UTC',$rr['start'],'Y/m\#\l\i\n\k\-j');
1175
1176                         $title = substr(strip_tags(bbcode($rr['desc'])),0,32) . '... ';
1177                         if(! $title)
1178                                 $title = t('[No description]');
1179
1180                         $strt = datetime_convert('UTC',$rr['convert'] ? $a->timezone : 'UTC',$rr['start']);
1181                         $today = ((substr($strt,0,10) === datetime_convert('UTC',$a->timezone,'now','Y-m-d')) ? true : false);  
1182
1183                         $o .= '<div class="event-list" id="event-' . $rr['eid'] . '"></a> <a href="events/' . $md . '">' . $title . '</a>' 
1184                         . day_translate(datetime_convert('UTC', $rr['adjust'] ? $a->timezone : 'UTC', $rr['start'], $bd_format)) . (($today) ?  ' ' . t('[today]') : '')
1185                         . '</div>' ;
1186                 }
1187                 $o .= '</div></div>';
1188         }
1189
1190         return $o;
1191 }}
1192
1193
1194 /**
1195  * 
1196  * Wrap calls to proc_close(proc_open()) and call hook
1197  * so plugins can take part in process :)
1198  * 
1199  * args:
1200  * $cmd program to run
1201  *  next args are passed as $cmd command line
1202  * 
1203  * e.g.: proc_run("ls","-la","/tmp");
1204  * 
1205  * $cmd and string args are surrounded with ""
1206  */
1207
1208 if(! function_exists('proc_run')) {
1209 function proc_run($cmd){
1210
1211         $a = get_app();
1212
1213         $args = func_get_args();
1214         $arr = array('args' => $args, 'run_cmd' => true);
1215
1216         call_hooks("proc_run", $arr);
1217         if(! $arr['run_cmd'])
1218                 return;
1219
1220         if(count($args) && $args[0] === 'php')
1221         $args[0] = ((x($a->config,'php_path')) && (strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
1222         foreach ($args as $arg){
1223                 $arg = escapeshellarg($arg);
1224         }
1225         $cmdline = implode($args," ");
1226         proc_close(proc_open($cmdline." &",array(),$foo));
1227 }}
1228
1229 if(! function_exists('current_theme')) {
1230 function current_theme(){
1231         $app_base_themes = array('duepuntozero', 'loozah');
1232         
1233         $a = get_app();
1234         
1235         $system_theme = ((isset($a->config['system']['theme'])) ? $a->config['system']['theme'] : '');
1236         $theme_name = ((isset($_SESSION) && x($_SESSION,'theme')) ? $_SESSION['theme'] : $system_theme);
1237         
1238         if($theme_name && file_exists('view/theme/' . $theme_name . '/style.css'))
1239                 return($theme_name);
1240         
1241         foreach($app_base_themes as $t) {
1242                 if(file_exists('view/theme/' . $t . '/style.css'))
1243                         return($t);
1244         }
1245         
1246         $fallback = glob('view/theme/*/style.css');
1247         if(count($fallback))
1248                 return (str_replace('view/theme/','', str_replace("/style.css","",$fallback[0])));
1249
1250 }}
1251
1252 /*
1253 * Return full URL to theme which is currently in effect.
1254 * Provide a sane default if nothing is chosen or the specified theme does not exist.
1255 */
1256 if(! function_exists('current_theme_url')) {
1257 function current_theme_url() {
1258         global $a;
1259         $t = current_theme();
1260         return($a->get_baseurl() . '/view/theme/' . $t . '/style.css');
1261 }}
1262
1263 if(! function_exists('feed_birthday')) {
1264 function feed_birthday($uid,$tz) {
1265
1266         /**
1267          *
1268          * Determine the next birthday, but only if the birthday is published
1269          * in the default profile. We _could_ also look for a private profile that the
1270          * recipient can see, but somebody could get mad at us if they start getting
1271          * public birthday greetings when they haven't made this info public. 
1272          *
1273          * Assuming we are able to publish this info, we are then going to convert
1274          * the start time from the owner's timezone to UTC. 
1275          *
1276          * This will potentially solve the problem found with some social networks
1277          * where birthdays are converted to the viewer's timezone and salutations from
1278          * elsewhere in the world show up on the wrong day. We will convert it to the
1279          * viewer's timezone also, but first we are going to convert it from the birthday
1280          * person's timezone to GMT - so the viewer may find the birthday starting at
1281          * 6:00PM the day before, but that will correspond to midnight to the birthday person.
1282          *
1283          */
1284
1285         $birthday = '';
1286
1287         $p = q("SELECT `dob` FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
1288                 intval($uid)
1289         );
1290
1291         if($p && count($p)) {
1292                 $tmp_dob = substr($p[0]['dob'],5);
1293                 if(intval($tmp_dob)) {
1294                         $y = datetime_convert($tz,$tz,'now','Y');
1295                         $bd = $y . '-' . $tmp_dob . ' 00:00';
1296                         $t_dob = strtotime($bd);
1297                         $now = strtotime(datetime_convert($tz,$tz,'now'));
1298                         if($t_dob < $now)
1299                                 $bd = $y + 1 . '-' . $tmp_dob . ' 00:00';
1300                         $birthday = datetime_convert($tz,'UTC',$bd,ATOM_TIME); 
1301                 }
1302         }
1303
1304         return $birthday;
1305 }}
1306
1307 if(! function_exists('is_site_admin')) {
1308 function is_site_admin() {
1309         $a = get_app();
1310         if(local_user() && x($a->user,'email') && x($a->config,'admin_email') && ($a->user['email'] === $a->config['admin_email']))
1311                 return true;
1312         return false;
1313 }}
1314
1315
1316 if(! function_exists('load_contact_links')) {
1317 function load_contact_links($uid) {
1318
1319         $a = get_app();
1320
1321         $ret = array();
1322
1323         if(! $uid || x($a->contacts,'empty'))
1324                 return;
1325
1326         $r = q("SELECT `id`,`network`,`url`,`thumb` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 ",
1327                         intval($uid)
1328         );
1329         if(count($r)) {
1330                 foreach($r as $rr){
1331                         $url = normalise_link($rr['url']);
1332                         $ret[$url] = $rr;
1333                 }
1334         }
1335         else 
1336                 $ret['empty'] = true;   
1337         $a->contacts = $ret;
1338         return;         
1339 }}
1340
1341 if(! function_exists('profile_tabs')){
1342 function profile_tabs($a, $is_owner=False, $nickname=Null){
1343         //echo "<pre>"; var_dump($a->user); killme();
1344         
1345         if (is_null($nickname))
1346                 $nickname  = $a->user['nickname'];
1347                 
1348         if(x($_GET,'tab'))
1349                 $tab = notags(trim($_GET['tab']));
1350         
1351         $url = $a->get_baseurl() . '/profile/' . $nickname;
1352
1353         $tabs = array(
1354                 array(
1355                         'label'=>t('Status'),
1356                         'url' => $url,
1357                         'sel' => ((!isset($tab)&&$a->argv[0]=='profile')?'active':''),
1358                 ),
1359                 array(
1360                         'label' => t('Profile'),
1361                         'url'   => $url.'/?tab=profile',
1362                         'sel'   => ((isset($tab) && $tab=='profile')?'active':''),
1363                 ),
1364                 array(
1365                         'label' => t('Photos'),
1366                         'url'   => $a->get_baseurl() . '/photos/' . $nickname,
1367                         'sel'   => ((!isset($tab)&&$a->argv[0]=='photos')?'active':''),
1368                 ),
1369         );
1370         
1371         if ($is_owner){
1372                  $tabs[] = array(
1373                         'label' => t('Events'),
1374                         'url'   => $a->get_baseurl() . '/events',
1375                         'sel'   =>((!isset($tab)&&$a->argv[0]=='events')?'active':''),
1376                 );
1377                 $tabs[] = array(
1378                         'label' => t('Personal Notes'),
1379                         'url'   => $a->get_baseurl() . '/notes',
1380                         'sel'   =>((!isset($tab)&&$a->argv[0]=='notes')?'active':''),
1381                 );
1382         }
1383
1384
1385         $arr = array('is_owner' => $is_owner, 'nickname' => $nickname, 'tab' => (($tab) ? $tab : false), 'tabs' => $tabs);
1386         call_hooks('profile_tabs', $arr);
1387         
1388         $tpl = get_markup_template('common_tabs.tpl');
1389
1390         return replace_macros($tpl,array('$tabs' => $arr['tabs']));
1391 }}