]> git.mxchange.org Git - friendica.git/blob - boot.php
old location might vanish, vinzv moved the GS API docs over here
[friendica.git] / boot.php
1 <?php
2 /** @file boot.php
3  *
4  * This file defines some global constants and includes the central App class.
5  */
6
7 /**
8  * Friendica
9  * 
10  * Friendica is a communications platform for integrated social communications
11  * utilising decentralised communications and linkage to several indie social
12  * projects - as well as popular mainstream providers.
13  * 
14  * Our mission is to free our friends and families from the clutches of
15  * data-harvesting corporations, and pave the way to a future where social
16  * communications are free and open and flow between alternate providers as
17  * easily as email does today.
18  */
19
20 require_once('include/autoloader.php');
21  
22 require_once('include/config.php');
23 require_once('include/network.php');
24 require_once('include/plugin.php');
25 require_once('include/text.php');
26 require_once('include/datetime.php');
27 require_once('include/pgettext.php');
28 require_once('include/nav.php');
29 require_once('include/cache.php');
30 require_once('library/Mobile_Detect/Mobile_Detect.php');
31 require_once('include/features.php');
32 require_once('include/identity.php');
33
34 require_once('update.php');
35 require_once('include/dbstructure.php');
36
37 define ( 'FRIENDICA_PLATFORM',     'Friendica');
38 define ( 'FRIENDICA_CODENAME',     'Asparagus');
39 define ( 'FRIENDICA_VERSION',      '3.5-dev' );
40 define ( 'DFRN_PROTOCOL_VERSION',  '2.23'    );
41 define ( 'DB_UPDATE_VERSION',      1194      );
42
43 /**
44  * @brief Constant with a HTML line break.
45  *
46  * Contains a HTML line break (br) element and a real carriage return with line
47  * feed for the source.
48  * This can be used in HTML and JavaScript where needed a line break.
49  */
50 define ( 'EOL',                    "<br />\r\n"     );
51 define ( 'ATOM_TIME',              'Y-m-d\TH:i:s\Z' );
52
53
54 /**
55  * @brief Image storage quality.
56  * 
57  * Lower numbers save space at cost of image detail.
58  * For ease of upgrade, please do not change here. Change jpeg quality with
59  * $a->config['system']['jpeg_quality'] = n;
60  * in .htconfig.php, where n is netween 1 and 100, and with very poor results
61  * below about 50
62  *
63  */
64
65 define ( 'JPEG_QUALITY',            100  );
66 /**
67  * $a->config['system']['png_quality'] from 0 (uncompressed) to 9
68  */
69 define ( 'PNG_QUALITY',             8  );
70
71 /**
72  *
73  * An alternate way of limiting picture upload sizes. Specify the maximum pixel
74  * length that pictures are allowed to be (for non-square pictures, it will apply
75  * to the longest side). Pictures longer than this length will be resized to be
76  * this length (on the longest side, the other side will be scaled appropriately).
77  * Modify this value using
78  *
79  *    $a->config['system']['max_image_length'] = n;
80  *
81  * in .htconfig.php
82  *
83  * If you don't want to set a maximum length, set to -1. The default value is
84  * defined by 'MAX_IMAGE_LENGTH' below.
85  *
86  */
87 define ( 'MAX_IMAGE_LENGTH',        -1  );
88
89
90 /**
91  * Not yet used
92  */
93
94 define ( 'DEFAULT_DB_ENGINE',  'MyISAM'  );
95
96 /**
97  * @name SSL Policy
98  * 
99  * SSL redirection policies
100  * @{
101  */
102 define ( 'SSL_POLICY_NONE',         0 );
103 define ( 'SSL_POLICY_FULL',         1 );
104 define ( 'SSL_POLICY_SELFSIGN',     2 );
105 /* @}*/
106
107 /**
108  * @name Logger
109  * 
110  * log levels
111  * @{
112  */
113 define ( 'LOGGER_NORMAL',          0 );
114 define ( 'LOGGER_TRACE',           1 );
115 define ( 'LOGGER_DEBUG',           2 );
116 define ( 'LOGGER_DATA',            3 );
117 define ( 'LOGGER_ALL',             4 );
118 /* @}*/
119
120 /**
121  * @name Cache
122  * 
123  * Cache levels
124  * @{
125  */
126 define ( 'CACHE_MONTH',            0 );
127 define ( 'CACHE_WEEK',             1 );
128 define ( 'CACHE_DAY',              2 );
129 define ( 'CACHE_HOUR',             3 );
130 /* @}*/
131
132 /**
133  * @name Register
134  * 
135  * Registration policies
136  * @{
137  */
138 define ( 'REGISTER_CLOSED',        0 );
139 define ( 'REGISTER_APPROVE',       1 );
140 define ( 'REGISTER_OPEN',          2 );
141 /** @}*/
142
143 /**
144  * @name Contact_is
145  * 
146  * Relationship types
147  * @{
148  */
149 define ( 'CONTACT_IS_FOLLOWER', 1);
150 define ( 'CONTACT_IS_SHARING',  2);
151 define ( 'CONTACT_IS_FRIEND',   3);
152 /** @}*/
153
154 /**
155  * @name Update
156  * 
157  * DB update return values
158  * @{
159  */
160 define ( 'UPDATE_SUCCESS', 0);
161 define ( 'UPDATE_FAILED',  1);
162 /** @}*/
163
164
165 /**
166  * @name page/profile types
167  *
168  * PAGE_NORMAL is a typical personal profile account
169  * PAGE_SOAPBOX automatically approves all friend requests as CONTACT_IS_SHARING, (readonly)
170  * PAGE_COMMUNITY automatically approves all friend requests as CONTACT_IS_SHARING, but with
171  *      write access to wall and comments (no email and not included in page owner's ACL lists)
172  * PAGE_FREELOVE automatically approves all friend requests as full friends (CONTACT_IS_FRIEND).
173  *
174  * @{
175  */
176 define ( 'PAGE_NORMAL',            0 );
177 define ( 'PAGE_SOAPBOX',           1 );
178 define ( 'PAGE_COMMUNITY',         2 );
179 define ( 'PAGE_FREELOVE',          3 );
180 define ( 'PAGE_BLOG',              4 );
181 define ( 'PAGE_PRVGROUP',          5 );
182 /** @}*/
183
184 /**
185  * @name CP
186  * 
187  * Type of the community page
188  * @{
189  */
190 define ( 'CP_NO_COMMUNITY_PAGE',   -1 );
191 define ( 'CP_USERS_ON_SERVER',     0 );
192 define ( 'CP_GLOBAL_COMMUNITY',    1 );
193 /** @}*/
194
195 /**
196  * @name Network
197  * 
198  * Network and protocol family types
199  * @{
200  */
201 define ( 'NETWORK_DFRN',             'dfrn');    // Friendica, Mistpark, other DFRN implementations
202 define ( 'NETWORK_ZOT',              'zot!');    // Zot!
203 define ( 'NETWORK_OSTATUS',          'stat');    // status.net, identi.ca, GNU-social, other OStatus implementations
204 define ( 'NETWORK_FEED',             'feed');    // RSS/Atom feeds with no known "post/notify" protocol
205 define ( 'NETWORK_DIASPORA',         'dspr');    // Diaspora
206 define ( 'NETWORK_MAIL',             'mail');    // IMAP/POP
207 define ( 'NETWORK_MAIL2',            'mai2');    // extended IMAP/POP
208 define ( 'NETWORK_FACEBOOK',         'face');    // Facebook API
209 define ( 'NETWORK_LINKEDIN',         'lnkd');    // LinkedIn
210 define ( 'NETWORK_XMPP',             'xmpp');    // XMPP
211 define ( 'NETWORK_MYSPACE',          'mysp');    // MySpace
212 define ( 'NETWORK_GPLUS',            'goog');    // Google+
213 define ( 'NETWORK_PUMPIO',           'pump');    // pump.io
214 define ( 'NETWORK_TWITTER',          'twit');    // Twitter
215 define ( 'NETWORK_DIASPORA2',        'dspc');    // Diaspora connector
216 define ( 'NETWORK_STATUSNET',        'stac');    // Statusnet connector
217 define ( 'NETWORK_APPNET',           'apdn');    // app.net
218 define ( 'NETWORK_NEWS',             'nntp');    // Network News Transfer Protocol
219 define ( 'NETWORK_ICALENDAR',        'ical');    // iCalendar
220 define ( 'NETWORK_PHANTOM',          'unkn');    // Place holder
221 /** @}*/
222
223 /**
224  * These numbers are used in stored permissions
225  * and existing allocations MUST NEVER BE CHANGED
226  * OR RE-ASSIGNED! You may only add to them.
227  */
228
229 $netgroup_ids = array(
230         NETWORK_DFRN     => (-1),
231         NETWORK_ZOT      => (-2),
232         NETWORK_OSTATUS  => (-3),
233         NETWORK_FEED     => (-4),
234         NETWORK_DIASPORA => (-5),
235         NETWORK_MAIL     => (-6),
236         NETWORK_MAIL2    => (-7),
237         NETWORK_FACEBOOK => (-8),
238         NETWORK_LINKEDIN => (-9),
239         NETWORK_XMPP     => (-10),
240         NETWORK_MYSPACE  => (-11),
241         NETWORK_GPLUS    => (-12),
242         NETWORK_PUMPIO   => (-13),
243         NETWORK_TWITTER  => (-14),
244         NETWORK_DIASPORA2 => (-15),
245         NETWORK_STATUSNET => (-16),
246         NETWORK_APPNET    => (-17),
247         NETWORK_NEWS      => (-18),
248         NETWORK_ICALENDAR => (-19),
249
250         NETWORK_PHANTOM  => (-127),
251 );
252
253
254 /**
255  * Maximum number of "people who like (or don't like) this"  that we will list by name
256  */
257
258 define ( 'MAX_LIKERS',    75);
259
260 /**
261  * Communication timeout
262  */
263
264 define ( 'ZCURL_TIMEOUT' , (-1));
265
266
267 /**
268  * @name Notify
269  * 
270  * Email notification options
271  * @{
272  */
273 define ( 'NOTIFY_INTRO',    0x0001 );
274 define ( 'NOTIFY_CONFIRM',  0x0002 );
275 define ( 'NOTIFY_WALL',     0x0004 );
276 define ( 'NOTIFY_COMMENT',  0x0008 );
277 define ( 'NOTIFY_MAIL',     0x0010 );
278 define ( 'NOTIFY_SUGGEST',  0x0020 );
279 define ( 'NOTIFY_PROFILE',  0x0040 );
280 define ( 'NOTIFY_TAGSELF',  0x0080 );
281 define ( 'NOTIFY_TAGSHARE', 0x0100 );
282 define ( 'NOTIFY_POKE',     0x0200 );
283 define ( 'NOTIFY_SHARE',    0x0400 );
284
285 define ( 'NOTIFY_SYSTEM',   0x8000 );
286 /* @}*/
287
288
289 /**
290  * @name Term
291  * 
292  * Tag/term types
293  * @{
294  */
295 define ( 'TERM_UNKNOWN',   0 );
296 define ( 'TERM_HASHTAG',   1 );
297 define ( 'TERM_MENTION',   2 );
298 define ( 'TERM_CATEGORY',  3 );
299 define ( 'TERM_PCATEGORY', 4 );
300 define ( 'TERM_FILE',      5 );
301 define ( 'TERM_SAVEDSEARCH', 6 );
302 define ( 'TERM_CONVERSATION', 7 );
303
304 define ( 'TERM_OBJ_POST',  1 );
305 define ( 'TERM_OBJ_PHOTO', 2 );
306
307
308
309 /**
310  * @name Namespaces
311  * 
312  * Various namespaces we may need to parse
313  * @{
314  */
315 define ( 'NAMESPACE_ZOT',             'http://purl.org/zot' );
316 define ( 'NAMESPACE_DFRN' ,           'http://purl.org/macgirvin/dfrn/1.0' );
317 define ( 'NAMESPACE_THREAD' ,         'http://purl.org/syndication/thread/1.0' );
318 define ( 'NAMESPACE_TOMB' ,           'http://purl.org/atompub/tombstones/1.0' );
319 define ( 'NAMESPACE_ACTIVITY',        'http://activitystrea.ms/spec/1.0/' );
320 define ( 'NAMESPACE_ACTIVITY_SCHEMA', 'http://activitystrea.ms/schema/1.0/' );
321 define ( 'NAMESPACE_MEDIA',           'http://purl.org/syndication/atommedia' );
322 define ( 'NAMESPACE_SALMON_ME',       'http://salmon-protocol.org/ns/magic-env' );
323 define ( 'NAMESPACE_OSTATUSSUB',      'http://ostatus.org/schema/1.0/subscribe' );
324 define ( 'NAMESPACE_GEORSS',          'http://www.georss.org/georss' );
325 define ( 'NAMESPACE_POCO',            'http://portablecontacts.net/spec/1.0' );
326 define ( 'NAMESPACE_FEED',            'http://schemas.google.com/g/2010#updates-from' );
327 define ( 'NAMESPACE_OSTATUS',         'http://ostatus.org/schema/1.0' );
328 define ( 'NAMESPACE_STATUSNET',       'http://status.net/schema/api/1/' );
329 define ( 'NAMESPACE_ATOM1',           'http://www.w3.org/2005/Atom' );
330 /* @}*/
331
332 /**
333  * @name Activity
334  * 
335  * Activity stream defines
336  * @{
337  */
338 define ( 'ACTIVITY_LIKE',        NAMESPACE_ACTIVITY_SCHEMA . 'like' );
339 define ( 'ACTIVITY_DISLIKE',     NAMESPACE_DFRN            . '/dislike' );
340 define ( 'ACTIVITY_ATTEND',      NAMESPACE_ZOT             . '/activity/attendyes' );
341 define ( 'ACTIVITY_ATTENDNO',    NAMESPACE_ZOT             . '/activity/attendno' );
342 define ( 'ACTIVITY_ATTENDMAYBE', NAMESPACE_ZOT             . '/activity/attendmaybe' );
343
344 define ( 'ACTIVITY_OBJ_HEART',   NAMESPACE_DFRN            . '/heart' );
345
346 define ( 'ACTIVITY_FRIEND',      NAMESPACE_ACTIVITY_SCHEMA . 'make-friend' );
347 define ( 'ACTIVITY_REQ_FRIEND',  NAMESPACE_ACTIVITY_SCHEMA . 'request-friend' );
348 define ( 'ACTIVITY_UNFRIEND',    NAMESPACE_ACTIVITY_SCHEMA . 'remove-friend' );
349 define ( 'ACTIVITY_FOLLOW',      NAMESPACE_ACTIVITY_SCHEMA . 'follow' );
350 define ( 'ACTIVITY_UNFOLLOW',    NAMESPACE_ACTIVITY_SCHEMA . 'stop-following' );
351 define ( 'ACTIVITY_JOIN',        NAMESPACE_ACTIVITY_SCHEMA . 'join' );
352
353 define ( 'ACTIVITY_POST',        NAMESPACE_ACTIVITY_SCHEMA . 'post' );
354 define ( 'ACTIVITY_UPDATE',      NAMESPACE_ACTIVITY_SCHEMA . 'update' );
355 define ( 'ACTIVITY_TAG',         NAMESPACE_ACTIVITY_SCHEMA . 'tag' );
356 define ( 'ACTIVITY_FAVORITE',    NAMESPACE_ACTIVITY_SCHEMA . 'favorite' );
357 define ( 'ACTIVITY_SHARE',       NAMESPACE_ACTIVITY_SCHEMA . 'share' );
358
359 define ( 'ACTIVITY_POKE',        NAMESPACE_ZOT . '/activity/poke' );
360 define ( 'ACTIVITY_MOOD',        NAMESPACE_ZOT . '/activity/mood' );
361
362 define ( 'ACTIVITY_OBJ_BOOKMARK', NAMESPACE_ACTIVITY_SCHEMA . 'bookmark' );
363 define ( 'ACTIVITY_OBJ_COMMENT', NAMESPACE_ACTIVITY_SCHEMA . 'comment' );
364 define ( 'ACTIVITY_OBJ_NOTE',    NAMESPACE_ACTIVITY_SCHEMA . 'note' );
365 define ( 'ACTIVITY_OBJ_PERSON',  NAMESPACE_ACTIVITY_SCHEMA . 'person' );
366 define ( 'ACTIVITY_OBJ_IMAGE',   NAMESPACE_ACTIVITY_SCHEMA . 'image' );
367 define ( 'ACTIVITY_OBJ_PHOTO',   NAMESPACE_ACTIVITY_SCHEMA . 'photo' );
368 define ( 'ACTIVITY_OBJ_VIDEO',   NAMESPACE_ACTIVITY_SCHEMA . 'video' );
369 define ( 'ACTIVITY_OBJ_P_PHOTO', NAMESPACE_ACTIVITY_SCHEMA . 'profile-photo' );
370 define ( 'ACTIVITY_OBJ_ALBUM',   NAMESPACE_ACTIVITY_SCHEMA . 'photo-album' );
371 define ( 'ACTIVITY_OBJ_EVENT',   NAMESPACE_ACTIVITY_SCHEMA . 'event' );
372 define ( 'ACTIVITY_OBJ_GROUP',   NAMESPACE_ACTIVITY_SCHEMA . 'group' );
373 define ( 'ACTIVITY_OBJ_TAGTERM', NAMESPACE_DFRN            . '/tagterm' );
374 define ( 'ACTIVITY_OBJ_PROFILE', NAMESPACE_DFRN            . '/profile' );
375 define ( 'ACTIVITY_OBJ_QUESTION', 'http://activityschema.org/object/question' );
376 /* @}*/
377
378 /**
379  * @name Gravity
380  * 
381  * Item weight for query ordering
382  * @{
383  */
384 define ( 'GRAVITY_PARENT',       0);
385 define ( 'GRAVITY_LIKE',         3);
386 define ( 'GRAVITY_COMMENT',      6);
387 /* @}*/
388
389
390 /**
391  *
392  * Reverse the effect of magic_quotes_gpc if it is enabled.
393  * Please disable magic_quotes_gpc so we don't have to do this.
394  * See http://php.net/manual/en/security.magicquotes.disabling.php
395  *
396  */
397
398 function startup() {
399
400         error_reporting(E_ERROR | E_WARNING | E_PARSE);
401
402         set_time_limit(0);
403
404         // This has to be quite large to deal with embedded private photos
405         ini_set('pcre.backtrack_limit', 500000);
406
407
408         if (get_magic_quotes_gpc()) {
409                 $process = array(&$_GET, &$_POST, &$_COOKIE, &$_REQUEST);
410                 while (list($key, $val) = each($process)) {
411                         foreach ($val as $k => $v) {
412                                 unset($process[$key][$k]);
413                                 if (is_array($v)) {
414                                         $process[$key][stripslashes($k)] = $v;
415                                         $process[] = &$process[$key][stripslashes($k)];
416                                 } else {
417                                         $process[$key][stripslashes($k)] = stripslashes($v);
418                                 }
419                         }
420                 }
421                 unset($process);
422         }
423
424 }
425
426 /**
427  *
428  * class: App
429  * 
430  * @brief Our main application structure for the life of this page.
431  * 
432  * Primarily deals with the URL that got us here
433  * and tries to make some sense of it, and
434  * stores our page contents and config storage
435  * and anything else that might need to be passed around
436  * before we spit the page out.
437  *
438  */
439 class App {
440
441         public  $module_loaded = false;
442         public  $query_string;
443         public  $config;
444         public  $page;
445         public  $profile;
446         public  $profile_uid;
447         public  $user;
448         public  $cid;
449         public  $contact;
450         public  $contacts;
451         public  $page_contact;
452         public  $content;
453         public  $data = array();
454         public  $error = false;
455         public  $cmd;
456         public  $argv;
457         public  $argc;
458         public  $module;
459         public  $pager;
460         public  $strings;
461         public  $path;
462         public  $hooks;
463         public  $timezone;
464         public  $interactive = true;
465         public  $plugins;
466         public  $apps = array();
467         public  $identities;
468         public  $is_mobile;
469         public  $is_tablet;
470         public  $is_friendica_app;
471         public  $performance = array();
472         public  $callstack = array();
473
474         public $nav_sel;
475
476         public $category;
477
478
479         // Allow themes to control internal parameters
480         // by changing App values in theme.php
481
482         public  $sourcename = '';
483         public  $videowidth = 425;
484         public  $videoheight = 350;
485         public  $force_max_items = 0;
486         public  $theme_thread_allow = true;
487         public  $theme_events_in_profile = true;
488
489         /**
490          * @brief An array for all theme-controllable parameters
491          *
492          * Mostly unimplemented yet. Only options 'template_engine' and
493          * beyond are used.
494          */
495         public  $theme = array(
496                 'sourcename' => '',
497                 'videowidth' => 425,
498                 'videoheight' => 350,
499                 'force_max_items' => 0,
500                 'thread_allow' => true,
501                 'stylesheet' => '',
502                 'template_engine' => 'smarty3',
503         );
504
505         /**
506          * @brief An array of registered template engines ('name'=>'class name')
507          */
508         public $template_engines = array();
509         /**
510          * @brief An array of instanced template engines ('name'=>'instance')
511          */
512         public $template_engine_instance = array();
513
514         private $ldelim = array(
515                 'internal' => '',
516                 'smarty3' => '{{'
517         );
518         private $rdelim = array(
519                 'internal' => '',
520                 'smarty3' => '}}'
521         );
522
523         private $scheme;
524         private $hostname;
525         private $baseurl;
526         private $db;
527
528         private $curl_code;
529         private $curl_content_type;
530         private $curl_headers;
531
532         private $cached_profile_image;
533         private $cached_profile_picdate;
534
535         private static $a;
536
537         /**
538          * @brief App constructor.
539          */
540         function __construct() {
541
542                 global $default_timezone;
543
544                 $hostname = "";
545
546                 if (file_exists(".htpreconfig.php"))
547                         @include(".htpreconfig.php");
548
549                 $this->timezone = ((x($default_timezone)) ? $default_timezone : 'UTC');
550
551                 date_default_timezone_set($this->timezone);
552
553                 $this->performance["start"] = microtime(true);
554                 $this->performance["database"] = 0;
555                 $this->performance["network"] = 0;
556                 $this->performance["file"] = 0;
557                 $this->performance["rendering"] = 0;
558                 $this->performance["parser"] = 0;
559                 $this->performance["marktime"] = 0;
560                 $this->performance["markstart"] = microtime(true);
561
562                 $this->callstack["database"] = array();
563                 $this->callstack["network"] = array();
564                 $this->callstack["file"] = array();
565                 $this->callstack["rendering"] = array();
566                 $this->callstack["parser"] = array();
567
568                 $this->config = array();
569                 $this->page = array();
570                 $this->pager= array();
571
572                 $this->query_string = '';
573
574                 startup();
575
576                 set_include_path(
577                                 'include' . PATH_SEPARATOR
578                                 . 'library' . PATH_SEPARATOR
579                                 . 'library/phpsec' . PATH_SEPARATOR
580                                 . 'library/langdet' . PATH_SEPARATOR
581                                 . '.' );
582
583
584                 $this->scheme = 'http';
585                 if(x($_SERVER,'HTTPS') && $_SERVER['HTTPS'])
586                         $this->scheme = 'https';
587                 elseif(x($_SERVER,'SERVER_PORT') && (intval($_SERVER['SERVER_PORT']) == 443))
588                         $this->scheme = 'https';
589
590                 if(x($_SERVER,'SERVER_NAME')) {
591                         $this->hostname = $_SERVER['SERVER_NAME'];
592
593                         if(x($_SERVER,'SERVER_PORT') && $_SERVER['SERVER_PORT'] != 80 && $_SERVER['SERVER_PORT'] != 443)
594                                 $this->hostname .= ':' . $_SERVER['SERVER_PORT'];
595                         /*
596                          * Figure out if we are running at the top of a domain
597                          * or in a sub-directory and adjust accordingly
598                          */
599
600                         $path = trim(dirname($_SERVER['SCRIPT_NAME']),'/\\');
601                         if(isset($path) && strlen($path) && ($path != $this->path))
602                                 $this->path = $path;
603                 }
604
605                 if ($hostname != "")
606                         $this->hostname = $hostname;
607
608                 if (is_array($_SERVER["argv"]) && $_SERVER["argc"]>1 && substr(end($_SERVER["argv"]), 0, 4)=="http" ) {
609                         $this->set_baseurl(array_pop($_SERVER["argv"]) );
610                         $_SERVER["argc"] --;
611                 }
612
613                 #set_include_path("include/$this->hostname" . PATH_SEPARATOR . get_include_path());
614
615                 if((x($_SERVER,'QUERY_STRING')) && substr($_SERVER['QUERY_STRING'],0,9) === "pagename=") {
616                         $this->query_string = substr($_SERVER['QUERY_STRING'],9);
617                         // removing trailing / - maybe a nginx problem
618                         if (substr($this->query_string, 0, 1) == "/")
619                                 $this->query_string = substr($this->query_string, 1);
620                 } elseif((x($_SERVER,'QUERY_STRING')) && substr($_SERVER['QUERY_STRING'],0,2) === "q=") {
621                         $this->query_string = substr($_SERVER['QUERY_STRING'],2);
622                         // removing trailing / - maybe a nginx problem
623                         if (substr($this->query_string, 0, 1) == "/")
624                                 $this->query_string = substr($this->query_string, 1);
625                 }
626
627                 if (x($_GET,'pagename'))
628                         $this->cmd = trim($_GET['pagename'],'/\\');
629                 elseif (x($_GET,'q'))
630                         $this->cmd = trim($_GET['q'],'/\\');
631
632
633                 // fix query_string
634                 $this->query_string = str_replace($this->cmd."&",$this->cmd."?", $this->query_string);
635
636
637                 // unix style "homedir"
638
639                 if(substr($this->cmd,0,1) === '~')
640                         $this->cmd = 'profile/' . substr($this->cmd,1);
641
642                 // Diaspora style profile url
643
644                 if(substr($this->cmd,0,2) === 'u/')
645                         $this->cmd = 'profile/' . substr($this->cmd,2);
646
647
648                 /*
649                  *
650                  * Break the URL path into C style argc/argv style arguments for our
651                  * modules. Given "http://example.com/module/arg1/arg2", $this->argc
652                  * will be 3 (integer) and $this->argv will contain:
653                  *   [0] => 'module'
654                  *   [1] => 'arg1'
655                  *   [2] => 'arg2'
656                  *
657                  *
658                  * There will always be one argument. If provided a naked domain
659                  * URL, $this->argv[0] is set to "home".
660                  *
661                  */
662
663                 $this->argv = explode('/',$this->cmd);
664                 $this->argc = count($this->argv);
665                 if((array_key_exists('0',$this->argv)) && strlen($this->argv[0])) {
666                         $this->module = str_replace(".", "_", $this->argv[0]);
667                         $this->module = str_replace("-", "_", $this->module);
668                 }
669                 else {
670                         $this->argc = 1;
671                         $this->argv = array('home');
672                         $this->module = 'home';
673                 }
674
675                 /*
676                  * See if there is any page number information, and initialise
677                  * pagination
678                  */
679
680                 $this->pager['page'] = ((x($_GET,'page') && intval($_GET['page']) > 0) ? intval($_GET['page']) : 1);
681                 $this->pager['itemspage'] = 50;
682                 $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
683                 if($this->pager['start'] < 0)
684                         $this->pager['start'] = 0;
685                 $this->pager['total'] = 0;
686
687                 /*
688                  * Detect mobile devices
689                  */
690
691                 $mobile_detect = new Mobile_Detect();
692                 $this->is_mobile = $mobile_detect->isMobile();
693                 $this->is_tablet = $mobile_detect->isTablet();
694
695                 // Friendica-Client
696                 $this->is_friendica_app = ($_SERVER['HTTP_USER_AGENT'] == "Apache-HttpClient/UNAVAILABLE (java 1.4)");
697
698                 /*
699                  * register template engines
700                  */
701                 $dc = get_declared_classes();
702                 foreach ($dc as $k) {
703                         if (in_array("ITemplateEngine", class_implements($k))){
704                                 $this->register_template_engine($k);
705                         }
706                 }
707
708                 self::$a = $this;
709
710         }
711
712         function get_basepath() {
713
714                 $basepath = get_config("system", "basepath");
715
716                 if ($basepath == "")
717                         $basepath = dirname(__FILE__);
718
719                 if ($basepath == "")
720                         $basepath = $_SERVER["DOCUMENT_ROOT"];
721
722                 if ($basepath == "")
723                         $basepath = $_SERVER["PWD"];
724
725                 return($basepath);
726         }
727
728         function get_scheme() {
729                 return($this->scheme);
730         }
731
732         function get_baseurl($ssl = false) {
733
734                 // Is the function called statically?
735                 if (!is_object($this))
736                         return(self::$a->get_baseurl($ssl));
737
738                 $scheme = $this->scheme;
739
740                 if((x($this->config,'system')) && (x($this->config['system'],'ssl_policy'))) {
741                         if(intval($this->config['system']['ssl_policy']) === intval(SSL_POLICY_FULL))
742                                 $scheme = 'https';
743
744                         //      Basically, we have $ssl = true on any links which can only be seen by a logged in user
745                         //      (and also the login link). Anything seen by an outsider will have it turned off.
746
747                         if($this->config['system']['ssl_policy'] == SSL_POLICY_SELFSIGN) {
748                                 if($ssl)
749                                         $scheme = 'https';
750                                 else
751                                         $scheme = 'http';
752                         }
753                 }
754
755                 if (get_config('config','hostname') != "")
756                         $this->hostname = get_config('config','hostname');
757
758                 $this->baseurl = $scheme . "://" . $this->hostname . ((isset($this->path) && strlen($this->path)) ? '/' . $this->path : '' );
759                 return $this->baseurl;
760         }
761
762         function set_baseurl($url) {
763                 $parsed = @parse_url($url);
764
765                 $this->baseurl = $url;
766
767                 if($parsed) {
768                         $this->scheme = $parsed['scheme'];
769
770                         $hostname = $parsed['host'];
771                         if(x($parsed,'port'))
772                                 $hostname .= ':' . $parsed['port'];
773                         if(x($parsed,'path'))
774                                 $this->path = trim($parsed['path'],'\\/');
775
776                         if (file_exists(".htpreconfig.php"))
777                                 @include(".htpreconfig.php");
778
779                         if (get_config('config','hostname') != "")
780                                 $this->hostname = get_config('config','hostname');
781
782                         if (!isset($this->hostname) OR ($this->hostname == ""))
783                                 $this->hostname = $hostname;
784                 }
785
786         }
787
788         function get_hostname() {
789                 if (get_config('config','hostname') != "")
790                         $this->hostname = get_config('config','hostname');
791
792                 return $this->hostname;
793         }
794
795         function set_hostname($h) {
796                 $this->hostname = $h;
797         }
798
799         function set_path($p) {
800                 $this->path = trim(trim($p),'/');
801         }
802
803         function get_path() {
804                 return $this->path;
805         }
806
807         function set_pager_total($n) {
808                 $this->pager['total'] = intval($n);
809         }
810
811         function set_pager_itemspage($n) {
812                 $this->pager['itemspage'] = ((intval($n) > 0) ? intval($n) : 0);
813                 $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
814         }
815
816         function set_pager_page($n) {
817                 $this->pager['page'] = $n;
818                 $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
819         }
820
821         function init_pagehead() {
822                 $interval = ((local_user()) ? get_pconfig(local_user(),'system','update_interval') : 40000);
823
824                 // If the update is "deactivated" set it to the highest integer number (~24 days)
825                 if ($interval < 0)
826                         $interval = 2147483647;
827
828                 if($interval < 10000)
829                         $interval = 40000;
830
831                 // compose the page title from the sitename and the
832                 // current module called
833                 if (!$this->module=='')
834                 {
835                     $this->page['title'] = $this->config['sitename'].' ('.$this->module.')';
836                 } else {
837                     $this->page['title'] = $this->config['sitename'];
838                 }
839
840                 /* put the head template at the beginning of page['htmlhead']
841                  * since the code added by the modules frequently depends on it
842                  * being first
843                  */
844                 if(!isset($this->page['htmlhead']))
845                         $this->page['htmlhead'] = '';
846
847                 // If we're using Smarty, then doing replace_macros() will replace
848                 // any unrecognized variables with a blank string. Since we delay
849                 // replacing $stylesheet until later, we need to replace it now
850                 // with another variable name
851                 if($this->theme['template_engine'] === 'smarty3')
852                         $stylesheet = $this->get_template_ldelim('smarty3') . '$stylesheet' . $this->get_template_rdelim('smarty3');
853                 else
854                         $stylesheet = '$stylesheet';
855
856                 $shortcut_icon = get_config("system", "shortcut_icon");
857                 if ($shortcut_icon == "")
858                         $shortcut_icon = "images/friendica-32.png";
859
860                 $touch_icon = get_config("system", "touch_icon");
861                 if ($touch_icon == "")
862                         $touch_icon = "images/friendica-128.png";
863
864                 $tpl = get_markup_template('head.tpl');
865                 $this->page['htmlhead'] = replace_macros($tpl,array(
866                         '$baseurl' => $this->get_baseurl(), // FIXME for z_path!!!!
867                         '$local_user' => local_user(),
868                         '$generator' => 'Friendica' . ' ' . FRIENDICA_VERSION,
869                         '$delitem' => t('Delete this item?'),
870                         '$comment' => t('Comment'),
871                         '$showmore' => t('show more'),
872                         '$showfewer' => t('show fewer'),
873                         '$update_interval' => $interval,
874                         '$shortcut_icon' => $shortcut_icon,
875                         '$touch_icon' => $touch_icon,
876                         '$stylesheet' => $stylesheet
877                 )) . $this->page['htmlhead'];
878         }
879
880         function init_page_end() {
881                 if(!isset($this->page['end']))
882                         $this->page['end'] = '';
883                 $tpl = get_markup_template('end.tpl');
884                 $this->page['end'] = replace_macros($tpl,array(
885                         '$baseurl' => $this->get_baseurl() // FIXME for z_path!!!!
886                 )) . $this->page['end'];
887         }
888
889         function set_curl_code($code) {
890                 $this->curl_code = $code;
891         }
892
893         function get_curl_code() {
894                 return $this->curl_code;
895         }
896
897         function set_curl_content_type($content_type) {
898                 $this->curl_content_type = $content_type;
899         }
900
901         function get_curl_content_type() {
902                 return $this->curl_content_type;
903         }
904
905         function set_curl_headers($headers) {
906                 $this->curl_headers = $headers;
907         }
908
909         function get_curl_headers() {
910                 return $this->curl_headers;
911         }
912
913         function get_cached_avatar_image($avatar_image){
914                 return $avatar_image;
915
916                 // The following code is deactivated. It doesn't seem to make any sense and it slows down the system.
917                 /*
918                 if($this->cached_profile_image[$avatar_image])
919                         return $this->cached_profile_image[$avatar_image];
920
921                 $path_parts = explode("/",$avatar_image);
922                 $common_filename = $path_parts[count($path_parts)-1];
923
924                 if($this->cached_profile_picdate[$common_filename]){
925                         $this->cached_profile_image[$avatar_image] = $avatar_image . $this->cached_profile_picdate[$common_filename];
926                 } else {
927                         $r = q("SELECT `contact`.`avatar-date` AS picdate FROM `contact` WHERE `contact`.`thumb` like '%%/%s'",
928                                 $common_filename);
929                         if(! count($r)){
930                                 $this->cached_profile_image[$avatar_image] = $avatar_image;
931                         } else {
932                                 $this->cached_profile_picdate[$common_filename] = "?rev=".urlencode($r[0]['picdate']);
933                                 $this->cached_profile_image[$avatar_image] = $avatar_image.$this->cached_profile_picdate[$common_filename];
934                         }
935                 }
936                 return $this->cached_profile_image[$avatar_image];
937                 */
938         }
939
940
941         /**
942          * @brief Removes the baseurl from an url. This avoids some mixed content problems.
943          *
944          * @param string $url
945          *
946          * @return string The cleaned url
947          */
948         function remove_baseurl($url){
949
950                 // Is the function called statically?
951                 if (!is_object($this))
952                         return(self::$a->remove_baseurl($url));
953
954                 $url = normalise_link($url);
955                 $base = normalise_link($this->get_baseurl());
956                 $url = str_replace($base."/", "", $url);
957                 return $url;
958         }
959
960         /**
961          * @brief Register template engine class
962          * 
963          * If $name is "", is used class static property $class::$name
964          * 
965          * @param string $class
966          * @param string $name
967          */
968         function register_template_engine($class, $name = '') {
969                 if ($name===""){
970                         $v = get_class_vars( $class );
971                         if(x($v,"name")) $name = $v['name'];
972                 }
973                 if ($name===""){
974                         echo "template engine <tt>$class</tt> cannot be registered without a name.\n";
975                         killme();
976                 }
977                 $this->template_engines[$name] = $class;
978         }
979
980         /**
981          * @brief Return template engine instance.
982          * 
983          * If $name is not defined, return engine defined by theme,
984          * or default
985          *
986          * @param strin $name Template engine name
987          * @return object Template Engine instance
988          */
989         function template_engine($name = ''){
990                 if ($name!=="") {
991                         $template_engine = $name;
992                 } else {
993                         $template_engine = 'smarty3';
994                         if (x($this->theme, 'template_engine')) {
995                                 $template_engine = $this->theme['template_engine'];
996                         }
997                 }
998
999                 if (isset($this->template_engines[$template_engine])){
1000                         if(isset($this->template_engine_instance[$template_engine])){
1001                                 return $this->template_engine_instance[$template_engine];
1002                         } else {
1003                                 $class = $this->template_engines[$template_engine];
1004                                 $obj = new $class;
1005                                 $this->template_engine_instance[$template_engine] = $obj;
1006                                 return $obj;
1007                         }
1008                 }
1009
1010                 echo "template engine <tt>$template_engine</tt> is not registered!\n"; killme();
1011         }
1012
1013         /**
1014          * @brief Returns the active template engine.
1015          *
1016          * @return string
1017          */
1018         function get_template_engine() {
1019                 return $this->theme['template_engine'];
1020         }
1021
1022         function set_template_engine($engine = 'smarty3') {
1023                 $this->theme['template_engine'] = $engine;
1024                 /*
1025                 $this->theme['template_engine'] = 'smarty3';
1026
1027                 switch($engine) {
1028                         case 'smarty3':
1029                                 if(is_writable('view/smarty3/'))
1030                                         $this->theme['template_engine'] = 'smarty3';
1031                                 break;
1032                         default:
1033                                 break;
1034                 }
1035                 */
1036         }
1037
1038         function get_template_ldelim($engine = 'smarty3') {
1039                 return $this->ldelim[$engine];
1040         }
1041
1042         function get_template_rdelim($engine = 'smarty3') {
1043                 return $this->rdelim[$engine];
1044         }
1045
1046         function save_timestamp($stamp, $value) {
1047                 $duration = (float)(microtime(true)-$stamp);
1048
1049                 $this->performance[$value] += (float)$duration;
1050                 $this->performance["marktime"] += (float)$duration;
1051
1052                 $callstack = $this->callstack();
1053
1054                 $this->callstack[$value][$callstack] += (float)$duration;
1055
1056         }
1057
1058         /**
1059          * @brief Returns a string with a callstack. Can be used for logging.
1060          *
1061          * @return string
1062          */
1063         function callstack() {
1064                 $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 6);
1065
1066                 // We remove the first two items from the list since they contain data that we don't need.
1067                 array_shift($trace);
1068                 array_shift($trace);
1069
1070                 $callstack = array();
1071                 foreach ($trace AS $func)
1072                         $callstack[] = $func["function"];
1073
1074                 return implode(", ", $callstack);
1075         }
1076
1077         function mark_timestamp($mark) {
1078                 //$this->performance["markstart"] -= microtime(true) - $this->performance["marktime"];
1079                 $this->performance["markstart"] = microtime(true) - $this->performance["markstart"] - $this->performance["marktime"];
1080         }
1081
1082         function get_useragent() {
1083                 return(FRIENDICA_PLATFORM." '".FRIENDICA_CODENAME."' ".FRIENDICA_VERSION."-".DB_UPDATE_VERSION."; ".$this->get_baseurl());
1084         }
1085
1086         function is_friendica_app() {
1087                 return($this->is_friendica_app);
1088         }
1089
1090 }
1091
1092 /**
1093  * @brief Retrieve the App structure
1094  * 
1095  * Useful in functions which require it but don't get it passed to them
1096  */
1097 function get_app() {
1098         global $a;
1099         return $a;
1100 }
1101
1102
1103 /**
1104  * @brief Multi-purpose function to check variable state.
1105  *
1106  * Usage: x($var) or $x($array, 'key')
1107  *
1108  * returns false if variable/key is not set
1109  * if variable is set, returns 1 if has 'non-zero' value, otherwise returns 0.
1110  * e.g. x('') or x(0) returns 0;
1111  *
1112  * @param string|array $s variable to check
1113  * @param string $k key inside the array to check
1114  *
1115  * @return bool|int
1116  */
1117 function x($s,$k = NULL) {
1118         if($k != NULL) {
1119                 if((is_array($s)) && (array_key_exists($k,$s))) {
1120                         if($s[$k])
1121                                 return (int) 1;
1122                         return (int) 0;
1123         }
1124                 return false;
1125         }
1126         else {
1127                 if(isset($s)) {
1128                         if($s) {
1129                                 return (int) 1;
1130                         }
1131                         return (int) 0;
1132                 }
1133                 return false;
1134         }
1135 }
1136
1137
1138 /**
1139  * @brief Called from db initialisation if db is dead.
1140  */
1141 function system_unavailable() {
1142         include('system_unavailable.php');
1143         system_down();
1144         killme();
1145 }
1146
1147
1148 function clean_urls() {
1149         global $a;
1150         //      if($a->config['system']['clean_urls'])
1151         return true;
1152         //      return false;
1153 }
1154
1155 function z_path() {
1156         global $a;
1157         $base = $a->get_baseurl();
1158         if(! clean_urls())
1159                 $base .= '/?q=';
1160         return $base;
1161 }
1162
1163 /**
1164  * @brief Returns the baseurl.
1165  *
1166  * @see App::get_baseurl()
1167  *
1168  * @return string
1169  */
1170 function z_root() {
1171         global $a;
1172         return $a->get_baseurl();
1173 }
1174
1175 /**
1176  * @brief Return absolut URL for given $path.
1177  *
1178  * @param string $path
1179  *
1180  * @return string
1181  */
1182 function absurl($path) {
1183         if(strpos($path,'/') === 0)
1184                 return z_path() . $path;
1185         return $path;
1186 }
1187
1188 /**
1189  * @brief Function to check if request was an AJAX (xmlhttprequest) request.
1190  *
1191  * @return boolean
1192  */
1193 function is_ajax() {
1194         return (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest');
1195 }
1196
1197 function check_db() {
1198
1199         $build = get_config('system','build');
1200         if(! x($build)) {
1201                 set_config('system','build',DB_UPDATE_VERSION);
1202                 $build = DB_UPDATE_VERSION;
1203         }
1204         if($build != DB_UPDATE_VERSION)
1205                 proc_run('php', 'include/dbupdate.php');
1206
1207 }
1208
1209
1210 /**
1211  * Sets the base url for use in cmdline programs which don't have
1212  * $_SERVER variables
1213  */
1214 function check_url(&$a) {
1215
1216         $url = get_config('system','url');
1217
1218         // if the url isn't set or the stored url is radically different
1219         // than the currently visited url, store the current value accordingly.
1220         // "Radically different" ignores common variations such as http vs https
1221         // and www.example.com vs example.com.
1222         // We will only change the url to an ip address if there is no existing setting
1223
1224         if(! x($url))
1225                 $url = set_config('system','url',$a->get_baseurl());
1226         if((! link_compare($url,$a->get_baseurl())) && (! preg_match("/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/",$a->get_hostname)))
1227                 $url = set_config('system','url',$a->get_baseurl());
1228
1229         return;
1230 }
1231
1232
1233 /**
1234  * @brief Automatic database updates
1235  */
1236 function update_db(&$a) {
1237         $build = get_config('system','build');
1238         if(! x($build))
1239                 $build = set_config('system','build',DB_UPDATE_VERSION);
1240
1241         if($build != DB_UPDATE_VERSION) {
1242                 $stored = intval($build);
1243                 $current = intval(DB_UPDATE_VERSION);
1244                 if($stored < $current) {
1245                         load_config('database');
1246
1247                         // We're reporting a different version than what is currently installed.
1248                         // Run any existing update scripts to bring the database up to current.
1249
1250                         // make sure that boot.php and update.php are the same release, we might be
1251                         // updating right this very second and the correct version of the update.php
1252                         // file may not be here yet. This can happen on a very busy site.
1253
1254                         if(DB_UPDATE_VERSION == UPDATE_VERSION) {
1255                                 // Compare the current structure with the defined structure
1256
1257                                 $t = get_config('database','dbupdate_'.DB_UPDATE_VERSION);
1258                                 if($t !== false)
1259                                         return;
1260
1261                                 set_config('database','dbupdate_'.DB_UPDATE_VERSION, time());
1262
1263                                 // run old update routine (wich could modify the schema and
1264                                 // conflits with new routine)
1265                                 for ($x = $stored; $x < NEW_UPDATE_ROUTINE_VERSION; $x++) {
1266                                         $r = run_update_function($x);
1267                                         if (!$r) break;
1268                                 }
1269                                 if ($stored < NEW_UPDATE_ROUTINE_VERSION) $stored = NEW_UPDATE_ROUTINE_VERSION;
1270
1271
1272                                 // run new update routine
1273                                 // it update the structure in one call
1274                                 $retval = update_structure(false, true);
1275                                 if($retval) {
1276                                         update_fail(
1277                                                 DB_UPDATE_VERSION,
1278                                                 $retval
1279                                         );
1280                                         return;
1281                                 } else {
1282                                         set_config('database','dbupdate_'.DB_UPDATE_VERSION, 'success');
1283                                 }
1284
1285                                 // run any left update_nnnn functions in update.php
1286                                 for($x = $stored; $x < $current; $x ++) {
1287                                         $r = run_update_function($x);
1288                                         if (!$r) break;
1289                                 }
1290                         }
1291                 }
1292         }
1293
1294         return;
1295 }
1296
1297 function run_update_function($x) {
1298         if(function_exists('update_' . $x)) {
1299
1300                 // There could be a lot of processes running or about to run.
1301                 // We want exactly one process to run the update command.
1302                 // So store the fact that we're taking responsibility
1303                 // after first checking to see if somebody else already has.
1304
1305                 // If the update fails or times-out completely you may need to
1306                 // delete the config entry to try again.
1307
1308                 $t = get_config('database','update_' . $x);
1309                 if($t !== false)
1310                         return false;
1311                 set_config('database','update_' . $x, time());
1312
1313                 // call the specific update
1314
1315                 $func = 'update_' . $x;
1316                 $retval = $func();
1317
1318                 if($retval) {
1319                         //send the administrator an e-mail
1320                         update_fail(
1321                                 $x,
1322                                 sprintf(t('Update %s failed. See error logs.'), $x)
1323                         );
1324                         return false;
1325                 } else {
1326                         set_config('database','update_' . $x, 'success');
1327                         set_config('system','build', $x + 1);
1328                         return true;
1329                 }
1330         } else {
1331                 set_config('database','update_' . $x, 'success');
1332                 set_config('system','build', $x + 1);
1333                 return true;
1334         }
1335         return true;
1336 }
1337
1338 /**
1339  * @brief Synchronise plugins:
1340  *
1341  * $a->config['system']['addon'] contains a comma-separated list of names
1342  * of plugins/addons which are used on this system.
1343  * Go through the database list of already installed addons, and if we have
1344  * an entry, but it isn't in the config list, call the uninstall procedure
1345  * and mark it uninstalled in the database (for now we'll remove it).
1346  * Then go through the config list and if we have a plugin that isn't installed,
1347  * call the install procedure and add it to the database.
1348  * 
1349  * @param App $a
1350  *
1351          */
1352 function check_plugins(&$a) {
1353
1354         $r = q("SELECT * FROM `addon` WHERE `installed` = 1");
1355         if(count($r))
1356                 $installed = $r;
1357         else
1358                 $installed = array();
1359
1360         $plugins = get_config('system','addon');
1361         $plugins_arr = array();
1362
1363         if($plugins)
1364                 $plugins_arr = explode(',',str_replace(' ', '',$plugins));
1365
1366         $a->plugins = $plugins_arr;
1367
1368         $installed_arr = array();
1369
1370         if(count($installed)) {
1371                 foreach($installed as $i) {
1372                         if(! in_array($i['name'],$plugins_arr)) {
1373                                 uninstall_plugin($i['name']);
1374                         }
1375                         else {
1376                                 $installed_arr[] = $i['name'];
1377                         }
1378                 }
1379         }
1380
1381         if(count($plugins_arr)) {
1382                 foreach($plugins_arr as $p) {
1383                         if(! in_array($p,$installed_arr)) {
1384                                 install_plugin($p);
1385                         }
1386                 }
1387         }
1388
1389
1390         load_hooks();
1391
1392         return;
1393 }
1394
1395 function get_guid($size=16, $prefix = "") {
1396
1397         if ($prefix == "") {
1398                 $a = get_app();
1399                 $prefix = hash("crc32", $a->get_hostname());
1400         }
1401
1402         while (strlen($prefix) < ($size - 13))
1403                 $prefix .= mt_rand();
1404
1405         if ($size >= 24) {
1406                 $prefix = substr($prefix, 0, $size - 22);
1407                 return(str_replace(".", "", uniqid($prefix, true)));
1408         } else {
1409                 $prefix = substr($prefix, 0, max($size - 13, 0));
1410                 return(uniqid($prefix));
1411         }
1412 }
1413
1414 /** 
1415  * @brief Wrapper for adding a login box.
1416  * 
1417  * @param bool $register
1418  *      If $register == true provide a registration link.
1419  *      This will most always depend on the value of $a->config['register_policy'].
1420  * @param bool $hiddens
1421  * 
1422  * @return string
1423  *      Returns the complete html for inserting into the page
1424  * 
1425  * @hooks 'login_hook'
1426  *      string $o
1427  */
1428 function login($register = false, $hiddens=false) {
1429         $a = get_app();
1430         $o = "";
1431         $reg = false;
1432         if ($register) {
1433                 $reg = array(
1434                         'title' => t('Create a New Account'),
1435                         'desc' => t('Register')
1436                 );
1437         }
1438
1439         $noid = get_config('system','no_openid');
1440
1441         $dest_url = $a->query_string;
1442
1443         if(local_user()) {
1444                 $tpl = get_markup_template("logout.tpl");
1445         }
1446         else {
1447                 $a->page['htmlhead'] .= replace_macros(get_markup_template("login_head.tpl"),array(
1448                         '$baseurl'              => $a->get_baseurl(true)
1449                 ));
1450
1451                 $tpl = get_markup_template("login.tpl");
1452                 $_SESSION['return_url'] = $a->query_string;
1453                 $a->module = 'login';
1454         }
1455
1456         $o .= replace_macros($tpl, array(
1457
1458                 '$dest_url'     => $dest_url,
1459                 '$logout'       => t('Logout'),
1460                 '$login'        => t('Login'),
1461
1462                 '$lname'                => array('username', t('Nickname or Email address: ') , '', ''),
1463                 '$lpassword'    => array('password', t('Password: '), '', ''),
1464                 '$lremember'    => array('remember', t('Remember me'), 0,  ''),
1465
1466                 '$openid'               => !$noid,
1467                 '$lopenid'      => array('openid_url', t('Or login using OpenID: '),'',''),
1468
1469                 '$hiddens'      => $hiddens,
1470
1471                 '$register'     => $reg,
1472
1473                 '$lostpass'     => t('Forgot your password?'),
1474                 '$lostlink'     => t('Password Reset'),
1475
1476                 '$tostitle'     => t('Website Terms of Service'),
1477                 '$toslink'      => t('terms of service'),
1478
1479                 '$privacytitle' => t('Website Privacy Policy'),
1480                 '$privacylink'  => t('privacy policy'),
1481
1482         ));
1483
1484         call_hooks('login_hook',$o);
1485
1486         return $o;
1487 }
1488
1489 /**
1490  * @brief Used to end the current process, after saving session state.
1491  */
1492 function killme() {
1493         session_write_close();
1494         exit;
1495 }
1496
1497 /**
1498  * @brief Redirect to another URL and terminate this process.
1499  */
1500 function goaway($s) {
1501         header("Location: $s");
1502         killme();
1503 }
1504
1505
1506 /**
1507  * @brief Returns the user id of locally logged in user or false.
1508  * 
1509  * @return int|bool user id or false
1510  */
1511 function local_user() {
1512         if((x($_SESSION,'authenticated')) && (x($_SESSION,'uid')))
1513                 return intval($_SESSION['uid']);
1514         return false;
1515 }
1516
1517 /**
1518  * @brief Returns contact id of authenticated site visitor or false
1519  * 
1520  * @return int|bool visitor_id or false
1521  */
1522 function remote_user() {
1523         if((x($_SESSION,'authenticated')) && (x($_SESSION,'visitor_id')))
1524                 return intval($_SESSION['visitor_id']);
1525         return false;
1526 }
1527
1528 /**
1529  * @brief Show an error message to user.
1530  *
1531  * This function save text in session, to be shown to the user at next page load
1532  *
1533  * @param string $s - Text of notice
1534  */
1535 function notice($s) {
1536         $a = get_app();
1537         if(! x($_SESSION,'sysmsg'))     $_SESSION['sysmsg'] = array();
1538         if($a->interactive)
1539                 $_SESSION['sysmsg'][] = $s;
1540 }
1541
1542 /**
1543  * @brief Show an info message to user.
1544  *
1545  * This function save text in session, to be shown to the user at next page load
1546  *
1547  * @param string $s - Text of notice
1548  */
1549 function info($s) {
1550         $a = get_app();
1551
1552         if (local_user() AND get_pconfig(local_user(),'system','ignore_info'))
1553                 return;
1554
1555         if(! x($_SESSION,'sysmsg_info')) $_SESSION['sysmsg_info'] = array();
1556         if($a->interactive)
1557                 $_SESSION['sysmsg_info'][] = $s;
1558 }
1559
1560
1561 /**
1562  * @brief Wrapper around config to limit the text length of an incoming message
1563  *
1564  * @return int
1565  */
1566 function get_max_import_size() {
1567         global $a;
1568         return ((x($a->config,'max_import_size')) ? $a->config['max_import_size'] : 0 );
1569 }
1570
1571 /**
1572  * @brief Wrap calls to proc_close(proc_open()) and call hook
1573  *      so plugins can take part in process :)
1574  *
1575  * @param string $cmd program to run
1576  * 
1577  * next args are passed as $cmd command line
1578  * e.g.: proc_run("ls","-la","/tmp");
1579  *
1580  * @note $cmd and string args are surrounded with ""
1581  * 
1582  * @hooks 'proc_run'
1583  *      array $arr
1584  */
1585 function proc_run($cmd){
1586
1587         $a = get_app();
1588
1589         $args = func_get_args();
1590
1591         $newargs = array();
1592         if(! count($args))
1593                 return;
1594
1595         // expand any arrays
1596
1597         foreach($args as $arg) {
1598                 if(is_array($arg)) {
1599                         foreach($arg as $n) {
1600                                 $newargs[] = $n;
1601                         }
1602                 }
1603                 else
1604                         $newargs[] = $arg;
1605         }
1606
1607         $args = $newargs;
1608
1609         $arr = array('args' => $args, 'run_cmd' => true);
1610
1611         call_hooks("proc_run", $arr);
1612         if(! $arr['run_cmd'])
1613                 return;
1614
1615         if(count($args) && $args[0] === 'php') {
1616
1617                 if (get_config("system", "worker")) {
1618                         $argv = $args;
1619                         array_shift($argv);
1620
1621                         $parameters = json_encode($argv);
1622                         $found = q("SELECT `id` FROM `workerqueue` WHERE `parameter` = '%s'",
1623                                         dbesc($parameters));
1624
1625                         if (!$found)
1626                                 q("INSERT INTO `workerqueue` (`parameter`, `created`, `priority`)
1627                                                         VALUES ('%s', '%s', %d)",
1628                                         dbesc($parameters),
1629                                         dbesc(datetime_convert()),
1630                                         intval(0));
1631
1632                         // Should we quit and wait for the poller to be called as a cronjob?
1633                         if (get_config("system", "worker_dont_fork"))
1634                                 return;
1635
1636                         // Checking number of workers
1637                         $workers = q("SELECT COUNT(*) AS `workers` FROM `workerqueue` WHERE `executed` != '0000-00-00 00:00:00'");
1638
1639                         // Get number of allowed number of worker threads
1640                         $queues = intval(get_config("system", "worker_queues"));
1641
1642                         if ($queues == 0)
1643                                 $queues = 4;
1644
1645                         // If there are already enough workers running, don't fork another one
1646                         if ($workers[0]["workers"] >= $queues)
1647                                 return;
1648
1649                         // Now call the poller to execute the jobs that we just added to the queue
1650                         $args = array("php", "include/poller.php", "no_cron");
1651                 }
1652
1653                 $args[0] = ((x($a->config,'php_path')) && (strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
1654         }
1655
1656         // add baseurl to args. cli scripts can't construct it
1657         $args[] = $a->get_baseurl();
1658
1659         for($x = 0; $x < count($args); $x ++)
1660                 $args[$x] = escapeshellarg($args[$x]);
1661
1662         $cmdline = implode($args," ");
1663
1664         if(get_config('system','proc_windows'))
1665                 proc_close(proc_open('cmd /c start /b ' . $cmdline,array(),$foo,dirname(__FILE__)));
1666         else
1667                 proc_close(proc_open($cmdline." &",array(),$foo,dirname(__FILE__)));
1668 }
1669
1670 function current_theme(){
1671         $app_base_themes = array('duepuntozero', 'dispy', 'quattro');
1672
1673         $a = get_app();
1674
1675         $page_theme = null;
1676
1677         // Find the theme that belongs to the user whose stuff we are looking at
1678
1679         if($a->profile_uid && ($a->profile_uid != local_user())) {
1680                 $r = q("select theme from user where uid = %d limit 1",
1681                         intval($a->profile_uid)
1682                 );
1683                 if($r)
1684                         $page_theme = $r[0]['theme'];
1685         }
1686
1687         // Allow folks to over-rule user themes and always use their own on their own site.
1688         // This works only if the user is on the same server
1689
1690         if($page_theme && local_user() && (local_user() != $a->profile_uid)) {
1691                 if(get_pconfig(local_user(),'system','always_my_theme'))
1692                         $page_theme = null;
1693         }
1694
1695 //              $mobile_detect = new Mobile_Detect();
1696 //              $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
1697         $is_mobile = $a->is_mobile || $a->is_tablet;
1698
1699         $standard_system_theme = ((isset($a->config['system']['theme'])) ? $a->config['system']['theme'] : '');
1700         $standard_theme_name = ((isset($_SESSION) && x($_SESSION,'theme')) ? $_SESSION['theme'] : $standard_system_theme);
1701
1702         if($is_mobile) {
1703                 if(isset($_SESSION['show-mobile']) && !$_SESSION['show-mobile']) {
1704                         $system_theme = $standard_system_theme;
1705                         $theme_name = $standard_theme_name;
1706                 }
1707                 else {
1708                         $system_theme = ((isset($a->config['system']['mobile-theme'])) ? $a->config['system']['mobile-theme'] : $standard_system_theme);
1709                         $theme_name = ((isset($_SESSION) && x($_SESSION,'mobile-theme')) ? $_SESSION['mobile-theme'] : $system_theme);
1710
1711                         if($theme_name === '---') {
1712                                 // user has selected to have the mobile theme be the same as the normal one
1713                                 $system_theme = $standard_system_theme;
1714                                 $theme_name = $standard_theme_name;
1715
1716                                 if($page_theme)
1717                                         $theme_name = $page_theme;
1718                         }
1719                 }
1720         }
1721         else {
1722                 $system_theme = $standard_system_theme;
1723                 $theme_name = $standard_theme_name;
1724
1725                 if($page_theme)
1726                         $theme_name = $page_theme;
1727         }
1728
1729         if($theme_name &&
1730                         (file_exists('view/theme/' . $theme_name . '/style.css') ||
1731                                         file_exists('view/theme/' . $theme_name . '/style.php')))
1732                 return($theme_name);
1733
1734         foreach($app_base_themes as $t) {
1735                 if(file_exists('view/theme/' . $t . '/style.css')||
1736                                 file_exists('view/theme/' . $t . '/style.php'))
1737                         return($t);
1738         }
1739
1740         $fallback = array_merge(glob('view/theme/*/style.css'),glob('view/theme/*/style.php'));
1741         if(count($fallback))
1742                 return (str_replace('view/theme/','', substr($fallback[0],0,-10)));
1743
1744 }
1745
1746 /**
1747  * @brief Return full URL to theme which is currently in effect.
1748  * 
1749  * Provide a sane default if nothing is chosen or the specified theme does not exist.
1750  * 
1751  * @return string
1752  */
1753 function current_theme_url() {
1754         global $a;
1755
1756         $t = current_theme();
1757
1758         $opts = (($a->profile_uid) ? '?f=&puid=' . $a->profile_uid : '');
1759         if (file_exists('view/theme/' . $t . '/style.php'))
1760                 return('view/theme/'.$t.'/style.pcss'.$opts);
1761
1762         return('view/theme/'.$t.'/style.css');
1763 }
1764
1765 function feed_birthday($uid,$tz) {
1766
1767         /**
1768          *
1769          * Determine the next birthday, but only if the birthday is published
1770          * in the default profile. We _could_ also look for a private profile that the
1771          * recipient can see, but somebody could get mad at us if they start getting
1772          * public birthday greetings when they haven't made this info public.
1773          *
1774          * Assuming we are able to publish this info, we are then going to convert
1775          * the start time from the owner's timezone to UTC.
1776          *
1777          * This will potentially solve the problem found with some social networks
1778          * where birthdays are converted to the viewer's timezone and salutations from
1779          * elsewhere in the world show up on the wrong day. We will convert it to the
1780          * viewer's timezone also, but first we are going to convert it from the birthday
1781          * person's timezone to GMT - so the viewer may find the birthday starting at
1782          * 6:00PM the day before, but that will correspond to midnight to the birthday person.
1783          *
1784          */
1785
1786
1787         $birthday = '';
1788
1789         if(! strlen($tz))
1790                 $tz = 'UTC';
1791
1792         $p = q("SELECT `dob` FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
1793                         intval($uid)
1794         );
1795
1796         if($p && count($p)) {
1797                 $tmp_dob = substr($p[0]['dob'],5);
1798                 if(intval($tmp_dob)) {
1799                         $y = datetime_convert($tz,$tz,'now','Y');
1800                         $bd = $y . '-' . $tmp_dob . ' 00:00';
1801                         $t_dob = strtotime($bd);
1802                         $now = strtotime(datetime_convert($tz,$tz,'now'));
1803                         if($t_dob < $now)
1804                                 $bd = $y + 1 . '-' . $tmp_dob . ' 00:00';
1805                         $birthday = datetime_convert($tz,'UTC',$bd,ATOM_TIME);
1806                 }
1807         }
1808
1809         return $birthday;
1810 }
1811
1812 /**
1813  * @brief Check if current user has admin role.
1814  *
1815  * @return bool true if user is an admin
1816  */
1817 function is_site_admin() {
1818         $a = get_app();
1819
1820         $adminlist = explode(",", str_replace(" ", "", $a->config['admin_email']));
1821
1822         //if(local_user() && x($a->user,'email') && x($a->config,'admin_email') && ($a->user['email'] === $a->config['admin_email']))
1823         if(local_user() && x($a->user,'email') && x($a->config,'admin_email') && in_array($a->user['email'], $adminlist))
1824                 return true;
1825         return false;
1826 }
1827
1828
1829 function load_contact_links($uid) {
1830
1831         $a = get_app();
1832
1833         $ret = array();
1834
1835         if(! $uid || x($a->contacts,'empty'))
1836                 return;
1837
1838         $r = q("SELECT `id`,`network`,`url`,`thumb`, `rel` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `thumb` != ''",
1839                         intval($uid)
1840         );
1841         if(count($r)) {
1842                 foreach($r as $rr){
1843                         $url = normalise_link($rr['url']);
1844                         $ret[$url] = $rr;
1845                 }
1846         } else
1847                 $ret['empty'] = true;
1848
1849         $a->contacts = $ret;
1850         return;
1851 }
1852
1853 /**
1854  * @brief Returns querystring as string from a mapped array.
1855  *
1856  * @param array $params mapped array with query parameters
1857  * @param string $name of parameter, default null
1858  *
1859  * @return string
1860  */
1861 function build_querystring($params, $name=null) {
1862         $ret = "";
1863         foreach($params as $key=>$val) {
1864                 if(is_array($val)) {
1865                         if($name==null) {
1866                                 $ret .= build_querystring($val, $key);
1867                         } else {
1868                                 $ret .= build_querystring($val, $name."[$key]");
1869                         }
1870                 } else {
1871                         $val = urlencode($val);
1872                         if($name!=null) {
1873                                 $ret.=$name."[$key]"."=$val&";
1874                         } else {
1875                                 $ret.= "$key=$val&";
1876                         }
1877                 }
1878         }
1879         return $ret;
1880 }
1881
1882 function explode_querystring($query) {
1883         $arg_st = strpos($query, '?');
1884         if($arg_st !== false) {
1885                 $base = substr($query, 0, $arg_st);
1886                 $arg_st += 1;
1887         } else {
1888                 $base = '';
1889                 $arg_st = 0;
1890         }
1891
1892         $args = explode('&', substr($query, $arg_st));
1893         foreach($args as $k=>$arg) {
1894                 if($arg === '')
1895                         unset($args[$k]);
1896         }
1897         $args = array_values($args);
1898
1899         if(!$base) {
1900                 $base = $args[0];
1901                 unset($args[0]);
1902                 $args = array_values($args);
1903         }
1904
1905         return array(
1906                 'base' => $base,
1907                 'args' => $args,
1908         );
1909 }
1910
1911 /**
1912 * Returns the complete URL of the current page, e.g.: http(s)://something.com/network
1913 *
1914 * Taken from http://webcheatsheet.com/php/get_current_page_url.php
1915 */
1916 function curPageURL() {
1917         $pageURL = 'http';
1918         if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";}
1919         $pageURL .= "://";
1920         if ($_SERVER["SERVER_PORT"] != "80" && $_SERVER["SERVER_PORT"] != "443") {
1921                 $pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
1922         } else {
1923                 $pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
1924         }
1925         return $pageURL;
1926 }
1927
1928 function random_digits($digits) {
1929         $rn = '';
1930         for($i = 0; $i < $digits; $i++) {
1931                 $rn .= rand(0,9);
1932         }
1933         return $rn;
1934 }
1935
1936 function get_server() {
1937         $server = get_config("system", "directory");
1938
1939         if ($server == "")
1940                 $server = "http://dir.friendi.ca";
1941
1942         return($server);
1943 }
1944
1945 function get_cachefile($file, $writemode = true) {
1946         $cache = get_itemcachepath();
1947
1948         if ((! $cache) || (! is_dir($cache)))
1949                 return("");
1950
1951         $subfolder = $cache."/".substr($file, 0, 2);
1952
1953         $cachepath = $subfolder."/".$file;
1954
1955         if ($writemode) {
1956                 if (!is_dir($subfolder)) {
1957                         mkdir($subfolder);
1958                         chmod($subfolder, 0777);
1959                 }
1960         }
1961
1962         return($cachepath);
1963 }
1964
1965 function clear_cache($basepath = "", $path = "") {
1966         if ($path == "") {
1967                 $basepath = get_itemcachepath();
1968                 $path = $basepath;
1969         }
1970
1971         if (($path == "") OR (!is_dir($path)))
1972                 return;
1973
1974         if (substr(realpath($path), 0, strlen($basepath)) != $basepath)
1975                 return;
1976
1977         $cachetime = (int)get_config('system','itemcache_duration');
1978         if ($cachetime == 0)
1979                 $cachetime = 86400;
1980
1981         if (is_writable($path)){
1982                 if ($dh = opendir($path)) {
1983                         while (($file = readdir($dh)) !== false) {
1984                                 $fullpath = $path."/".$file;
1985                                 if ((filetype($fullpath) == "dir") and ($file != ".") and ($file != ".."))
1986                                         clear_cache($basepath, $fullpath);
1987                                 if ((filetype($fullpath) == "file") and (filectime($fullpath) < (time() - $cachetime)))
1988                                         unlink($fullpath);
1989                         }
1990                         closedir($dh);
1991                 }
1992         }
1993 }
1994
1995 function get_itemcachepath() {
1996         // Checking, if the cache is deactivated
1997         $cachetime = (int)get_config('system','itemcache_duration');
1998         if ($cachetime < 0)
1999                 return "";
2000
2001         $itemcache = get_config('system','itemcache');
2002         if (($itemcache != "") AND is_dir($itemcache) AND is_writable($itemcache))
2003                 return($itemcache);
2004
2005         $temppath = get_temppath();
2006
2007         if ($temppath != "") {
2008                 $itemcache = $temppath."/itemcache";
2009                 if(!file_exists($itemcache) && !is_dir($itemcache)) {
2010                         mkdir($itemcache);
2011                 }
2012
2013                 if (is_dir($itemcache) AND is_writable($itemcache)) {
2014                         set_config("system", "itemcache", $itemcache);
2015                         return($itemcache);
2016                 }
2017         }
2018         return "";
2019 }
2020
2021 function get_lockpath() {
2022         $lockpath = get_config('system','lockpath');
2023         if (($lockpath != "") AND is_dir($lockpath) AND is_writable($lockpath))
2024                 return($lockpath);
2025
2026         $temppath = get_temppath();
2027
2028         if ($temppath != "") {
2029                 $lockpath = $temppath."/lock";
2030
2031                 if (!is_dir($lockpath))
2032                         mkdir($lockpath);
2033                 elseif (!is_writable($lockpath))
2034                         $lockpath = $temppath;
2035
2036                 if (is_dir($lockpath) AND is_writable($lockpath)) {
2037                         set_config("system", "lockpath", $lockpath);
2038                         return($lockpath);
2039                 }
2040         }
2041         return "";
2042 }
2043
2044 function get_temppath() {
2045         $a = get_app();
2046
2047         $temppath = get_config("system","temppath");
2048         if (($temppath != "") AND is_dir($temppath) AND is_writable($temppath))
2049                 return($temppath);
2050
2051         $temppath = sys_get_temp_dir();
2052         if (($temppath != "") AND is_dir($temppath) AND is_writable($temppath)) {
2053                 $temppath .= "/".$a->get_hostname();
2054                 if (!is_dir($temppath))
2055                         mkdir($temppath);
2056
2057                 if (is_dir($temppath) AND is_writable($temppath)) {
2058                         set_config("system", "temppath", $temppath);
2059                         return($temppath);
2060                 }
2061         }
2062
2063         return("");
2064 }
2065
2066 function set_template_engine(&$a, $engine = 'internal') {
2067 /// @note This function is no longer necessary, but keep it as a wrapper to the class method
2068 /// to avoid breaking themes again unnecessarily
2069
2070         $a->set_template_engine($engine);
2071 }
2072
2073 if(!function_exists('exif_imagetype')) {
2074         function exif_imagetype($file) {
2075                 $size = getimagesize($file);
2076                 return($size[2]);
2077         }
2078 }
2079
2080 function validate_include(&$file) {
2081         $orig_file = $file;
2082
2083         $file = realpath($file);
2084
2085         if (strpos($file, getcwd()) !== 0)
2086                 return false;
2087
2088         $file = str_replace(getcwd()."/", "", $file, $count);
2089         if ($count != 1)
2090                 return false;
2091
2092         if ($orig_file !== $file)
2093                 return false;
2094
2095         $valid = false;
2096         if (strpos($file, "include/") === 0)
2097                 $valid = true;
2098
2099         if (strpos($file, "addon/") === 0)
2100                 $valid = true;
2101
2102         if (!$valid)
2103                 return false;
2104
2105         return true;
2106 }
2107
2108 function current_load() {
2109         if (!function_exists('sys_getloadavg'))
2110                 return false;
2111
2112         $load_arr = sys_getloadavg();
2113
2114         if (!is_array($load_arr))
2115                 return false;
2116
2117         return max($load_arr);
2118 }
2119
2120 /**
2121  * @brief get c-style args
2122  * 
2123  * @return int
2124  */
2125 function argc() {
2126         return get_app()->argc;
2127 }
2128
2129 /**
2130  * @brief Returns the value of a argv key
2131  * 
2132  * @param int $x argv key
2133  * @return string Value of the argv key
2134  */
2135 function argv($x) {
2136         if(array_key_exists($x,get_app()->argv))
2137                 return get_app()->argv[$x];
2138
2139         return '';
2140 }