]> git.mxchange.org Git - friendica.git/blob - boot.php
Merge branch 'newui' of github.com:fabrixxm/friendika into newui
[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
10
11 define ( 'FRIENDIKA_VERSION',      '2.2.1096' );
12 define ( 'DFRN_PROTOCOL_VERSION',  '2.21'    );
13 define ( 'DB_UPDATE_VERSION',      1087      );
14
15 define ( 'EOL',                    "<br />\r\n"     );
16 define ( 'ATOM_TIME',              'Y-m-d\TH:i:s\Z' );
17
18
19 /**
20  *
21  * Image storage quality. Lower numbers save space at cost of image detail.
22  * For ease of upgrade, please do not change here. Change jpeg quality with 
23  * set_config('system','jpeg_quality',n) in .htconfig.php
24  * where n is netween 1 and 100, and with very poor results below about 50 
25  *
26  */
27
28 define ( 'JPEG_QUALITY',            100  );         
29
30 /**
31  * SSL redirection policies
32  */
33
34 define ( 'SSL_POLICY_NONE',         0 );
35 define ( 'SSL_POLICY_FULL',         1 );
36 define ( 'SSL_POLICY_SELFSIGN',     2 );
37
38
39 /**
40  * log levels
41  */
42
43 define ( 'LOGGER_NORMAL',          0 );
44 define ( 'LOGGER_TRACE',           1 );
45 define ( 'LOGGER_DEBUG',           2 );
46 define ( 'LOGGER_DATA',            3 );
47 define ( 'LOGGER_ALL',             4 );
48
49 /**
50  * registration policies
51  */
52
53 define ( 'REGISTER_CLOSED',        0 );
54 define ( 'REGISTER_APPROVE',       1 );
55 define ( 'REGISTER_OPEN',          2 );
56
57 /**
58  * relationship types
59  */
60
61 define ( 'CONTACT_IS_FOLLOWER', 1);
62 define ( 'CONTACT_IS_SHARING',  2);
63 define ( 'CONTACT_IS_FRIEND',   3);
64
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 CONTACT_IS_SHARING, (readonly)
80  * PAGE_COMMUNITY automatically approves all friend requests as CONTACT_IS_SHARING, 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 (CONTACT_IS_FRIEND). 
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 = Array();
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(
287                         "include/$this->hostname" . PATH_SEPARATOR 
288                         . 'include' . PATH_SEPARATOR 
289                         . 'library' . PATH_SEPARATOR 
290                         . 'library/phpsec' . PATH_SEPARATOR 
291                         . '.' );
292
293                 if((x($_SERVER,'QUERY_STRING')) && substr($_SERVER['QUERY_STRING'],0,2) === "q=")
294                         $this->query_string = substr($_SERVER['QUERY_STRING'],2);
295                 if(x($_GET,'q'))
296                         $this->cmd = trim($_GET['q'],'/\\');
297
298
299
300                 /**
301                  *
302                  * Break the URL path into C style argc/argv style arguments for our
303                  * modules. Given "http://example.com/module/arg1/arg2", $this->argc
304                  * will be 3 (integer) and $this->argv will contain:
305                  *   [0] => 'module'
306                  *   [1] => 'arg1'
307                  *   [2] => 'arg2'
308                  *
309                  *
310                  * There will always be one argument. If provided a naked domain
311                  * URL, $this->argv[0] is set to "home".
312                  *
313                  */
314
315                 $this->argv = explode('/',$this->cmd);
316                 $this->argc = count($this->argv);
317                 if((array_key_exists('0',$this->argv)) && strlen($this->argv[0])) {
318                         $this->module = str_replace(".", "_", $this->argv[0]);
319                 }
320                 else {
321                         $this->argc = 1;
322                         $this->argv = array('home');
323                         $this->module = 'home';
324                 }
325
326                 /**
327                  * Special handling for the webfinger/lrdd host XRD file
328                  */
329
330                 if($this->cmd === '.well-known/host-meta') {
331                         $this->argc = 1;
332                         $this->argv = array('hostxrd');
333                         $this->module = 'hostxrd';
334                 }
335
336                 /**
337                  * See if there is any page number information, and initialise 
338                  * pagination
339                  */
340
341                 $this->pager['page'] = ((x($_GET,'page')) ? $_GET['page'] : 1);
342                 $this->pager['itemspage'] = 50;
343                 $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
344                 $this->pager['total'] = 0;
345         }
346
347         function get_baseurl($ssl = false) {
348
349                 $scheme = $this->scheme;
350
351                 if(x($this->config,'ssl_policy')) {
352                         if(($ssl) || ($this->config['ssl_policy'] == SSL_POLICY_FULL)) 
353                                 $scheme = 'https';
354                         if(($this->config['ssl_policy'] == SSL_POLICY_SELFSIGN) && (local_user() || x($_POST,'auth-params')))
355                                 $scheme = 'https';
356                 }
357
358                 $this->baseurl = $scheme . "://" . $this->hostname . ((isset($this->path) && strlen($this->path)) ? '/' . $this->path : '' );
359                 return $this->baseurl;
360         }
361
362         function set_baseurl($url) {
363                 $parsed = @parse_url($url);
364
365                 $this->baseurl = $url;
366
367                 if($parsed) {           
368                         $this->scheme = $parsed['scheme'];
369
370                         $this->hostname = $parsed['host'];
371                         if(x($parsed,'port'))
372                                 $this->hostname .= ':' . $parsed['port'];
373                         if(x($parsed,'path'))
374                                 $this->path = trim($parsed['path'],'\\/');
375                 }
376
377         }
378
379         function get_hostname() {
380                 return $this->hostname;
381         }
382
383         function set_hostname($h) {
384                 $this->hostname = $h;
385         }
386
387         function set_path($p) {
388                 $this->path = trim(trim($p),'/');
389         } 
390
391         function get_path() {
392                 return $this->path;
393         }
394
395         function set_pager_total($n) {
396                 $this->pager['total'] = intval($n);
397         }
398
399         function set_pager_itemspage($n) {
400                 $this->pager['itemspage'] = intval($n);
401                 $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
402
403         } 
404
405         function init_pagehead() {
406                 $this->page['title'] = $this->config['sitename'];
407                 $tpl = file_get_contents('view/head.tpl');
408                 $this->page['htmlhead'] = replace_macros($tpl,array(
409                         '$baseurl' => $this->get_baseurl(), // FIXME for z_path!!!!
410                         '$generator' => 'Friendika' . ' ' . FRIENDIKA_VERSION,
411                         '$delitem' => t('Delete this item?'),
412                         '$comment' => t('Comment')
413                 ));
414         }
415
416         function set_curl_code($code) {
417                 $this->curl_code = $code;
418         }
419
420         function get_curl_code() {
421                 return $this->curl_code;
422         }
423
424         function set_curl_headers($headers) {
425                 $this->curl_headers = $headers;
426         }
427
428         function get_curl_headers() {
429                 return $this->curl_headers;
430         }
431
432
433 }}
434
435 // retrieve the App structure
436 // useful in functions which require it but don't get it passed to them
437
438 if(! function_exists('get_app')) {
439 function get_app() {
440         global $a;
441         return $a;
442 }};
443
444
445 // Multi-purpose function to check variable state.
446 // Usage: x($var) or $x($array,'key')
447 // returns false if variable/key is not set
448 // if variable is set, returns 1 if has 'non-zero' value, otherwise returns 0.
449 // e.g. x('') or x(0) returns 0;
450
451 if(! function_exists('x')) {
452 function x($s,$k = NULL) {
453         if($k != NULL) {
454                 if((is_array($s)) && (array_key_exists($k,$s))) {
455                         if($s[$k])
456                                 return (int) 1;
457                         return (int) 0;
458                 }
459                 return false;
460         }
461         else {          
462                 if(isset($s)) {
463                         if($s) {
464                                 return (int) 1;
465                         }
466                         return (int) 0;
467                 }
468                 return false;
469         }
470 }}
471
472 // called from db initialisation if db is dead.
473
474 if(! function_exists('system_unavailable')) {
475 function system_unavailable() {
476         include('system_unavailable.php');
477         system_down();
478         killme();
479 }}
480
481
482
483 function clean_urls() {
484         global $a;
485 //      if($a->config['system']['clean_urls'])
486                 return true;
487 //      return false;
488 }
489
490 function z_path() {
491         global $a;
492         $base = $a->get_baseurl();
493         if(! clean_urls())
494                 $base .= '/?q=';
495         return $base;
496 }
497
498 function z_root() {
499         global $a;
500         return $a->get_baseurl();
501 }
502
503 function absurl($path) {
504         if(strpos($path,'/') === 0)
505                 return z_path() . $path;
506         return $path;
507 }
508
509
510 // Primarily involved with database upgrade, but also sets the 
511 // base url for use in cmdline programs which don't have
512 // $_SERVER variables, and synchronising the state of installed plugins.
513
514
515 if(! function_exists('check_config')) {
516 function check_config(&$a) {
517
518         $build = get_config('system','build');
519         if(! x($build))
520                 $build = set_config('system','build',DB_UPDATE_VERSION);
521
522         $url = get_config('system','url');
523
524         // if the url isn't set or the stored url is radically different 
525         // than the currently visited url, store the current value accordingly.
526         // "Radically different" ignores common variations such as http vs https 
527         // and www.example.com vs example.com.
528
529         if((! x($url)) || (! link_compare($url,$a->get_baseurl())))
530                 $url = set_config('system','url',$a->get_baseurl());
531
532         if($build != DB_UPDATE_VERSION) {
533                 $stored = intval($build);
534                 $current = intval(DB_UPDATE_VERSION);
535                 if(($stored < $current) && file_exists('update.php')) {
536
537                         // We're reporting a different version than what is currently installed.
538                         // Run any existing update scripts to bring the database up to current.
539
540                         require_once('update.php');
541
542                         // make sure that boot.php and update.php are the same release, we might be
543                         // updating right this very second and the correct version of the update.php
544                         // file may not be here yet. This can happen on a very busy site.
545
546                         if(DB_UPDATE_VERSION == UPDATE_VERSION) {
547
548                                 for($x = $stored; $x < $current; $x ++) {
549                                         if(function_exists('update_' . $x)) {
550                                                 $func = 'update_' . $x;
551                                                 $func($a);
552                                         }
553                                 }
554                                 set_config('system','build', DB_UPDATE_VERSION);
555                         }
556                 }
557         }
558
559         /**
560          *
561          * Synchronise plugins:
562          *
563          * $a->config['system']['addon'] contains a comma-separated list of names
564          * of plugins/addons which are used on this system. 
565          * Go through the database list of already installed addons, and if we have
566          * an entry, but it isn't in the config list, call the uninstall procedure
567          * and mark it uninstalled in the database (for now we'll remove it).
568          * Then go through the config list and if we have a plugin that isn't installed,
569          * call the install procedure and add it to the database.
570          *
571          */
572
573         $r = q("SELECT * FROM `addon` WHERE `installed` = 1");
574         if(count($r))
575                 $installed = $r;
576         else
577                 $installed = array();
578
579         $plugins = get_config('system','addon');
580         $plugins_arr = array();
581
582         if($plugins)
583                 $plugins_arr = explode(',',str_replace(' ', '',$plugins));
584
585         $a->plugins = $plugins_arr;
586
587         $installed_arr = array();
588
589         if(count($installed)) {
590                 foreach($installed as $i) {
591                         if(! in_array($i['name'],$plugins_arr)) {
592                                 uninstall_plugin($i['name']);
593                         }
594                         else
595                                 $installed_arr[] = $i['name'];
596                 }
597         }
598
599         if(count($plugins_arr)) {
600                 foreach($plugins_arr as $p) {
601                         if(! in_array($p,$installed_arr)) {
602                                 install_plugin($p);
603                         }
604                 }
605         }
606
607
608         load_hooks();
609
610         return;
611 }}
612
613
614 function get_guid($size=16) {
615         $exists = true; // assume by default that we don't have a unique guid
616         do {
617                 $s = random_string($size);
618                 $r = q("select id from guid where guid = '%s' limit 1", dbesc($s));
619                 if(! count($r))
620                         $exists = false;
621         } while($exists);
622         q("insert into guid ( guid ) values ( '%s' ) ", dbesc($s));
623         return $s;
624 }
625
626
627 // wrapper for adding a login box. If $register == true provide a registration
628 // link. This will most always depend on the value of $a->config['register_policy'].
629 // returns the complete html for inserting into the page
630
631 if(! function_exists('login')) {
632 function login($register = false) {
633         $o = "";
634         $register_tpl = (($register) ? get_markup_template("register-link.tpl") : "");
635         
636         $register_html = replace_macros($register_tpl,array(
637                 '$title' => t('Create a New Account'),
638                 '$desc' => t('Register')
639         ));
640
641         $noid = get_config('system','no_openid');
642         if($noid) {
643                 $classname = 'no-openid';
644                 $namelabel = t('Nickname or Email address: ');
645                 $passlabel = t('Password: ');
646                 $login     = t('Login');
647         }
648         else {
649                 $classname = 'openid';
650                 $namelabel = t('Nickname/Email/OpenID: ');
651                 $passlabel = t("Password \x28if not OpenID\x29: ");
652                 $login     = t('Login');
653         }
654         $lostpass = t('Forgot your password?');
655         $lostlink = t('Password Reset');
656
657         if(local_user()) {
658                 $tpl = get_markup_template("logout.tpl");
659         }
660         else {
661                 $tpl = get_markup_template("login.tpl");
662
663         }
664
665         $o = '<script type="text/javascript"> $(document).ready(function() { $("#login-name").focus();} );</script>';   
666
667         $o .= replace_macros($tpl,array(
668                 '$logout'        => t('Logout'),
669                 '$register_html' => $register_html, 
670                 '$classname'     => $classname,
671                 '$namelabel'     => $namelabel,
672                 '$passlabel'     => $passlabel,
673                 '$login'         => $login,
674                 '$lostpass'      => $lostpass,
675                 '$lostlink'      => $lostlink 
676         ));
677
678         call_hooks('login_hook',$o);
679
680         return $o;
681 }}
682
683 // Used to end the current process, after saving session state. 
684
685 if(! function_exists('killme')) {
686 function killme() {
687         session_write_close();
688         exit;
689 }}
690
691 // redirect to another URL and terminate this process.
692
693 if(! function_exists('goaway')) {
694 function goaway($s) {
695         header("Location: $s");
696         killme();
697 }}
698
699
700 // Returns the uid of locally logged in user or false.
701
702 if(! function_exists('local_user')) {
703 function local_user() {
704         if((x($_SESSION,'authenticated')) && (x($_SESSION,'uid')))
705                 return intval($_SESSION['uid']);
706         return false;
707 }}
708
709 // Returns contact id of authenticated site visitor or false
710
711 if(! function_exists('remote_user')) {
712 function remote_user() {
713         if((x($_SESSION,'authenticated')) && (x($_SESSION,'visitor_id')))
714                 return intval($_SESSION['visitor_id']);
715         return false;
716 }}
717
718 // contents of $s are displayed prominently on the page the next time
719 // a page is loaded. Usually used for errors or alerts.
720
721 if(! function_exists('notice')) {
722 function notice($s) {
723         $a = get_app();
724         if(! x($_SESSION,'sysmsg'))     $_SESSION['sysmsg'] = array();
725         if($a->interactive)
726                 $_SESSION['sysmsg'][] = $s;
727 }}
728 if(! function_exists('info')) {
729 function info($s) {
730         $a = get_app();
731         if(! x($_SESSION,'sysmsg_info')) $_SESSION['sysmsg_info'] = array();
732         if($a->interactive)
733                 $_SESSION['sysmsg_info'][] = $s;
734 }}
735
736
737 // wrapper around config to limit the text length of an incoming message
738
739 if(! function_exists('get_max_import_size')) {
740 function get_max_import_size() {
741         global $a;
742         return ((x($a->config,'max_import_size')) ? $a->config['max_import_size'] : 0 );
743 }}
744
745
746
747 /**
748  *
749  * Function : profile_load
750  * @parameter App    $a
751  * @parameter string $nickname
752  * @parameter int    $profile
753  *
754  * Summary: Loads a profile into the page sidebar. 
755  * The function requires a writeable copy of the main App structure, and the nickname
756  * of a registered local account.
757  *
758  * If the viewer is an authenticated remote viewer, the profile displayed is the
759  * one that has been configured for his/her viewing in the Contact manager.
760  * Passing a non-zero profile ID can also allow a preview of a selected profile
761  * by the owner.
762  *
763  * Profile information is placed in the App structure for later retrieval.
764  * Honours the owner's chosen theme for display. 
765  *
766  */
767
768 if(! function_exists('profile_load')) {
769 function profile_load(&$a, $nickname, $profile = 0) {
770         if(remote_user()) {
771                 $r = q("SELECT `profile-id` FROM `contact` WHERE `id` = %d LIMIT 1",
772                         intval($_SESSION['visitor_id']));
773                 if(count($r))
774                         $profile = $r[0]['profile-id'];
775         } 
776
777         $r = null;
778
779         if($profile) {
780                 $profile_int = intval($profile);
781                 $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `user`.* FROM `profile` 
782                         LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid`
783                         WHERE `user`.`nickname` = '%s' AND `profile`.`id` = %d LIMIT 1",
784                         dbesc($nickname),
785                         intval($profile_int)
786                 );
787         }
788         if(! count($r)) {       
789                 $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `user`.* FROM `profile` 
790                         LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid`
791                         WHERE `user`.`nickname` = '%s' AND `profile`.`is-default` = 1 LIMIT 1",
792                         dbesc($nickname)
793                 );
794         }
795
796         if(($r === false) || (! count($r))) {
797                 notice( t('No profile') . EOL );
798                 $a->error = 404;
799                 return;
800         }
801
802         $a->profile = $r[0];
803
804
805         $a->page['title'] = $a->profile['name'] . " @ " . $a->config['sitename'];
806         $_SESSION['theme'] = $a->profile['theme'];
807
808         if(! (x($a->page,'aside')))
809                 $a->page['aside'] = '';
810
811         $block = (((get_config('system','block_public')) && (! local_user()) && (! remote_user())) ? true : false);
812
813         $a->page['aside'] .= profile_sidebar($a->profile, $block);
814
815         /*if(! $block)
816                 $a->page['aside'] .= contact_block();*/
817
818         return;
819 }}
820
821
822 /**
823  *
824  * Function: profile_sidebar
825  *
826  * Formats a profile for display in the sidebar.
827  * It is very difficult to templatise the HTML completely
828  * because of all the conditional logic.
829  *
830  * @parameter: array $profile
831  *
832  * Returns HTML string stuitable for sidebar inclusion
833  * Exceptions: Returns empty string if passed $profile is wrong type or not populated
834  *
835  */
836
837
838 if(! function_exists('profile_sidebar')) {
839 function profile_sidebar($profile, $block = 0) {
840
841         $a = get_app();
842
843         $o = '';
844         $location = false;
845         $address = false;
846         $pdesc = true;
847
848         if((! is_array($profile)) && (! count($profile)))
849                 return $o;
850
851         call_hooks('profile_sidebar_enter', $profile);
852
853         
854         // don't show connect link to yourself
855         $connect = (($profile['uid'] != local_user()) ? t('Connect')  : False);
856
857         // don't show connect link to authenticated visitors either
858
859         if((remote_user()) && ($_SESSION['visitor_visiting'] == $profile['uid']))
860                 $connect = False; 
861
862
863         // show edit profile to yourself
864         if ($profile['uid'] == local_user()) {
865                 $profile['edit'] = array($a->get_baseurl(). '/profiles', t('Profiles'),"", t('Manage/edit profiles'));
866                 
867                 $r = q("SELECT * FROM `profile` WHERE `uid` = %d",
868                                 local_user());
869                 
870                 $profile['menu'] = array(
871                         'chg_photo' => t('Change profile photo'),
872                         'cr_new' => t('Create New Profile'),
873                         'entries' => array(),
874                 );
875                                 
876                 if(count($r)) {
877
878                         foreach($r as $rr) {
879                                 $profile['menu']['entries'][] = array(
880                                         'photo' => $rr['thumb'],
881                                         'id' => $rr['id'],
882                                         'alt' => t('Profile Image'),
883                                         'profile_name' => $rr['profile-name'],
884                                         'isdefault' => $rr['is-default'],
885                                         'visibile_to_everybody' =>  t('visible to everybody'),
886                                         'edit_visibility' => t('Edit visibility'),
887                                         
888                                 );
889                         }
890
891
892                 }
893                 
894                 
895         }
896
897
898
899         
900         if((x($profile,'address') == 1) 
901                 || (x($profile,'locality') == 1) 
902                 || (x($profile,'region') == 1) 
903                 || (x($profile,'postal-code') == 1) 
904                 || (x($profile,'country-name') == 1))
905                 $location = t('Location:');
906
907         $gender = ((x($profile,'gender') == 1) ? t('Gender:') : False);
908
909
910         $marital = ((x($profile,'marital') == 1) ?  t('Status:') : False);
911
912         $homepage = ((x($profile,'homepage') == 1) ?  t('Homepage:') : False);
913
914         if(($profile['hidewall'] || $block) && (! local_user()) && (! remote_user())) {
915                 $location = $pdesc = $connect = $gender = $marital = $homepage = False;
916         }
917
918         $diaspora = array(
919                 'podloc' => $a->get_baseurl(),
920                 'searchable' => (($profile['publish'] && $profile['net-publish']) ? 'true' : 'false' ),
921                 'nickname ' => $profile['nickname'],
922                 'fullname' => $profile['name'],
923                 'photo300' => $a->get_baseurl() . '/photo/custom/300/' . $profile['uid'] . '.jpg',
924                 'photo100' => $a->get_baseurl() . '/photo/custom/100/' . $profile['uid'] . '.jpg',
925                 'photo50' => $a->get_baseurl() . '/photo/custom/50/'  . $profile['uid'] . '.jpg',
926         );
927
928         if (!$block){
929                 $contact_block = contact_block();
930         }
931
932
933         $tpl = get_markup_template('profile_vcard.tpl');
934
935         $o .= replace_macros($tpl, array(
936                 '$profile' => $profile,
937                 '$connect'  => $connect,                
938                 '$location' => $location,
939                 '$gender'   => $gender,
940                 '$pdesc'        => $pdesc,
941                 '$marital'  => $marital,
942                 '$homepage' => $homepage,
943                 '$diaspora' => $diaspora,
944                 '$contact_block' => $contact_block,
945         ));
946
947
948         $arr = array('profile' => &$profile, 'entry' => &$o);
949
950         call_hooks('profile_sidebar', $arr);
951
952         return $o;
953 }}
954
955
956 if(! function_exists('get_birthdays')) {
957 function get_birthdays() {
958
959         $a = get_app();
960         $o = '';
961
962         if(! local_user())
963                 return $o;
964
965         $bd_format = t('g A l F d') ; // 8 AM Friday January 18
966
967         $r = q("SELECT `event`.*, `event`.`id` AS `eid`, `contact`.* FROM `event` 
968                 LEFT JOIN `contact` ON `contact`.`id` = `event`.`cid` 
969                 WHERE `event`.`uid` = %d AND `type` = 'birthday' AND `start` < '%s' AND `finish` > '%s' 
970                 ORDER BY `start` DESC ",
971                 intval(local_user()),
972                 dbesc(datetime_convert('UTC','UTC','now + 6 days')),
973                 dbesc(datetime_convert('UTC','UTC','now'))
974         );
975
976         if($r && count($r)) {
977                 $total = 0;
978                 foreach($r as $rr)
979                         if(strlen($rr['name']))
980                                 $total ++;
981
982                 if($total) {
983                         $o .= '<div id="birthday-notice" class="birthday-notice fakelink" onclick=openClose(\'birthday-wrapper\'); >' . t('Birthday Reminders') . ' ' . '(' . $total . ')' . '</div>'; 
984                         $o .= '<div id="birthday-wrapper" style="display: none;" ><div id="birthday-title">' . t('Birthdays this week:') . '</div>'; 
985                         $o .= '<div id="birthday-adjust">' . t("\x28Adjusted for local time\x29") . '</div>';
986                         $o .= '<div id="birthday-title-end"></div>';
987
988                         foreach($r as $rr) {
989                                 if(! strlen($rr['name']))
990                                         continue;
991                                 $now = strtotime('now');
992                                 $today = (((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now)) ? true : false); 
993         
994                                 $o .= '<div class="birthday-list" id="birthday-' . $rr['eid'] . '"><a class="sparkle" href="' 
995                                 . $a->get_baseurl() . '/redir/'  . $rr['cid'] . '">' . $rr['name'] . '</a> ' 
996                                 . day_translate(datetime_convert('UTC', $a->timezone, $rr['start'], $bd_format)) . (($today) ?  ' ' . t('[today]') : '')
997                                 . '</div>' ;
998                         }
999                         $o .= '</div></div>';
1000                 }
1001         }
1002         return $o;
1003 }}
1004
1005
1006 /**
1007  * 
1008  * Wrap calls to proc_close(proc_open()) and call hook
1009  * so plugins can take part in process :)
1010  * 
1011  * args:
1012  * $cmd program to run
1013  *  next args are passed as $cmd command line
1014  * 
1015  * e.g.: proc_run("ls","-la","/tmp");
1016  * 
1017  * $cmd and string args are surrounded with ""
1018  */
1019
1020 if(! function_exists('proc_run')) {
1021 function proc_run($cmd){
1022
1023         $a = get_app();
1024
1025         $args = func_get_args();
1026         $arr = array('args' => $args, 'run_cmd' => true);
1027
1028         call_hooks("proc_run", $arr);
1029         if(! $arr['run_cmd'])
1030                 return;
1031
1032         if(count($args) && $args[0] === 'php')
1033         $args[0] = ((x($a->config,'php_path')) && (strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
1034         foreach ($args as $arg){
1035                 $arg = escapeshellarg($arg);
1036         }
1037         $cmdline = implode($args," ");
1038         proc_close(proc_open($cmdline." &",array(),$foo));
1039 }}
1040
1041 if(! function_exists('current_theme')) {
1042 function current_theme(){
1043         $app_base_themes = array('duepuntozero', 'loozah');
1044         
1045         $a = get_app();
1046         
1047         $system_theme = ((isset($a->config['system']['theme'])) ? $a->config['system']['theme'] : '');
1048         $theme_name = ((is_array($_SESSION) && x($_SESSION,'theme')) ? $_SESSION['theme'] : $system_theme);
1049         
1050         if($theme_name && file_exists('view/theme/' . $theme_name . '/style.css'))
1051                 return($theme_name);
1052         
1053         foreach($app_base_themes as $t) {
1054                 if(file_exists('view/theme/' . $t . '/style.css'))
1055                         return($t);
1056         }
1057         
1058         $fallback = glob('view/theme/*/style.css');
1059         if(count($fallback))
1060                 return (str_replace('view/theme/','', str_replace("/style.css","",$fallback[0])));
1061
1062 }}
1063
1064 /*
1065 * Return full URL to theme which is currently in effect.
1066 * Provide a sane default if nothing is chosen or the specified theme does not exist.
1067 */
1068 if(! function_exists('current_theme_url')) {
1069 function current_theme_url() {
1070         global $a;
1071         $t = current_theme();
1072         return($a->get_baseurl() . '/view/theme/' . $t . '/style.css');
1073 }}
1074
1075 if(! function_exists('feed_birthday')) {
1076 function feed_birthday($uid,$tz) {
1077
1078         /**
1079          *
1080          * Determine the next birthday, but only if the birthday is published
1081          * in the default profile. We _could_ also look for a private profile that the
1082          * recipient can see, but somebody could get mad at us if they start getting
1083          * public birthday greetings when they haven't made this info public. 
1084          *
1085          * Assuming we are able to publish this info, we are then going to convert
1086          * the start time from the owner's timezone to UTC. 
1087          *
1088          * This will potentially solve the problem found with some social networks
1089          * where birthdays are converted to the viewer's timezone and salutations from
1090          * elsewhere in the world show up on the wrong day. We will convert it to the
1091          * viewer's timezone also, but first we are going to convert it from the birthday
1092          * person's timezone to GMT - so the viewer may find the birthday starting at
1093          * 6:00PM the day before, but that will correspond to midnight to the birthday person.
1094          *
1095          */
1096
1097         $birthday = '';
1098
1099         $p = q("SELECT `dob` FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
1100                 intval($uid)
1101         );
1102
1103         if($p && count($p)) {
1104                 $tmp_dob = substr($p[0]['dob'],5);
1105                 if(intval($tmp_dob)) {
1106                         $y = datetime_convert($tz,$tz,'now','Y');
1107                         $bd = $y . '-' . $tmp_dob . ' 00:00';
1108                         $t_dob = strtotime($bd);
1109                         $now = strtotime(datetime_convert($tz,$tz,'now'));
1110                         if($t_dob < $now)
1111                                 $bd = $y + 1 . '-' . $tmp_dob . ' 00:00';
1112                         $birthday = datetime_convert($tz,'UTC',$bd,ATOM_TIME); 
1113                 }
1114         }
1115
1116         return $birthday;
1117 }}
1118
1119 if(! function_exists('is_site_admin')) {
1120 function is_site_admin() {
1121         $a = get_app();
1122         if(local_user() && x($a->user,'email') && x($a->config,'admin_email') && ($a->user['email'] === $a->config['admin_email']))
1123                 return true;
1124         return false;
1125 }}
1126
1127
1128 if(! function_exists('load_contact_links')) {
1129 function load_contact_links($uid) {
1130
1131         $a = get_app();
1132
1133         $ret = array();
1134
1135         if(! $uid || x($a->contacts,'empty'))
1136                 return;
1137
1138         $r = q("SELECT `id`,`network`,`url`,`thumb` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 ",
1139                         intval($uid)
1140         );
1141         if(count($r)) {
1142                 foreach($r as $rr){
1143                         $url = normalise_link($rr['url']);
1144                         $ret[$url] = $rr;
1145                 }
1146         }
1147         else 
1148                 $ret['empty'] = true;   
1149         $a->contacts = $ret;
1150         return;         
1151 }}
1152