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