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