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