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