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