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