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