]> git.mxchange.org Git - friendica.git/blob - boot.php
d5972484bc4303d51e7ce8673c9c5ba4c38bf7be
[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(__DIR__ . DIRECTORY_SEPARATOR. 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php');
21
22 use \Friendica\Core\Config;
23
24 require_once('include/config.php');
25 require_once('include/network.php');
26 require_once('include/plugin.php');
27 require_once('include/text.php');
28 require_once('include/datetime.php');
29 require_once('include/pgettext.php');
30 require_once('include/nav.php');
31 require_once('include/cache.php');
32 require_once('include/features.php');
33 require_once('include/identity.php');
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.2-dev' );
40 define ( 'DFRN_PROTOCOL_VERSION',  '2.23'    );
41 define ( 'DB_UPDATE_VERSION',      1221      );
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 define ( 'CACHE_HALF_HOUR',        4 );
131 define ( 'CACHE_QUARTER_HOUR',     5 );
132 define ( 'CACHE_FIVE_MINUTES',     6 );
133 define ( 'CACHE_MINUTE',           7 );
134 /* @}*/
135
136 /**
137  * @name Register
138  *
139  * Registration policies
140  * @{
141  */
142 define ( 'REGISTER_CLOSED',        0 );
143 define ( 'REGISTER_APPROVE',       1 );
144 define ( 'REGISTER_OPEN',          2 );
145 /** @}*/
146
147 /**
148  * @name Contact_is
149  *
150  * Relationship types
151  * @{
152  */
153 define ( 'CONTACT_IS_FOLLOWER', 1);
154 define ( 'CONTACT_IS_SHARING',  2);
155 define ( 'CONTACT_IS_FRIEND',   3);
156 /** @}*/
157
158 /**
159  * @name Update
160  *
161  * DB update return values
162  * @{
163  */
164 define ( 'UPDATE_SUCCESS', 0);
165 define ( 'UPDATE_FAILED',  1);
166 /** @}*/
167
168
169 /**
170  * @name page/profile types
171  *
172  * PAGE_NORMAL is a typical personal profile account
173  * PAGE_SOAPBOX automatically approves all friend requests as CONTACT_IS_SHARING, (readonly)
174  * PAGE_COMMUNITY automatically approves all friend requests as CONTACT_IS_SHARING, but with
175  *      write access to wall and comments (no email and not included in page owner's ACL lists)
176  * PAGE_FREELOVE automatically approves all friend requests as full friends (CONTACT_IS_FRIEND).
177  *
178  * @{
179  */
180 define ( 'PAGE_NORMAL',            0 );
181 define ( 'PAGE_SOAPBOX',           1 );
182 define ( 'PAGE_COMMUNITY',         2 );
183 define ( 'PAGE_FREELOVE',          3 );
184 define ( 'PAGE_BLOG',              4 );
185 define ( 'PAGE_PRVGROUP',          5 );
186 /** @}*/
187
188 /**
189  * @name account types
190  *
191  * ACCOUNT_TYPE_PERSON - the account belongs to a person
192  *      Associated page types: PAGE_NORMAL, PAGE_SOAPBOX, PAGE_FREELOVE
193  *
194  * ACCOUNT_TYPE_ORGANISATION - the account belongs to an organisation
195  *      Associated page type: PAGE_SOAPBOX
196  *
197  * ACCOUNT_TYPE_NEWS - the account is a news reflector
198  *      Associated page type: PAGE_SOAPBOX
199  *
200  * ACCOUNT_TYPE_COMMUNITY - the account is community forum
201  *      Associated page types: PAGE_COMMUNITY, PAGE_PRVGROUP
202  * @{
203  */
204 define ( 'ACCOUNT_TYPE_PERSON',      0 );
205 define ( 'ACCOUNT_TYPE_ORGANISATION',1 );
206 define ( 'ACCOUNT_TYPE_NEWS',        2 );
207 define ( 'ACCOUNT_TYPE_COMMUNITY',   3 );
208 /** @}*/
209
210 /**
211  * @name CP
212  *
213  * Type of the community page
214  * @{
215  */
216 define ( 'CP_NO_COMMUNITY_PAGE',   -1 );
217 define ( 'CP_USERS_ON_SERVER',     0 );
218 define ( 'CP_GLOBAL_COMMUNITY',    1 );
219 /** @}*/
220
221 /**
222  * @name Protocols
223  *
224  * Different protocols that we are storing
225  * @{
226  */
227 define('PROTOCOL_UNKNOWN',         0);
228 define('PROTOCOL_DFRN',            1);
229 define('PROTOCOL_DIASPORA',        2);
230 define('PROTOCOL_OSTATUS_SALMON',  3);
231 define('PROTOCOL_OSTATUS_FEED',    4);
232 define('PROTOCOL_GS_CONVERSATION', 5);
233 /** @}*/
234
235 /**
236  * @name Network
237  *
238  * Network and protocol family types
239  * @{
240  */
241 define ( 'NETWORK_DFRN',             'dfrn');    // Friendica, Mistpark, other DFRN implementations
242 define ( 'NETWORK_ZOT',              'zot!');    // Zot!
243 define ( 'NETWORK_OSTATUS',          'stat');    // status.net, identi.ca, GNU-social, other OStatus implementations
244 define ( 'NETWORK_FEED',             'feed');    // RSS/Atom feeds with no known "post/notify" protocol
245 define ( 'NETWORK_DIASPORA',         'dspr');    // Diaspora
246 define ( 'NETWORK_MAIL',             'mail');    // IMAP/POP
247 define ( 'NETWORK_MAIL2',            'mai2');    // extended IMAP/POP
248 define ( 'NETWORK_FACEBOOK',         'face');    // Facebook API
249 define ( 'NETWORK_LINKEDIN',         'lnkd');    // LinkedIn
250 define ( 'NETWORK_XMPP',             'xmpp');    // XMPP
251 define ( 'NETWORK_MYSPACE',          'mysp');    // MySpace
252 define ( 'NETWORK_GPLUS',            'goog');    // Google+
253 define ( 'NETWORK_PUMPIO',           'pump');    // pump.io
254 define ( 'NETWORK_TWITTER',          'twit');    // Twitter
255 define ( 'NETWORK_DIASPORA2',        'dspc');    // Diaspora connector
256 define ( 'NETWORK_STATUSNET',        'stac');    // Statusnet connector
257 define ( 'NETWORK_APPNET',           'apdn');    // app.net
258 define ( 'NETWORK_NEWS',             'nntp');    // Network News Transfer Protocol
259 define ( 'NETWORK_ICALENDAR',        'ical');    // iCalendar
260 define ( 'NETWORK_PNUT',             'pnut');    // pnut.io
261 define ( 'NETWORK_PHANTOM',          'unkn');    // Place holder
262 /** @}*/
263
264 /**
265  * These numbers are used in stored permissions
266  * and existing allocations MUST NEVER BE CHANGED
267  * OR RE-ASSIGNED! You may only add to them.
268  */
269 $netgroup_ids = array(
270         NETWORK_DFRN     => (-1),
271         NETWORK_ZOT      => (-2),
272         NETWORK_OSTATUS  => (-3),
273         NETWORK_FEED     => (-4),
274         NETWORK_DIASPORA => (-5),
275         NETWORK_MAIL     => (-6),
276         NETWORK_MAIL2    => (-7),
277         NETWORK_FACEBOOK => (-8),
278         NETWORK_LINKEDIN => (-9),
279         NETWORK_XMPP     => (-10),
280         NETWORK_MYSPACE  => (-11),
281         NETWORK_GPLUS    => (-12),
282         NETWORK_PUMPIO   => (-13),
283         NETWORK_TWITTER  => (-14),
284         NETWORK_DIASPORA2 => (-15),
285         NETWORK_STATUSNET => (-16),
286         NETWORK_APPNET    => (-17),
287         NETWORK_NEWS      => (-18),
288         NETWORK_ICALENDAR => (-19),
289         NETWORK_PNUT      => (-20),
290
291         NETWORK_PHANTOM  => (-127),
292 );
293
294
295 /**
296  * Maximum number of "people who like (or don't like) this"  that we will list by name
297  */
298
299 define ( 'MAX_LIKERS',    75);
300
301 /**
302  * Communication timeout
303  */
304
305 define ( 'ZCURL_TIMEOUT' , (-1));
306
307
308 /**
309  * @name Notify
310  *
311  * Email notification options
312  * @{
313  */
314 define ( 'NOTIFY_INTRO',    0x0001 );
315 define ( 'NOTIFY_CONFIRM',  0x0002 );
316 define ( 'NOTIFY_WALL',     0x0004 );
317 define ( 'NOTIFY_COMMENT',  0x0008 );
318 define ( 'NOTIFY_MAIL',     0x0010 );
319 define ( 'NOTIFY_SUGGEST',  0x0020 );
320 define ( 'NOTIFY_PROFILE',  0x0040 );
321 define ( 'NOTIFY_TAGSELF',  0x0080 );
322 define ( 'NOTIFY_TAGSHARE', 0x0100 );
323 define ( 'NOTIFY_POKE',     0x0200 );
324 define ( 'NOTIFY_SHARE',    0x0400 );
325
326 define ( 'NOTIFY_SYSTEM',   0x8000 );
327 /* @}*/
328
329
330 /**
331  * @name Term
332  *
333  * Tag/term types
334  * @{
335  */
336 define ( 'TERM_UNKNOWN',   0 );
337 define ( 'TERM_HASHTAG',   1 );
338 define ( 'TERM_MENTION',   2 );
339 define ( 'TERM_CATEGORY',  3 );
340 define ( 'TERM_PCATEGORY', 4 );
341 define ( 'TERM_FILE',      5 );
342 define ( 'TERM_SAVEDSEARCH', 6 );
343 define ( 'TERM_CONVERSATION', 7 );
344
345 define ( 'TERM_OBJ_POST',  1 );
346 define ( 'TERM_OBJ_PHOTO', 2 );
347
348
349
350 /**
351  * @name Namespaces
352  *
353  * Various namespaces we may need to parse
354  * @{
355  */
356 define ( 'NAMESPACE_ZOT',             'http://purl.org/zot' );
357 define ( 'NAMESPACE_DFRN' ,           'http://purl.org/macgirvin/dfrn/1.0' );
358 define ( 'NAMESPACE_THREAD' ,         'http://purl.org/syndication/thread/1.0' );
359 define ( 'NAMESPACE_TOMB' ,           'http://purl.org/atompub/tombstones/1.0' );
360 define ( 'NAMESPACE_ACTIVITY',        'http://activitystrea.ms/spec/1.0/' );
361 define ( 'NAMESPACE_ACTIVITY_SCHEMA', 'http://activitystrea.ms/schema/1.0/' );
362 define ( 'NAMESPACE_MEDIA',           'http://purl.org/syndication/atommedia' );
363 define ( 'NAMESPACE_SALMON_ME',       'http://salmon-protocol.org/ns/magic-env' );
364 define ( 'NAMESPACE_OSTATUSSUB',      'http://ostatus.org/schema/1.0/subscribe' );
365 define ( 'NAMESPACE_GEORSS',          'http://www.georss.org/georss' );
366 define ( 'NAMESPACE_POCO',            'http://portablecontacts.net/spec/1.0' );
367 define ( 'NAMESPACE_FEED',            'http://schemas.google.com/g/2010#updates-from' );
368 define ( 'NAMESPACE_OSTATUS',         'http://ostatus.org/schema/1.0' );
369 define ( 'NAMESPACE_STATUSNET',       'http://status.net/schema/api/1/' );
370 define ( 'NAMESPACE_ATOM1',           'http://www.w3.org/2005/Atom' );
371 define ( 'NAMESPACE_MASTODON',        'http://mastodon.social/schema/1.0' );
372 /* @}*/
373
374 /**
375  * @name Activity
376  *
377  * Activity stream defines
378  * @{
379  */
380 define ( 'ACTIVITY_LIKE',        NAMESPACE_ACTIVITY_SCHEMA . 'like' );
381 define ( 'ACTIVITY_DISLIKE',     NAMESPACE_DFRN            . '/dislike' );
382 define ( 'ACTIVITY_ATTEND',      NAMESPACE_ZOT             . '/activity/attendyes' );
383 define ( 'ACTIVITY_ATTENDNO',    NAMESPACE_ZOT             . '/activity/attendno' );
384 define ( 'ACTIVITY_ATTENDMAYBE', NAMESPACE_ZOT             . '/activity/attendmaybe' );
385
386 define ( 'ACTIVITY_OBJ_HEART',   NAMESPACE_DFRN            . '/heart' );
387
388 define ( 'ACTIVITY_FRIEND',      NAMESPACE_ACTIVITY_SCHEMA . 'make-friend' );
389 define ( 'ACTIVITY_REQ_FRIEND',  NAMESPACE_ACTIVITY_SCHEMA . 'request-friend' );
390 define ( 'ACTIVITY_UNFRIEND',    NAMESPACE_ACTIVITY_SCHEMA . 'remove-friend' );
391 define ( 'ACTIVITY_FOLLOW',      NAMESPACE_ACTIVITY_SCHEMA . 'follow' );
392 define ( 'ACTIVITY_UNFOLLOW',    NAMESPACE_ACTIVITY_SCHEMA . 'stop-following' );
393 define ( 'ACTIVITY_JOIN',        NAMESPACE_ACTIVITY_SCHEMA . 'join' );
394
395 define ( 'ACTIVITY_POST',        NAMESPACE_ACTIVITY_SCHEMA . 'post' );
396 define ( 'ACTIVITY_UPDATE',      NAMESPACE_ACTIVITY_SCHEMA . 'update' );
397 define ( 'ACTIVITY_TAG',         NAMESPACE_ACTIVITY_SCHEMA . 'tag' );
398 define ( 'ACTIVITY_FAVORITE',    NAMESPACE_ACTIVITY_SCHEMA . 'favorite' );
399 define ( 'ACTIVITY_SHARE',       NAMESPACE_ACTIVITY_SCHEMA . 'share' );
400 define ( 'ACTIVITY_DELETE',      NAMESPACE_ACTIVITY_SCHEMA . 'delete' );
401
402 define ( 'ACTIVITY_POKE',        NAMESPACE_ZOT . '/activity/poke' );
403 define ( 'ACTIVITY_MOOD',        NAMESPACE_ZOT . '/activity/mood' );
404
405 define ( 'ACTIVITY_OBJ_BOOKMARK', NAMESPACE_ACTIVITY_SCHEMA . 'bookmark' );
406 define ( 'ACTIVITY_OBJ_COMMENT', NAMESPACE_ACTIVITY_SCHEMA . 'comment' );
407 define ( 'ACTIVITY_OBJ_NOTE',    NAMESPACE_ACTIVITY_SCHEMA . 'note' );
408 define ( 'ACTIVITY_OBJ_PERSON',  NAMESPACE_ACTIVITY_SCHEMA . 'person' );
409 define ( 'ACTIVITY_OBJ_IMAGE',   NAMESPACE_ACTIVITY_SCHEMA . 'image' );
410 define ( 'ACTIVITY_OBJ_PHOTO',   NAMESPACE_ACTIVITY_SCHEMA . 'photo' );
411 define ( 'ACTIVITY_OBJ_VIDEO',   NAMESPACE_ACTIVITY_SCHEMA . 'video' );
412 define ( 'ACTIVITY_OBJ_P_PHOTO', NAMESPACE_ACTIVITY_SCHEMA . 'profile-photo' );
413 define ( 'ACTIVITY_OBJ_ALBUM',   NAMESPACE_ACTIVITY_SCHEMA . 'photo-album' );
414 define ( 'ACTIVITY_OBJ_EVENT',   NAMESPACE_ACTIVITY_SCHEMA . 'event' );
415 define ( 'ACTIVITY_OBJ_GROUP',   NAMESPACE_ACTIVITY_SCHEMA . 'group' );
416 define ( 'ACTIVITY_OBJ_TAGTERM', NAMESPACE_DFRN            . '/tagterm' );
417 define ( 'ACTIVITY_OBJ_PROFILE', NAMESPACE_DFRN            . '/profile' );
418 define ( 'ACTIVITY_OBJ_QUESTION', 'http://activityschema.org/object/question' );
419 /* @}*/
420
421 /**
422  * @name Gravity
423  *
424  * Item weight for query ordering
425  * @{
426  */
427 define ( 'GRAVITY_PARENT',       0);
428 define ( 'GRAVITY_LIKE',         3);
429 define ( 'GRAVITY_COMMENT',      6);
430 /* @}*/
431
432 /**
433  * @name Priority
434  *
435  * Process priority for the worker
436  * @{
437  */
438 define('PRIORITY_UNDEFINED',  0);
439 define('PRIORITY_CRITICAL',  10);
440 define('PRIORITY_HIGH',      20);
441 define('PRIORITY_MEDIUM',    30);
442 define('PRIORITY_LOW',       40);
443 define('PRIORITY_NEGLIGIBLE',50);
444 /* @}*/
445
446 /**
447  * @name Social Relay settings
448  *
449  * See here: https://github.com/jaywink/social-relay
450  * and here: https://wiki.diasporafoundation.org/Relay_servers_for_public_posts
451  * @{
452  */
453 define('SR_SCOPE_NONE', '');
454 define('SR_SCOPE_ALL',  'all');
455 define('SR_SCOPE_TAGS', 'tags');
456 /* @}*/
457
458 /**
459  * Lowest possible date time value
460  */
461
462 define ('NULL_DATE', '0001-01-01 00:00:00');
463
464
465 // Normally this constant is defined - but not if "pcntl" isn't installed
466 if (!defined("SIGTERM")) {
467         define("SIGTERM", 15);
468 }
469 /**
470  *
471  * Reverse the effect of magic_quotes_gpc if it is enabled.
472  * Please disable magic_quotes_gpc so we don't have to do this.
473  * See http://php.net/manual/en/security.magicquotes.disabling.php
474  *
475  */
476
477 function startup() {
478
479         error_reporting(E_ERROR | E_WARNING | E_PARSE);
480
481         set_time_limit(0);
482
483         // This has to be quite large to deal with embedded private photos
484         ini_set('pcre.backtrack_limit', 500000);
485
486
487         if (get_magic_quotes_gpc()) {
488                 $process = array(&$_GET, &$_POST, &$_COOKIE, &$_REQUEST);
489                 while (list($key, $val) = each($process)) {
490                         foreach ($val as $k => $v) {
491                                 unset($process[$key][$k]);
492                                 if (is_array($v)) {
493                                         $process[$key][stripslashes($k)] = $v;
494                                         $process[] = &$process[$key][stripslashes($k)];
495                                 } else {
496                                         $process[$key][stripslashes($k)] = stripslashes($v);
497                                 }
498                         }
499                 }
500                 unset($process);
501         }
502
503 }
504
505 /**
506  *
507  * class: App
508  *
509  * @brief Our main application structure for the life of this page.
510  *
511  * Primarily deals with the URL that got us here
512  * and tries to make some sense of it, and
513  * stores our page contents and config storage
514  * and anything else that might need to be passed around
515  * before we spit the page out.
516  *
517  */
518 class App {
519
520         /// @TODO decide indending as a colorful mixure is ahead ...
521         public  $module_loaded = false;
522         public  $query_string;
523         public  $config;
524         public  $page;
525         public  $profile;
526         public  $profile_uid;
527         public  $user;
528         public  $cid;
529         public  $contact;
530         public  $contacts;
531         public  $page_contact;
532         public  $content;
533         public  $data = array();
534         public  $error = false;
535         public  $cmd;
536         public  $argv;
537         public  $argc;
538         public  $module;
539         public  $pager;
540         public  $strings;
541         public  $path;
542         public  $hooks;
543         public  $timezone;
544         public  $interactive = true;
545         public  $plugins;
546         public  $apps = array();
547         public  $identities;
548         public  $is_mobile = false;
549         public  $is_tablet = false;
550         public  $is_friendica_app;
551         public  $performance = array();
552         public  $callstack = array();
553         public  $theme_info = array();
554         public  $backend = true;
555
556         public $nav_sel;
557
558         public $category;
559
560
561         // Allow themes to control internal parameters
562         // by changing App values in theme.php
563
564         public  $sourcename = '';
565         public  $videowidth = 425;
566         public  $videoheight = 350;
567         public  $force_max_items = 0;
568         public  $theme_thread_allow = true;
569         public  $theme_events_in_profile = true;
570
571         /**
572          * @brief An array for all theme-controllable parameters
573          *
574          * Mostly unimplemented yet. Only options 'template_engine' and
575          * beyond are used.
576          */
577         public  $theme = array(
578                 'sourcename'      => '',
579                 'videowidth'      => 425,
580                 'videoheight'     => 350,
581                 'force_max_items' => 0,
582                 'thread_allow'    => true,
583                 'stylesheet'      => '',
584                 'template_engine' => 'smarty3',
585         );
586
587         /**
588          * @brief An array of registered template engines ('name'=>'class name')
589          */
590         public $template_engines = array();
591         /**
592          * @brief An array of instanced template engines ('name'=>'instance')
593          */
594         public $template_engine_instance = array();
595
596         public $process_id;
597
598         private $ldelim = array(
599                 'internal' => '',
600                 'smarty3' => '{{'
601         );
602         private $rdelim = array(
603                 'internal' => '',
604                 'smarty3' => '}}'
605         );
606
607         private $scheme;
608         private $hostname;
609         private $db;
610
611         private $curl_code;
612         private $curl_content_type;
613         private $curl_headers;
614
615         private $cached_profile_image;
616         private $cached_profile_picdate;
617
618         private static $a;
619
620         /**
621          * @brief App constructor.
622          */
623         function __construct() {
624
625                 global $default_timezone;
626
627                 $hostname = "";
628
629                 if (file_exists(".htpreconfig.php")) {
630                         include ".htpreconfig.php";
631                 }
632
633                 $this->timezone = ((x($default_timezone)) ? $default_timezone : 'UTC');
634
635                 date_default_timezone_set($this->timezone);
636
637                 $this->performance["start"] = microtime(true);
638                 $this->performance["database"] = 0;
639                 $this->performance["database_write"] = 0;
640                 $this->performance["network"] = 0;
641                 $this->performance["file"] = 0;
642                 $this->performance["rendering"] = 0;
643                 $this->performance["parser"] = 0;
644                 $this->performance["marktime"] = 0;
645                 $this->performance["markstart"] = microtime(true);
646
647                 $this->callstack["database"] = array();
648                 $this->callstack["database_write"] = array();
649                 $this->callstack["network"] = array();
650                 $this->callstack["file"] = array();
651                 $this->callstack["rendering"] = array();
652                 $this->callstack["parser"] = array();
653
654                 $this->config = array();
655                 $this->page = array();
656                 $this->pager= array();
657
658                 $this->query_string = '';
659
660                 $this->process_id = uniqid("log", true);
661
662                 startup();
663
664                 set_include_path(
665                                 get_include_path() . PATH_SEPARATOR
666                                 . 'include' . PATH_SEPARATOR
667                                 . 'library' . PATH_SEPARATOR
668                                 . 'library/langdet' . PATH_SEPARATOR
669                                 . '.' );
670
671                 $this->scheme = 'http';
672
673                 if ((x($_SERVER, 'HTTPS') && $_SERVER['HTTPS']) ||
674                                 (x($_SERVER, 'HTTP_FORWARDED') && preg_match("/proto=https/", $_SERVER['HTTP_FORWARDED'])) ||
675                                 (x($_SERVER, 'HTTP_X_FORWARDED_PROTO') && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') ||
676                                 (x($_SERVER, 'HTTP_X_FORWARDED_SSL') && $_SERVER['HTTP_X_FORWARDED_SSL'] == 'on') ||
677                                 (x($_SERVER, 'FRONT_END_HTTPS') && $_SERVER['FRONT_END_HTTPS'] == 'on') ||
678                                 (x($_SERVER, 'SERVER_PORT') && (intval($_SERVER['SERVER_PORT']) == 443)) // XXX: reasonable assumption, but isn't this hardcoding too much?
679                                 ) {
680                         $this->scheme = 'https';
681                 }
682
683                 if (x($_SERVER, 'SERVER_NAME')) {
684                         $this->hostname = $_SERVER['SERVER_NAME'];
685
686                         if (x($_SERVER, 'SERVER_PORT') && $_SERVER['SERVER_PORT'] != 80 && $_SERVER['SERVER_PORT'] != 443) {
687                                 $this->hostname .= ':' . $_SERVER['SERVER_PORT'];
688                         }
689                         /*
690                          * Figure out if we are running at the top of a domain
691                          * or in a sub-directory and adjust accordingly
692                          */
693
694                         /// @TODO This kind of escaping breaks syntax-highlightning on CoolEdit (Midnight Commander)
695                         $path = trim(dirname($_SERVER['SCRIPT_NAME']), '/\\');
696                         if (isset($path) && strlen($path) && ($path != $this->path)) {
697                                 $this->path = $path;
698                         }
699                 }
700
701                 if ($hostname != "") {
702                         $this->hostname = $hostname;
703                 }
704
705                 if (is_array($_SERVER["argv"]) && $_SERVER["argc"] > 1 && substr(end($_SERVER["argv"]), 0, 4) == "http" ) {
706                         $this->set_baseurl(array_pop($_SERVER["argv"]));
707                         $_SERVER["argc"] --;
708                 }
709
710                 if ((x($_SERVER, 'QUERY_STRING')) && substr($_SERVER['QUERY_STRING'], 0, 9) === "pagename=") {
711                         $this->query_string = substr($_SERVER['QUERY_STRING'], 9);
712
713                         // removing trailing / - maybe a nginx problem
714                         $this->query_string = ltrim($this->query_string, '/');
715                 } elseif ((x($_SERVER, 'QUERY_STRING')) && substr($_SERVER['QUERY_STRING'], 0, 2) === "q=") {
716                         $this->query_string = substr($_SERVER['QUERY_STRING'], 2);
717
718                         // removing trailing / - maybe a nginx problem
719                         $this->query_string = ltrim($this->query_string, '/');
720                 }
721
722                 if (x($_GET, 'pagename')) {
723                         $this->cmd = trim($_GET['pagename'], '/\\');
724                 } elseif (x($_GET, 'q')) {
725                         $this->cmd = trim($_GET['q'], '/\\');
726                 }
727
728
729                 // fix query_string
730                 $this->query_string = str_replace($this->cmd . "&", $this->cmd . "?", $this->query_string);
731
732                 // unix style "homedir"
733                 if (substr($this->cmd, 0, 1) === '~') {
734                         $this->cmd = 'profile/' . substr($this->cmd, 1);
735                 }
736
737                 // Diaspora style profile url
738                 if (substr($this->cmd, 0, 2) === 'u/') {
739                         $this->cmd = 'profile/' . substr($this->cmd, 2);
740                 }
741
742
743                 /*
744                  * Break the URL path into C style argc/argv style arguments for our
745                  * modules. Given "http://example.com/module/arg1/arg2", $this->argc
746                  * will be 3 (integer) and $this->argv will contain:
747                  *   [0] => 'module'
748                  *   [1] => 'arg1'
749                  *   [2] => 'arg2'
750                  *
751                  *
752                  * There will always be one argument. If provided a naked domain
753                  * URL, $this->argv[0] is set to "home".
754                  */
755
756                 $this->argv = explode('/', $this->cmd);
757                 $this->argc = count($this->argv);
758                 if ((array_key_exists('0', $this->argv)) && strlen($this->argv[0])) {
759                         $this->module = str_replace(".", "_", $this->argv[0]);
760                         $this->module = str_replace("-", "_", $this->module);
761                 } else {
762                         $this->argc = 1;
763                         $this->argv = array('home');
764                         $this->module = 'home';
765                 }
766
767                 /*
768                  * See if there is any page number information, and initialise
769                  * pagination
770                  */
771
772                 $this->pager['page'] = ((x($_GET, 'page') && intval($_GET['page']) > 0) ? intval($_GET['page']) : 1);
773                 $this->pager['itemspage'] = 50;
774                 $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
775
776                 if ($this->pager['start'] < 0) {
777                         $this->pager['start'] = 0;
778                 }
779                 $this->pager['total'] = 0;
780
781                 /*
782                  * Detect mobile devices
783                  */
784
785                 $mobile_detect = new Mobile_Detect();
786                 $this->is_mobile = $mobile_detect->isMobile();
787                 $this->is_tablet = $mobile_detect->isTablet();
788
789                 // Friendica-Client
790                 $this->is_friendica_app = ($_SERVER['HTTP_USER_AGENT'] == "Apache-HttpClient/UNAVAILABLE (java 1.4)");
791
792                 /*
793                  * register template engines
794                  */
795                 $dc = get_declared_classes();
796                 foreach ($dc as $k) {
797                         if (in_array("ITemplateEngine", class_implements($k))){
798                                 $this->register_template_engine($k);
799                         }
800                 }
801
802                 self::$a = $this;
803
804         }
805
806         public static function get_basepath() {
807
808                 $basepath = get_config("system", "basepath");
809
810                 if ($basepath == "") {
811                         $basepath = dirname(__FILE__);
812                 }
813
814                 if ($basepath == "") {
815                         $basepath = $_SERVER["DOCUMENT_ROOT"];
816                 }
817
818                 if ($basepath == "") {
819                         $basepath = $_SERVER["PWD"];
820                 }
821
822                 return $basepath;
823         }
824
825         function get_scheme() {
826                 return $this->scheme;
827         }
828
829         /**
830          * @brief Retrieves the Friendica instance base URL
831          *
832          * This function assembles the base URL from multiple parts:
833          * - Protocol is determined either by the request or a combination of
834          * system.ssl_policy and the $ssl parameter.
835          * - Host name is determined either by system.hostname or inferred from request
836          * - Path is inferred from SCRIPT_NAME
837          *
838          * Note: $ssl parameter value doesn't directly correlate with the resulting protocol
839          *
840          * @param bool $ssl Whether to append http or https under SSL_POLICY_SELFSIGN
841          * @return string Friendica server base URL
842          */
843         function get_baseurl($ssl = false) {
844
845                 // Is the function called statically?
846                 if (!(isset($this) && get_class($this) == __CLASS__)) {
847                         return self::$a->get_baseurl($ssl);
848                 }
849
850                 $scheme = $this->scheme;
851
852                 if (Config::get('system', 'ssl_policy') == SSL_POLICY_FULL) {
853                         $scheme = 'https';
854                 }
855
856                 //      Basically, we have $ssl = true on any links which can only be seen by a logged in user
857                 //      (and also the login link). Anything seen by an outsider will have it turned off.
858
859                 if (Config::get('system', 'ssl_policy') == SSL_POLICY_SELFSIGN) {
860                         if ($ssl) {
861                                 $scheme = 'https';
862                         } else {
863                                 $scheme = 'http';
864                         }
865                 }
866
867                 if (Config::get('config', 'hostname') != '') {
868                         $this->hostname = Config::get('config', 'hostname');
869                 }
870
871                 return $scheme . "://" . $this->hostname . ((isset($this->path) && strlen($this->path)) ? '/' . $this->path : '' );
872         }
873
874         /**
875          * @brief Initializes the baseurl components
876          *
877          * Clears the baseurl cache to prevent inconstistencies
878          *
879          * @param string $url
880          */
881         function set_baseurl($url) {
882                 $parsed = @parse_url($url);
883
884                 if ($parsed) {
885                         $this->scheme = $parsed['scheme'];
886
887                         $hostname = $parsed['host'];
888                         if (x($parsed, 'port')) {
889                                 $hostname .= ':' . $parsed['port'];
890                         }
891                         if (x($parsed, 'path')) {
892                                 $this->path = trim($parsed['path'], '\\/');
893                         }
894
895                         if (file_exists(".htpreconfig.php")) {
896                                 include ".htpreconfig.php";
897                         }
898
899                         if (get_config('config', 'hostname') != '') {
900                                 $this->hostname = get_config('config', 'hostname');
901                         }
902
903                         if (!isset($this->hostname) OR ($this->hostname == '')) {
904                                 $this->hostname = $hostname;
905                         }
906                 }
907         }
908
909         function get_hostname() {
910                 if (get_config('config', 'hostname') != "") {
911                         $this->hostname = get_config('config', 'hostname');
912                 }
913
914                 return $this->hostname;
915         }
916
917         function set_hostname($h) {
918                 $this->hostname = $h;
919         }
920
921         function set_path($p) {
922                 $this->path = trim(trim($p), '/');
923         }
924
925         function get_path() {
926                 return $this->path;
927         }
928
929         function set_pager_total($n) {
930                 $this->pager['total'] = intval($n);
931         }
932
933         function set_pager_itemspage($n) {
934                 $this->pager['itemspage'] = ((intval($n) > 0) ? intval($n) : 0);
935                 $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
936         }
937
938         function set_pager_page($n) {
939                 $this->pager['page'] = $n;
940                 $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
941         }
942
943         function init_pagehead() {
944                 $interval = ((local_user()) ? get_pconfig(local_user(),'system','update_interval') : 40000);
945
946                 // If the update is "deactivated" set it to the highest integer number (~24 days)
947                 if ($interval < 0) {
948                         $interval = 2147483647;
949                 }
950
951                 if ($interval < 10000) {
952                         $interval = 40000;
953                 }
954
955                 // compose the page title from the sitename and the
956                 // current module called
957                 if (!$this->module == '') {
958                     $this->page['title'] = $this->config['sitename'] . ' (' . $this->module . ')';
959                 } else {
960                         $this->page['title'] = $this->config['sitename'];
961                 }
962
963                 /* put the head template at the beginning of page['htmlhead']
964                  * since the code added by the modules frequently depends on it
965                  * being first
966                  */
967                 if (!isset($this->page['htmlhead'])) {
968                         $this->page['htmlhead'] = '';
969                 }
970
971                 // If we're using Smarty, then doing replace_macros() will replace
972                 // any unrecognized variables with a blank string. Since we delay
973                 // replacing $stylesheet until later, we need to replace it now
974                 // with another variable name
975                 if ($this->theme['template_engine'] === 'smarty3') {
976                         $stylesheet = $this->get_template_ldelim('smarty3') . '$stylesheet' . $this->get_template_rdelim('smarty3');
977                 } else {
978                         $stylesheet = '$stylesheet';
979                 }
980
981                 $shortcut_icon = get_config("system", "shortcut_icon");
982                 if ($shortcut_icon == "") {
983                         $shortcut_icon = "images/friendica-32.png";
984                 }
985
986                 $touch_icon = get_config("system", "touch_icon");
987                 if ($touch_icon == "") {
988                         $touch_icon = "images/friendica-128.png";
989                 }
990
991                 // get data wich is needed for infinite scroll on the network page
992                 $invinite_scroll = infinite_scroll_data($this->module);
993
994                 $tpl = get_markup_template('head.tpl');
995                 $this->page['htmlhead'] = replace_macros($tpl,array(
996                         '$baseurl' => $this->get_baseurl(), // FIXME for z_path!!!!
997                         '$local_user' => local_user(),
998                         '$generator' => 'Friendica' . ' ' . FRIENDICA_VERSION,
999                         '$delitem' => t('Delete this item?'),
1000                         '$showmore' => t('show more'),
1001                         '$showfewer' => t('show fewer'),
1002                         '$update_interval' => $interval,
1003                         '$shortcut_icon' => $shortcut_icon,
1004                         '$touch_icon' => $touch_icon,
1005                         '$stylesheet' => $stylesheet,
1006                         '$infinite_scroll' => $invinite_scroll,
1007                 )) . $this->page['htmlhead'];
1008         }
1009
1010         function init_page_end() {
1011                 if (!isset($this->page['end'])) {
1012                         $this->page['end'] = '';
1013                 }
1014                 $tpl = get_markup_template('end.tpl');
1015                 $this->page['end'] = replace_macros($tpl,array(
1016                         '$baseurl' => $this->get_baseurl() // FIXME for z_path!!!!
1017                 )) . $this->page['end'];
1018         }
1019
1020         function set_curl_code($code) {
1021                 $this->curl_code = $code;
1022         }
1023
1024         function get_curl_code() {
1025                 return $this->curl_code;
1026         }
1027
1028         function set_curl_content_type($content_type) {
1029                 $this->curl_content_type = $content_type;
1030         }
1031
1032         function get_curl_content_type() {
1033                 return $this->curl_content_type;
1034         }
1035
1036         function set_curl_headers($headers) {
1037                 $this->curl_headers = $headers;
1038         }
1039
1040         function get_curl_headers() {
1041                 return $this->curl_headers;
1042         }
1043
1044         function get_cached_avatar_image($avatar_image){
1045                 return $avatar_image;
1046         }
1047
1048
1049         /**
1050          * @brief Removes the baseurl from an url. This avoids some mixed content problems.
1051          *
1052          * @param string $orig_url
1053          *
1054          * @return string The cleaned url
1055          */
1056         function remove_baseurl($orig_url){
1057
1058                 // Is the function called statically?
1059                 if (!(isset($this) && get_class($this) == __CLASS__)) {
1060                         return self::$a->remove_baseurl($orig_url);
1061                 }
1062
1063                 // Remove the hostname from the url if it is an internal link
1064                 $nurl = normalise_link($orig_url);
1065                 $base = normalise_link($this->get_baseurl());
1066                 $url = str_replace($base."/", "", $nurl);
1067
1068                 // if it is an external link return the orignal value
1069                 if ($url == normalise_link($orig_url)) {
1070                         return $orig_url;
1071                 } else {
1072                         return $url;
1073                 }
1074         }
1075
1076         /**
1077          * @brief Register template engine class
1078          *
1079          * If $name is "", is used class static property $class::$name
1080          *
1081          * @param string $class
1082          * @param string $name
1083          */
1084         function register_template_engine($class, $name = '') {
1085                 /// @TODO Really === and not just == ?
1086                 if ($name === "") {
1087                         $v = get_class_vars( $class );
1088                         if (x($v,"name")) $name = $v['name'];
1089                 }
1090                 if ($name === "") {
1091                         echo "template engine <tt>$class</tt> cannot be registered without a name.\n";
1092                         killme();
1093                 }
1094                 $this->template_engines[$name] = $class;
1095         }
1096
1097         /**
1098          * @brief Return template engine instance.
1099          *
1100          * If $name is not defined, return engine defined by theme,
1101          * or default
1102          *
1103          * @param strin $name Template engine name
1104          * @return object Template Engine instance
1105          */
1106         function template_engine($name = '') {
1107                 /// @TODO really type-check included?
1108                 if ($name !== "") {
1109                         $template_engine = $name;
1110                 } else {
1111                         $template_engine = 'smarty3';
1112                         if (x($this->theme, 'template_engine')) {
1113                                 $template_engine = $this->theme['template_engine'];
1114                         }
1115                 }
1116
1117                 if (isset($this->template_engines[$template_engine])){
1118                         if (isset($this->template_engine_instance[$template_engine])){
1119                                 return $this->template_engine_instance[$template_engine];
1120                         } else {
1121                                 $class = $this->template_engines[$template_engine];
1122                                 $obj = new $class;
1123                                 $this->template_engine_instance[$template_engine] = $obj;
1124                                 return $obj;
1125                         }
1126                 }
1127
1128                 echo "template engine <tt>$template_engine</tt> is not registered!\n"; killme();
1129         }
1130
1131         /**
1132          * @brief Returns the active template engine.
1133          *
1134          * @return string
1135          */
1136         function get_template_engine() {
1137                 return $this->theme['template_engine'];
1138         }
1139
1140         function set_template_engine($engine = 'smarty3') {
1141                 $this->theme['template_engine'] = $engine;
1142         }
1143
1144         function get_template_ldelim($engine = 'smarty3') {
1145                 return $this->ldelim[$engine];
1146         }
1147
1148         function get_template_rdelim($engine = 'smarty3') {
1149                 return $this->rdelim[$engine];
1150         }
1151
1152         function save_timestamp($stamp, $value) {
1153                 if (!isset($this->config['system']['profiler']) || !$this->config['system']['profiler']) {
1154                         return;
1155                 }
1156
1157                 $duration = (float)(microtime(true)-$stamp);
1158
1159                 if (!isset($this->performance[$value])) {
1160                         // Prevent ugly E_NOTICE
1161                         $this->performance[$value] = 0;
1162                 }
1163
1164                 $this->performance[$value] += (float)$duration;
1165                 $this->performance["marktime"] += (float)$duration;
1166
1167                 $callstack = $this->callstack();
1168
1169                 if (!isset($this->callstack[$value][$callstack])) {
1170                         // Prevent ugly E_NOTICE
1171                         $this->callstack[$value][$callstack] = 0;
1172                 }
1173
1174                 $this->callstack[$value][$callstack] += (float)$duration;
1175
1176         }
1177
1178         /**
1179          * @brief Log active processes into the "process" table
1180          */
1181         function start_process() {
1182                 $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 1);
1183
1184                 $command = basename($trace[0]["file"]);
1185
1186                 $this->remove_inactive_processes();
1187
1188                 q("START TRANSACTION");
1189
1190                 $r = q("SELECT `pid` FROM `process` WHERE `pid` = %d", intval(getmypid()));
1191                 if (!dbm::is_result($r)) {
1192                         q("INSERT INTO `process` (`pid`,`command`,`created`) VALUES (%d, '%s', '%s')",
1193                                 intval(getmypid()),
1194                                 dbesc($command),
1195                                 dbesc(datetime_convert()));
1196                 }
1197                 q("COMMIT");
1198         }
1199
1200         /**
1201          * @brief Remove inactive processes
1202          */
1203         function remove_inactive_processes() {
1204                 q("START TRANSACTION");
1205
1206                 $r = q("SELECT `pid` FROM `process`");
1207                 if (dbm::is_result($r)) {
1208                         foreach ($r AS $process) {
1209                                 if (!posix_kill($process["pid"], 0)) {
1210                                         q("DELETE FROM `process` WHERE `pid` = %d", intval($process["pid"]));
1211                                 }
1212                         }
1213                 }
1214                 q("COMMIT");
1215         }
1216
1217         /**
1218          * @brief Remove the active process from the "process" table
1219          */
1220         function end_process() {
1221                 q("DELETE FROM `process` WHERE `pid` = %d", intval(getmypid()));
1222         }
1223
1224         /**
1225          * @brief Returns a string with a callstack. Can be used for logging.
1226          *
1227          * @return string
1228          */
1229         function callstack() {
1230                 $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 6);
1231
1232                 // We remove the first two items from the list since they contain data that we don't need.
1233                 array_shift($trace);
1234                 array_shift($trace);
1235
1236                 $callstack = array();
1237                 foreach ($trace AS $func) {
1238                         $callstack[] = $func["function"];
1239                 }
1240
1241                 return implode(", ", $callstack);
1242         }
1243
1244         function get_useragent() {
1245                 return
1246                         FRIENDICA_PLATFORM . " '" .
1247                         FRIENDICA_CODENAME . "' " .
1248                         FRIENDICA_VERSION . "-" .
1249                         DB_UPDATE_VERSION . "; " .
1250                         $this->get_baseurl();
1251         }
1252
1253         function is_friendica_app() {
1254                 return $this->is_friendica_app;
1255         }
1256
1257         /**
1258          * @brief Checks if the site is called via a backend process
1259          *
1260          * This isn't a perfect solution. But we need this check very early.
1261          * So we cannot wait until the modules are loaded.
1262          *
1263          * @return bool Is it a known backend?
1264          */
1265         function is_backend() {
1266                 static $backends = array();
1267                 $backends[] = "_well_known";
1268                 $backends[] = "api";
1269                 $backends[] = "dfrn_notify";
1270                 $backends[] = "fetch";
1271                 $backends[] = "hcard";
1272                 $backends[] = "hostxrd";
1273                 $backends[] = "nodeinfo";
1274                 $backends[] = "noscrape";
1275                 $backends[] = "p";
1276                 $backends[] = "poco";
1277                 $backends[] = "post";
1278                 $backends[] = "proxy";
1279                 $backends[] = "pubsub";
1280                 $backends[] = "pubsubhubbub";
1281                 $backends[] = "receive";
1282                 $backends[] = "rsd_xml";
1283                 $backends[] = "salmon";
1284                 $backends[] = "statistics_json";
1285                 $backends[] = "xrd";
1286
1287                 // Check if current module is in backend or backend flag is set
1288                 return (in_array($this->module, $backends) || $this->backend);
1289         }
1290
1291         /**
1292          * @brief Checks if the maximum number of database processes is reached
1293          *
1294          * @return bool Is the limit reached?
1295          */
1296         function max_processes_reached() {
1297
1298                 if ($this->is_backend()) {
1299                         $process = "backend";
1300                         $max_processes = get_config('system', 'max_processes_backend');
1301                         if (intval($max_processes) == 0) {
1302                                 $max_processes = 5;
1303                         }
1304                 } else {
1305                         $process = "frontend";
1306                         $max_processes = get_config('system', 'max_processes_frontend');
1307                         if (intval($max_processes) == 0) {
1308                                 $max_processes = 20;
1309                         }
1310                 }
1311
1312                 $processlist = dbm::processlist();
1313                 if ($processlist["list"] != "") {
1314                         logger("Processcheck: Processes: ".$processlist["amount"]." - Processlist: ".$processlist["list"], LOGGER_DEBUG);
1315
1316                         if ($processlist["amount"] > $max_processes) {
1317                                 logger("Processcheck: Maximum number of processes for ".$process." tasks (".$max_processes.") reached.", LOGGER_DEBUG);
1318                                 return true;
1319                         }
1320                 }
1321                 return false;
1322         }
1323
1324         /**
1325          * @brief Checks if the maximum load is reached
1326          *
1327          * @return bool Is the load reached?
1328          */
1329         function maxload_reached() {
1330
1331                 if ($this->is_backend()) {
1332                         $process = "backend";
1333                         $maxsysload = intval(get_config('system', 'maxloadavg'));
1334                         if ($maxsysload < 1) {
1335                                 $maxsysload = 50;
1336                         }
1337                 } else {
1338                         $process = "frontend";
1339                         $maxsysload = intval(get_config('system','maxloadavg_frontend'));
1340                         if ($maxsysload < 1) {
1341                                 $maxsysload = 50;
1342                         }
1343                 }
1344
1345                 $load = current_load();
1346                 if ($load) {
1347                         if (intval($load) > $maxsysload) {
1348                                 logger('system: load '.$load.' for '.$process.' tasks ('.$maxsysload.') too high.');
1349                                 return true;
1350                         }
1351                 }
1352                 return false;
1353         }
1354
1355         function proc_run($args) {
1356
1357                 if (!function_exists("proc_open")) {
1358                         return;
1359                 }
1360
1361                 // If the last worker fork was less than 10 seconds before then don't fork another one.
1362                 // This should prevent the forking of masses of workers.
1363                 $cachekey = "app:proc_run:started";
1364                 $result = Cache::get($cachekey);
1365
1366                 if (!is_null($result) AND (time() - $result) < 10) {
1367                         return;
1368                 }
1369
1370                 // Set the timestamp of the last proc_run
1371                 Cache::set($cachekey, time(), CACHE_MINUTE);
1372
1373                 array_unshift($args, ((x($this->config,'php_path')) && (strlen($this->config['php_path'])) ? $this->config['php_path'] : 'php'));
1374
1375                 // add baseurl to args. cli scripts can't construct it
1376                 $args[] = $this->get_baseurl();
1377
1378                 for ($x = 0; $x < count($args); $x ++) {
1379                         $args[$x] = escapeshellarg($args[$x]);
1380                 }
1381
1382                 $cmdline = implode($args, " ");
1383
1384                 if (get_config('system', 'proc_windows')) {
1385                         $resource = proc_open('cmd /c start /b ' . $cmdline, array(), $foo, dirname(__FILE__));
1386                 } else {
1387                         $resource = proc_open($cmdline . " &", array(), $foo, dirname(__FILE__));
1388                 }
1389                 if (!is_resource($resource)) {
1390                         logger('We got no resource for command '.$cmdline, LOGGER_DEBUG);
1391                         return;
1392                 }
1393                 proc_close($resource);
1394         }
1395
1396         /**
1397          * @brief Returns the system user that is executing the script
1398          *
1399          * This mostly returns something like "www-data".
1400          *
1401          * @return string system username
1402          */
1403         static function systemuser() {
1404                 if (!function_exists('posix_getpwuid') OR !function_exists('posix_geteuid')) {
1405                         return '';
1406                 }
1407
1408                 $processUser = posix_getpwuid(posix_geteuid());
1409                 return $processUser['name'];
1410         }
1411
1412         /**
1413          * @brief Checks if a given directory is usable for the system
1414          *
1415          * @return boolean the directory is usable
1416          */
1417         static function directory_usable($directory) {
1418
1419                 if ($directory == '') {
1420                         logger("Directory is empty. This shouldn't happen.", LOGGER_DEBUG);
1421                         return false;
1422                 }
1423
1424                 if (!file_exists($directory)) {
1425                         logger('Path "'.$directory.'" does not exist for user '.self::systemuser(), LOGGER_DEBUG);
1426                         return false;
1427                 }
1428                 if (is_file($directory)) {
1429                         logger('Path "'.$directory.'" is a file for user '.self::systemuser(), LOGGER_DEBUG);
1430                         return false;
1431                 }
1432                 if (!is_dir($directory)) {
1433                         logger('Path "'.$directory.'" is not a directory for user '.self::systemuser(), LOGGER_DEBUG);
1434                         return false;
1435                 }
1436                 if (!is_writable($directory)) {
1437                         logger('Path "'.$directory.'" is not writable for user '.self::systemuser(), LOGGER_DEBUG);
1438                         return false;
1439                 }
1440                 return true;
1441         }
1442 }
1443
1444 /**
1445  * @brief Retrieve the App structure
1446  *
1447  * Useful in functions which require it but don't get it passed to them
1448  */
1449 function get_app() {
1450         global $a;
1451         return $a;
1452 }
1453
1454
1455 /**
1456  * @brief Multi-purpose function to check variable state.
1457  *
1458  * Usage: x($var) or $x($array, 'key')
1459  *
1460  * returns false if variable/key is not set
1461  * if variable is set, returns 1 if has 'non-zero' value, otherwise returns 0.
1462  * e.g. x('') or x(0) returns 0;
1463  *
1464  * @param string|array $s variable to check
1465  * @param string $k key inside the array to check
1466  *
1467  * @return bool|int
1468  */
1469 function x($s,$k = NULL) {
1470         if ($k != NULL) {
1471                 if ((is_array($s)) && (array_key_exists($k, $s))) {
1472                         if ($s[$k]) {
1473                                 return (int) 1;
1474                         }
1475                         return (int) 0;
1476                 }
1477                 return false;
1478         } else {
1479                 if (isset($s)) {
1480                         if ($s) {
1481                                 return (int) 1;
1482                         }
1483                         return (int) 0;
1484                 }
1485                 return false;
1486         }
1487 }
1488
1489
1490 /**
1491  * @brief Called from db initialisation if db is dead.
1492  */
1493 function system_unavailable() {
1494         include('system_unavailable.php');
1495         system_down();
1496         killme();
1497 }
1498
1499
1500 function clean_urls() {
1501         $a = get_app();
1502         return true;
1503 }
1504
1505 function z_path() {
1506         $base = App::get_baseurl();
1507
1508         if (! clean_urls()) {
1509                 $base .= '/?q=';
1510         }
1511
1512         return $base;
1513 }
1514
1515 /**
1516  * @brief Returns the baseurl.
1517  *
1518  * @see App::get_baseurl()
1519  *
1520  * @return string
1521  * @TODO Maybe super-flous and deprecated? Seems to only wrap App::get_baseurl()
1522  */
1523 function z_root() {
1524         return App::get_baseurl();
1525 }
1526
1527 /**
1528  * @brief Return absolut URL for given $path.
1529  *
1530  * @param string $path
1531  *
1532  * @return string
1533  */
1534 function absurl($path) {
1535         if (strpos($path,'/') === 0) {
1536                 return z_path() . $path;
1537         }
1538         return $path;
1539 }
1540
1541 /**
1542  * @brief Function to check if request was an AJAX (xmlhttprequest) request.
1543  *
1544  * @return boolean
1545  */
1546 function is_ajax() {
1547         return (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest');
1548 }
1549
1550 function check_db() {
1551
1552         $build = get_config('system','build');
1553         if (! x($build)) {
1554                 set_config('system','build',DB_UPDATE_VERSION);
1555                 $build = DB_UPDATE_VERSION;
1556         }
1557         if ($build != DB_UPDATE_VERSION) {
1558                 proc_run(PRIORITY_CRITICAL, 'include/dbupdate.php');
1559         }
1560
1561 }
1562
1563
1564 /**
1565  * Sets the base url for use in cmdline programs which don't have
1566  * $_SERVER variables
1567  */
1568 function check_url(App $a) {
1569
1570         $url = get_config('system','url');
1571
1572         // if the url isn't set or the stored url is radically different
1573         // than the currently visited url, store the current value accordingly.
1574         // "Radically different" ignores common variations such as http vs https
1575         // and www.example.com vs example.com.
1576         // We will only change the url to an ip address if there is no existing setting
1577
1578         if (! x($url)) {
1579                 $url = set_config('system','url',App::get_baseurl());
1580         }
1581         if ((! link_compare($url,App::get_baseurl())) && (! preg_match("/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/",$a->get_hostname))) {
1582                 $url = set_config('system','url',App::get_baseurl());
1583         }
1584
1585         return;
1586 }
1587
1588
1589 /**
1590  * @brief Automatic database updates
1591  */
1592 function update_db(App $a) {
1593         $build = get_config('system','build');
1594         if (! x($build)) {
1595                 $build = set_config('system','build',DB_UPDATE_VERSION);
1596         }
1597
1598         if ($build != DB_UPDATE_VERSION) {
1599                 $stored = intval($build);
1600                 $current = intval(DB_UPDATE_VERSION);
1601                 if ($stored < $current) {
1602                         Config::load('database');
1603
1604                         // We're reporting a different version than what is currently installed.
1605                         // Run any existing update scripts to bring the database up to current.
1606
1607                         // make sure that boot.php and update.php are the same release, we might be
1608                         // updating right this very second and the correct version of the update.php
1609                         // file may not be here yet. This can happen on a very busy site.
1610
1611                         if (DB_UPDATE_VERSION == UPDATE_VERSION) {
1612                                 // Compare the current structure with the defined structure
1613
1614                                 $t = get_config('database','dbupdate_'.DB_UPDATE_VERSION);
1615                                 if ($t !== false) {
1616                                         return;
1617                                 }
1618
1619                                 set_config('database','dbupdate_'.DB_UPDATE_VERSION, time());
1620
1621                                 // run old update routine (wich could modify the schema and
1622                                 // conflits with new routine)
1623                                 for ($x = $stored; $x < NEW_UPDATE_ROUTINE_VERSION; $x++) {
1624                                         $r = run_update_function($x);
1625                                         if (!$r) {
1626                                                 break;
1627                                         }
1628                                 }
1629                                 if ($stored < NEW_UPDATE_ROUTINE_VERSION) {
1630                                         $stored = NEW_UPDATE_ROUTINE_VERSION;
1631                                 }
1632
1633                                 // run new update routine
1634                                 // it update the structure in one call
1635                                 $retval = update_structure(false, true);
1636                                 if ($retval) {
1637                                         update_fail(
1638                                                 DB_UPDATE_VERSION,
1639                                                 $retval
1640                                         );
1641                                         return;
1642                                 } else {
1643                                         set_config('database','dbupdate_'.DB_UPDATE_VERSION, 'success');
1644                                 }
1645
1646                                 // run any left update_nnnn functions in update.php
1647                                 for ($x = $stored; $x < $current; $x ++) {
1648                                         $r = run_update_function($x);
1649                                         if (!$r) {
1650                                                 break;
1651                                         }
1652                                 }
1653                         }
1654                 }
1655         }
1656
1657         return;
1658 }
1659
1660 function run_update_function($x) {
1661         if (function_exists('update_' . $x)) {
1662
1663                 // There could be a lot of processes running or about to run.
1664                 // We want exactly one process to run the update command.
1665                 // So store the fact that we're taking responsibility
1666                 // after first checking to see if somebody else already has.
1667
1668                 // If the update fails or times-out completely you may need to
1669                 // delete the config entry to try again.
1670
1671                 $t = get_config('database','update_' . $x);
1672                 if ($t !== false) {
1673                         return false;
1674                 }
1675                 set_config('database','update_' . $x, time());
1676
1677                 // call the specific update
1678
1679                 $func = 'update_' . $x;
1680                 $retval = $func();
1681
1682                 if ($retval) {
1683                         //send the administrator an e-mail
1684                         update_fail(
1685                                 $x,
1686                                 sprintf(t('Update %s failed. See error logs.'), $x)
1687                         );
1688                         return false;
1689                 } else {
1690                         set_config('database','update_' . $x, 'success');
1691                         set_config('system','build', $x + 1);
1692                         return true;
1693                 }
1694         } else {
1695                 set_config('database','update_' . $x, 'success');
1696                 set_config('system','build', $x + 1);
1697                 return true;
1698         }
1699         return true;
1700 }
1701
1702 /**
1703  * @brief Synchronise plugins:
1704  *
1705  * $a->config['system']['addon'] contains a comma-separated list of names
1706  * of plugins/addons which are used on this system.
1707  * Go through the database list of already installed addons, and if we have
1708  * an entry, but it isn't in the config list, call the uninstall procedure
1709  * and mark it uninstalled in the database (for now we'll remove it).
1710  * Then go through the config list and if we have a plugin that isn't installed,
1711  * call the install procedure and add it to the database.
1712  *
1713  * @param App $a
1714  *
1715  */
1716 function check_plugins(App $a) {
1717
1718         $r = q("SELECT * FROM `addon` WHERE `installed` = 1");
1719         if (dbm::is_result($r)) {
1720                 $installed = $r;
1721         } else {
1722                 $installed = array();
1723         }
1724
1725         $plugins = get_config('system','addon');
1726         $plugins_arr = array();
1727
1728         if ($plugins) {
1729                 $plugins_arr = explode(',',str_replace(' ', '',$plugins));
1730         }
1731
1732         $a->plugins = $plugins_arr;
1733
1734         $installed_arr = array();
1735
1736         if (count($installed)) {
1737                 foreach ($installed as $i) {
1738                         if (! in_array($i['name'],$plugins_arr)) {
1739                                 uninstall_plugin($i['name']);
1740                         } else {
1741                                 $installed_arr[] = $i['name'];
1742                         }
1743                 }
1744         }
1745
1746         if (count($plugins_arr)) {
1747                 foreach ($plugins_arr as $p) {
1748                         if (! in_array($p,$installed_arr)) {
1749                                 install_plugin($p);
1750                         }
1751                 }
1752         }
1753
1754
1755         load_hooks();
1756
1757         return;
1758 }
1759
1760 function get_guid($size=16, $prefix = "") {
1761
1762         if ($prefix == "") {
1763                 $a = get_app();
1764                 $prefix = hash("crc32", $a->get_hostname());
1765         }
1766
1767         while (strlen($prefix) < ($size - 13)) {
1768                 $prefix .= mt_rand();
1769         }
1770
1771         if ($size >= 24) {
1772                 $prefix = substr($prefix, 0, $size - 22);
1773                 return(str_replace(".", "", uniqid($prefix, true)));
1774         } else {
1775                 $prefix = substr($prefix, 0, max($size - 13, 0));
1776                 return(uniqid($prefix));
1777         }
1778 }
1779
1780 /**
1781  * @brief Wrapper for adding a login box.
1782  *
1783  * @param bool $register
1784  *      If $register == true provide a registration link.
1785  *      This will most always depend on the value of $a->config['register_policy'].
1786  * @param bool $hiddens
1787  *
1788  * @return string
1789  *      Returns the complete html for inserting into the page
1790  *
1791  * @hooks 'login_hook'
1792  *      string $o
1793  */
1794 function login($register = false, $hiddens=false) {
1795         $a = get_app();
1796         $o = "";
1797         $reg = false;
1798         if ($register) {
1799                 $reg = array(
1800                         'title' => t('Create a New Account'),
1801                         'desc' => t('Register')
1802                 );
1803         }
1804
1805         $noid = get_config('system','no_openid');
1806
1807         $dest_url = $a->query_string;
1808
1809         if (local_user()) {
1810                 $tpl = get_markup_template("logout.tpl");
1811         } else {
1812                 $a->page['htmlhead'] .= replace_macros(get_markup_template("login_head.tpl"),array(
1813                         '$baseurl' => $a->get_baseurl(true)
1814                 ));
1815
1816                 $tpl = get_markup_template("login.tpl");
1817                 $_SESSION['return_url'] = $a->query_string;
1818                 $a->module = 'login';
1819         }
1820
1821         $o .= replace_macros($tpl, array(
1822
1823                 '$dest_url'     => $dest_url,
1824                 '$logout'       => t('Logout'),
1825                 '$login'        => t('Login'),
1826
1827                 '$lname'        => array('username', t('Nickname or Email: ') , '', ''),
1828                 '$lpassword'    => array('password', t('Password: '), '', ''),
1829                 '$lremember'    => array('remember', t('Remember me'), 0,  ''),
1830
1831                 '$openid'       => !$noid,
1832                 '$lopenid'      => array('openid_url', t('Or login using OpenID: '),'',''),
1833
1834                 '$hiddens'      => $hiddens,
1835
1836                 '$register'     => $reg,
1837
1838                 '$lostpass'     => t('Forgot your password?'),
1839                 '$lostlink'     => t('Password Reset'),
1840
1841                 '$tostitle'     => t('Website Terms of Service'),
1842                 '$toslink'      => t('terms of service'),
1843
1844                 '$privacytitle' => t('Website Privacy Policy'),
1845                 '$privacylink'  => t('privacy policy'),
1846
1847         ));
1848
1849         call_hooks('login_hook',$o);
1850
1851         return $o;
1852 }
1853
1854 /**
1855  * @brief Used to end the current process, after saving session state.
1856  */
1857 function killme() {
1858
1859         if (!get_app()->is_backend()) {
1860                 session_write_close();
1861         }
1862
1863         exit();
1864 }
1865
1866 /**
1867  * @brief Redirect to another URL and terminate this process.
1868  */
1869 function goaway($s) {
1870         if (!strstr(normalise_link($s), "http://")) {
1871                 $s = App::get_baseurl()."/".$s;
1872         }
1873
1874         header("Location: $s");
1875         killme();
1876 }
1877
1878
1879 /**
1880  * @brief Returns the user id of locally logged in user or false.
1881  *
1882  * @return int|bool user id or false
1883  */
1884 function local_user() {
1885         if (x($_SESSION, 'authenticated') && x($_SESSION, 'uid')) {
1886                 return intval($_SESSION['uid']);
1887         }
1888         return false;
1889 }
1890
1891 /**
1892  * @brief Returns the public contact id of logged in user or false.
1893  *
1894  * @return int|bool public contact id or false
1895  */
1896 function public_contact() {
1897         static $public_contact_id = false;
1898
1899         if (!$public_contact_id && x($_SESSION, 'authenticated')) {
1900                 if (x($_SESSION, 'my_address')) {
1901                         // Local user
1902                         $public_contact_id = intval(get_contact($_SESSION['my_address'], 0));
1903                 } elseif (x($_SESSION, 'visitor_home')) {
1904                         // Remote user
1905                         $public_contact_id = intval(get_contact($_SESSION['visitor_home'], 0));
1906                 }
1907         } elseif (!x($_SESSION, 'authenticated')) {
1908                 $public_contact_id = false;
1909         }
1910
1911         return $public_contact_id;
1912 }
1913
1914 /**
1915  * @brief Returns contact id of authenticated site visitor or false
1916  *
1917  * @return int|bool visitor_id or false
1918  */
1919 function remote_user() {
1920         if ((x($_SESSION,'authenticated')) && (x($_SESSION,'visitor_id'))) {
1921                 return intval($_SESSION['visitor_id']);
1922         }
1923         return false;
1924 }
1925
1926 /**
1927  * @brief Show an error message to user.
1928  *
1929  * This function save text in session, to be shown to the user at next page load
1930  *
1931  * @param string $s - Text of notice
1932  */
1933 function notice($s) {
1934         $a = get_app();
1935         if (! x($_SESSION,'sysmsg')) {
1936                 $_SESSION['sysmsg'] = array();
1937         }
1938         if ($a->interactive) {
1939                 $_SESSION['sysmsg'][] = $s;
1940         }
1941 }
1942
1943 /**
1944  * @brief Show an info message to user.
1945  *
1946  * This function save text in session, to be shown to the user at next page load
1947  *
1948  * @param string $s - Text of notice
1949  */
1950 function info($s) {
1951         $a = get_app();
1952
1953         if (local_user() AND get_pconfig(local_user(),'system','ignore_info')) {
1954                 return;
1955         }
1956
1957         if (! x($_SESSION,'sysmsg_info')) {
1958                 $_SESSION['sysmsg_info'] = array();
1959         }
1960         if ($a->interactive) {
1961                 $_SESSION['sysmsg_info'][] = $s;
1962         }
1963 }
1964
1965
1966 /**
1967  * @brief Wrapper around config to limit the text length of an incoming message
1968  *
1969  * @return int
1970  */
1971 function get_max_import_size() {
1972         $a = get_app();
1973         return ((x($a->config,'max_import_size')) ? $a->config['max_import_size'] : 0 );
1974 }
1975
1976 /**
1977  * @brief Wrap calls to proc_close(proc_open()) and call hook
1978  *      so plugins can take part in process :)
1979  *
1980  * @param (integer|array) priority or parameter array, $cmd atrings are deprecated and are ignored
1981  *
1982  * next args are passed as $cmd command line
1983  * or: proc_run(PRIORITY_HIGH, "include/notifier.php", "drop", $drop_id);
1984  * or: proc_run(array('priority' => PRIORITY_HIGH, 'dont_fork' => true), "include/create_shadowentry.php", $post_id);
1985  *
1986  * @note $cmd and string args are surrounded with ""
1987  *
1988  * @hooks 'proc_run'
1989  *      array $arr
1990  */
1991 function proc_run($cmd){
1992
1993         $a = get_app();
1994
1995         $proc_args = func_get_args();
1996
1997         $args = array();
1998         if (!count($proc_args)) {
1999                 return;
2000         }
2001
2002         // Preserve the first parameter
2003         // It could contain a command, the priority or an parameter array
2004         // If we use the parameter array we have to protect it from the following function
2005         $run_parameter = array_shift($proc_args);
2006
2007         // expand any arrays
2008         foreach ($proc_args as $arg) {
2009                 if (is_array($arg)) {
2010                         foreach ($arg as $n) {
2011                                 $args[] = $n;
2012                         }
2013                 } else {
2014                         $args[] = $arg;
2015                 }
2016         }
2017
2018         // Now we add the run parameters back to the array
2019         array_unshift($args, $run_parameter);
2020
2021         $arr = array('args' => $args, 'run_cmd' => true);
2022
2023         call_hooks("proc_run", $arr);
2024         if (!$arr['run_cmd'] OR !count($args)) {
2025                 return;
2026         }
2027
2028         $priority = PRIORITY_MEDIUM;
2029         $dont_fork = get_config("system", "worker_dont_fork");
2030
2031         if (is_int($run_parameter)) {
2032                 $priority = $run_parameter;
2033         } elseif (is_array($run_parameter)) {
2034                 if (isset($run_parameter['priority'])) {
2035                         $priority = $run_parameter['priority'];
2036                 }
2037                 if (isset($run_parameter['dont_fork'])) {
2038                         $dont_fork = $run_parameter['dont_fork'];
2039                 }
2040         }
2041
2042         $argv = $args;
2043         array_shift($argv);
2044
2045         $parameters = json_encode($argv);
2046         $found = q("SELECT `id` FROM `workerqueue` WHERE `parameter` = '%s'",
2047                 dbesc($parameters));
2048
2049         if (!dbm::is_result($found)) {
2050                 q("INSERT INTO `workerqueue` (`parameter`, `created`, `priority`)
2051                         VALUES ('%s', '%s', %d)",
2052                         dbesc($parameters),
2053                         dbesc(datetime_convert()),
2054                         intval($priority));
2055         }
2056
2057         // Should we quit and wait for the poller to be called as a cronjob?
2058         if ($dont_fork) {
2059                 return;
2060         }
2061
2062         // Checking number of workers
2063         $workers = q("SELECT COUNT(*) AS `workers` FROM `workerqueue` WHERE `executed` > '%s'", dbesc(NULL_DATE));
2064
2065         // Get number of allowed number of worker threads
2066         $queues = intval(get_config("system", "worker_queues"));
2067
2068         if ($queues == 0) {
2069                 $queues = 4;
2070         }
2071
2072         // If there are already enough workers running, don't fork another one
2073         if ($workers[0]["workers"] >= $queues) {
2074                 return;
2075         }
2076
2077         // Now call the poller to execute the jobs that we just added to the queue
2078         $args = array("include/poller.php", "no_cron");
2079
2080         $a->proc_run($args);
2081 }
2082
2083 function current_theme(){
2084         $app_base_themes = array('duepuntozero', 'dispy', 'quattro');
2085
2086         $a = get_app();
2087
2088         $page_theme = null;
2089
2090         // Find the theme that belongs to the user whose stuff we are looking at
2091
2092         if ($a->profile_uid && ($a->profile_uid != local_user())) {
2093                 $r = q("select theme from user where uid = %d limit 1",
2094                         intval($a->profile_uid)
2095                 );
2096                 if (dbm::is_result($r)) {
2097                         $page_theme = $r[0]['theme'];
2098                 }
2099         }
2100
2101         // Allow folks to over-rule user themes and always use their own on their own site.
2102         // This works only if the user is on the same server
2103
2104         if ($page_theme && local_user() && (local_user() != $a->profile_uid)) {
2105                 if (get_pconfig(local_user(),'system','always_my_theme')) {
2106                         $page_theme = null;
2107                 }
2108         }
2109
2110 //              $mobile_detect = new Mobile_Detect();
2111 //              $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
2112         $is_mobile = $a->is_mobile || $a->is_tablet;
2113
2114         $standard_system_theme = Config::get('system', 'theme', '');
2115         $standard_theme_name = ((isset($_SESSION) && x($_SESSION,'theme')) ? $_SESSION['theme'] : $standard_system_theme);
2116
2117         if ($is_mobile) {
2118                 if (isset($_SESSION['show-mobile']) && !$_SESSION['show-mobile']) {
2119                         $system_theme = $standard_system_theme;
2120                         $theme_name = $standard_theme_name;
2121                 } else {
2122                         $system_theme = Config::get('system', 'mobile-theme', '');
2123                         if ($system_theme == '') {
2124                                 $system_theme = $standard_system_theme;
2125                         }
2126                         $theme_name = ((isset($_SESSION) && x($_SESSION,'mobile-theme')) ? $_SESSION['mobile-theme'] : $system_theme);
2127
2128                         if ($theme_name === '---') {
2129                                 // user has selected to have the mobile theme be the same as the normal one
2130                                 $system_theme = $standard_system_theme;
2131                                 $theme_name = $standard_theme_name;
2132
2133                                 if ($page_theme) {
2134                                         $theme_name = $page_theme;
2135                                 }
2136                         }
2137                 }
2138         } else {
2139                 $system_theme = $standard_system_theme;
2140                 $theme_name = $standard_theme_name;
2141
2142                 if ($page_theme) {
2143                         $theme_name = $page_theme;
2144                 }
2145         }
2146
2147         if ($theme_name &&
2148                         (file_exists('view/theme/' . $theme_name . '/style.css') ||
2149                                         file_exists('view/theme/' . $theme_name . '/style.php'))) {
2150                 return($theme_name);
2151         }
2152
2153         foreach ($app_base_themes as $t) {
2154                 if (file_exists('view/theme/' . $t . '/style.css') ||
2155                                 file_exists('view/theme/' . $t . '/style.php')) {
2156                         return($t);
2157                 }
2158         }
2159
2160         $fallback = array_merge(glob('view/theme/*/style.css'),glob('view/theme/*/style.php'));
2161         if (count($fallback)) {
2162                 return (str_replace('view/theme/','', substr($fallback[0],0,-10)));
2163         }
2164
2165         /// @TODO No final return statement?
2166 }
2167
2168 /**
2169  * @brief Return full URL to theme which is currently in effect.
2170  *
2171  * Provide a sane default if nothing is chosen or the specified theme does not exist.
2172  *
2173  * @return string
2174  */
2175 function current_theme_url() {
2176         $a = get_app();
2177
2178         $t = current_theme();
2179
2180         $opts = (($a->profile_uid) ? '?f=&puid=' . $a->profile_uid : '');
2181         if (file_exists('view/theme/' . $t . '/style.php')) {
2182                 return('view/theme/'.$t.'/style.pcss'.$opts);
2183         }
2184
2185         return('view/theme/'.$t.'/style.css');
2186 }
2187
2188 function feed_birthday($uid,$tz) {
2189
2190         /**
2191          *
2192          * Determine the next birthday, but only if the birthday is published
2193          * in the default profile. We _could_ also look for a private profile that the
2194          * recipient can see, but somebody could get mad at us if they start getting
2195          * public birthday greetings when they haven't made this info public.
2196          *
2197          * Assuming we are able to publish this info, we are then going to convert
2198          * the start time from the owner's timezone to UTC.
2199          *
2200          * This will potentially solve the problem found with some social networks
2201          * where birthdays are converted to the viewer's timezone and salutations from
2202          * elsewhere in the world show up on the wrong day. We will convert it to the
2203          * viewer's timezone also, but first we are going to convert it from the birthday
2204          * person's timezone to GMT - so the viewer may find the birthday starting at
2205          * 6:00PM the day before, but that will correspond to midnight to the birthday person.
2206          *
2207          */
2208
2209
2210         $birthday = '';
2211
2212         if (! strlen($tz)) {
2213                 $tz = 'UTC';
2214         }
2215
2216         $p = q("SELECT `dob` FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
2217                         intval($uid)
2218         );
2219
2220         if (dbm::is_result($p)) {
2221                 $tmp_dob = substr($p[0]['dob'],5);
2222                 if (intval($tmp_dob)) {
2223                         $y = datetime_convert($tz,$tz,'now','Y');
2224                         $bd = $y . '-' . $tmp_dob . ' 00:00';
2225                         $t_dob = strtotime($bd);
2226                         $now = strtotime(datetime_convert($tz,$tz,'now'));
2227                         if ($t_dob < $now) {
2228                                 $bd = $y + 1 . '-' . $tmp_dob . ' 00:00';
2229                         }
2230                         $birthday = datetime_convert($tz,'UTC',$bd,ATOM_TIME);
2231                 }
2232         }
2233
2234         return $birthday;
2235 }
2236
2237 /**
2238  * @brief Check if current user has admin role.
2239  *
2240  * @return bool true if user is an admin
2241  */
2242 function is_site_admin() {
2243         $a = get_app();
2244
2245         $adminlist = explode(",", str_replace(" ", "", $a->config['admin_email']));
2246
2247         //if(local_user() && x($a->user,'email') && x($a->config,'admin_email') && ($a->user['email'] === $a->config['admin_email']))
2248         if (local_user() && x($a->user,'email') && x($a->config,'admin_email') && in_array($a->user['email'], $adminlist)) {
2249                 return true;
2250         }
2251         return false;
2252 }
2253
2254 /**
2255  * @brief Returns querystring as string from a mapped array.
2256  *
2257  * @param array $params mapped array with query parameters
2258  * @param string $name of parameter, default null
2259  *
2260  * @return string
2261  */
2262 function build_querystring($params, $name = null) {
2263         $ret = "";
2264         foreach ($params as $key => $val) {
2265                 if (is_array($val)) {
2266                         /// @TODO maybe not compare against null, use is_null()
2267                         if ($name == null) {
2268                                 $ret .= build_querystring($val, $key);
2269                         } else {
2270                                 $ret .= build_querystring($val, $name."[$key]");
2271                         }
2272                 } else {
2273                         $val = urlencode($val);
2274                         /// @TODO maybe not compare against null, use is_null()
2275                         if ($name != null) {
2276                                 /// @TODO two string concated, can be merged to one
2277                                 $ret .= $name . "[$key]" . "=$val&";
2278                         } else {
2279                                 $ret .= "$key=$val&";
2280                         }
2281                 }
2282         }
2283         return $ret;
2284 }
2285
2286 function explode_querystring($query) {
2287         $arg_st = strpos($query, '?');
2288         if ($arg_st !== false) {
2289                 $base = substr($query, 0, $arg_st);
2290                 $arg_st += 1;
2291         } else {
2292                 $base = '';
2293                 $arg_st = 0;
2294         }
2295
2296         $args = explode('&', substr($query, $arg_st));
2297         foreach ($args as $k => $arg) {
2298                 /// @TODO really compare type-safe here?
2299                 if ($arg === '') {
2300                         unset($args[$k]);
2301                 }
2302         }
2303         $args = array_values($args);
2304
2305         if (!$base) {
2306                 $base = $args[0];
2307                 unset($args[0]);
2308                 $args = array_values($args);
2309         }
2310
2311         return array(
2312                 'base' => $base,
2313                 'args' => $args,
2314         );
2315 }
2316
2317 /**
2318 * Returns the complete URL of the current page, e.g.: http(s)://something.com/network
2319 *
2320 * Taken from http://webcheatsheet.com/php/get_current_page_url.php
2321 */
2322 function curPageURL() {
2323         $pageURL = 'http';
2324         if ($_SERVER["HTTPS"] == "on") {
2325                 $pageURL .= "s";
2326         }
2327
2328         $pageURL .= "://";
2329
2330         if ($_SERVER["SERVER_PORT"] != "80" && $_SERVER["SERVER_PORT"] != "443") {
2331                 $pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
2332         } else {
2333                 $pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
2334         }
2335         return $pageURL;
2336 }
2337
2338 function random_digits($digits) {
2339         $rn = '';
2340         for ($i = 0; $i < $digits; $i++) {
2341                 /// @TODO rand() is different to mt_rand() and maybe lesser "random"
2342                 $rn .= rand(0,9);
2343         }
2344         return $rn;
2345 }
2346
2347 function get_server() {
2348         $server = get_config("system", "directory");
2349
2350         if ($server == "") {
2351                 $server = "http://dir.friendi.ca";
2352         }
2353
2354         return($server);
2355 }
2356
2357 function get_cachefile($file, $writemode = true) {
2358         $cache = get_itemcachepath();
2359
2360         if ((! $cache) || (! is_dir($cache))) {
2361                 return("");
2362         }
2363
2364         $subfolder = $cache . "/" . substr($file, 0, 2);
2365
2366         $cachepath = $subfolder . "/" . $file;
2367
2368         if ($writemode) {
2369                 if (!is_dir($subfolder)) {
2370                         mkdir($subfolder);
2371                         chmod($subfolder, 0777);
2372                 }
2373         }
2374
2375         /// @TODO no need to put braces here
2376         return $cachepath;
2377 }
2378
2379 function clear_cache($basepath = "", $path = "") {
2380         if ($path == "") {
2381                 $basepath = get_itemcachepath();
2382                 $path = $basepath;
2383         }
2384
2385         if (($path == "") OR (!is_dir($path))) {
2386                 return;
2387         }
2388
2389         if (substr(realpath($path), 0, strlen($basepath)) != $basepath) {
2390                 return;
2391         }
2392
2393         $cachetime = (int)get_config('system','itemcache_duration');
2394         if ($cachetime == 0) {
2395                 $cachetime = 86400;
2396         }
2397
2398         if (is_writable($path)){
2399                 if ($dh = opendir($path)) {
2400                         while (($file = readdir($dh)) !== false) {
2401                                 $fullpath = $path."/".$file;
2402                                 if ((filetype($fullpath) == "dir") and ($file != ".") and ($file != "..")) {
2403                                         clear_cache($basepath, $fullpath);
2404                                 }
2405                                 if ((filetype($fullpath) == "file") and (filectime($fullpath) < (time() - $cachetime))) {
2406                                         unlink($fullpath);
2407                                 }
2408                         }
2409                         closedir($dh);
2410                 }
2411         }
2412 }
2413
2414 function get_itemcachepath() {
2415         // Checking, if the cache is deactivated
2416         $cachetime = (int)get_config('system','itemcache_duration');
2417         if ($cachetime < 0) {
2418                 return "";
2419         }
2420
2421         $itemcache = get_config('system','itemcache');
2422         if (($itemcache != "") AND App::directory_usable($itemcache)) {
2423                 return $itemcache;
2424         }
2425
2426         $temppath = get_temppath();
2427
2428         if ($temppath != "") {
2429                 $itemcache = $temppath."/itemcache";
2430                 if (!file_exists($itemcache) && !is_dir($itemcache)) {
2431                         mkdir($itemcache);
2432                 }
2433
2434                 if (App::directory_usable($itemcache)) {
2435                         set_config("system", "itemcache", $itemcache);
2436                         return $itemcache;
2437                 }
2438         }
2439         return "";
2440 }
2441
2442 /**
2443  * @brief Returns the path where spool files are stored
2444  *
2445  * @return string Spool path
2446  */
2447 function get_spoolpath() {
2448         $spoolpath = get_config('system','spoolpath');
2449         if (($spoolpath != "") AND App::directory_usable($spoolpath)) {
2450                 // We have a spool path and it is usable
2451                 return $spoolpath;
2452         }
2453
2454         // We don't have a working preconfigured spool path, so we take the temp path.
2455         $temppath = get_temppath();
2456
2457         if ($temppath != "") {
2458                 // To avoid any interferences with other systems we create our own directory
2459                 $spoolpath = $temppath."/spool";
2460                 if (!is_dir($spoolpath)) {
2461                         mkdir($spoolpath);
2462                 }
2463
2464                 if (App::directory_usable($spoolpath)) {
2465                         // The new path is usable, we are happy
2466                         set_config("system", "spoolpath", $spoolpath);
2467                         return $spoolpath;
2468                 } else {
2469                         // We can't create a subdirectory, strange.
2470                         // But the directory seems to work, so we use it but don't store it.
2471                         return $temppath;
2472                 }
2473         }
2474
2475         // Reaching this point means that the operating system is configured badly.
2476         return "";
2477 }
2478
2479 function get_temppath() {
2480         $a = get_app();
2481
2482         $temppath = get_config("system", "temppath");
2483
2484         if (($temppath != "") AND App::directory_usable($temppath)) {
2485                 // We have a temp path and it is usable
2486                 return $temppath;
2487         }
2488
2489         // We don't have a working preconfigured temp path, so we take the system path.
2490         $temppath = sys_get_temp_dir();
2491
2492         // Check if it is usable
2493         if (($temppath != "") AND App::directory_usable($temppath)) {
2494                 // To avoid any interferences with other systems we create our own directory
2495                 $new_temppath = $temppath."/".$a->get_hostname();
2496                 if (!is_dir($new_temppath)) {
2497                         /// @TODO There is a mkdir()+chmod() upwards, maybe generalize this (+ configurable) into a function/method?
2498                         mkdir($new_temppath);
2499                 }
2500
2501                 if (App::directory_usable($new_temppath)) {
2502                         // The new path is usable, we are happy
2503                         set_config("system", "temppath", $new_temppath);
2504                         return $new_temppath;
2505                 } else {
2506                         // We can't create a subdirectory, strange.
2507                         // But the directory seems to work, so we use it but don't store it.
2508                         return $temppath;
2509                 }
2510         }
2511
2512         // Reaching this point means that the operating system is configured badly.
2513         return '';
2514 }
2515
2516 /// @deprecated
2517 function set_template_engine(App $a, $engine = 'internal') {
2518 /// @note This function is no longer necessary, but keep it as a wrapper to the class method
2519 /// to avoid breaking themes again unnecessarily
2520 /// @TODO maybe output a warning here so the theme developer can see it? PHP won't show such warnings like Java does.
2521
2522         $a->set_template_engine($engine);
2523 }
2524
2525 if (!function_exists('exif_imagetype')) {
2526         function exif_imagetype($file) {
2527                 $size = getimagesize($file);
2528                 return $size[2];
2529         }
2530 }
2531
2532 function validate_include(&$file) {
2533         $orig_file = $file;
2534
2535         $file = realpath($file);
2536
2537         if (strpos($file, getcwd()) !== 0) {
2538                 return false;
2539         }
2540
2541         $file = str_replace(getcwd()."/", "", $file, $count);
2542         if ($count != 1) {
2543                 return false;
2544         }
2545
2546         if ($orig_file !== $file) {
2547                 return false;
2548         }
2549
2550         $valid = false;
2551         if (strpos($file, "include/") === 0) {
2552                 $valid = true;
2553         }
2554
2555         if (strpos($file, "addon/") === 0) {
2556                 $valid = true;
2557         }
2558
2559         // Simply return flag
2560         return ($valid);
2561 }
2562
2563 function current_load() {
2564         if (!function_exists('sys_getloadavg')) {
2565                 return false;
2566         }
2567
2568         $load_arr = sys_getloadavg();
2569
2570         if (!is_array($load_arr)) {
2571                 return false;
2572         }
2573
2574         return max($load_arr[0], $load_arr[1]);
2575 }
2576
2577 /**
2578  * @brief get c-style args
2579  *
2580  * @return int
2581  */
2582 function argc() {
2583         return get_app()->argc;
2584 }
2585
2586 /**
2587  * @brief Returns the value of a argv key
2588  *
2589  * @param int $x argv key
2590  * @return string Value of the argv key
2591  */
2592 function argv($x) {
2593         if (array_key_exists($x,get_app()->argv)) {
2594                 return get_app()->argv[$x];
2595         }
2596
2597         return '';
2598 }
2599
2600 /**
2601  * @brief Get the data which is needed for infinite scroll
2602  *
2603  * For invinite scroll we need the page number of the actual page
2604  * and the the URI where the content of the next page comes from.
2605  * This data is needed for the js part in main.js.
2606  * Note: infinite scroll does only work for the network page (module)
2607  *
2608  * @param string $module The name of the module (e.g. "network")
2609  * @return array Of infinite scroll data
2610  *      'pageno' => $pageno The number of the actual page
2611  *      'reload_uri' => $reload_uri The URI of the content we have to load
2612  */
2613 function infinite_scroll_data($module) {
2614
2615         if (get_pconfig(local_user(),'system','infinite_scroll')
2616                 AND ($module == "network") AND ($_GET["mode"] != "minimal")) {
2617
2618                 // get the page number
2619                 if (is_string($_GET["page"])) {
2620                         $pageno = $_GET["page"];
2621                 } else {
2622                         $pageno = 1;
2623                 }
2624
2625                 $reload_uri = "";
2626
2627                 // try to get the uri from which we load the content
2628                 foreach ($_GET AS $param => $value) {
2629                         if (($param != "page") AND ($param != "q")) {
2630                                 $reload_uri .= "&" . $param . "=" . urlencode($value);
2631                         }
2632                 }
2633
2634                 if (($a->page_offset != "") AND !strstr($reload_uri, "&offset=")) {
2635                         $reload_uri .= "&offset=" . urlencode($a->page_offset);
2636                 }
2637
2638                 $arr = array("pageno" => $pageno, "reload_uri" => $reload_uri);
2639
2640                 return $arr;
2641         }
2642 }