Use dba::select() instead of dba::p() in api_get_user
[friendica.git/.git] / boot.php
1 <?php
2
3 /** @file boot.php
4  *
5  * This file defines some global constants and includes the central App class.
6  */
7
8 /**
9  * Friendica
10  *
11  * Friendica is a communications platform for integrated social communications
12  * utilising decentralised communications and linkage to several indie social
13  * projects - as well as popular mainstream providers.
14  *
15  * Our mission is to free our friends and families from the clutches of
16  * data-harvesting corporations, and pave the way to a future where social
17  * communications are free and open and flow between alternate providers as
18  * easily as email does today.
19  */
20
21 require_once __DIR__ . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php';
22
23 use Friendica\App;
24 use Friendica\Core\System;
25 use Friendica\Core\Cache;
26 use Friendica\Core\Config;
27 use Friendica\Core\PConfig;
28 use Friendica\Core\Worker;
29 use Friendica\Database\DBM;
30 use Friendica\Model\Contact;
31 use Friendica\Database\DBStructure;
32
33 require_once 'include/network.php';
34 require_once 'include/plugin.php';
35 require_once 'include/text.php';
36 require_once 'include/datetime.php';
37 require_once 'include/pgettext.php';
38 require_once 'include/nav.php';
39 require_once 'include/identity.php';
40 require_once 'update.php';
41
42 define('FRIENDICA_PLATFORM',     'Friendica');
43 define('FRIENDICA_CODENAME',     'Asparagus');
44 define('FRIENDICA_VERSION',      '3.6-dev');
45 define('DFRN_PROTOCOL_VERSION',  '2.23');
46 define('DB_UPDATE_VERSION',      1237);
47 define('NEW_UPDATE_ROUTINE_VERSION', 1170);
48
49 /**
50  * @brief Constants for the database update check
51  */
52 const DB_UPDATE_NOT_CHECKED = 0; // Database check wasn't executed before
53 const DB_UPDATE_SUCCESSFUL = 1;  // Database check was successful
54 const DB_UPDATE_FAILED = 2;      // Database check failed
55
56 /**
57  * @brief Constant with a HTML line break.
58  *
59  * Contains a HTML line break (br) element and a real carriage return with line
60  * feed for the source.
61  * This can be used in HTML and JavaScript where needed a line break.
62  */
63 define('EOL',                    "<br />\r\n");
64 define('ATOM_TIME',              'Y-m-d\TH:i:s\Z');
65
66 /**
67  * @brief Image storage quality.
68  *
69  * Lower numbers save space at cost of image detail.
70  * For ease of upgrade, please do not change here. Change jpeg quality with
71  * $a->config['system']['jpeg_quality'] = n;
72  * in .htconfig.php, where n is netween 1 and 100, and with very poor results
73  * below about 50
74  */
75 define('JPEG_QUALITY',            100);
76
77 /**
78  * $a->config['system']['png_quality'] from 0 (uncompressed) to 9
79  */
80 define('PNG_QUALITY',             8);
81
82 /**
83  * An alternate way of limiting picture upload sizes. Specify the maximum pixel
84  * length that pictures are allowed to be (for non-square pictures, it will apply
85  * to the longest side). Pictures longer than this length will be resized to be
86  * this length (on the longest side, the other side will be scaled appropriately).
87  * Modify this value using
88  *
89  *    $a->config['system']['max_image_length'] = n;
90  *
91  * in .htconfig.php
92  *
93  * If you don't want to set a maximum length, set to -1. The default value is
94  * defined by 'MAX_IMAGE_LENGTH' below.
95  */
96 define('MAX_IMAGE_LENGTH',        -1);
97
98 /**
99  * Not yet used
100  */
101 define('DEFAULT_DB_ENGINE',  'InnoDB');
102
103 /**
104  * @name SSL Policy
105  *
106  * SSL redirection policies
107  * @{
108  */
109 define('SSL_POLICY_NONE',         0);
110 define('SSL_POLICY_FULL',         1);
111 define('SSL_POLICY_SELFSIGN',     2);
112 /* @}*/
113
114 /**
115  * @name Logger
116  *
117  * log levels
118  * @{
119  */
120 define('LOGGER_NORMAL',          0);
121 define('LOGGER_TRACE',           1);
122 define('LOGGER_DEBUG',           2);
123 define('LOGGER_DATA',            3);
124 define('LOGGER_ALL',             4);
125 /* @}*/
126
127 /**
128  * @name Cache
129  *
130  * Cache levels
131  * @{
132  */
133 define('CACHE_MONTH',            0);
134 define('CACHE_WEEK',             1);
135 define('CACHE_DAY',              2);
136 define('CACHE_HOUR',             3);
137 define('CACHE_HALF_HOUR',        4);
138 define('CACHE_QUARTER_HOUR',     5);
139 define('CACHE_FIVE_MINUTES',     6);
140 define('CACHE_MINUTE',           7);
141 /* @}*/
142
143 /**
144  * @name Register
145  *
146  * Registration policies
147  * @{
148  */
149 define('REGISTER_CLOSED',        0);
150 define('REGISTER_APPROVE',       1);
151 define('REGISTER_OPEN',          2);
152 /**
153  * @}
154 */
155
156 /**
157  * @name Contact_is
158  *
159  * Relationship types
160  * @{
161  */
162 define('CONTACT_IS_FOLLOWER', 1);
163 define('CONTACT_IS_SHARING',  2);
164 define('CONTACT_IS_FRIEND',   3);
165 /**
166  *  @}
167  */
168
169 /**
170  * @name Update
171  *
172  * DB update return values
173  * @{
174  */
175 define('UPDATE_SUCCESS', 0);
176 define('UPDATE_FAILED',  1);
177 /**
178  * @}
179  */
180
181 /**
182  * @name page/profile types
183  *
184  * PAGE_NORMAL is a typical personal profile account
185  * PAGE_SOAPBOX automatically approves all friend requests as CONTACT_IS_SHARING, (readonly)
186  * PAGE_COMMUNITY automatically approves all friend requests as CONTACT_IS_SHARING, but with
187  *      write access to wall and comments (no email and not included in page owner's ACL lists)
188  * PAGE_FREELOVE automatically approves all friend requests as full friends (CONTACT_IS_FRIEND).
189  *
190  * @{
191  */
192 define('PAGE_NORMAL',            0);
193 define('PAGE_SOAPBOX',           1);
194 define('PAGE_COMMUNITY',         2);
195 define('PAGE_FREELOVE',          3);
196 define('PAGE_BLOG',              4);
197 define('PAGE_PRVGROUP',          5);
198 /**
199  * @}
200  */
201
202 /**
203  * @name account types
204  *
205  * ACCOUNT_TYPE_PERSON - the account belongs to a person
206  *      Associated page types: PAGE_NORMAL, PAGE_SOAPBOX, PAGE_FREELOVE
207  *
208  * ACCOUNT_TYPE_ORGANISATION - the account belongs to an organisation
209  *      Associated page type: PAGE_SOAPBOX
210  *
211  * ACCOUNT_TYPE_NEWS - the account is a news reflector
212  *      Associated page type: PAGE_SOAPBOX
213  *
214  * ACCOUNT_TYPE_COMMUNITY - the account is community forum
215  *      Associated page types: PAGE_COMMUNITY, PAGE_PRVGROUP
216  * @{
217  */
218 define('ACCOUNT_TYPE_PERSON',      0);
219 define('ACCOUNT_TYPE_ORGANISATION', 1);
220 define('ACCOUNT_TYPE_NEWS',        2);
221 define('ACCOUNT_TYPE_COMMUNITY',   3);
222 /**
223  * @}
224  */
225
226 /**
227  * @name CP
228  *
229  * Type of the community page
230  * @{
231  */
232 define('CP_NO_COMMUNITY_PAGE',   -1);
233 define('CP_USERS_ON_SERVER',     0);
234 define('CP_GLOBAL_COMMUNITY',    1);
235 /**
236  * @}
237  */
238
239 /**
240  * @name Protocols
241  *
242  * Different protocols that we are storing
243  * @{
244  */
245 define('PROTOCOL_UNKNOWN',         0);
246 define('PROTOCOL_DFRN',            1);
247 define('PROTOCOL_DIASPORA',        2);
248 define('PROTOCOL_OSTATUS_SALMON',  3);
249 define('PROTOCOL_OSTATUS_FEED',    4); // Deprecated
250 define('PROTOCOL_GS_CONVERSATION', 5); // Deprecated
251 define('PROTOCOL_SPLITTED_CONV',   6);
252 /**
253  * @}
254  */
255
256 /**
257  * @name Network
258  *
259  * Network and protocol family types
260  * @{
261  */
262 define('NETWORK_DFRN',             'dfrn');    // Friendica, Mistpark, other DFRN implementations
263 define('NETWORK_ZOT',              'zot!');    // Zot! - Currently unsupported
264 define('NETWORK_OSTATUS',          'stat');    // GNU-social, Pleroma, Mastodon, other OStatus implementations
265 define('NETWORK_FEED',             'feed');    // RSS/Atom feeds with no known "post/notify" protocol
266 define('NETWORK_DIASPORA',         'dspr');    // Diaspora
267 define('NETWORK_MAIL',             'mail');    // IMAP/POP
268 define('NETWORK_FACEBOOK',         'face');    // Facebook API
269 define('NETWORK_LINKEDIN',         'lnkd');    // LinkedIn
270 define('NETWORK_XMPP',             'xmpp');    // XMPP - Currently unsupported
271 define('NETWORK_MYSPACE',          'mysp');    // MySpace - Currently unsupported
272 define('NETWORK_GPLUS',            'goog');    // Google+
273 define('NETWORK_PUMPIO',           'pump');    // pump.io
274 define('NETWORK_TWITTER',          'twit');    // Twitter
275 define('NETWORK_DIASPORA2',        'dspc');    // Diaspora connector
276 define('NETWORK_STATUSNET',        'stac');    // Statusnet connector
277 define('NETWORK_APPNET',           'apdn');    // app.net - Dead protocol
278 define('NETWORK_NEWS',             'nntp');    // Network News Transfer Protocol - Currently unsupported
279 define('NETWORK_ICALENDAR',        'ical');    // iCalendar - Currently unsupported
280 define('NETWORK_PNUT',             'pnut');    // pnut.io - Currently unsupported
281 define('NETWORK_PHANTOM',          'unkn');    // 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 = array(
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 = array(&$_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 function get_app()
529 {
530         global $a;
531
532         if (empty($a)) {
533                 $a = new App(dirname(__DIR__));
534         }
535
536         return $a;
537 }
538
539 /**
540  * @brief Multi-purpose function to check variable state.
541  *
542  * Usage: x($var) or $x($array, 'key')
543  *
544  * returns false if variable/key is not set
545  * if variable is set, returns 1 if has 'non-zero' value, otherwise returns 0.
546  * e.g. x('') or x(0) returns 0;
547  *
548  * @param string|array $s variable to check
549  * @param string       $k key inside the array to check
550  *
551  * @return bool|int
552  */
553 function x($s, $k = null)
554 {
555         if ($k != null) {
556                 if ((is_array($s)) && (array_key_exists($k, $s))) {
557                         if ($s[$k]) {
558                                 return (int) 1;
559                         }
560                         return (int) 0;
561                 }
562                 return false;
563         } else {
564                 if (isset($s)) {
565                         if ($s) {
566                                 return (int) 1;
567                         }
568                         return (int) 0;
569                 }
570                 return false;
571         }
572 }
573
574 /**
575  * @brief Returns the baseurl.
576  *
577  * @see System::baseUrl()
578  *
579  * @return string
580  * @TODO Function is deprecated and only used in some addons
581  */
582 function z_root()
583 {
584         return System::baseUrl();
585 }
586
587 /**
588  * @brief Return absolut URL for given $path.
589  *
590  * @param string $path given path
591  *
592  * @return string
593  */
594 function absurl($path)
595 {
596         if (strpos($path, '/') === 0) {
597                 return z_path() . $path;
598         }
599         return $path;
600 }
601
602 /**
603  * @brief Function to check if request was an AJAX (xmlhttprequest) request.
604  *
605  * @return boolean
606  */
607 function is_ajax()
608 {
609         return (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest');
610 }
611
612 /**
613  * @brief Function to check if request was an AJAX (xmlhttprequest) request.
614  *
615  * @param boolean $via_worker boolean Is the check run via the worker?
616  */
617 function check_db($via_worker)
618 {
619         $build = Config::get('system', 'build');
620         if (!x($build)) {
621                 Config::set('system', 'build', DB_UPDATE_VERSION);
622                 $build = DB_UPDATE_VERSION;
623         }
624         if ($build != DB_UPDATE_VERSION) {
625                 // When we cannot execute the database update via the worker, we will do it directly
626                 if (!Worker::add(PRIORITY_CRITICAL, 'DBUpdate') && $via_worker) {
627                         update_db(get_app());
628                 }
629         }
630 }
631
632 /**
633  * Sets the base url for use in cmdline programs which don't have
634  * $_SERVER variables
635  *
636  * @param object $a App
637  */
638 function check_url(App $a)
639 {
640         $url = Config::get('system', 'url');
641
642         // if the url isn't set or the stored url is radically different
643         // than the currently visited url, store the current value accordingly.
644         // "Radically different" ignores common variations such as http vs https
645         // and www.example.com vs example.com.
646         // We will only change the url to an ip address if there is no existing setting
647
648         if (!x($url)) {
649                 $url = Config::set('system', 'url', System::baseUrl());
650         }
651         if ((!link_compare($url, System::baseUrl())) && (!preg_match("/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/", $a->get_hostname))) {
652                 $url = Config::set('system', 'url', System::baseUrl());
653         }
654
655         return;
656 }
657
658 /**
659  * @brief Automatic database updates
660  * @param object $a App
661  */
662 function update_db(App $a)
663 {
664         $build = Config::get('system', 'build');
665         if (!x($build)) {
666                 $build = Config::set('system', 'build', DB_UPDATE_VERSION);
667         }
668
669         if ($build != DB_UPDATE_VERSION) {
670                 $stored = intval($build);
671                 $current = intval(DB_UPDATE_VERSION);
672                 if ($stored < $current) {
673                         Config::load('database');
674
675                         // We're reporting a different version than what is currently installed.
676                         // Run any existing update scripts to bring the database up to current.
677                         // make sure that boot.php and update.php are the same release, we might be
678                         // updating right this very second and the correct version of the update.php
679                         // file may not be here yet. This can happen on a very busy site.
680
681                         if (DB_UPDATE_VERSION == UPDATE_VERSION) {
682                                 // Compare the current structure with the defined structure
683
684                                 $t = Config::get('database', 'dbupdate_' . DB_UPDATE_VERSION);
685                                 if (!is_null($t)) {
686                                         return;
687                                 }
688
689                                 Config::set('database', 'dbupdate_' . DB_UPDATE_VERSION, time());
690
691                                 // run old update routine (wich could modify the schema and
692                                 // conflits with new routine)
693                                 for ($x = $stored; $x < NEW_UPDATE_ROUTINE_VERSION; $x++) {
694                                         $r = run_update_function($x);
695                                         if (!$r) {
696                                                 break;
697                                         }
698                                 }
699                                 if ($stored < NEW_UPDATE_ROUTINE_VERSION) {
700                                         $stored = NEW_UPDATE_ROUTINE_VERSION;
701                                 }
702
703                                 // run new update routine
704                                 // it update the structure in one call
705                                 $retval = DBStructure::update(false, true);
706                                 if ($retval) {
707                                         DBStructure::updateFail(
708                                                 DB_UPDATE_VERSION,
709                                                 $retval
710                                         );
711                                         return;
712                                 } else {
713                                         Config::set('database', 'dbupdate_' . DB_UPDATE_VERSION, 'success');
714                                 }
715
716                                 // run any left update_nnnn functions in update.php
717                                 for ($x = $stored; $x < $current; $x ++) {
718                                         $r = run_update_function($x);
719                                         if (!$r) {
720                                                 break;
721                                         }
722                                 }
723                         }
724                 }
725         }
726
727         return;
728 }
729
730 function run_update_function($x)
731 {
732         if (function_exists('update_' . $x)) {
733                 // There could be a lot of processes running or about to run.
734                 // We want exactly one process to run the update command.
735                 // So store the fact that we're taking responsibility
736                 // after first checking to see if somebody else already has.
737                 // If the update fails or times-out completely you may need to
738                 // delete the config entry to try again.
739
740                 $t = Config::get('database', 'update_' . $x);
741                 if (!is_null($t)) {
742                         return false;
743                 }
744                 Config::set('database', 'update_' . $x, time());
745
746                 // call the specific update
747
748                 $func = 'update_' . $x;
749                 $retval = $func();
750
751                 if ($retval) {
752                         //send the administrator an e-mail
753                         DBStructure::updateFail(
754                                 $x,
755                                 sprintf(t('Update %s failed. See error logs.'), $x)
756                         );
757                         return false;
758                 } else {
759                         Config::set('database', 'update_' . $x, 'success');
760                         Config::set('system', 'build', $x + 1);
761                         return true;
762                 }
763         } else {
764                 Config::set('database', 'update_' . $x, 'success');
765                 Config::set('system', 'build', $x + 1);
766                 return true;
767         }
768         return true;
769 }
770
771 /**
772  * @brief Synchronise plugins:
773  *
774  * $a->config['system']['addon'] contains a comma-separated list of names
775  * of plugins/addons which are used on this system.
776  * Go through the database list of already installed addons, and if we have
777  * an entry, but it isn't in the config list, call the uninstall procedure
778  * and mark it uninstalled in the database (for now we'll remove it).
779  * Then go through the config list and if we have a plugin that isn't installed,
780  * call the install procedure and add it to the database.
781  *
782  * @param object $a App
783  */
784 function check_plugins(App $a)
785 {
786         $r = q("SELECT * FROM `addon` WHERE `installed` = 1");
787         if (DBM::is_result($r)) {
788                 $installed = $r;
789         } else {
790                 $installed = array();
791         }
792
793         $plugins = Config::get('system', 'addon');
794         $plugins_arr = array();
795
796         if ($plugins) {
797                 $plugins_arr = explode(',', str_replace(' ', '', $plugins));
798         }
799
800         $a->plugins = $plugins_arr;
801
802         $installed_arr = array();
803
804         if (count($installed)) {
805                 foreach ($installed as $i) {
806                         if (!in_array($i['name'], $plugins_arr)) {
807                                 uninstall_plugin($i['name']);
808                         } else {
809                                 $installed_arr[] = $i['name'];
810                         }
811                 }
812         }
813
814         if (count($plugins_arr)) {
815                 foreach ($plugins_arr as $p) {
816                         if (!in_array($p, $installed_arr)) {
817                                 install_plugin($p);
818                         }
819                 }
820         }
821
822         load_hooks();
823
824         return;
825 }
826
827 function get_guid($size = 16, $prefix = "")
828 {
829         if ($prefix == "") {
830                 $a = get_app();
831                 $prefix = hash("crc32", $a->get_hostname());
832         }
833
834         while (strlen($prefix) < ($size - 13)) {
835                 $prefix .= mt_rand();
836         }
837
838         if ($size >= 24) {
839                 $prefix = substr($prefix, 0, $size - 22);
840                 return(str_replace(".", "", uniqid($prefix, true)));
841         } else {
842                 $prefix = substr($prefix, 0, max($size - 13, 0));
843                 return(uniqid($prefix));
844         }
845 }
846
847 /**
848  * @brief Wrapper for adding a login box.
849  *
850  * @param bool $register If $register == true provide a registration link.
851  *                                               This will most always depend on the value of $a->config['register_policy'].
852  * @param bool $hiddens  optional
853  *
854  * @return string Returns the complete html for inserting into the page
855  *
856  * @hooks 'login_hook'
857  *      string $o
858  */
859 function login($register = false, $hiddens = false)
860 {
861         $a = get_app();
862         $o = "";
863         $reg = false;
864         if ($register) {
865                 $reg = array(
866                         'title' => t('Create a New Account'),
867                         'desc' => t('Register')
868                 );
869         }
870
871         $noid = Config::get('system', 'no_openid');
872
873         $dest_url = $a->query_string;
874
875         if (local_user()) {
876                 $tpl = get_markup_template("logout.tpl");
877         } else {
878                 $a->page['htmlhead'] .= replace_macros(
879                         get_markup_template("login_head.tpl"),
880                         array(
881                         '$baseurl' => $a->get_baseurl(true)
882                         )
883                 );
884
885                 $tpl = get_markup_template("login.tpl");
886                 $_SESSION['return_url'] = $a->query_string;
887                 $a->module = 'login';
888         }
889
890         $o .= replace_macros(
891                 $tpl,
892                 array(
893                 '$dest_url'     => $dest_url,
894                 '$logout'       => t('Logout'),
895                 '$login'        => t('Login'),
896
897                 '$lname'        => array('username', t('Nickname or Email: ') , '', ''),
898                 '$lpassword'    => array('password', t('Password: '), '', ''),
899                 '$lremember'    => array('remember', t('Remember me'), 0,  ''),
900
901                 '$openid'       => !$noid,
902                 '$lopenid'      => array('openid_url', t('Or login using OpenID: '),'',''),
903
904                 '$hiddens'      => $hiddens,
905
906                 '$register'     => $reg,
907
908                 '$lostpass'     => t('Forgot your password?'),
909                 '$lostlink'     => t('Password Reset'),
910
911                 '$tostitle'     => t('Website Terms of Service'),
912                 '$toslink'      => t('terms of service'),
913
914                 '$privacytitle' => t('Website Privacy Policy'),
915                 '$privacylink'  => t('privacy policy'),
916                 )
917         );
918
919         call_hooks('login_hook', $o);
920
921         return $o;
922 }
923
924 /**
925  * @brief Used to end the current process, after saving session state.
926  */
927 function killme()
928 {
929         global $session_exists;
930
931         if (!get_app()->is_backend()) {
932                 if (!$session_exists) {
933                         session_abort();
934                 } else {
935                         session_write_close();
936                 }
937         }
938
939         exit();
940 }
941
942 /**
943  * @brief Redirect to another URL and terminate this process.
944  */
945 function goaway($s)
946 {
947         if (!strstr(normalise_link($s), "http://")) {
948                 $s = System::baseUrl() . "/" . $s;
949         }
950
951         header("Location: $s");
952         killme();
953 }
954
955 /**
956  * @brief Returns the user id of locally logged in user or false.
957  *
958  * @return int|bool user id or false
959  */
960 function local_user()
961 {
962         if (x($_SESSION, 'authenticated') && x($_SESSION, 'uid')) {
963                 return intval($_SESSION['uid']);
964         }
965         return false;
966 }
967
968 /**
969  * @brief Returns the public contact id of logged in user or false.
970  *
971  * @return int|bool public contact id or false
972  */
973 function public_contact()
974 {
975         static $public_contact_id = false;
976
977         if (!$public_contact_id && x($_SESSION, 'authenticated')) {
978                 if (x($_SESSION, 'my_address')) {
979                         // Local user
980                         $public_contact_id = intval(Contact::getIdForURL($_SESSION['my_address'], 0));
981                 } elseif (x($_SESSION, 'visitor_home')) {
982                         // Remote user
983                         $public_contact_id = intval(Contact::getIdForURL($_SESSION['visitor_home'], 0));
984                 }
985         } elseif (!x($_SESSION, 'authenticated')) {
986                 $public_contact_id = false;
987         }
988
989         return $public_contact_id;
990 }
991
992 /**
993  * @brief Returns contact id of authenticated site visitor or false
994  *
995  * @return int|bool visitor_id or false
996  */
997 function remote_user()
998 {
999         // You cannot be both local and remote
1000         if (local_user()) {
1001                 return false;
1002         }
1003         if ((x($_SESSION, 'authenticated')) && (x($_SESSION, 'visitor_id'))) {
1004                 return intval($_SESSION['visitor_id']);
1005         }
1006         return false;
1007 }
1008
1009 /**
1010  * @brief Show an error message to user.
1011  *
1012  * This function save text in session, to be shown to the user at next page load
1013  *
1014  * @param string $s - Text of notice
1015  */
1016 function notice($s)
1017 {
1018         $a = get_app();
1019         if (!x($_SESSION, 'sysmsg')) {
1020                 $_SESSION['sysmsg'] = array();
1021         }
1022         if ($a->interactive) {
1023                 $_SESSION['sysmsg'][] = $s;
1024         }
1025 }
1026
1027 /**
1028  * @brief Show an info message to user.
1029  *
1030  * This function save text in session, to be shown to the user at next page load
1031  *
1032  * @param string $s - Text of notice
1033  */
1034 function info($s)
1035 {
1036         $a = get_app();
1037
1038         if (local_user() && PConfig::get(local_user(), 'system', 'ignore_info')) {
1039                 return;
1040         }
1041
1042         if (!x($_SESSION, 'sysmsg_info')) {
1043                 $_SESSION['sysmsg_info'] = array();
1044         }
1045         if ($a->interactive) {
1046                 $_SESSION['sysmsg_info'][] = $s;
1047         }
1048 }
1049
1050 /**
1051  * @brief Wrapper around config to limit the text length of an incoming message
1052  *
1053  * @return int
1054  */
1055 function get_max_import_size()
1056 {
1057         $a = get_app();
1058         return ((x($a->config, 'max_import_size')) ? $a->config['max_import_size'] : 0 );
1059 }
1060
1061
1062 function current_theme()
1063 {
1064         $app_base_themes = array('duepuntozero', 'dispy', 'quattro');
1065
1066         $a = get_app();
1067
1068         $page_theme = null;
1069
1070         // Find the theme that belongs to the user whose stuff we are looking at
1071
1072         if ($a->profile_uid && ($a->profile_uid != local_user())) {
1073                 $r = q(
1074                         "select theme from user where uid = %d limit 1",
1075                         intval($a->profile_uid)
1076                 );
1077                 if (DBM::is_result($r)) {
1078                         $page_theme = $r[0]['theme'];
1079                 }
1080         }
1081
1082         // Allow folks to over-rule user themes and always use their own on their own site.
1083         // This works only if the user is on the same server
1084
1085         if ($page_theme && local_user() && (local_user() != $a->profile_uid)) {
1086                 if (PConfig::get(local_user(), 'system', 'always_my_theme')) {
1087                         $page_theme = null;
1088                 }
1089         }
1090
1091 //              $mobile_detect = new Mobile_Detect();
1092 //              $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
1093         $is_mobile = $a->is_mobile || $a->is_tablet;
1094
1095         $standard_system_theme = Config::get('system', 'theme', '');
1096         $standard_theme_name = ((isset($_SESSION) && x($_SESSION, 'theme')) ? $_SESSION['theme'] : $standard_system_theme);
1097
1098         if ($is_mobile) {
1099                 if (isset($_SESSION['show-mobile']) && !$_SESSION['show-mobile']) {
1100                         $system_theme = $standard_system_theme;
1101                         $theme_name = $standard_theme_name;
1102                 } else {
1103                         $system_theme = Config::get('system', 'mobile-theme', '');
1104                         if ($system_theme == '') {
1105                                 $system_theme = $standard_system_theme;
1106                         }
1107                         $theme_name = ((isset($_SESSION) && x($_SESSION, 'mobile-theme')) ? $_SESSION['mobile-theme'] : $system_theme);
1108
1109                         if ($theme_name === '---') {
1110                                 // user has selected to have the mobile theme be the same as the normal one
1111                                 $system_theme = $standard_system_theme;
1112                                 $theme_name = $standard_theme_name;
1113
1114                                 if ($page_theme) {
1115                                         $theme_name = $page_theme;
1116                                 }
1117                         }
1118                 }
1119         } else {
1120                 $system_theme = $standard_system_theme;
1121                 $theme_name = $standard_theme_name;
1122
1123                 if ($page_theme) {
1124                         $theme_name = $page_theme;
1125                 }
1126         }
1127
1128         if ($theme_name
1129                 && (file_exists('view/theme/' . $theme_name . '/style.css')
1130                 || file_exists('view/theme/' . $theme_name . '/style.php'))
1131         ) {
1132                 return($theme_name);
1133         }
1134
1135         foreach ($app_base_themes as $t) {
1136                 if (file_exists('view/theme/' . $t . '/style.css')
1137                         || file_exists('view/theme/' . $t . '/style.php')
1138                 ) {
1139                         return($t);
1140                 }
1141         }
1142
1143         $fallback = array_merge(glob('view/theme/*/style.css'), glob('view/theme/*/style.php'));
1144         if (count($fallback)) {
1145                 return (str_replace('view/theme/', '', substr($fallback[0], 0, -10)));
1146         }
1147
1148         /// @TODO No final return statement?
1149 }
1150
1151 /**
1152  * @brief Return full URL to theme which is currently in effect.
1153  *
1154  * Provide a sane default if nothing is chosen or the specified theme does not exist.
1155  *
1156  * @return string
1157  */
1158 function current_theme_url()
1159 {
1160         $a = get_app();
1161
1162         $t = current_theme();
1163
1164         $opts = (($a->profile_uid) ? '?f=&puid=' . $a->profile_uid : '');
1165         if (file_exists('view/theme/' . $t . '/style.php')) {
1166                 return('view/theme/' . $t . '/style.pcss' . $opts);
1167         }
1168
1169         return('view/theme/' . $t . '/style.css');
1170 }
1171
1172 function feed_birthday($uid, $tz)
1173 {
1174         /**
1175          * Determine the next birthday, but only if the birthday is published
1176          * in the default profile. We _could_ also look for a private profile that the
1177          * recipient can see, but somebody could get mad at us if they start getting
1178          * public birthday greetings when they haven't made this info public.
1179          *
1180          * Assuming we are able to publish this info, we are then going to convert
1181          * the start time from the owner's timezone to UTC.
1182          *
1183          * This will potentially solve the problem found with some social networks
1184          * where birthdays are converted to the viewer's timezone and salutations from
1185          * elsewhere in the world show up on the wrong day. We will convert it to the
1186          * viewer's timezone also, but first we are going to convert it from the birthday
1187          * person's timezone to GMT - so the viewer may find the birthday starting at
1188          * 6:00PM the day before, but that will correspond to midnight to the birthday person.
1189          */
1190         $birthday = '';
1191
1192         if (!strlen($tz)) {
1193                 $tz = 'UTC';
1194         }
1195
1196         $p = q(
1197                 "SELECT `dob` FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
1198                 intval($uid)
1199         );
1200
1201         if (DBM::is_result($p)) {
1202                 $tmp_dob = substr($p[0]['dob'], 5);
1203                 if (intval($tmp_dob)) {
1204                         $y = datetime_convert($tz, $tz, 'now', 'Y');
1205                         $bd = $y . '-' . $tmp_dob . ' 00:00';
1206                         $t_dob = strtotime($bd);
1207                         $now = strtotime(datetime_convert($tz, $tz, 'now'));
1208                         if ($t_dob < $now) {
1209                                 $bd = $y + 1 . '-' . $tmp_dob . ' 00:00';
1210                         }
1211                         $birthday = datetime_convert($tz, 'UTC', $bd, ATOM_TIME);
1212                 }
1213         }
1214
1215         return $birthday;
1216 }
1217
1218 /**
1219  * @brief Check if current user has admin role.
1220  *
1221  * @return bool true if user is an admin
1222  */
1223 function is_site_admin()
1224 {
1225         $a = get_app();
1226
1227         $adminlist = explode(",", str_replace(" ", "", $a->config['admin_email']));
1228
1229         //if(local_user() && x($a->user,'email') && x($a->config,'admin_email') && ($a->user['email'] === $a->config['admin_email']))
1230         if (local_user() && x($a->user, 'email') && x($a->config, 'admin_email') && in_array($a->user['email'], $adminlist)) {
1231                 return true;
1232         }
1233         return false;
1234 }
1235
1236 /**
1237  * @brief Returns querystring as string from a mapped array.
1238  *
1239  * @param array  $params mapped array with query parameters
1240  * @param string $name   of parameter, default null
1241  *
1242  * @return string
1243  */
1244 function build_querystring($params, $name = null)
1245 {
1246         $ret = "";
1247         foreach ($params as $key => $val) {
1248                 if (is_array($val)) {
1249                         /// @TODO maybe not compare against null, use is_null()
1250                         if ($name == null) {
1251                                 $ret .= build_querystring($val, $key);
1252                         } else {
1253                                 $ret .= build_querystring($val, $name . "[$key]");
1254                         }
1255                 } else {
1256                         $val = urlencode($val);
1257                         /// @TODO maybe not compare against null, use is_null()
1258                         if ($name != null) {
1259                                 /// @TODO two string concated, can be merged to one
1260                                 $ret .= $name . "[$key]" . "=$val&";
1261                         } else {
1262                                 $ret .= "$key=$val&";
1263                         }
1264                 }
1265         }
1266         return $ret;
1267 }
1268
1269 function explode_querystring($query)
1270 {
1271         $arg_st = strpos($query, '?');
1272         if ($arg_st !== false) {
1273                 $base = substr($query, 0, $arg_st);
1274                 $arg_st += 1;
1275         } else {
1276                 $base = '';
1277                 $arg_st = 0;
1278         }
1279
1280         $args = explode('&', substr($query, $arg_st));
1281         foreach ($args as $k => $arg) {
1282                 /// @TODO really compare type-safe here?
1283                 if ($arg === '') {
1284                         unset($args[$k]);
1285                 }
1286         }
1287         $args = array_values($args);
1288
1289         if (!$base) {
1290                 $base = $args[0];
1291                 unset($args[0]);
1292                 $args = array_values($args);
1293         }
1294
1295         return array(
1296                 'base' => $base,
1297                 'args' => $args,
1298         );
1299 }
1300
1301 /**
1302  * Returns the complete URL of the current page, e.g.: http(s)://something.com/network
1303  *
1304  * Taken from http://webcheatsheet.com/php/get_current_page_url.php
1305  */
1306 function curPageURL()
1307 {
1308         $pageURL = 'http';
1309         if ($_SERVER["HTTPS"] == "on") {
1310                 $pageURL .= "s";
1311         }
1312
1313         $pageURL .= "://";
1314
1315         if ($_SERVER["SERVER_PORT"] != "80" && $_SERVER["SERVER_PORT"] != "443") {
1316                 $pageURL .= $_SERVER["SERVER_NAME"] . ":" . $_SERVER["SERVER_PORT"] . $_SERVER["REQUEST_URI"];
1317         } else {
1318                 $pageURL .= $_SERVER["SERVER_NAME"] . $_SERVER["REQUEST_URI"];
1319         }
1320         return $pageURL;
1321 }
1322
1323 function random_digits($digits)
1324 {
1325         $rn = '';
1326         for ($i = 0; $i < $digits; $i++) {
1327                 /// @TODO rand() is different to mt_rand() and maybe lesser "random"
1328                 $rn .= rand(0, 9);
1329         }
1330         return $rn;
1331 }
1332
1333 function get_server()
1334 {
1335         $server = Config::get("system", "directory");
1336
1337         if ($server == "") {
1338                 $server = "http://dir.friendica.social";
1339         }
1340
1341         return($server);
1342 }
1343
1344 function get_temppath()
1345 {
1346         $a = get_app();
1347
1348         $temppath = Config::get("system", "temppath");
1349
1350         if (($temppath != "") && App::directory_usable($temppath)) {
1351                 // We have a temp path and it is usable
1352                 return App::realpath($temppath);
1353         }
1354
1355         // We don't have a working preconfigured temp path, so we take the system path.
1356         $temppath = sys_get_temp_dir();
1357
1358         // Check if it is usable
1359         if (($temppath != "") && App::directory_usable($temppath)) {
1360                 // Always store the real path, not the path through symlinks
1361                 $temppath = App::realpath($temppath);
1362
1363                 // To avoid any interferences with other systems we create our own directory
1364                 $new_temppath = $temppath . "/" . $a->get_hostname();
1365                 if (!is_dir($new_temppath)) {
1366                         /// @TODO There is a mkdir()+chmod() upwards, maybe generalize this (+ configurable) into a function/method?
1367                         mkdir($new_temppath);
1368                 }
1369
1370                 if (App::directory_usable($new_temppath)) {
1371                         // The new path is usable, we are happy
1372                         Config::set("system", "temppath", $new_temppath);
1373                         return $new_temppath;
1374                 } else {
1375                         // We can't create a subdirectory, strange.
1376                         // But the directory seems to work, so we use it but don't store it.
1377                         return $temppath;
1378                 }
1379         }
1380
1381         // Reaching this point means that the operating system is configured badly.
1382         return '';
1383 }
1384
1385 function get_cachefile($file, $writemode = true)
1386 {
1387         $cache = get_itemcachepath();
1388
1389         if ((!$cache) || (!is_dir($cache))) {
1390                 return("");
1391         }
1392
1393         $subfolder = $cache . "/" . substr($file, 0, 2);
1394
1395         $cachepath = $subfolder . "/" . $file;
1396
1397         if ($writemode) {
1398                 if (!is_dir($subfolder)) {
1399                         mkdir($subfolder);
1400                         chmod($subfolder, 0777);
1401                 }
1402         }
1403
1404         /// @TODO no need to put braces here
1405         return $cachepath;
1406 }
1407
1408 function clear_cache($basepath = "", $path = "")
1409 {
1410         if ($path == "") {
1411                 $basepath = get_itemcachepath();
1412                 $path = $basepath;
1413         }
1414
1415         if (($path == "") || (!is_dir($path))) {
1416                 return;
1417         }
1418
1419         if (substr(realpath($path), 0, strlen($basepath)) != $basepath) {
1420                 return;
1421         }
1422
1423         $cachetime = (int) Config::get('system', 'itemcache_duration');
1424         if ($cachetime == 0) {
1425                 $cachetime = 86400;
1426         }
1427
1428         if (is_writable($path)) {
1429                 if ($dh = opendir($path)) {
1430                         while (($file = readdir($dh)) !== false) {
1431                                 $fullpath = $path . "/" . $file;
1432                                 if ((filetype($fullpath) == "dir") && ($file != ".") && ($file != "..")) {
1433                                         clear_cache($basepath, $fullpath);
1434                                 }
1435                                 if ((filetype($fullpath) == "file") && (filectime($fullpath) < (time() - $cachetime))) {
1436                                         unlink($fullpath);
1437                                 }
1438                         }
1439                         closedir($dh);
1440                 }
1441         }
1442 }
1443
1444 function get_itemcachepath()
1445 {
1446         // Checking, if the cache is deactivated
1447         $cachetime = (int) Config::get('system', 'itemcache_duration');
1448         if ($cachetime < 0) {
1449                 return "";
1450         }
1451
1452         $itemcache = Config::get('system', 'itemcache');
1453         if (($itemcache != "") && App::directory_usable($itemcache)) {
1454                 return App::realpath($itemcache);
1455         }
1456
1457         $temppath = get_temppath();
1458
1459         if ($temppath != "") {
1460                 $itemcache = $temppath . "/itemcache";
1461                 if (!file_exists($itemcache) && !is_dir($itemcache)) {
1462                         mkdir($itemcache);
1463                 }
1464
1465                 if (App::directory_usable($itemcache)) {
1466                         Config::set("system", "itemcache", $itemcache);
1467                         return $itemcache;
1468                 }
1469         }
1470         return "";
1471 }
1472
1473 /**
1474  * @brief Returns the path where spool files are stored
1475  *
1476  * @return string Spool path
1477  */
1478 function get_spoolpath()
1479 {
1480         $spoolpath = Config::get('system', 'spoolpath');
1481         if (($spoolpath != "") && App::directory_usable($spoolpath)) {
1482                 // We have a spool path and it is usable
1483                 return $spoolpath;
1484         }
1485
1486         // We don't have a working preconfigured spool path, so we take the temp path.
1487         $temppath = get_temppath();
1488
1489         if ($temppath != "") {
1490                 // To avoid any interferences with other systems we create our own directory
1491                 $spoolpath = $temppath . "/spool";
1492                 if (!is_dir($spoolpath)) {
1493                         mkdir($spoolpath);
1494                 }
1495
1496                 if (App::directory_usable($spoolpath)) {
1497                         // The new path is usable, we are happy
1498                         Config::set("system", "spoolpath", $spoolpath);
1499                         return $spoolpath;
1500                 } else {
1501                         // We can't create a subdirectory, strange.
1502                         // But the directory seems to work, so we use it but don't store it.
1503                         return $temppath;
1504                 }
1505         }
1506
1507         // Reaching this point means that the operating system is configured badly.
1508         return "";
1509 }
1510
1511
1512 if (!function_exists('exif_imagetype')) {
1513         function exif_imagetype($file)
1514         {
1515                 $size = getimagesize($file);
1516                 return $size[2];
1517         }
1518 }
1519
1520 function validate_include(&$file)
1521 {
1522         $orig_file = $file;
1523
1524         $file = realpath($file);
1525
1526         if (strpos($file, getcwd()) !== 0) {
1527                 return false;
1528         }
1529
1530         $file = str_replace(getcwd() . "/", "", $file, $count);
1531         if ($count != 1) {
1532                 return false;
1533         }
1534
1535         if ($orig_file !== $file) {
1536                 return false;
1537         }
1538
1539         $valid = false;
1540         if (strpos($file, "include/") === 0) {
1541                 $valid = true;
1542         }
1543
1544         if (strpos($file, "addon/") === 0) {
1545                 $valid = true;
1546         }
1547
1548         // Simply return flag
1549         return ($valid);
1550 }
1551
1552 function current_load()
1553 {
1554         if (!function_exists('sys_getloadavg')) {
1555                 return false;
1556         }
1557
1558         $load_arr = sys_getloadavg();
1559
1560         if (!is_array($load_arr)) {
1561                 return false;
1562         }
1563
1564         return max($load_arr[0], $load_arr[1]);
1565 }
1566
1567 /**
1568  * @brief get c-style args
1569  *
1570  * @return int
1571  */
1572 function argc()
1573 {
1574         return get_app()->argc;
1575 }
1576
1577 /**
1578  * @brief Returns the value of a argv key
1579  *
1580  * @param int $x argv key
1581  * @return string Value of the argv key
1582  */
1583 function argv($x)
1584 {
1585         if (array_key_exists($x, get_app()->argv)) {
1586                 return get_app()->argv[$x];
1587         }
1588
1589         return '';
1590 }
1591
1592 /**
1593  * @brief Get the data which is needed for infinite scroll
1594  *
1595  * For invinite scroll we need the page number of the actual page
1596  * and the the URI where the content of the next page comes from.
1597  * This data is needed for the js part in main.js.
1598  * Note: infinite scroll does only work for the network page (module)
1599  *
1600  * @param string $module The name of the module (e.g. "network")
1601  * @return array Of infinite scroll data
1602  *      'pageno' => $pageno The number of the actual page
1603  *      'reload_uri' => $reload_uri The URI of the content we have to load
1604  */
1605 function infinite_scroll_data($module)
1606 {
1607         if (PConfig::get(local_user(), 'system', 'infinite_scroll')
1608                 && ($module == "network") && ($_GET["mode"] != "minimal")
1609         ) {
1610                 // get the page number
1611                 if (is_string($_GET["page"])) {
1612                         $pageno = $_GET["page"];
1613                 } else {
1614                         $pageno = 1;
1615                 }
1616
1617                 $reload_uri = "";
1618
1619                 // try to get the uri from which we load the content
1620                 foreach ($_GET as $param => $value) {
1621                         if (($param != "page") && ($param != "q")) {
1622                                 $reload_uri .= "&" . $param . "=" . urlencode($value);
1623                         }
1624                 }
1625
1626                 if (($a->page_offset != "") && ! strstr($reload_uri, "&offset=")) {
1627                         $reload_uri .= "&offset=" . urlencode($a->page_offset);
1628                 }
1629
1630                 $arr = array("pageno" => $pageno, "reload_uri" => $reload_uri);
1631
1632                 return $arr;
1633         }
1634 }