]> git.mxchange.org Git - friendica.git/blob - boot.php
Fix include/boot uses
[friendica.git] / boot.php
1 <?php
2 /** @file boot.php
3  *
4  * This file defines some global constants and includes the central App class.
5  */
6
7 /**
8  * Friendica
9  *
10  * Friendica is a communications platform for integrated social communications
11  * utilising decentralised communications and linkage to several indie social
12  * projects - as well as popular mainstream providers.
13  *
14  * Our mission is to free our friends and families from the clutches of
15  * data-harvesting corporations, and pave the way to a future where social
16  * communications are free and open and flow between alternate providers as
17  * easily as email does today.
18  */
19
20 require_once __DIR__ . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php';
21
22 use Friendica\App;
23 use Friendica\Core\Addon;
24 use Friendica\Core\Config;
25 use Friendica\Core\L10n;
26 use Friendica\Core\PConfig;
27 use Friendica\Core\System;
28 use Friendica\Core\Worker;
29 use Friendica\Database\DBM;
30 use Friendica\Database\DBStructure;
31 use Friendica\Model\Contact;
32 use Friendica\Util\DateTimeFormat;
33
34 require_once 'include/text.php';
35 require_once 'include/datetime.php';
36
37 define('FRIENDICA_PLATFORM',     'Friendica');
38 define('FRIENDICA_CODENAME',     'Asparagus');
39 define('FRIENDICA_VERSION',      '3.6-dev');
40 define('DFRN_PROTOCOL_VERSION',  '2.23');
41 define('DB_UPDATE_VERSION',      1248);
42 define('NEW_UPDATE_ROUTINE_VERSION', 1170);
43
44 /**
45  * @brief Constants for the database update check
46  */
47 const DB_UPDATE_NOT_CHECKED = 0; // Database check wasn't executed before
48 const DB_UPDATE_SUCCESSFUL = 1;  // Database check was successful
49 const DB_UPDATE_FAILED = 2;      // Database check failed
50
51 /**
52  * @brief Constant with a HTML line break.
53  *
54  * Contains a HTML line break (br) element and a real carriage return with line
55  * feed for the source.
56  * This can be used in HTML and JavaScript where needed a line break.
57  */
58 define('EOL',                    "<br />\r\n");
59
60 /**
61  * @brief Image storage quality.
62  *
63  * Lower numbers save space at cost of image detail.
64  * For ease of upgrade, please do not change here. Change jpeg quality with
65  * $a->config['system']['jpeg_quality'] = n;
66  * in .htconfig.php, where n is netween 1 and 100, and with very poor results
67  * below about 50
68  */
69 define('JPEG_QUALITY',            100);
70
71 /**
72  * $a->config['system']['png_quality'] from 0 (uncompressed) to 9
73  */
74 define('PNG_QUALITY',             8);
75
76 /**
77  * An alternate way of limiting picture upload sizes. Specify the maximum pixel
78  * length that pictures are allowed to be (for non-square pictures, it will apply
79  * to the longest side). Pictures longer than this length will be resized to be
80  * this length (on the longest side, the other side will be scaled appropriately).
81  * Modify this value using
82  *
83  *    $a->config['system']['max_image_length'] = n;
84  *
85  * in .htconfig.php
86  *
87  * If you don't want to set a maximum length, set to -1. The default value is
88  * defined by 'MAX_IMAGE_LENGTH' below.
89  */
90 define('MAX_IMAGE_LENGTH',        -1);
91
92 /**
93  * Not yet used
94  */
95 define('DEFAULT_DB_ENGINE',  'InnoDB');
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
150 /**
151  * @name Contact_is
152  *
153  * Relationship types
154  * @{
155  */
156 define('CONTACT_IS_FOLLOWER', 1);
157 define('CONTACT_IS_SHARING',  2);
158 define('CONTACT_IS_FRIEND',   3);
159 /**
160  *  @}
161  */
162
163 /**
164  * @name Update
165  *
166  * DB update return values
167  * @{
168  */
169 define('UPDATE_SUCCESS', 0);
170 define('UPDATE_FAILED',  1);
171 /**
172  * @}
173  */
174
175 /**
176  * @name page/profile types
177  *
178  * PAGE_NORMAL is a typical personal profile account
179  * PAGE_SOAPBOX automatically approves all friend requests as CONTACT_IS_SHARING, (readonly)
180  * PAGE_COMMUNITY automatically approves all friend requests as CONTACT_IS_SHARING, but with
181  *      write access to wall and comments (no email and not included in page owner's ACL lists)
182  * PAGE_FREELOVE automatically approves all friend requests as full friends (CONTACT_IS_FRIEND).
183  *
184  * @{
185  */
186 define('PAGE_NORMAL',            0);
187 define('PAGE_SOAPBOX',           1);
188 define('PAGE_COMMUNITY',         2);
189 define('PAGE_FREELOVE',          3);
190 define('PAGE_BLOG',              4);
191 define('PAGE_PRVGROUP',          5);
192 /**
193  * @}
194  */
195
196 /**
197  * @name account types
198  *
199  * ACCOUNT_TYPE_PERSON - the account belongs to a person
200  *      Associated page types: PAGE_NORMAL, PAGE_SOAPBOX, PAGE_FREELOVE
201  *
202  * ACCOUNT_TYPE_ORGANISATION - the account belongs to an organisation
203  *      Associated page type: PAGE_SOAPBOX
204  *
205  * ACCOUNT_TYPE_NEWS - the account is a news reflector
206  *      Associated page type: PAGE_SOAPBOX
207  *
208  * ACCOUNT_TYPE_COMMUNITY - the account is community forum
209  *      Associated page types: PAGE_COMMUNITY, PAGE_PRVGROUP
210  * @{
211  */
212 define('ACCOUNT_TYPE_PERSON',      0);
213 define('ACCOUNT_TYPE_ORGANISATION', 1);
214 define('ACCOUNT_TYPE_NEWS',        2);
215 define('ACCOUNT_TYPE_COMMUNITY',   3);
216 /**
217  * @}
218  */
219
220 /**
221  * @name CP
222  *
223  * Type of the community page
224  * @{
225  */
226 define('CP_NO_COMMUNITY_PAGE',  -1);
227 define('CP_USERS_ON_SERVER',     0);
228 define('CP_GLOBAL_COMMUNITY',    1);
229 define('CP_USERS_AND_GLOBAL',    2);
230 /**
231  * @}
232  */
233
234 /**
235  * @name Protocols
236  *
237  * Different protocols that we are storing
238  * @{
239  */
240 define('PROTOCOL_UNKNOWN',         0);
241 define('PROTOCOL_DFRN',            1);
242 define('PROTOCOL_DIASPORA',        2);
243 define('PROTOCOL_OSTATUS_SALMON',  3);
244 define('PROTOCOL_OSTATUS_FEED',    4); // Deprecated
245 define('PROTOCOL_GS_CONVERSATION', 5); // Deprecated
246 define('PROTOCOL_SPLITTED_CONV',   6);
247 /**
248  * @}
249  */
250
251 /**
252  * @name Network
253  *
254  * Network and protocol family types
255  * @{
256  */
257 define('NETWORK_DFRN',             'dfrn');    // Friendica, Mistpark, other DFRN implementations
258 define('NETWORK_ZOT',              'zot!');    // Zot! - Currently unsupported
259 define('NETWORK_OSTATUS',          'stat');    // GNU-social, Pleroma, Mastodon, other OStatus implementations
260 define('NETWORK_FEED',             'feed');    // RSS/Atom feeds with no known "post/notify" protocol
261 define('NETWORK_DIASPORA',         'dspr');    // Diaspora
262 define('NETWORK_MAIL',             'mail');    // IMAP/POP
263 define('NETWORK_FACEBOOK',         'face');    // Facebook API
264 define('NETWORK_LINKEDIN',         'lnkd');    // LinkedIn
265 define('NETWORK_XMPP',             'xmpp');    // XMPP - Currently unsupported
266 define('NETWORK_MYSPACE',          'mysp');    // MySpace - Currently unsupported
267 define('NETWORK_GPLUS',            'goog');    // Google+
268 define('NETWORK_PUMPIO',           'pump');    // pump.io
269 define('NETWORK_TWITTER',          'twit');    // Twitter
270 define('NETWORK_DIASPORA2',        'dspc');    // Diaspora connector
271 define('NETWORK_STATUSNET',        'stac');    // Statusnet connector
272 define('NETWORK_APPNET',           'apdn');    // app.net - Dead protocol
273 define('NETWORK_NEWS',             'nntp');    // Network News Transfer Protocol - Currently unsupported
274 define('NETWORK_ICALENDAR',        'ical');    // iCalendar - Currently unsupported
275 define('NETWORK_PNUT',             'pnut');    // pnut.io - Currently unsupported
276 define('NETWORK_PHANTOM',          'unkn');    // Place holder
277 /**
278  * @}
279  */
280
281 /**
282  * These numbers are used in stored permissions
283  * and existing allocations MUST NEVER BE CHANGED
284  * OR RE-ASSIGNED! You may only add to them.
285  */
286 $netgroup_ids = [
287         NETWORK_DFRN     => (-1),
288         NETWORK_ZOT      => (-2),
289         NETWORK_OSTATUS  => (-3),
290         NETWORK_FEED     => (-4),
291         NETWORK_DIASPORA => (-5),
292         NETWORK_MAIL     => (-6),
293         NETWORK_FACEBOOK => (-8),
294         NETWORK_LINKEDIN => (-9),
295         NETWORK_XMPP     => (-10),
296         NETWORK_MYSPACE  => (-11),
297         NETWORK_GPLUS    => (-12),
298         NETWORK_PUMPIO   => (-13),
299         NETWORK_TWITTER  => (-14),
300         NETWORK_DIASPORA2 => (-15),
301         NETWORK_STATUSNET => (-16),
302         NETWORK_APPNET    => (-17),
303         NETWORK_NEWS      => (-18),
304         NETWORK_ICALENDAR => (-19),
305         NETWORK_PNUT      => (-20),
306
307         NETWORK_PHANTOM  => (-127),
308 ];
309
310 /**
311  * Maximum number of "people who like (or don't like) this"  that we will list by name
312  */
313 define('MAX_LIKERS',    75);
314
315 /**
316  * Communication timeout
317  */
318 define('ZCURL_TIMEOUT', (-1));
319
320 /**
321  * @name Notify
322  *
323  * Email notification options
324  * @{
325  */
326 define('NOTIFY_INTRO',    0x0001);
327 define('NOTIFY_CONFIRM',  0x0002);
328 define('NOTIFY_WALL',     0x0004);
329 define('NOTIFY_COMMENT',  0x0008);
330 define('NOTIFY_MAIL',     0x0010);
331 define('NOTIFY_SUGGEST',  0x0020);
332 define('NOTIFY_PROFILE',  0x0040);
333 define('NOTIFY_TAGSELF',  0x0080);
334 define('NOTIFY_TAGSHARE', 0x0100);
335 define('NOTIFY_POKE',     0x0200);
336 define('NOTIFY_SHARE',    0x0400);
337
338 define('SYSTEM_EMAIL',    0x4000);
339
340 define('NOTIFY_SYSTEM',   0x8000);
341 /* @}*/
342
343
344 /**
345  * @name Term
346  *
347  * Tag/term types
348  * @{
349  */
350 define('TERM_UNKNOWN',   0);
351 define('TERM_HASHTAG',   1);
352 define('TERM_MENTION',   2);
353 define('TERM_CATEGORY',  3);
354 define('TERM_PCATEGORY', 4);
355 define('TERM_FILE',      5);
356 define('TERM_SAVEDSEARCH', 6);
357 define('TERM_CONVERSATION', 7);
358
359 define('TERM_OBJ_POST',  1);
360 define('TERM_OBJ_PHOTO', 2);
361
362 /**
363  * @name Namespaces
364  *
365  * Various namespaces we may need to parse
366  * @{
367  */
368 define('NAMESPACE_ZOT',             'http://purl.org/zot');
369 define('NAMESPACE_DFRN',            'http://purl.org/macgirvin/dfrn/1.0');
370 define('NAMESPACE_THREAD',          'http://purl.org/syndication/thread/1.0');
371 define('NAMESPACE_TOMB',            'http://purl.org/atompub/tombstones/1.0');
372 define('NAMESPACE_ACTIVITY',        'http://activitystrea.ms/spec/1.0/');
373 define('NAMESPACE_ACTIVITY_SCHEMA', 'http://activitystrea.ms/schema/1.0/');
374 define('NAMESPACE_MEDIA',           'http://purl.org/syndication/atommedia');
375 define('NAMESPACE_SALMON_ME',       'http://salmon-protocol.org/ns/magic-env');
376 define('NAMESPACE_OSTATUSSUB',      'http://ostatus.org/schema/1.0/subscribe');
377 define('NAMESPACE_GEORSS',          'http://www.georss.org/georss');
378 define('NAMESPACE_POCO',            'http://portablecontacts.net/spec/1.0');
379 define('NAMESPACE_FEED',            'http://schemas.google.com/g/2010#updates-from');
380 define('NAMESPACE_OSTATUS',         'http://ostatus.org/schema/1.0');
381 define('NAMESPACE_STATUSNET',       'http://status.net/schema/api/1/');
382 define('NAMESPACE_ATOM1',           'http://www.w3.org/2005/Atom');
383 define('NAMESPACE_MASTODON',        'http://mastodon.social/schema/1.0');
384 /* @}*/
385
386 /**
387  * @name Activity
388  *
389  * Activity stream defines
390  * @{
391  */
392 define('ACTIVITY_LIKE',        NAMESPACE_ACTIVITY_SCHEMA . 'like');
393 define('ACTIVITY_DISLIKE',     NAMESPACE_DFRN            . '/dislike');
394 define('ACTIVITY_ATTEND',      NAMESPACE_ZOT             . '/activity/attendyes');
395 define('ACTIVITY_ATTENDNO',    NAMESPACE_ZOT             . '/activity/attendno');
396 define('ACTIVITY_ATTENDMAYBE', NAMESPACE_ZOT             . '/activity/attendmaybe');
397
398 define('ACTIVITY_OBJ_HEART',   NAMESPACE_DFRN            . '/heart');
399
400 define('ACTIVITY_FRIEND',      NAMESPACE_ACTIVITY_SCHEMA . 'make-friend');
401 define('ACTIVITY_REQ_FRIEND',  NAMESPACE_ACTIVITY_SCHEMA . 'request-friend');
402 define('ACTIVITY_UNFRIEND',    NAMESPACE_ACTIVITY_SCHEMA . 'remove-friend');
403 define('ACTIVITY_FOLLOW',      NAMESPACE_ACTIVITY_SCHEMA . 'follow');
404 define('ACTIVITY_UNFOLLOW',    NAMESPACE_ACTIVITY_SCHEMA . 'stop-following');
405 define('ACTIVITY_JOIN',        NAMESPACE_ACTIVITY_SCHEMA . 'join');
406
407 define('ACTIVITY_POST',        NAMESPACE_ACTIVITY_SCHEMA . 'post');
408 define('ACTIVITY_UPDATE',      NAMESPACE_ACTIVITY_SCHEMA . 'update');
409 define('ACTIVITY_TAG',         NAMESPACE_ACTIVITY_SCHEMA . 'tag');
410 define('ACTIVITY_FAVORITE',    NAMESPACE_ACTIVITY_SCHEMA . 'favorite');
411 define('ACTIVITY_UNFAVORITE',  NAMESPACE_ACTIVITY_SCHEMA . 'unfavorite');
412 define('ACTIVITY_SHARE',       NAMESPACE_ACTIVITY_SCHEMA . 'share');
413 define('ACTIVITY_DELETE',      NAMESPACE_ACTIVITY_SCHEMA . 'delete');
414
415 define('ACTIVITY_POKE',        NAMESPACE_ZOT . '/activity/poke');
416
417 define('ACTIVITY_OBJ_BOOKMARK', NAMESPACE_ACTIVITY_SCHEMA . 'bookmark');
418 define('ACTIVITY_OBJ_COMMENT', NAMESPACE_ACTIVITY_SCHEMA . 'comment');
419 define('ACTIVITY_OBJ_NOTE',    NAMESPACE_ACTIVITY_SCHEMA . 'note');
420 define('ACTIVITY_OBJ_PERSON',  NAMESPACE_ACTIVITY_SCHEMA . 'person');
421 define('ACTIVITY_OBJ_IMAGE',   NAMESPACE_ACTIVITY_SCHEMA . 'image');
422 define('ACTIVITY_OBJ_PHOTO',   NAMESPACE_ACTIVITY_SCHEMA . 'photo');
423 define('ACTIVITY_OBJ_VIDEO',   NAMESPACE_ACTIVITY_SCHEMA . 'video');
424 define('ACTIVITY_OBJ_P_PHOTO', NAMESPACE_ACTIVITY_SCHEMA . 'profile-photo');
425 define('ACTIVITY_OBJ_ALBUM',   NAMESPACE_ACTIVITY_SCHEMA . 'photo-album');
426 define('ACTIVITY_OBJ_EVENT',   NAMESPACE_ACTIVITY_SCHEMA . 'event');
427 define('ACTIVITY_OBJ_GROUP',   NAMESPACE_ACTIVITY_SCHEMA . 'group');
428 define('ACTIVITY_OBJ_TAGTERM', NAMESPACE_DFRN            . '/tagterm');
429 define('ACTIVITY_OBJ_PROFILE', NAMESPACE_DFRN            . '/profile');
430 define('ACTIVITY_OBJ_QUESTION', 'http://activityschema.org/object/question');
431 /* @}*/
432
433 /**
434  * @name Gravity
435  *
436  * Item weight for query ordering
437  * @{
438  */
439 define('GRAVITY_PARENT',       0);
440 define('GRAVITY_LIKE',         3);
441 define('GRAVITY_COMMENT',      6);
442 /* @}*/
443
444 /**
445  * @name Priority
446  *
447  * Process priority for the worker
448  * @{
449  */
450 define('PRIORITY_UNDEFINED',   0);
451 define('PRIORITY_CRITICAL',   10);
452 define('PRIORITY_HIGH',       20);
453 define('PRIORITY_MEDIUM',     30);
454 define('PRIORITY_LOW',        40);
455 define('PRIORITY_NEGLIGIBLE', 50);
456 /* @}*/
457
458 /**
459  * @name Social Relay settings
460  *
461  * See here: https://github.com/jaywink/social-relay
462  * and here: https://wiki.diasporafoundation.org/Relay_servers_for_public_posts
463  * @{
464  */
465 define('SR_SCOPE_NONE', '');
466 define('SR_SCOPE_ALL',  'all');
467 define('SR_SCOPE_TAGS', 'tags');
468 /* @}*/
469
470 /**
471  * Lowest possible date time value
472  */
473 define('NULL_DATE', '0001-01-01 00:00:00');
474
475 // Normally this constant is defined - but not if "pcntl" isn't installed
476 if (!defined("SIGTERM")) {
477         define("SIGTERM", 15);
478 }
479
480 /**
481  * Depending on the PHP version this constant does exist - or not.
482  * See here: http://php.net/manual/en/curl.constants.php#117928
483  */
484 if (!defined('CURLE_OPERATION_TIMEDOUT')) {
485         define('CURLE_OPERATION_TIMEDOUT', CURLE_OPERATION_TIMEOUTED);
486 }
487 /**
488  * Reverse the effect of magic_quotes_gpc if it is enabled.
489  * Please disable magic_quotes_gpc so we don't have to do this.
490  * See http://php.net/manual/en/security.magicquotes.disabling.php
491  */
492 function startup()
493 {
494         error_reporting(E_ERROR | E_WARNING | E_PARSE);
495
496         set_time_limit(0);
497
498         // This has to be quite large to deal with embedded private photos
499         ini_set('pcre.backtrack_limit', 500000);
500
501         if (get_magic_quotes_gpc()) {
502                 $process = [&$_GET, &$_POST, &$_COOKIE, &$_REQUEST];
503                 while (list($key, $val) = each($process)) {
504                         foreach ($val as $k => $v) {
505                                 unset($process[$key][$k]);
506                                 if (is_array($v)) {
507                                         $process[$key][stripslashes($k)] = $v;
508                                         $process[] = &$process[$key][stripslashes($k)];
509                                 } else {
510                                         $process[$key][stripslashes($k)] = stripslashes($v);
511                                 }
512                         }
513                 }
514                 unset($process);
515         }
516 }
517
518 /**
519  * @brief Retrieve the App structure
520  *
521  * Useful in functions which require it but don't get it passed to them
522  *
523  * @return App
524  */
525 function get_app()
526 {
527         global $a;
528
529         if (empty($a)) {
530                 $a = new App(dirname(__DIR__));
531         }
532
533         return $a;
534 }
535
536 /**
537  * @brief Multi-purpose function to check variable state.
538  *
539  * Usage: x($var) or $x($array, 'key')
540  *
541  * returns false if variable/key is not set
542  * if variable is set, returns 1 if has 'non-zero' value, otherwise returns 0.
543  * e.g. x('') or x(0) returns 0;
544  *
545  * @param string|array $s variable to check
546  * @param string       $k key inside the array to check
547  *
548  * @return bool|int
549  */
550 function x($s, $k = null)
551 {
552         if ($k != null) {
553                 if ((is_array($s)) && (array_key_exists($k, $s))) {
554                         if ($s[$k]) {
555                                 return (int) 1;
556                         }
557                         return (int) 0;
558                 }
559                 return false;
560         } else {
561                 if (isset($s)) {
562                         if ($s) {
563                                 return (int) 1;
564                         }
565                         return (int) 0;
566                 }
567                 return false;
568         }
569 }
570
571 /**
572  * Return the provided variable value if it exists and is truthy or the provided
573  * default value instead.
574  *
575  * Works with initialized variables and potentially uninitialized array keys
576  *
577  * Usages:
578  * - defaults($var, $default)
579  * - defaults($array, 'key', $default)
580  *
581  * @brief Returns a defaut value if the provided variable or array key is falsy
582  * @see x()
583  * @return mixed
584  */
585 function defaults() {
586         $args = func_get_args();
587
588         if (count($args) < 2) {
589                 throw new BadFunctionCallException('defaults() requires at least 2 parameters');
590         }
591         if (count($args) > 3) {
592                 throw new BadFunctionCallException('defaults() cannot use more than 3 parameters');
593         }
594         if (count($args) === 3 && is_null($args[1])) {
595                 throw new BadFunctionCallException('defaults($arr, $key, $def) $key is null');
596         }
597
598         $default = array_pop($args);
599
600         if (call_user_func_array('x', $args)) {
601                 if (count($args) === 1) {
602                         $return = $args[0];
603                 } else {
604                         $return = $args[0][$args[1]];
605                 }
606         } else {
607                 $return = $default;
608         }
609
610         return $return;
611 }
612
613 /**
614  * @brief Returns the baseurl.
615  *
616  * @see System::baseUrl()
617  *
618  * @return string
619  * @TODO Function is deprecated and only used in some addons
620  */
621 function z_root()
622 {
623         return System::baseUrl();
624 }
625
626 /**
627  * @brief Return absolut URL for given $path.
628  *
629  * @param string $path given path
630  *
631  * @return string
632  */
633 function absurl($path)
634 {
635         if (strpos($path, '/') === 0) {
636                 return z_path() . $path;
637         }
638         return $path;
639 }
640
641 /**
642  * @brief Function to check if request was an AJAX (xmlhttprequest) request.
643  *
644  * @return boolean
645  */
646 function is_ajax()
647 {
648         return (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest');
649 }
650
651 /**
652  * @brief Function to check if request was an AJAX (xmlhttprequest) request.
653  *
654  * @param boolean $via_worker boolean Is the check run via the worker?
655  */
656 function check_db($via_worker)
657 {
658         $build = Config::get('system', 'build');
659
660         if (empty($build)) {
661                 Config::set('system', 'build', DB_UPDATE_VERSION - 1);
662                 $build = DB_UPDATE_VERSION;
663         }
664
665         // We don't support upgrading from very old versions anymore
666         if ($build < NEW_UPDATE_ROUTINE_VERSION) {
667                 die('You try to update from a version prior to database version 1170. The direct upgrade path is not supported. Please update to version 3.5.4 before updating to this version.');
668         }
669
670         if ($build != DB_UPDATE_VERSION) {
671                 // When we cannot execute the database update via the worker, we will do it directly
672                 if (!Worker::add(PRIORITY_CRITICAL, 'DBUpdate') && $via_worker) {
673                         update_db();
674                 }
675         }
676 }
677
678 /**
679  * Sets the base url for use in cmdline programs which don't have
680  * $_SERVER variables
681  *
682  * @param object $a App
683  */
684 function check_url(App $a)
685 {
686         $url = Config::get('system', 'url');
687
688         // if the url isn't set or the stored url is radically different
689         // than the currently visited url, store the current value accordingly.
690         // "Radically different" ignores common variations such as http vs https
691         // and www.example.com vs example.com.
692         // We will only change the url to an ip address if there is no existing setting
693
694         if (empty($url) || (!link_compare($url, System::baseUrl())) && (!preg_match("/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/", $a->get_hostname))) {
695                 Config::set('system', 'url', System::baseUrl());
696         }
697
698         return;
699 }
700
701 /**
702  * @brief Automatic database updates
703  * @param object $a App
704  */
705 function update_db()
706 {
707         $build = Config::get('system', 'build');
708
709         if (empty($build) || ($build > DB_UPDATE_VERSION)) {
710                 $build = DB_UPDATE_VERSION - 1;
711                 Config::set('system', 'build', $build);
712         }
713
714         if ($build != DB_UPDATE_VERSION) {
715                 require_once 'update.php';
716
717                 $stored = intval($build);
718                 $current = intval(DB_UPDATE_VERSION);
719                 if ($stored < $current) {
720                         Config::load('database');
721
722                         // Compare the current structure with the defined structure
723                         $t = Config::get('database', 'dbupdate_' . DB_UPDATE_VERSION);
724                         if (!is_null($t)) {
725                                 return;
726                         }
727
728                         Config::set('database', 'dbupdate_' . DB_UPDATE_VERSION, time());
729
730                         // run update routine
731                         // it update the structure in one call
732                         $retval = DBStructure::update(false, true);
733                         if ($retval) {
734                                 DBStructure::updateFail(
735                                         DB_UPDATE_VERSION,
736                                         $retval
737                                 );
738                                 return;
739                         } else {
740                                 Config::set('database', 'dbupdate_' . DB_UPDATE_VERSION, 'success');
741                         }
742
743                         // run any left update_nnnn functions in update.php
744                         for ($x = $stored + 1; $x <= $current; $x++) {
745                                 $r = run_update_function($x);
746                                 if (!$r) {
747                                         break;
748                                 }
749                         }
750                 }
751         }
752
753         return;
754 }
755
756 function run_update_function($x)
757 {
758         if (function_exists('update_' . $x)) {
759                 // There could be a lot of processes running or about to run.
760                 // We want exactly one process to run the update command.
761                 // So store the fact that we're taking responsibility
762                 // after first checking to see if somebody else already has.
763                 // If the update fails or times-out completely you may need to
764                 // delete the config entry to try again.
765
766                 $t = Config::get('database', 'update_' . $x);
767                 if (!is_null($t)) {
768                         return false;
769                 }
770                 Config::set('database', 'update_' . $x, time());
771
772                 // call the specific update
773
774                 $func = 'update_' . $x;
775                 $retval = $func();
776
777                 if ($retval) {
778                         //send the administrator an e-mail
779                         DBStructure::updateFail(
780                                 $x,
781                                 L10n::t('Update %s failed. See error logs.', $x)
782                         );
783                         return false;
784                 } else {
785                         Config::set('database', 'update_' . $x, 'success');
786                         Config::set('system', 'build', $x);
787                         return true;
788                 }
789         } else {
790                 Config::set('database', 'update_' . $x, 'success');
791                 Config::set('system', 'build', $x);
792                 return true;
793         }
794 }
795
796 /**
797  * @brief Synchronise addons:
798  *
799  * $a->config['system']['addon'] contains a comma-separated list of names
800  * of addons which are used on this system.
801  * Go through the database list of already installed addons, and if we have
802  * an entry, but it isn't in the config list, call the uninstall procedure
803  * and mark it uninstalled in the database (for now we'll remove it).
804  * Then go through the config list and if we have a addon that isn't installed,
805  * call the install procedure and add it to the database.
806  *
807  * @param object $a App
808  */
809 function check_addons(App $a)
810 {
811         $r = q("SELECT * FROM `addon` WHERE `installed` = 1");
812         if (DBM::is_result($r)) {
813                 $installed = $r;
814         } else {
815                 $installed = [];
816         }
817
818         $addons = Config::get('system', 'addon');
819         $addons_arr = [];
820
821         if ($addons) {
822                 $addons_arr = explode(',', str_replace(' ', '', $addons));
823         }
824
825         $a->addons = $addons_arr;
826
827         $installed_arr = [];
828
829         if (count($installed)) {
830                 foreach ($installed as $i) {
831                         if (!in_array($i['name'], $addons_arr)) {
832                                 Addon::uninstall($i['name']);
833                         } else {
834                                 $installed_arr[] = $i['name'];
835                         }
836                 }
837         }
838
839         if (count($addons_arr)) {
840                 foreach ($addons_arr as $p) {
841                         if (!in_array($p, $installed_arr)) {
842                                 Addon::install($p);
843                         }
844                 }
845         }
846
847         Addon::loadHooks();
848
849         return;
850 }
851
852 function get_guid($size = 16, $prefix = "")
853 {
854         if ($prefix == "") {
855                 $a = get_app();
856                 $prefix = hash("crc32", $a->get_hostname());
857         }
858
859         while (strlen($prefix) < ($size - 13)) {
860                 $prefix .= mt_rand();
861         }
862
863         if ($size >= 24) {
864                 $prefix = substr($prefix, 0, $size - 22);
865                 return(str_replace(".", "", uniqid($prefix, true)));
866         } else {
867                 $prefix = substr($prefix, 0, max($size - 13, 0));
868                 return(uniqid($prefix));
869         }
870 }
871
872 /**
873  * @brief Used to end the current process, after saving session state.
874  */
875 function killme()
876 {
877         if (!get_app()->is_backend()) {
878                 session_write_close();
879         }
880
881         exit();
882 }
883
884 /**
885  * @brief Redirect to another URL and terminate this process.
886  */
887 function goaway($path)
888 {
889         if (strstr(normalise_link($path), 'http://')) {
890                 $url = $path;
891         } else {
892                 $url = System::baseUrl() . '/' . ltrim($path, '/');
893         }
894
895         header("Location: $url");
896         killme();
897 }
898
899 /**
900  * @brief Returns the user id of locally logged in user or false.
901  *
902  * @return int|bool user id or false
903  */
904 function local_user()
905 {
906         if (x($_SESSION, 'authenticated') && x($_SESSION, 'uid')) {
907                 return intval($_SESSION['uid']);
908         }
909         return false;
910 }
911
912 /**
913  * @brief Returns the public contact id of logged in user or false.
914  *
915  * @return int|bool public contact id or false
916  */
917 function public_contact()
918 {
919         static $public_contact_id = false;
920
921         if (!$public_contact_id && x($_SESSION, 'authenticated')) {
922                 if (x($_SESSION, 'my_address')) {
923                         // Local user
924                         $public_contact_id = intval(Contact::getIdForURL($_SESSION['my_address'], 0));
925                 } elseif (x($_SESSION, 'visitor_home')) {
926                         // Remote user
927                         $public_contact_id = intval(Contact::getIdForURL($_SESSION['visitor_home'], 0));
928                 }
929         } elseif (!x($_SESSION, 'authenticated')) {
930                 $public_contact_id = false;
931         }
932
933         return $public_contact_id;
934 }
935
936 /**
937  * @brief Returns contact id of authenticated site visitor or false
938  *
939  * @return int|bool visitor_id or false
940  */
941 function remote_user()
942 {
943         // You cannot be both local and remote
944         if (local_user()) {
945                 return false;
946         }
947         if (x($_SESSION, 'authenticated') && x($_SESSION, 'visitor_id')) {
948                 return intval($_SESSION['visitor_id']);
949         }
950         return false;
951 }
952
953 /**
954  * @brief Show an error message to user.
955  *
956  * This function save text in session, to be shown to the user at next page load
957  *
958  * @param string $s - Text of notice
959  */
960 function notice($s)
961 {
962         $a = get_app();
963         if (!x($_SESSION, 'sysmsg')) {
964                 $_SESSION['sysmsg'] = [];
965         }
966         if ($a->interactive) {
967                 $_SESSION['sysmsg'][] = $s;
968         }
969 }
970
971 /**
972  * @brief Show an info message to user.
973  *
974  * This function save text in session, to be shown to the user at next page load
975  *
976  * @param string $s - Text of notice
977  */
978 function info($s)
979 {
980         $a = get_app();
981
982         if (local_user() && PConfig::get(local_user(), 'system', 'ignore_info')) {
983                 return;
984         }
985
986         if (!x($_SESSION, 'sysmsg_info')) {
987                 $_SESSION['sysmsg_info'] = [];
988         }
989         if ($a->interactive) {
990                 $_SESSION['sysmsg_info'][] = $s;
991         }
992 }
993
994 /**
995  * @brief Wrapper around config to limit the text length of an incoming message
996  *
997  * @return int
998  */
999 function get_max_import_size()
1000 {
1001         $a = get_app();
1002         return (x($a->config, 'max_import_size') ? $a->config['max_import_size'] : 0);
1003 }
1004
1005
1006 function current_theme()
1007 {
1008         $app_base_themes = ['duepuntozero', 'dispy', 'quattro'];
1009
1010         $a = get_app();
1011
1012         $page_theme = null;
1013
1014         // Find the theme that belongs to the user whose stuff we are looking at
1015
1016         if ($a->profile_uid && ($a->profile_uid != local_user())) {
1017                 $r = q(
1018                         "select theme from user where uid = %d limit 1",
1019                         intval($a->profile_uid)
1020                 );
1021                 if (DBM::is_result($r)) {
1022                         $page_theme = $r[0]['theme'];
1023                 }
1024         }
1025
1026         // Allow folks to over-rule user themes and always use their own on their own site.
1027         // This works only if the user is on the same server
1028
1029         if ($page_theme && local_user() && (local_user() != $a->profile_uid)) {
1030                 if (PConfig::get(local_user(), 'system', 'always_my_theme')) {
1031                         $page_theme = null;
1032                 }
1033         }
1034
1035 //              $mobile_detect = new Mobile_Detect();
1036 //              $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
1037         $is_mobile = $a->is_mobile || $a->is_tablet;
1038
1039         $standard_system_theme = Config::get('system', 'theme', '');
1040         $standard_theme_name = ((isset($_SESSION) && x($_SESSION, 'theme')) ? $_SESSION['theme'] : $standard_system_theme);
1041
1042         if ($is_mobile) {
1043                 if (isset($_SESSION['show-mobile']) && !$_SESSION['show-mobile']) {
1044                         $theme_name = $standard_theme_name;
1045                 } else {
1046                         $system_theme = Config::get('system', 'mobile-theme', '');
1047                         if ($system_theme == '') {
1048                                 $system_theme = $standard_system_theme;
1049                         }
1050                         $theme_name = ((isset($_SESSION) && x($_SESSION, 'mobile-theme')) ? $_SESSION['mobile-theme'] : $system_theme);
1051
1052                         if ($theme_name === '---') {
1053                                 // user has selected to have the mobile theme be the same as the normal one
1054                                 $theme_name = $standard_theme_name;
1055
1056                                 if ($page_theme) {
1057                                         $theme_name = $page_theme;
1058                                 }
1059                         }
1060                 }
1061         } else {
1062                 $theme_name = $standard_theme_name;
1063
1064                 if ($page_theme) {
1065                         $theme_name = $page_theme;
1066                 }
1067         }
1068
1069         if ($theme_name
1070                 && (file_exists('view/theme/' . $theme_name . '/style.css')
1071                 || file_exists('view/theme/' . $theme_name . '/style.php'))
1072         ) {
1073                 return($theme_name);
1074         }
1075
1076         foreach ($app_base_themes as $t) {
1077                 if (file_exists('view/theme/' . $t . '/style.css')
1078                         || file_exists('view/theme/' . $t . '/style.php')
1079                 ) {
1080                         return($t);
1081                 }
1082         }
1083
1084         $fallback = array_merge(glob('view/theme/*/style.css'), glob('view/theme/*/style.php'));
1085         if (count($fallback)) {
1086                 return (str_replace('view/theme/', '', substr($fallback[0], 0, -10)));
1087         }
1088
1089         /// @TODO No final return statement?
1090 }
1091
1092 /**
1093  * @brief Return full URL to theme which is currently in effect.
1094  *
1095  * Provide a sane default if nothing is chosen or the specified theme does not exist.
1096  *
1097  * @return string
1098  */
1099 function current_theme_url()
1100 {
1101         $a = get_app();
1102
1103         $t = current_theme();
1104
1105         $opts = (($a->profile_uid) ? '?f=&puid=' . $a->profile_uid : '');
1106         if (file_exists('view/theme/' . $t . '/style.php')) {
1107                 return('view/theme/' . $t . '/style.pcss' . $opts);
1108         }
1109
1110         return('view/theme/' . $t . '/style.css');
1111 }
1112
1113 function feed_birthday($uid, $tz)
1114 {
1115         /**
1116          * Determine the next birthday, but only if the birthday is published
1117          * in the default profile. We _could_ also look for a private profile that the
1118          * recipient can see, but somebody could get mad at us if they start getting
1119          * public birthday greetings when they haven't made this info public.
1120          *
1121          * Assuming we are able to publish this info, we are then going to convert
1122          * the start time from the owner's timezone to UTC.
1123          *
1124          * This will potentially solve the problem found with some social networks
1125          * where birthdays are converted to the viewer's timezone and salutations from
1126          * elsewhere in the world show up on the wrong day. We will convert it to the
1127          * viewer's timezone also, but first we are going to convert it from the birthday
1128          * person's timezone to GMT - so the viewer may find the birthday starting at
1129          * 6:00PM the day before, but that will correspond to midnight to the birthday person.
1130          */
1131         $birthday = '';
1132
1133         if (!strlen($tz)) {
1134                 $tz = 'UTC';
1135         }
1136
1137         $p = q(
1138                 "SELECT `dob` FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
1139                 intval($uid)
1140         );
1141
1142         if (DBM::is_result($p)) {
1143                 $tmp_dob = substr($p[0]['dob'], 5);
1144                 if (intval($tmp_dob)) {
1145                         $y = DateTimeFormat::timezoneNow($tz, 'Y');
1146                         $bd = $y . '-' . $tmp_dob . ' 00:00';
1147                         $t_dob = strtotime($bd);
1148                         $now = strtotime(DateTimeFormat::timezoneNow($tz));
1149                         if ($t_dob < $now) {
1150                                 $bd = $y + 1 . '-' . $tmp_dob . ' 00:00';
1151                         }
1152                         $birthday = DateTimeFormat::convert($bd, 'UTC', $tz, DateTimeFormat::ATOM);
1153                 }
1154         }
1155
1156         return $birthday;
1157 }
1158
1159 /**
1160  * @brief Check if current user has admin role.
1161  *
1162  * @return bool true if user is an admin
1163  */
1164 function is_site_admin()
1165 {
1166         $a = get_app();
1167
1168         $adminlist = explode(",", str_replace(" ", "", $a->config['admin_email']));
1169
1170         //if(local_user() && x($a->user,'email') && x($a->config,'admin_email') && ($a->user['email'] === $a->config['admin_email']))
1171         if (local_user() && x($a->user, 'email') && x($a->config, 'admin_email') && in_array($a->user['email'], $adminlist)) {
1172                 return true;
1173         }
1174         return false;
1175 }
1176
1177 /**
1178  * @brief Returns querystring as string from a mapped array.
1179  *
1180  * @param array  $params mapped array with query parameters
1181  * @param string $name   of parameter, default null
1182  *
1183  * @return string
1184  */
1185 function build_querystring($params, $name = null)
1186 {
1187         $ret = "";
1188         foreach ($params as $key => $val) {
1189                 if (is_array($val)) {
1190                         /// @TODO maybe not compare against null, use is_null()
1191                         if ($name == null) {
1192                                 $ret .= build_querystring($val, $key);
1193                         } else {
1194                                 $ret .= build_querystring($val, $name . "[$key]");
1195                         }
1196                 } else {
1197                         $val = urlencode($val);
1198                         /// @TODO maybe not compare against null, use is_null()
1199                         if ($name != null) {
1200                                 /// @TODO two string concated, can be merged to one
1201                                 $ret .= $name . "[$key]" . "=$val&";
1202                         } else {
1203                                 $ret .= "$key=$val&";
1204                         }
1205                 }
1206         }
1207         return $ret;
1208 }
1209
1210 function explode_querystring($query)
1211 {
1212         $arg_st = strpos($query, '?');
1213         if ($arg_st !== false) {
1214                 $base = substr($query, 0, $arg_st);
1215                 $arg_st += 1;
1216         } else {
1217                 $base = '';
1218                 $arg_st = 0;
1219         }
1220
1221         $args = explode('&', substr($query, $arg_st));
1222         foreach ($args as $k => $arg) {
1223                 /// @TODO really compare type-safe here?
1224                 if ($arg === '') {
1225                         unset($args[$k]);
1226                 }
1227         }
1228         $args = array_values($args);
1229
1230         if (!$base) {
1231                 $base = $args[0];
1232                 unset($args[0]);
1233                 $args = array_values($args);
1234         }
1235
1236         return [
1237                 'base' => $base,
1238                 'args' => $args,
1239         ];
1240 }
1241
1242 /**
1243  * Returns the complete URL of the current page, e.g.: http(s)://something.com/network
1244  *
1245  * Taken from http://webcheatsheet.com/php/get_current_page_url.php
1246  */
1247 function curPageURL()
1248 {
1249         $pageURL = 'http';
1250         if ($_SERVER["HTTPS"] == "on") {
1251                 $pageURL .= "s";
1252         }
1253
1254         $pageURL .= "://";
1255
1256         if ($_SERVER["SERVER_PORT"] != "80" && $_SERVER["SERVER_PORT"] != "443") {
1257                 $pageURL .= $_SERVER["SERVER_NAME"] . ":" . $_SERVER["SERVER_PORT"] . $_SERVER["REQUEST_URI"];
1258         } else {
1259                 $pageURL .= $_SERVER["SERVER_NAME"] . $_SERVER["REQUEST_URI"];
1260         }
1261         return $pageURL;
1262 }
1263
1264 function random_digits($digits)
1265 {
1266         $rn = '';
1267         for ($i = 0; $i < $digits; $i++) {
1268                 /// @TODO rand() is different to mt_rand() and maybe lesser "random"
1269                 $rn .= rand(0, 9);
1270         }
1271         return $rn;
1272 }
1273
1274 function get_server()
1275 {
1276         $server = Config::get("system", "directory");
1277
1278         if ($server == "") {
1279                 $server = "http://dir.friendica.social";
1280         }
1281
1282         return($server);
1283 }
1284
1285 function get_temppath()
1286 {
1287         $a = get_app();
1288
1289         $temppath = Config::get("system", "temppath");
1290
1291         if (($temppath != "") && App::directory_usable($temppath)) {
1292                 // We have a temp path and it is usable
1293                 return App::realpath($temppath);
1294         }
1295
1296         // We don't have a working preconfigured temp path, so we take the system path.
1297         $temppath = sys_get_temp_dir();
1298
1299         // Check if it is usable
1300         if (($temppath != "") && App::directory_usable($temppath)) {
1301                 // Always store the real path, not the path through symlinks
1302                 $temppath = App::realpath($temppath);
1303
1304                 // To avoid any interferences with other systems we create our own directory
1305                 $new_temppath = $temppath . "/" . $a->get_hostname();
1306                 if (!is_dir($new_temppath)) {
1307                         /// @TODO There is a mkdir()+chmod() upwards, maybe generalize this (+ configurable) into a function/method?
1308                         mkdir($new_temppath);
1309                 }
1310
1311                 if (App::directory_usable($new_temppath)) {
1312                         // The new path is usable, we are happy
1313                         Config::set("system", "temppath", $new_temppath);
1314                         return $new_temppath;
1315                 } else {
1316                         // We can't create a subdirectory, strange.
1317                         // But the directory seems to work, so we use it but don't store it.
1318                         return $temppath;
1319                 }
1320         }
1321
1322         // Reaching this point means that the operating system is configured badly.
1323         return '';
1324 }
1325
1326 function get_cachefile($file, $writemode = true)
1327 {
1328         $cache = get_itemcachepath();
1329
1330         if ((!$cache) || (!is_dir($cache))) {
1331                 return("");
1332         }
1333
1334         $subfolder = $cache . "/" . substr($file, 0, 2);
1335
1336         $cachepath = $subfolder . "/" . $file;
1337
1338         if ($writemode) {
1339                 if (!is_dir($subfolder)) {
1340                         mkdir($subfolder);
1341                         chmod($subfolder, 0777);
1342                 }
1343         }
1344
1345         /// @TODO no need to put braces here
1346         return $cachepath;
1347 }
1348
1349 function clear_cache($basepath = "", $path = "")
1350 {
1351         if ($path == "") {
1352                 $basepath = get_itemcachepath();
1353                 $path = $basepath;
1354         }
1355
1356         if (($path == "") || (!is_dir($path))) {
1357                 return;
1358         }
1359
1360         if (substr(realpath($path), 0, strlen($basepath)) != $basepath) {
1361                 return;
1362         }
1363
1364         $cachetime = (int) Config::get('system', 'itemcache_duration');
1365         if ($cachetime == 0) {
1366                 $cachetime = 86400;
1367         }
1368
1369         if (is_writable($path)) {
1370                 if ($dh = opendir($path)) {
1371                         while (($file = readdir($dh)) !== false) {
1372                                 $fullpath = $path . "/" . $file;
1373                                 if ((filetype($fullpath) == "dir") && ($file != ".") && ($file != "..")) {
1374                                         clear_cache($basepath, $fullpath);
1375                                 }
1376                                 if ((filetype($fullpath) == "file") && (filectime($fullpath) < (time() - $cachetime))) {
1377                                         unlink($fullpath);
1378                                 }
1379                         }
1380                         closedir($dh);
1381                 }
1382         }
1383 }
1384
1385 function get_itemcachepath()
1386 {
1387         // Checking, if the cache is deactivated
1388         $cachetime = (int) Config::get('system', 'itemcache_duration');
1389         if ($cachetime < 0) {
1390                 return "";
1391         }
1392
1393         $itemcache = Config::get('system', 'itemcache');
1394         if (($itemcache != "") && App::directory_usable($itemcache)) {
1395                 return App::realpath($itemcache);
1396         }
1397
1398         $temppath = get_temppath();
1399
1400         if ($temppath != "") {
1401                 $itemcache = $temppath . "/itemcache";
1402                 if (!file_exists($itemcache) && !is_dir($itemcache)) {
1403                         mkdir($itemcache);
1404                 }
1405
1406                 if (App::directory_usable($itemcache)) {
1407                         Config::set("system", "itemcache", $itemcache);
1408                         return $itemcache;
1409                 }
1410         }
1411         return "";
1412 }
1413
1414 /**
1415  * @brief Returns the path where spool files are stored
1416  *
1417  * @return string Spool path
1418  */
1419 function get_spoolpath()
1420 {
1421         $spoolpath = Config::get('system', 'spoolpath');
1422         if (($spoolpath != "") && App::directory_usable($spoolpath)) {
1423                 // We have a spool path and it is usable
1424                 return $spoolpath;
1425         }
1426
1427         // We don't have a working preconfigured spool path, so we take the temp path.
1428         $temppath = get_temppath();
1429
1430         if ($temppath != "") {
1431                 // To avoid any interferences with other systems we create our own directory
1432                 $spoolpath = $temppath . "/spool";
1433                 if (!is_dir($spoolpath)) {
1434                         mkdir($spoolpath);
1435                 }
1436
1437                 if (App::directory_usable($spoolpath)) {
1438                         // The new path is usable, we are happy
1439                         Config::set("system", "spoolpath", $spoolpath);
1440                         return $spoolpath;
1441                 } else {
1442                         // We can't create a subdirectory, strange.
1443                         // But the directory seems to work, so we use it but don't store it.
1444                         return $temppath;
1445                 }
1446         }
1447
1448         // Reaching this point means that the operating system is configured badly.
1449         return "";
1450 }
1451
1452
1453 if (!function_exists('exif_imagetype')) {
1454         function exif_imagetype($file)
1455         {
1456                 $size = getimagesize($file);
1457                 return $size[2];
1458         }
1459 }
1460
1461 function validate_include(&$file)
1462 {
1463         $orig_file = $file;
1464
1465         $file = realpath($file);
1466
1467         if (strpos($file, getcwd()) !== 0) {
1468                 return false;
1469         }
1470
1471         $file = str_replace(getcwd() . "/", "", $file, $count);
1472         if ($count != 1) {
1473                 return false;
1474         }
1475
1476         if ($orig_file !== $file) {
1477                 return false;
1478         }
1479
1480         $valid = false;
1481         if (strpos($file, "include/") === 0) {
1482                 $valid = true;
1483         }
1484
1485         if (strpos($file, "addon/") === 0) {
1486                 $valid = true;
1487         }
1488
1489         // Simply return flag
1490         return ($valid);
1491 }
1492
1493 function current_load()
1494 {
1495         if (!function_exists('sys_getloadavg')) {
1496                 return false;
1497         }
1498
1499         $load_arr = sys_getloadavg();
1500
1501         if (!is_array($load_arr)) {
1502                 return false;
1503         }
1504
1505         return max($load_arr[0], $load_arr[1]);
1506 }
1507
1508 /**
1509  * @brief get c-style args
1510  *
1511  * @return int
1512  */
1513 function argc()
1514 {
1515         return get_app()->argc;
1516 }
1517
1518 /**
1519  * @brief Returns the value of a argv key
1520  *
1521  * @param int $x argv key
1522  * @return string Value of the argv key
1523  */
1524 function argv($x)
1525 {
1526         if (array_key_exists($x, get_app()->argv)) {
1527                 return get_app()->argv[$x];
1528         }
1529
1530         return '';
1531 }
1532
1533 /**
1534  * @brief Get the data which is needed for infinite scroll
1535  *
1536  * For invinite scroll we need the page number of the actual page
1537  * and the the URI where the content of the next page comes from.
1538  * This data is needed for the js part in main.js.
1539  * Note: infinite scroll does only work for the network page (module)
1540  *
1541  * @param string $module The name of the module (e.g. "network")
1542  * @return array Of infinite scroll data
1543  *      'pageno' => $pageno The number of the actual page
1544  *      'reload_uri' => $reload_uri The URI of the content we have to load
1545  */
1546 function infinite_scroll_data($module)
1547 {
1548         if (PConfig::get(local_user(), 'system', 'infinite_scroll')
1549                 && $module == 'network'
1550                 && defaults($_GET, 'mode', '') != 'minimal'
1551         ) {
1552                 // get the page number
1553                 $pageno = defaults($_GET, 'page', 1);
1554
1555                 $reload_uri = "";
1556
1557                 // try to get the uri from which we load the content
1558                 foreach ($_GET as $param => $value) {
1559                         if (($param != "page") && ($param != "q")) {
1560                                 $reload_uri .= "&" . $param . "=" . urlencode($value);
1561                         }
1562                 }
1563
1564                 $a = get_app();
1565                 if ($a->page_offset != "" && !strstr($reload_uri, "&offset=")) {
1566                         $reload_uri .= "&offset=" . urlencode($a->page_offset);
1567                 }
1568
1569                 $arr = ["pageno" => $pageno, "reload_uri" => $reload_uri];
1570
1571                 return $arr;
1572         }
1573 }