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