]> git.mxchange.org Git - friendica.git/blob - src/App.php
Merge remote-tracking branch 'upstream/develop' into issue-3571-2
[friendica.git] / src / App.php
1 <?php
2
3 namespace Friendica;
4
5 use Friendica\Core\Config;
6 use Friendica\Core\PConfig;
7
8 use Cache;
9 use dbm;
10
11 use Detection\MobileDetect;
12
13 use Exception;
14
15 /**
16  *
17  * class: App
18  *
19  * @brief Our main application structure for the life of this page.
20  *
21  * Primarily deals with the URL that got us here
22  * and tries to make some sense of it, and
23  * stores our page contents and config storage
24  * and anything else that might need to be passed around
25  * before we spit the page out.
26  *
27  */
28 class App {
29
30         public $module_loaded = false;
31         public $query_string;
32         public $config;
33         public $page;
34         public $profile;
35         public $profile_uid;
36         public $user;
37         public $cid;
38         public $contact;
39         public $contacts;
40         public $page_contact;
41         public $content;
42         public $data = array();
43         public $error = false;
44         public $cmd;
45         public $argv;
46         public $argc;
47         public $module;
48         public $pager;
49         public $strings;
50         public $basepath;
51         public $path;
52         public $hooks;
53         public $timezone;
54         public $interactive = true;
55         public $plugins;
56         public $apps = array();
57         public $identities;
58         public $is_mobile = false;
59         public $is_tablet = false;
60         public $is_friendica_app;
61         public $performance = array();
62         public $callstack = array();
63         public $theme_info = array();
64         public $backend = true;
65         public $nav_sel;
66         public $category;
67         // Allow themes to control internal parameters
68         // by changing App values in theme.php
69
70         public $sourcename = '';
71         public $videowidth = 425;
72         public $videoheight = 350;
73         public $force_max_items = 0;
74         public $theme_thread_allow = true;
75         public $theme_events_in_profile = true;
76
77         /**
78          * @brief An array for all theme-controllable parameters
79          *
80          * Mostly unimplemented yet. Only options 'template_engine' and
81          * beyond are used.
82          */
83         public $theme = array(
84                 'sourcename' => '',
85                 'videowidth' => 425,
86                 'videoheight' => 350,
87                 'force_max_items' => 0,
88                 'thread_allow' => true,
89                 'stylesheet' => '',
90                 'template_engine' => 'smarty3',
91         );
92
93         /**
94          * @brief An array of registered template engines ('name'=>'class name')
95          */
96         public $template_engines = array();
97
98         /**
99          * @brief An array of instanced template engines ('name'=>'instance')
100          */
101         public $template_engine_instance = array();
102         public $process_id;
103         public $queue;
104         private $ldelim = array(
105                 'internal' => '',
106                 'smarty3' => '{{'
107         );
108         private $rdelim = array(
109                 'internal' => '',
110                 'smarty3' => '}}'
111         );
112         private $scheme;
113         private $hostname;
114         private $db;
115         private $curl_code;
116         private $curl_content_type;
117         private $curl_headers;
118         private $cached_profile_image;
119         private $cached_profile_picdate;
120         private static $a;
121
122         /**
123          * @brief App constructor.
124          *
125          * @param string $basepath Path to the app base folder
126          */
127         function __construct($basepath) {
128
129                 global $default_timezone;
130
131                 $hostname = '';
132
133                 if (file_exists('.htpreconfig.php')) {
134                         include '.htpreconfig.php';
135                 }
136
137                 $this->timezone = ((x($default_timezone)) ? $default_timezone : 'UTC');
138
139                 date_default_timezone_set($this->timezone);
140
141                 $this->performance['start'] = microtime(true);
142                 $this->performance['database'] = 0;
143                 $this->performance['database_write'] = 0;
144                 $this->performance['network'] = 0;
145                 $this->performance['file'] = 0;
146                 $this->performance['rendering'] = 0;
147                 $this->performance['parser'] = 0;
148                 $this->performance['marktime'] = 0;
149                 $this->performance['markstart'] = microtime(true);
150
151                 $this->callstack['database'] = array();
152                 $this->callstack['database_write'] = array();
153                 $this->callstack['network'] = array();
154                 $this->callstack['file'] = array();
155                 $this->callstack['rendering'] = array();
156                 $this->callstack['parser'] = array();
157
158                 $this->config = array();
159                 $this->page = array();
160                 $this->pager = array();
161
162                 $this->query_string = '';
163
164                 $this->process_id = uniqid('log', true);
165
166                 startup();
167
168                 $this->scheme = 'http';
169
170                 if ((x($_SERVER, 'HTTPS') && $_SERVER['HTTPS']) ||
171                         (x($_SERVER, 'HTTP_FORWARDED') && preg_match('/proto=https/', $_SERVER['HTTP_FORWARDED'])) ||
172                         (x($_SERVER, 'HTTP_X_FORWARDED_PROTO') && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') ||
173                         (x($_SERVER, 'HTTP_X_FORWARDED_SSL') && $_SERVER['HTTP_X_FORWARDED_SSL'] == 'on') ||
174                         (x($_SERVER, 'FRONT_END_HTTPS') && $_SERVER['FRONT_END_HTTPS'] == 'on') ||
175                         (x($_SERVER, 'SERVER_PORT') && (intval($_SERVER['SERVER_PORT']) == 443)) // XXX: reasonable assumption, but isn't this hardcoding too much?
176                 ) {
177                         $this->scheme = 'https';
178                 }
179
180                 if (x($_SERVER, 'SERVER_NAME')) {
181                         $this->hostname = $_SERVER['SERVER_NAME'];
182
183                         if (x($_SERVER, 'SERVER_PORT') && $_SERVER['SERVER_PORT'] != 80 && $_SERVER['SERVER_PORT'] != 443) {
184                                 $this->hostname .= ':' . $_SERVER['SERVER_PORT'];
185                         }
186                         /*
187                          * Figure out if we are running at the top of a domain
188                          * or in a sub-directory and adjust accordingly
189                          */
190
191                         /// @TODO This kind of escaping breaks syntax-highlightning on CoolEdit (Midnight Commander)
192                         $path = trim(dirname($_SERVER['SCRIPT_NAME']), '/\\');
193                         if (isset($path) && strlen($path) && ($path != $this->path)) {
194                                 $this->path = $path;
195                         }
196                 }
197
198                 if ($hostname != '') {
199                         $this->hostname = $hostname;
200                 }
201
202                 if (! static::directory_usable($basepath, false)) {
203                         throw new Exception('Basepath ' . $basepath . ' isn\'t usable.');
204                 }
205
206                 $this->basepath = rtrim($basepath, DIRECTORY_SEPARATOR);
207
208                 set_include_path(
209                         get_include_path() . PATH_SEPARATOR
210                         . $this->basepath . DIRECTORY_SEPARATOR . 'include' . PATH_SEPARATOR
211                         . $this->basepath . DIRECTORY_SEPARATOR . 'library' . PATH_SEPARATOR
212                         . $this->basepath . DIRECTORY_SEPARATOR . 'library/langdet' . PATH_SEPARATOR
213                         . $this->basepath);
214
215
216                 if (is_array($_SERVER['argv']) && $_SERVER['argc'] > 1 && substr(end($_SERVER['argv']), 0, 4) == 'http') {
217                         $this->set_baseurl(array_pop($_SERVER['argv']));
218                         $_SERVER['argc'] --;
219                 }
220
221                 if ((x($_SERVER, 'QUERY_STRING')) && substr($_SERVER['QUERY_STRING'], 0, 9) === 'pagename=') {
222                         $this->query_string = substr($_SERVER['QUERY_STRING'], 9);
223
224                         // removing trailing / - maybe a nginx problem
225                         $this->query_string = ltrim($this->query_string, '/');
226                 } elseif ((x($_SERVER, 'QUERY_STRING')) && substr($_SERVER['QUERY_STRING'], 0, 2) === 'q=') {
227                         $this->query_string = substr($_SERVER['QUERY_STRING'], 2);
228
229                         // removing trailing / - maybe a nginx problem
230                         $this->query_string = ltrim($this->query_string, '/');
231                 }
232
233                 if (x($_GET, 'pagename')) {
234                         $this->cmd = trim($_GET['pagename'], '/\\');
235                 } elseif (x($_GET, 'q')) {
236                         $this->cmd = trim($_GET['q'], '/\\');
237                 }
238
239                 // fix query_string
240                 $this->query_string = str_replace($this->cmd . '&', $this->cmd . '?', $this->query_string);
241
242                 // unix style "homedir"
243                 if (substr($this->cmd, 0, 1) === '~') {
244                         $this->cmd = 'profile/' . substr($this->cmd, 1);
245                 }
246
247                 // Diaspora style profile url
248                 if (substr($this->cmd, 0, 2) === 'u/') {
249                         $this->cmd = 'profile/' . substr($this->cmd, 2);
250                 }
251
252                 /*
253                  * Break the URL path into C style argc/argv style arguments for our
254                  * modules. Given "http://example.com/module/arg1/arg2", $this->argc
255                  * will be 3 (integer) and $this->argv will contain:
256                  *   [0] => 'module'
257                  *   [1] => 'arg1'
258                  *   [2] => 'arg2'
259                  *
260                  *
261                  * There will always be one argument. If provided a naked domain
262                  * URL, $this->argv[0] is set to "home".
263                  */
264
265                 $this->argv = explode('/', $this->cmd);
266                 $this->argc = count($this->argv);
267                 if ((array_key_exists('0', $this->argv)) && strlen($this->argv[0])) {
268                         $this->module = str_replace('.', '_', $this->argv[0]);
269                         $this->module = str_replace('-', '_', $this->module);
270                 } else {
271                         $this->argc = 1;
272                         $this->argv = array('home');
273                         $this->module = 'home';
274                 }
275
276                 // See if there is any page number information, and initialise pagination
277                 $this->pager['page'] = ((x($_GET, 'page') && intval($_GET['page']) > 0) ? intval($_GET['page']) : 1);
278                 $this->pager['itemspage'] = 50;
279                 $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
280
281                 if ($this->pager['start'] < 0) {
282                         $this->pager['start'] = 0;
283                 }
284                 $this->pager['total'] = 0;
285
286                 // Detect mobile devices
287                 $mobile_detect = new MobileDetect();
288                 $this->is_mobile = $mobile_detect->isMobile();
289                 $this->is_tablet = $mobile_detect->isTablet();
290
291                 // Friendica-Client
292                 $this->is_friendica_app = ($_SERVER['HTTP_USER_AGENT'] == 'Apache-HttpClient/UNAVAILABLE (java 1.4)');
293
294                 // Register template engines
295                 $dc = get_declared_classes();
296                 foreach ($dc as $k) {
297                         if (in_array('ITemplateEngine', class_implements($k))) {
298                                 $this->register_template_engine($k);
299                         }
300                 }
301
302                 self::$a = $this;
303         }
304
305         /**
306          * @brief Returns the base filesystem path of the App
307          *
308          * It first checks for the internal variable, then for DOCUMENT_ROOT and
309          * finally for PWD
310          *
311          * @return string
312          */
313         public static function get_basepath() {
314                 if (isset($this)) {
315                         $basepath = $this->basepath;
316                 }
317
318                 if (! $basepath) {
319                         $basepath = Config::get('system', 'basepath');
320                 }
321
322                 if (! $basepath && x($_SERVER, 'DOCUMENT_ROOT')) {
323                         $basepath = $_SERVER['DOCUMENT_ROOT'];
324                 }
325
326                 if (! $basepath && x($_SERVER, 'PWD')) {
327                         $basepath = $_SERVER['PWD'];
328                 }
329
330                 return $basepath;
331         }
332
333         function get_scheme() {
334                 return $this->scheme;
335         }
336
337         /**
338          * @brief Retrieves the Friendica instance base URL
339          *
340          * This function assembles the base URL from multiple parts:
341          * - Protocol is determined either by the request or a combination of
342          * system.ssl_policy and the $ssl parameter.
343          * - Host name is determined either by system.hostname or inferred from request
344          * - Path is inferred from SCRIPT_NAME
345          *
346          * Note: $ssl parameter value doesn't directly correlate with the resulting protocol
347          *
348          * @param bool $ssl Whether to append http or https under SSL_POLICY_SELFSIGN
349          * @return string Friendica server base URL
350          */
351         function get_baseurl($ssl = false) {
352                 // Is the function called statically?
353                 if (!(isset($this) && get_class($this) == __CLASS__)) {
354                         return self::$a->get_baseurl($ssl);
355                 }
356
357                 $scheme = $this->scheme;
358
359                 if (Config::get('system', 'ssl_policy') == SSL_POLICY_FULL) {
360                         $scheme = 'https';
361                 }
362
363                 //      Basically, we have $ssl = true on any links which can only be seen by a logged in user
364                 //      (and also the login link). Anything seen by an outsider will have it turned off.
365
366                 if (Config::get('system', 'ssl_policy') == SSL_POLICY_SELFSIGN) {
367                         if ($ssl) {
368                                 $scheme = 'https';
369                         } else {
370                                 $scheme = 'http';
371                         }
372                 }
373
374                 if (Config::get('config', 'hostname') != '') {
375                         $this->hostname = Config::get('config', 'hostname');
376                 }
377
378                 return $scheme . '://' . $this->hostname . ((isset($this->path) && strlen($this->path)) ? '/' . $this->path : '' );
379         }
380
381         /**
382          * @brief Initializes the baseurl components
383          *
384          * Clears the baseurl cache to prevent inconstistencies
385          *
386          * @param string $url
387          */
388         function set_baseurl($url) {
389                 $parsed = @parse_url($url);
390
391                 if ($parsed) {
392                         $this->scheme = $parsed['scheme'];
393
394                         $hostname = $parsed['host'];
395                         if (x($parsed, 'port')) {
396                                 $hostname .= ':' . $parsed['port'];
397                         }
398                         if (x($parsed, 'path')) {
399                                 $this->path = trim($parsed['path'], '\\/');
400                         }
401
402                         if (file_exists('.htpreconfig.php')) {
403                                 include '.htpreconfig.php';
404                         }
405
406                         if (Config::get('config', 'hostname') != '') {
407                                 $this->hostname = Config::get('config', 'hostname');
408                         }
409
410                         if (!isset($this->hostname) || ( $this->hostname == '')) {
411                                 $this->hostname = $hostname;
412                         }
413                 }
414         }
415
416         function get_hostname() {
417                 if (Config::get('config', 'hostname') != '') {
418                         $this->hostname = Config::get('config', 'hostname');
419                 }
420
421                 return $this->hostname;
422         }
423
424         function set_hostname($h) {
425                 $this->hostname = $h;
426         }
427
428         function set_path($p) {
429                 $this->path = trim(trim($p), '/');
430         }
431
432         function get_path() {
433                 return $this->path;
434         }
435
436         function set_pager_total($n) {
437                 $this->pager['total'] = intval($n);
438         }
439
440         function set_pager_itemspage($n) {
441                 $this->pager['itemspage'] = ((intval($n) > 0) ? intval($n) : 0);
442                 $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
443         }
444
445         function set_pager_page($n) {
446                 $this->pager['page'] = $n;
447                 $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
448         }
449
450         function init_pagehead() {
451                 $interval = ((local_user()) ? PConfig::get(local_user(), 'system', 'update_interval') : 40000);
452
453                 // If the update is 'deactivated' set it to the highest integer number (~24 days)
454                 if ($interval < 0) {
455                         $interval = 2147483647;
456                 }
457
458                 if ($interval < 10000) {
459                         $interval = 40000;
460                 }
461
462                 // compose the page title from the sitename and the
463                 // current module called
464                 if (!$this->module == '') {
465                         $this->page['title'] = $this->config['sitename'] . ' (' . $this->module . ')';
466                 } else {
467                         $this->page['title'] = $this->config['sitename'];
468                 }
469
470                 /* put the head template at the beginning of page['htmlhead']
471                  * since the code added by the modules frequently depends on it
472                  * being first
473                  */
474                 if (!isset($this->page['htmlhead'])) {
475                         $this->page['htmlhead'] = '';
476                 }
477
478                 // If we're using Smarty, then doing replace_macros() will replace
479                 // any unrecognized variables with a blank string. Since we delay
480                 // replacing $stylesheet until later, we need to replace it now
481                 // with another variable name
482                 if ($this->theme['template_engine'] === 'smarty3') {
483                         $stylesheet = $this->get_template_ldelim('smarty3') . '$stylesheet' . $this->get_template_rdelim('smarty3');
484                 } else {
485                         $stylesheet = '$stylesheet';
486                 }
487
488                 $shortcut_icon = Config::get('system', 'shortcut_icon');
489                 if ($shortcut_icon == '') {
490                         $shortcut_icon = 'images/friendica-32.png';
491                 }
492
493                 $touch_icon = Config::get('system', 'touch_icon');
494                 if ($touch_icon == '') {
495                         $touch_icon = 'images/friendica-128.png';
496                 }
497
498                 // get data wich is needed for infinite scroll on the network page
499                 $invinite_scroll = infinite_scroll_data($this->module);
500
501                 $tpl = get_markup_template('head.tpl');
502                 $this->page['htmlhead'] = replace_macros($tpl, array(
503                                 '$baseurl' => $this->get_baseurl(), // FIXME for z_path!!!!
504                                 '$local_user' => local_user(),
505                                 '$generator' => 'Friendica' . ' ' . FRIENDICA_VERSION,
506                                 '$delitem' => t('Delete this item?'),
507                                 '$showmore' => t('show more'),
508                                 '$showfewer' => t('show fewer'),
509                                 '$update_interval' => $interval,
510                                 '$shortcut_icon' => $shortcut_icon,
511                                 '$touch_icon' => $touch_icon,
512                                 '$stylesheet' => $stylesheet,
513                                 '$infinite_scroll' => $invinite_scroll,
514                         )) . $this->page['htmlhead'];
515         }
516
517         function init_page_end() {
518                 if (!isset($this->page['end'])) {
519                         $this->page['end'] = '';
520                 }
521                 $tpl = get_markup_template('end.tpl');
522                 $this->page['end'] = replace_macros($tpl, array(
523                                 '$baseurl' => $this->get_baseurl() // FIXME for z_path!!!!
524                         )) . $this->page['end'];
525         }
526
527         function set_curl_code($code) {
528                 $this->curl_code = $code;
529         }
530
531         function get_curl_code() {
532                 return $this->curl_code;
533         }
534
535         function set_curl_content_type($content_type) {
536                 $this->curl_content_type = $content_type;
537         }
538
539         function get_curl_content_type() {
540                 return $this->curl_content_type;
541         }
542
543         function set_curl_headers($headers) {
544                 $this->curl_headers = $headers;
545         }
546
547         function get_curl_headers() {
548                 return $this->curl_headers;
549         }
550
551         function get_cached_avatar_image($avatar_image) {
552                 return $avatar_image;
553         }
554
555         /**
556          * @brief Removes the baseurl from an url. This avoids some mixed content problems.
557          *
558          * @param string $orig_url
559          *
560          * @return string The cleaned url
561          */
562         function remove_baseurl($orig_url) {
563
564                 // Is the function called statically?
565                 if (!(isset($this) && get_class($this) == __CLASS__)) {
566                         return self::$a->remove_baseurl($orig_url);
567                 }
568
569                 // Remove the hostname from the url if it is an internal link
570                 $nurl = normalise_link($orig_url);
571                 $base = normalise_link($this->get_baseurl());
572                 $url = str_replace($base . '/', '', $nurl);
573
574                 // if it is an external link return the orignal value
575                 if ($url == normalise_link($orig_url)) {
576                         return $orig_url;
577                 } else {
578                         return $url;
579                 }
580         }
581
582         /**
583          * @brief Register template engine class
584          *
585          * If $name is '', is used class static property $class::$name
586          *
587          * @param string $class
588          * @param string $name
589          */
590         function register_template_engine($class, $name = '') {
591                 /// @TODO Really === and not just == ?
592                 if ($name === '') {
593                         $v = get_class_vars($class);
594                         if (x($v, 'name'))
595                                 $name = $v['name'];
596                 }
597                 if ($name === '') {
598                         echo "template engine <tt>$class</tt> cannot be registered without a name.\n";
599                         killme();
600                 }
601                 $this->template_engines[$name] = $class;
602         }
603
604         /**
605          * @brief Return template engine instance.
606          *
607          * If $name is not defined, return engine defined by theme,
608          * or default
609          *
610          * @param strin $name Template engine name
611          * @return object Template Engine instance
612          */
613         function template_engine($name = '') {
614                 /// @TODO really type-check included?
615                 if ($name !== '') {
616                         $template_engine = $name;
617                 } else {
618                         $template_engine = 'smarty3';
619                         if (x($this->theme, 'template_engine')) {
620                                 $template_engine = $this->theme['template_engine'];
621                         }
622                 }
623
624                 if (isset($this->template_engines[$template_engine])) {
625                         if (isset($this->template_engine_instance[$template_engine])) {
626                                 return $this->template_engine_instance[$template_engine];
627                         } else {
628                                 $class = $this->template_engines[$template_engine];
629                                 $obj = new $class;
630                                 $this->template_engine_instance[$template_engine] = $obj;
631                                 return $obj;
632                         }
633                 }
634
635                 echo "template engine <tt>$template_engine</tt> is not registered!\n";
636                 killme();
637         }
638
639         /**
640          * @brief Returns the active template engine.
641          *
642          * @return string
643          */
644         function get_template_engine() {
645                 return $this->theme['template_engine'];
646         }
647
648         function set_template_engine($engine = 'smarty3') {
649                 $this->theme['template_engine'] = $engine;
650         }
651
652         function get_template_ldelim($engine = 'smarty3') {
653                 return $this->ldelim[$engine];
654         }
655
656         function get_template_rdelim($engine = 'smarty3') {
657                 return $this->rdelim[$engine];
658         }
659
660         function save_timestamp($stamp, $value) {
661                 if (!isset($this->config['system']['profiler']) || !$this->config['system']['profiler']) {
662                         return;
663                 }
664
665                 $duration = (float) (microtime(true) - $stamp);
666
667                 if (!isset($this->performance[$value])) {
668                         // Prevent ugly E_NOTICE
669                         $this->performance[$value] = 0;
670                 }
671
672                 $this->performance[$value] += (float) $duration;
673                 $this->performance['marktime'] += (float) $duration;
674
675                 $callstack = $this->callstack();
676
677                 if (!isset($this->callstack[$value][$callstack])) {
678                         // Prevent ugly E_NOTICE
679                         $this->callstack[$value][$callstack] = 0;
680                 }
681
682                 $this->callstack[$value][$callstack] += (float) $duration;
683         }
684
685         /**
686          * @brief Log active processes into the "process" table
687          */
688         function start_process() {
689                 $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 1);
690
691                 $command = basename($trace[0]['file']);
692
693                 $this->remove_inactive_processes();
694
695                 q('START TRANSACTION');
696
697                 $r = q('SELECT `pid` FROM `process` WHERE `pid` = %d', intval(getmypid()));
698                 if (!dbm::is_result($r)) {
699                         q("INSERT INTO `process` (`pid`,`command`,`created`) VALUES (%d, '%s', '%s')", intval(getmypid()), dbesc($command), dbesc(datetime_convert()));
700                 }
701                 q('COMMIT');
702         }
703
704         /**
705          * @brief Remove inactive processes
706          */
707         function remove_inactive_processes() {
708                 q('START TRANSACTION');
709
710                 $r = q('SELECT `pid` FROM `process`');
711                 if (dbm::is_result($r)) {
712                         foreach ($r AS $process) {
713                                 if (!posix_kill($process['pid'], 0)) {
714                                         q('DELETE FROM `process` WHERE `pid` = %d', intval($process['pid']));
715                                 }
716                         }
717                 }
718                 q('COMMIT');
719         }
720
721         /**
722          * @brief Remove the active process from the "process" table
723          */
724         function end_process() {
725                 q('DELETE FROM `process` WHERE `pid` = %d', intval(getmypid()));
726         }
727
728         /**
729          * @brief Returns a string with a callstack. Can be used for logging.
730          *
731          * @return string
732          */
733         function callstack($depth = 4) {
734                 $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, $depth + 2);
735
736                 // We remove the first two items from the list since they contain data that we don't need.
737                 array_shift($trace);
738                 array_shift($trace);
739
740                 $callstack = array();
741                 foreach ($trace AS $func) {
742                         $callstack[] = $func['function'];
743                 }
744
745                 return implode(', ', $callstack);
746         }
747
748         function get_useragent() {
749                 return
750                         FRIENDICA_PLATFORM . " '" .
751                         FRIENDICA_CODENAME . "' " .
752                         FRIENDICA_VERSION . '-' .
753                         DB_UPDATE_VERSION . '; ' .
754                         $this->get_baseurl();
755         }
756
757         function is_friendica_app() {
758                 return $this->is_friendica_app;
759         }
760
761         /**
762          * @brief Checks if the site is called via a backend process
763          *
764          * This isn't a perfect solution. But we need this check very early.
765          * So we cannot wait until the modules are loaded.
766          *
767          * @return bool Is it a known backend?
768          */
769         function is_backend() {
770                 static $backends = array();
771                 $backends[] = '_well_known';
772                 $backends[] = 'api';
773                 $backends[] = 'dfrn_notify';
774                 $backends[] = 'fetch';
775                 $backends[] = 'hcard';
776                 $backends[] = 'hostxrd';
777                 $backends[] = 'nodeinfo';
778                 $backends[] = 'noscrape';
779                 $backends[] = 'p';
780                 $backends[] = 'poco';
781                 $backends[] = 'post';
782                 $backends[] = 'proxy';
783                 $backends[] = 'pubsub';
784                 $backends[] = 'pubsubhubbub';
785                 $backends[] = 'receive';
786                 $backends[] = 'rsd_xml';
787                 $backends[] = 'salmon';
788                 $backends[] = 'statistics_json';
789                 $backends[] = 'xrd';
790
791                 // Check if current module is in backend or backend flag is set
792                 return (in_array($this->module, $backends) || $this->backend);
793         }
794
795         /**
796          * @brief Checks if the maximum number of database processes is reached
797          *
798          * @return bool Is the limit reached?
799          */
800         function max_processes_reached() {
801                 // Deactivated, needs more investigating if this check really makes sense
802                 return false;
803
804                 if ($this->is_backend()) {
805                         $process = 'backend';
806                         $max_processes = Config::get('system', 'max_processes_backend');
807                         if (intval($max_processes) == 0) {
808                                 $max_processes = 5;
809                         }
810                 } else {
811                         $process = 'frontend';
812                         $max_processes = Config::get('system', 'max_processes_frontend');
813                         if (intval($max_processes) == 0) {
814                                 $max_processes = 20;
815                         }
816                 }
817
818                 $processlist = dbm::processlist();
819                 if ($processlist['list'] != '') {
820                         logger('Processcheck: Processes: ' . $processlist['amount'] . ' - Processlist: ' . $processlist['list'], LOGGER_DEBUG);
821
822                         if ($processlist['amount'] > $max_processes) {
823                                 logger('Processcheck: Maximum number of processes for ' . $process . ' tasks (' . $max_processes . ') reached.', LOGGER_DEBUG);
824                                 return true;
825                         }
826                 }
827                 return false;
828         }
829
830         /**
831          * @brief Checks if the minimal memory is reached
832          *
833          * @return bool Is the memory limit reached?
834          */
835         public function min_memory_reached() {
836                 $min_memory = Config::get('system', 'min_memory', 0);
837                 if ($min_memory == 0) {
838                         return false;
839                 }
840
841                 if (!is_readable('/proc/meminfo')) {
842                         return false;
843                 }
844
845                 $memdata = explode("\n", file_get_contents('/proc/meminfo'));
846
847                 $meminfo = array();
848                 foreach ($memdata as $line) {
849                         list($key, $val) = explode(':', $line);
850                         $meminfo[$key] = (int) trim(str_replace('kB', '', $val));
851                         $meminfo[$key] = (int) ($meminfo[$key] / 1024);
852                 }
853
854                 if (!isset($meminfo['MemAvailable']) || ! isset($meminfo['MemFree'])) {
855                         return false;
856                 }
857
858                 $free = $meminfo['MemAvailable'] + $meminfo['MemFree'];
859
860                 $reached = ($free < $min_memory);
861
862                 if ($reached) {
863                         logger('Minimal memory reached: ' . $free . '/' . $meminfo['MemTotal'] . ' - limit ' . $min_memory, LOGGER_DEBUG);
864                 }
865
866                 return $reached;
867         }
868
869         /**
870          * @brief Checks if the maximum load is reached
871          *
872          * @return bool Is the load reached?
873          */
874         function maxload_reached() {
875
876                 if ($this->is_backend()) {
877                         $process = 'backend';
878                         $maxsysload = intval(Config::get('system', 'maxloadavg'));
879                         if ($maxsysload < 1) {
880                                 $maxsysload = 50;
881                         }
882                 } else {
883                         $process = 'frontend';
884                         $maxsysload = intval(Config::get('system', 'maxloadavg_frontend'));
885                         if ($maxsysload < 1) {
886                                 $maxsysload = 50;
887                         }
888                 }
889
890                 $load = current_load();
891                 if ($load) {
892                         if (intval($load) > $maxsysload) {
893                                 logger('system: load ' . $load . ' for ' . $process . ' tasks (' . $maxsysload . ') too high.');
894                                 return true;
895                         }
896                 }
897                 return false;
898         }
899
900         function proc_run($args) {
901
902                 if (!function_exists('proc_open')) {
903                         return;
904                 }
905
906                 // If the last worker fork was less than 2 seconds before then don't fork another one.
907                 // This should prevent the forking of masses of workers.
908                 $cachekey = 'app:proc_run:started';
909                 $result = Cache::get($cachekey);
910
911                 if (!is_null($result) && ( time() - $result) < 2) {
912                         return;
913                 }
914
915                 // Set the timestamp of the last proc_run
916                 Cache::set($cachekey, time(), CACHE_MINUTE);
917
918                 array_unshift($args, ((x($this->config, 'php_path')) && (strlen($this->config['php_path'])) ? $this->config['php_path'] : 'php'));
919
920                 // add baseurl to args. cli scripts can't construct it
921                 $args[] = $this->get_baseurl();
922
923                 for ($x = 0; $x < count($args); $x ++) {
924                         $args[$x] = escapeshellarg($args[$x]);
925                 }
926
927                 $cmdline = implode($args, ' ');
928
929                 if ($this->min_memory_reached()) {
930                         return;
931                 }
932
933                 if (Config::get('system', 'proc_windows')) {
934                         $resource = proc_open('cmd /c start /b ' . $cmdline, array(), $foo, $this->get_basepath());
935                 } else {
936                         $resource = proc_open($cmdline . ' &', array(), $foo, $this->get_basepath());
937                 }
938                 if (!is_resource($resource)) {
939                         logger('We got no resource for command ' . $cmdline, LOGGER_DEBUG);
940                         return;
941                 }
942                 proc_close($resource);
943         }
944
945         /**
946          * @brief Returns the system user that is executing the script
947          *
948          * This mostly returns something like "www-data".
949          *
950          * @return string system username
951          */
952         static function systemuser() {
953                 if (!function_exists('posix_getpwuid') || ! function_exists('posix_geteuid')) {
954                         return '';
955                 }
956
957                 $processUser = posix_getpwuid(posix_geteuid());
958                 return $processUser['name'];
959         }
960
961         /**
962          * @brief Checks if a given directory is usable for the system
963          *
964          * @return boolean the directory is usable
965          */
966         static function directory_usable($directory, $check_writable = true) {
967                 if ($directory == '') {
968                         logger('Directory is empty. This shouldn\'t happen.', LOGGER_DEBUG);
969                         return false;
970                 }
971
972                 if (!file_exists($directory)) {
973                         logger('Path "' . $directory . '" does not exist for user ' . self::systemuser(), LOGGER_DEBUG);
974                         return false;
975                 }
976                 if (is_file($directory)) {
977                         logger('Path "' . $directory . '" is a file for user ' . self::systemuser(), LOGGER_DEBUG);
978                         return false;
979                 }
980                 if (!is_dir($directory)) {
981                         logger('Path "' . $directory . '" is not a directory for user ' . self::systemuser(), LOGGER_DEBUG);
982                         return false;
983                 }
984                 if ($check_writable && !is_writable($directory)) {
985                         logger('Path "' . $directory . '" is not writable for user ' . self::systemuser(), LOGGER_DEBUG);
986                         return false;
987                 }
988                 return true;
989         }
990 }