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