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