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