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