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