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