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