2017-05-08 08:11:38 +02:00
|
|
|
<?php
|
2018-01-22 15:54:13 +01:00
|
|
|
/**
|
|
|
|
* @file src/App.php
|
|
|
|
*/
|
2017-05-08 08:11:38 +02:00
|
|
|
namespace Friendica;
|
|
|
|
|
2018-07-20 04:15:21 +02:00
|
|
|
use Detection\MobileDetect;
|
|
|
|
use Exception;
|
2017-05-08 08:11:38 +02:00
|
|
|
use Friendica\Core\Config;
|
2018-01-22 15:54:13 +01:00
|
|
|
use Friendica\Core\L10n;
|
2017-05-08 08:11:38 +02:00
|
|
|
use Friendica\Core\PConfig;
|
2018-01-16 01:08:28 +01:00
|
|
|
use Friendica\Core\System;
|
2018-07-20 14:19:26 +02:00
|
|
|
use Friendica\Database\DBA;
|
2018-10-06 16:27:20 +02:00
|
|
|
use Friendica\Network\HTTPException\InternalServerErrorException;
|
2017-05-11 17:53:04 +02:00
|
|
|
|
2017-12-17 21:24:57 +01:00
|
|
|
require_once 'boot.php';
|
2018-06-26 02:38:41 +02:00
|
|
|
require_once 'include/dba.php';
|
2018-01-16 01:08:28 +01:00
|
|
|
require_once 'include/text.php';
|
2017-12-17 21:24:57 +01:00
|
|
|
|
2017-05-08 08:11:38 +02:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* class: App
|
|
|
|
*
|
|
|
|
* @brief Our main application structure for the life of this page.
|
|
|
|
*
|
|
|
|
* Primarily deals with the URL that got us here
|
|
|
|
* and tries to make some sense of it, and
|
|
|
|
* stores our page contents and config storage
|
|
|
|
* and anything else that might need to be passed around
|
|
|
|
* before we spit the page out.
|
|
|
|
*
|
|
|
|
*/
|
2018-01-16 01:13:21 +01:00
|
|
|
class App
|
|
|
|
{
|
2017-05-08 08:11:38 +02:00
|
|
|
public $module_loaded = false;
|
2017-12-17 17:37:03 +01:00
|
|
|
public $module_class = null;
|
2018-06-26 02:38:41 +02:00
|
|
|
public $query_string = '';
|
|
|
|
public $config = [];
|
|
|
|
public $page = [];
|
|
|
|
public $pager = [];
|
2018-01-01 21:08:00 +01:00
|
|
|
public $page_offset;
|
2017-05-08 08:11:38 +02:00
|
|
|
public $profile;
|
|
|
|
public $profile_uid;
|
|
|
|
public $user;
|
|
|
|
public $cid;
|
|
|
|
public $contact;
|
|
|
|
public $contacts;
|
|
|
|
public $page_contact;
|
|
|
|
public $content;
|
2018-01-15 14:05:12 +01:00
|
|
|
public $data = [];
|
2017-05-08 08:11:38 +02:00
|
|
|
public $error = false;
|
2018-06-26 02:38:41 +02:00
|
|
|
public $cmd = '';
|
2017-05-08 08:11:38 +02:00
|
|
|
public $argv;
|
|
|
|
public $argc;
|
|
|
|
public $module;
|
|
|
|
public $strings;
|
2018-06-26 02:38:41 +02:00
|
|
|
public $hooks = [];
|
2017-05-08 08:11:38 +02:00
|
|
|
public $timezone;
|
|
|
|
public $interactive = true;
|
2018-01-17 20:22:38 +01:00
|
|
|
public $addons;
|
|
|
|
public $addons_admin = [];
|
2018-01-15 14:05:12 +01:00
|
|
|
public $apps = [];
|
2017-05-08 08:11:38 +02:00
|
|
|
public $identities;
|
|
|
|
public $is_mobile = false;
|
|
|
|
public $is_tablet = false;
|
2018-01-15 14:05:12 +01:00
|
|
|
public $performance = [];
|
|
|
|
public $callstack = [];
|
|
|
|
public $theme_info = [];
|
2017-05-08 08:11:38 +02:00
|
|
|
public $nav_sel;
|
|
|
|
public $category;
|
|
|
|
// Allow themes to control internal parameters
|
|
|
|
// by changing App values in theme.php
|
|
|
|
|
|
|
|
public $sourcename = '';
|
|
|
|
public $videowidth = 425;
|
|
|
|
public $videoheight = 350;
|
|
|
|
public $force_max_items = 0;
|
|
|
|
public $theme_events_in_profile = true;
|
|
|
|
|
2018-09-21 03:30:51 +02:00
|
|
|
public $stylesheets = [];
|
2018-09-21 03:01:05 +02:00
|
|
|
public $footerScripts = [];
|
|
|
|
|
2018-10-06 16:27:20 +02:00
|
|
|
/**
|
|
|
|
* @var App\Mode The Mode of the Application
|
|
|
|
*/
|
|
|
|
private $mode;
|
|
|
|
|
2018-10-09 19:58:58 +02:00
|
|
|
/**
|
|
|
|
* @var string The App basepath
|
|
|
|
*/
|
2018-10-10 08:54:18 +02:00
|
|
|
private $basePath;
|
2018-10-09 19:58:58 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string The App URL path
|
|
|
|
*/
|
2018-10-10 08:54:18 +02:00
|
|
|
private $urlPath;
|
2018-10-09 19:58:58 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var bool true, if the call is from the Friendica APP, otherwise false
|
|
|
|
*/
|
|
|
|
private $isFriendicaApp;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var bool true, if the call is from an backend node (f.e. worker)
|
|
|
|
*/
|
|
|
|
private $isBackend;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string The name of the current theme
|
|
|
|
*/
|
|
|
|
private $currentTheme;
|
|
|
|
|
2018-09-21 15:54:40 +02:00
|
|
|
/**
|
|
|
|
* Register a stylesheet file path to be included in the <head> tag of every page.
|
|
|
|
* Inclusion is done in App->initHead().
|
|
|
|
* The path can be absolute or relative to the Friendica installation base folder.
|
|
|
|
*
|
|
|
|
* @see App->initHead()
|
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
*/
|
2018-09-21 03:30:51 +02:00
|
|
|
public function registerStylesheet($path)
|
|
|
|
{
|
2018-10-09 19:58:58 +02:00
|
|
|
$url = str_replace($this->getBasePath() . DIRECTORY_SEPARATOR, '', $path);
|
2018-09-21 03:30:51 +02:00
|
|
|
|
|
|
|
$this->stylesheets[] = trim($url, '/');
|
|
|
|
}
|
|
|
|
|
2018-09-21 15:54:40 +02:00
|
|
|
/**
|
|
|
|
* Register a javascript file path to be included in the <footer> tag of every page.
|
|
|
|
* Inclusion is done in App->initFooter().
|
|
|
|
* The path can be absolute or relative to the Friendica installation base folder.
|
|
|
|
*
|
|
|
|
* @see App->initFooter()
|
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
*/
|
2018-09-21 03:01:05 +02:00
|
|
|
public function registerFooterScript($path)
|
|
|
|
{
|
2018-10-09 19:58:58 +02:00
|
|
|
$url = str_replace($this->getBasePath() . DIRECTORY_SEPARATOR, '', $path);
|
2018-09-21 03:01:05 +02:00
|
|
|
|
2018-09-21 03:30:51 +02:00
|
|
|
$this->footerScripts[] = trim($url, '/');
|
2018-09-21 03:01:05 +02:00
|
|
|
}
|
|
|
|
|
2017-05-08 08:11:38 +02:00
|
|
|
/**
|
|
|
|
* @brief An array for all theme-controllable parameters
|
|
|
|
*
|
|
|
|
* Mostly unimplemented yet. Only options 'template_engine' and
|
|
|
|
* beyond are used.
|
|
|
|
*/
|
2018-01-15 14:05:12 +01:00
|
|
|
public $theme = [
|
2017-05-08 08:11:38 +02:00
|
|
|
'sourcename' => '',
|
|
|
|
'videowidth' => 425,
|
|
|
|
'videoheight' => 350,
|
|
|
|
'force_max_items' => 0,
|
|
|
|
'stylesheet' => '',
|
|
|
|
'template_engine' => 'smarty3',
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2017-05-08 08:11:38 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief An array of registered template engines ('name'=>'class name')
|
|
|
|
*/
|
2018-01-15 14:05:12 +01:00
|
|
|
public $template_engines = [];
|
2017-05-08 08:11:38 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief An array of instanced template engines ('name'=>'instance')
|
|
|
|
*/
|
2018-01-15 14:05:12 +01:00
|
|
|
public $template_engine_instance = [];
|
2017-05-08 08:11:38 +02:00
|
|
|
public $process_id;
|
2017-06-11 21:51:18 +02:00
|
|
|
public $queue;
|
2018-01-15 14:05:12 +01:00
|
|
|
private $ldelim = [
|
2017-05-08 08:11:38 +02:00
|
|
|
'internal' => '',
|
|
|
|
'smarty3' => '{{'
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
|
|
|
private $rdelim = [
|
2017-05-08 08:11:38 +02:00
|
|
|
'internal' => '',
|
|
|
|
'smarty3' => '}}'
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2017-05-08 08:11:38 +02:00
|
|
|
private $scheme;
|
|
|
|
private $hostname;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief App constructor.
|
|
|
|
*
|
2018-10-10 08:54:18 +02:00
|
|
|
* @param string $basePath Path to the app base folder
|
2018-10-09 19:58:58 +02:00
|
|
|
* @param bool $backend true, if the call is from backend, otherwise set to true (Default true)
|
2018-08-20 22:15:39 +02:00
|
|
|
*
|
|
|
|
* @throws Exception if the Basepath is not usable
|
2017-05-08 08:11:38 +02:00
|
|
|
*/
|
2018-10-10 08:54:18 +02:00
|
|
|
public function __construct($basePath, $backend = true)
|
2018-01-16 01:13:21 +01:00
|
|
|
{
|
2018-10-10 08:54:18 +02:00
|
|
|
if (!static::isDirectoryUsable($basePath, false)) {
|
|
|
|
throw new Exception('Basepath ' . $basePath . ' isn\'t usable.');
|
2017-10-11 20:21:10 +02:00
|
|
|
}
|
|
|
|
|
2018-06-26 02:44:35 +02:00
|
|
|
BaseObject::setApp($this);
|
|
|
|
|
2018-10-10 08:54:18 +02:00
|
|
|
$this->basePath = rtrim($basePath, DIRECTORY_SEPARATOR);
|
2018-10-09 19:58:58 +02:00
|
|
|
$this->checkBackend($backend);
|
|
|
|
$this->checkFriendicaApp();
|
2017-10-11 20:21:10 +02:00
|
|
|
|
2017-05-08 08:11:38 +02:00
|
|
|
$this->performance['start'] = microtime(true);
|
|
|
|
$this->performance['database'] = 0;
|
|
|
|
$this->performance['database_write'] = 0;
|
2018-03-01 07:13:50 +01:00
|
|
|
$this->performance['cache'] = 0;
|
|
|
|
$this->performance['cache_write'] = 0;
|
2017-05-08 08:11:38 +02:00
|
|
|
$this->performance['network'] = 0;
|
|
|
|
$this->performance['file'] = 0;
|
|
|
|
$this->performance['rendering'] = 0;
|
|
|
|
$this->performance['parser'] = 0;
|
|
|
|
$this->performance['marktime'] = 0;
|
|
|
|
$this->performance['markstart'] = microtime(true);
|
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$this->callstack['database'] = [];
|
|
|
|
$this->callstack['database_write'] = [];
|
2018-03-01 07:13:50 +01:00
|
|
|
$this->callstack['cache'] = [];
|
|
|
|
$this->callstack['cache_write'] = [];
|
2018-01-15 14:05:12 +01:00
|
|
|
$this->callstack['network'] = [];
|
|
|
|
$this->callstack['file'] = [];
|
|
|
|
$this->callstack['rendering'] = [];
|
|
|
|
$this->callstack['parser'] = [];
|
2017-05-08 08:11:38 +02:00
|
|
|
|
2018-10-10 08:54:18 +02:00
|
|
|
$this->mode = new App\Mode($basePath);
|
2018-10-06 16:27:20 +02:00
|
|
|
|
2018-08-27 06:15:55 +02:00
|
|
|
$this->reload();
|
2017-05-08 08:11:38 +02:00
|
|
|
|
2018-07-02 13:23:47 +02:00
|
|
|
set_time_limit(0);
|
|
|
|
|
|
|
|
// This has to be quite large to deal with embedded private photos
|
|
|
|
ini_set('pcre.backtrack_limit', 500000);
|
2017-05-08 08:11:38 +02:00
|
|
|
|
|
|
|
$this->scheme = 'http';
|
|
|
|
|
|
|
|
if ((x($_SERVER, 'HTTPS') && $_SERVER['HTTPS']) ||
|
|
|
|
(x($_SERVER, 'HTTP_FORWARDED') && preg_match('/proto=https/', $_SERVER['HTTP_FORWARDED'])) ||
|
|
|
|
(x($_SERVER, 'HTTP_X_FORWARDED_PROTO') && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') ||
|
|
|
|
(x($_SERVER, 'HTTP_X_FORWARDED_SSL') && $_SERVER['HTTP_X_FORWARDED_SSL'] == 'on') ||
|
|
|
|
(x($_SERVER, 'FRONT_END_HTTPS') && $_SERVER['FRONT_END_HTTPS'] == 'on') ||
|
|
|
|
(x($_SERVER, 'SERVER_PORT') && (intval($_SERVER['SERVER_PORT']) == 443)) // XXX: reasonable assumption, but isn't this hardcoding too much?
|
|
|
|
) {
|
|
|
|
$this->scheme = 'https';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (x($_SERVER, 'SERVER_NAME')) {
|
|
|
|
$this->hostname = $_SERVER['SERVER_NAME'];
|
|
|
|
|
|
|
|
if (x($_SERVER, 'SERVER_PORT') && $_SERVER['SERVER_PORT'] != 80 && $_SERVER['SERVER_PORT'] != 443) {
|
|
|
|
$this->hostname .= ':' . $_SERVER['SERVER_PORT'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
set_include_path(
|
|
|
|
get_include_path() . PATH_SEPARATOR
|
2018-10-09 19:58:58 +02:00
|
|
|
. $this->getBasePath() . DIRECTORY_SEPARATOR . 'include' . PATH_SEPARATOR
|
|
|
|
. $this->getBasePath(). DIRECTORY_SEPARATOR . 'library' . PATH_SEPARATOR
|
|
|
|
. $this->getBasePath());
|
2017-05-08 08:11:38 +02:00
|
|
|
|
|
|
|
if ((x($_SERVER, 'QUERY_STRING')) && substr($_SERVER['QUERY_STRING'], 0, 9) === 'pagename=') {
|
|
|
|
$this->query_string = substr($_SERVER['QUERY_STRING'], 9);
|
|
|
|
} elseif ((x($_SERVER, 'QUERY_STRING')) && substr($_SERVER['QUERY_STRING'], 0, 2) === 'q=') {
|
|
|
|
$this->query_string = substr($_SERVER['QUERY_STRING'], 2);
|
|
|
|
}
|
|
|
|
|
2018-06-26 02:38:41 +02:00
|
|
|
// removing trailing / - maybe a nginx problem
|
|
|
|
$this->query_string = ltrim($this->query_string, '/');
|
|
|
|
|
|
|
|
if (!empty($_GET['pagename'])) {
|
2017-05-08 08:11:38 +02:00
|
|
|
$this->cmd = trim($_GET['pagename'], '/\\');
|
2018-06-26 02:38:41 +02:00
|
|
|
} elseif (!empty($_GET['q'])) {
|
2017-05-08 08:11:38 +02:00
|
|
|
$this->cmd = trim($_GET['q'], '/\\');
|
|
|
|
}
|
|
|
|
|
|
|
|
// fix query_string
|
|
|
|
$this->query_string = str_replace($this->cmd . '&', $this->cmd . '?', $this->query_string);
|
|
|
|
|
|
|
|
// unix style "homedir"
|
|
|
|
if (substr($this->cmd, 0, 1) === '~') {
|
|
|
|
$this->cmd = 'profile/' . substr($this->cmd, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Diaspora style profile url
|
|
|
|
if (substr($this->cmd, 0, 2) === 'u/') {
|
|
|
|
$this->cmd = 'profile/' . substr($this->cmd, 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Break the URL path into C style argc/argv style arguments for our
|
|
|
|
* modules. Given "http://example.com/module/arg1/arg2", $this->argc
|
|
|
|
* will be 3 (integer) and $this->argv will contain:
|
|
|
|
* [0] => 'module'
|
|
|
|
* [1] => 'arg1'
|
|
|
|
* [2] => 'arg2'
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* There will always be one argument. If provided a naked domain
|
|
|
|
* URL, $this->argv[0] is set to "home".
|
|
|
|
*/
|
|
|
|
|
|
|
|
$this->argv = explode('/', $this->cmd);
|
|
|
|
$this->argc = count($this->argv);
|
|
|
|
if ((array_key_exists('0', $this->argv)) && strlen($this->argv[0])) {
|
|
|
|
$this->module = str_replace('.', '_', $this->argv[0]);
|
|
|
|
$this->module = str_replace('-', '_', $this->module);
|
|
|
|
} else {
|
|
|
|
$this->argc = 1;
|
2018-01-15 14:05:12 +01:00
|
|
|
$this->argv = ['home'];
|
2017-05-08 08:11:38 +02:00
|
|
|
$this->module = 'home';
|
|
|
|
}
|
|
|
|
|
|
|
|
// See if there is any page number information, and initialise pagination
|
|
|
|
$this->pager['page'] = ((x($_GET, 'page') && intval($_GET['page']) > 0) ? intval($_GET['page']) : 1);
|
|
|
|
$this->pager['itemspage'] = 50;
|
|
|
|
$this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
|
|
|
|
|
|
|
|
if ($this->pager['start'] < 0) {
|
|
|
|
$this->pager['start'] = 0;
|
|
|
|
}
|
|
|
|
$this->pager['total'] = 0;
|
|
|
|
|
|
|
|
// Detect mobile devices
|
2017-05-11 17:53:04 +02:00
|
|
|
$mobile_detect = new MobileDetect();
|
2017-05-08 08:11:38 +02:00
|
|
|
$this->is_mobile = $mobile_detect->isMobile();
|
|
|
|
$this->is_tablet = $mobile_detect->isTablet();
|
|
|
|
|
|
|
|
// Register template engines
|
2018-10-09 19:58:58 +02:00
|
|
|
$this->registerTemplateEngine('Friendica\Render\FriendicaSmartyEngine');
|
2018-06-26 02:38:41 +02:00
|
|
|
}
|
|
|
|
|
2018-10-06 16:27:20 +02:00
|
|
|
/**
|
|
|
|
* Returns the Mode of the Application
|
|
|
|
*
|
|
|
|
* @return App\Mode The Application Mode
|
|
|
|
*
|
|
|
|
* @throws InternalServerErrorException when the mode isn't created
|
|
|
|
*/
|
|
|
|
public function getMode()
|
|
|
|
{
|
|
|
|
if (empty($this->mode)) {
|
|
|
|
throw new InternalServerErrorException('Mode of the Application is not defined');
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->mode;
|
|
|
|
}
|
|
|
|
|
2018-08-27 06:15:55 +02:00
|
|
|
/**
|
|
|
|
* Reloads the whole app instance
|
|
|
|
*/
|
|
|
|
public function reload()
|
|
|
|
{
|
|
|
|
// The order of the following calls is important to ensure proper initialization
|
|
|
|
$this->loadConfigFiles();
|
|
|
|
|
|
|
|
$this->loadDatabase();
|
|
|
|
|
2018-10-09 19:58:58 +02:00
|
|
|
$this->getMode()->determine($this->getBasePath());
|
2018-08-27 06:15:55 +02:00
|
|
|
|
2018-10-09 19:58:58 +02:00
|
|
|
$this->determineURLPath();
|
2018-08-27 06:15:55 +02:00
|
|
|
|
|
|
|
Config::load();
|
|
|
|
|
2018-10-06 16:27:20 +02:00
|
|
|
if ($this->getMode()->has(App\Mode::DBAVAILABLE)) {
|
2018-08-27 06:15:55 +02:00
|
|
|
Core\Addon::loadHooks();
|
|
|
|
|
|
|
|
$this->loadAddonConfig();
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->loadDefaultTimezone();
|
|
|
|
|
|
|
|
$this->page = [
|
|
|
|
'aside' => '',
|
|
|
|
'bottom' => '',
|
|
|
|
'content' => '',
|
|
|
|
'footer' => '',
|
|
|
|
'htmlhead' => '',
|
|
|
|
'nav' => '',
|
|
|
|
'page_title' => '',
|
|
|
|
'right_aside' => '',
|
|
|
|
'template' => '',
|
|
|
|
'title' => ''
|
|
|
|
];
|
|
|
|
|
|
|
|
$this->process_id = System::processID('log');
|
|
|
|
}
|
|
|
|
|
2018-06-28 05:05:38 +02:00
|
|
|
/**
|
|
|
|
* Load the configuration files
|
|
|
|
*
|
|
|
|
* First loads the default value for all the configuration keys, then the legacy configuration files, then the
|
|
|
|
* expected local.ini.php
|
|
|
|
*/
|
2018-06-26 02:38:41 +02:00
|
|
|
private function loadConfigFiles()
|
|
|
|
{
|
2018-10-09 19:58:58 +02:00
|
|
|
$this->loadConfigFile($this->getBasePath() . DIRECTORY_SEPARATOR . 'config' . DIRECTORY_SEPARATOR . 'config.ini.php');
|
|
|
|
$this->loadConfigFile($this->getBasePath() . DIRECTORY_SEPARATOR . 'config' . DIRECTORY_SEPARATOR . 'settings.ini.php');
|
2018-06-26 02:38:41 +02:00
|
|
|
|
|
|
|
// Legacy .htconfig.php support
|
2018-10-09 19:58:58 +02:00
|
|
|
if (file_exists($this->getBasePath() . DIRECTORY_SEPARATOR . '.htpreconfig.php')) {
|
2018-06-26 02:38:41 +02:00
|
|
|
$a = $this;
|
2018-10-09 19:58:58 +02:00
|
|
|
include $this->getBasePath() . DIRECTORY_SEPARATOR . '.htpreconfig.php';
|
2018-06-26 02:38:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Legacy .htconfig.php support
|
2018-10-09 19:58:58 +02:00
|
|
|
if (file_exists($this->getBasePath() . DIRECTORY_SEPARATOR . '.htconfig.php')) {
|
2018-06-26 02:38:41 +02:00
|
|
|
$a = $this;
|
|
|
|
|
2018-10-09 19:58:58 +02:00
|
|
|
include $this->getBasePath() . DIRECTORY_SEPARATOR . '.htconfig.php';
|
2018-07-17 08:05:36 +02:00
|
|
|
|
|
|
|
$this->setConfigValue('database', 'hostname', $db_host);
|
|
|
|
$this->setConfigValue('database', 'username', $db_user);
|
|
|
|
$this->setConfigValue('database', 'password', $db_pass);
|
|
|
|
$this->setConfigValue('database', 'database', $db_data);
|
|
|
|
if (isset($a->config['system']['db_charset'])) {
|
|
|
|
$this->setConfigValue('database', 'charset', $a->config['system']['db_charset']);
|
|
|
|
}
|
|
|
|
|
2018-06-26 02:38:41 +02:00
|
|
|
unset($db_host, $db_user, $db_pass, $db_data);
|
2017-05-08 08:11:38 +02:00
|
|
|
|
2018-06-26 02:38:41 +02:00
|
|
|
if (isset($default_timezone)) {
|
|
|
|
$this->setConfigValue('system', 'default_timezone', $default_timezone);
|
|
|
|
unset($default_timezone);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($pidfile)) {
|
|
|
|
$this->setConfigValue('system', 'pidfile', $pidfile);
|
|
|
|
unset($pidfile);
|
|
|
|
}
|
2018-07-17 08:05:52 +02:00
|
|
|
|
|
|
|
if (isset($lang)) {
|
|
|
|
$this->setConfigValue('system', 'language', $lang);
|
|
|
|
unset($lang);
|
|
|
|
}
|
2018-06-26 02:38:41 +02:00
|
|
|
}
|
|
|
|
|
2018-10-09 19:58:58 +02:00
|
|
|
if (file_exists($this->getBasePath() . DIRECTORY_SEPARATOR . 'config' . DIRECTORY_SEPARATOR . 'local.ini.php')) {
|
|
|
|
$this->loadConfigFile($this->getBasePath() . DIRECTORY_SEPARATOR . 'config' . DIRECTORY_SEPARATOR . 'local.ini.php', true);
|
2018-06-26 02:38:41 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-28 05:05:38 +02:00
|
|
|
/**
|
|
|
|
* Tries to load the specified configuration file into the App->config array.
|
2018-09-08 08:37:53 +02:00
|
|
|
* Doesn't overwrite previously set values by default to prevent default config files to supersede DB Config.
|
2018-06-28 05:05:38 +02:00
|
|
|
*
|
|
|
|
* The config format is INI and the template for configuration files is the following:
|
|
|
|
*
|
|
|
|
* <?php return <<<INI
|
|
|
|
*
|
|
|
|
* [section]
|
|
|
|
* key = value
|
|
|
|
*
|
|
|
|
* INI;
|
|
|
|
* // Keep this line
|
|
|
|
*
|
2018-10-10 08:54:18 +02:00
|
|
|
* @param string $filepath
|
2018-09-08 08:37:53 +02:00
|
|
|
* @param bool $overwrite Force value overwrite if the config key already exists
|
2018-06-28 05:05:38 +02:00
|
|
|
* @throws Exception
|
|
|
|
*/
|
2018-09-08 08:37:53 +02:00
|
|
|
public function loadConfigFile($filepath, $overwrite = false)
|
2018-06-26 02:38:41 +02:00
|
|
|
{
|
|
|
|
if (!file_exists($filepath)) {
|
|
|
|
throw new Exception('Error parsing non-existent config file ' . $filepath);
|
|
|
|
}
|
|
|
|
|
|
|
|
$contents = include($filepath);
|
|
|
|
|
|
|
|
$config = parse_ini_string($contents, true, INI_SCANNER_TYPED);
|
|
|
|
|
|
|
|
if ($config === false) {
|
|
|
|
throw new Exception('Error parsing config file ' . $filepath);
|
|
|
|
}
|
|
|
|
|
2018-07-15 18:44:32 +02:00
|
|
|
foreach ($config as $category => $values) {
|
|
|
|
foreach ($values as $key => $value) {
|
2018-09-08 08:37:53 +02:00
|
|
|
if ($overwrite) {
|
|
|
|
$this->setConfigValue($category, $key, $value);
|
|
|
|
} else {
|
|
|
|
$this->setDefaultConfigValue($category, $key, $value);
|
|
|
|
}
|
2018-06-26 02:38:41 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-28 05:05:38 +02:00
|
|
|
/**
|
|
|
|
* Loads addons configuration files
|
|
|
|
*
|
|
|
|
* First loads all activated addons default configuration throught the load_config hook, then load the local.ini.php
|
|
|
|
* again to overwrite potential local addon configuration.
|
|
|
|
*/
|
2018-06-26 02:38:41 +02:00
|
|
|
private function loadAddonConfig()
|
|
|
|
{
|
|
|
|
// Loads addons default config
|
|
|
|
Core\Addon::callHooks('load_config');
|
|
|
|
|
2018-07-12 04:58:37 +02:00
|
|
|
// Load the local addon config file to overwritten default addon config values
|
2018-10-09 19:58:58 +02:00
|
|
|
if (file_exists($this->getBasePath() . DIRECTORY_SEPARATOR . 'config' . DIRECTORY_SEPARATOR . 'addon.ini.php')) {
|
|
|
|
$this->loadConfigFile($this->getBasePath() . DIRECTORY_SEPARATOR . 'config' . DIRECTORY_SEPARATOR . 'addon.ini.php', true);
|
2018-06-26 02:38:41 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-28 05:05:38 +02:00
|
|
|
/**
|
|
|
|
* Loads the default timezone
|
|
|
|
*
|
|
|
|
* Include support for legacy $default_timezone
|
|
|
|
*
|
|
|
|
* @global string $default_timezone
|
|
|
|
*/
|
2018-06-26 02:38:41 +02:00
|
|
|
private function loadDefaultTimezone()
|
|
|
|
{
|
|
|
|
if ($this->getConfigValue('system', 'default_timezone')) {
|
|
|
|
$this->timezone = $this->getConfigValue('system', 'default_timezone');
|
|
|
|
} else {
|
|
|
|
global $default_timezone;
|
|
|
|
$this->timezone = !empty($default_timezone) ? $default_timezone : 'UTC';
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->timezone) {
|
|
|
|
date_default_timezone_set($this->timezone);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-06-28 05:05:38 +02:00
|
|
|
* Figure out if we are running at the top of a domain or in a sub-directory and adjust accordingly
|
2018-06-26 02:38:41 +02:00
|
|
|
*/
|
2018-10-09 19:58:58 +02:00
|
|
|
private function determineURLPath()
|
2018-06-26 02:38:41 +02:00
|
|
|
{
|
2018-10-10 08:54:18 +02:00
|
|
|
$this->urlPath = $this->getConfigValue('system', 'urlpath');
|
2018-06-26 02:38:41 +02:00
|
|
|
|
|
|
|
/* SCRIPT_URL gives /path/to/friendica/module/parameter
|
|
|
|
* QUERY_STRING gives pagename=module/parameter
|
|
|
|
*
|
|
|
|
* To get /path/to/friendica we perform dirname() for as many levels as there are slashes in the QUERY_STRING
|
2018-04-27 21:07:04 +02:00
|
|
|
*/
|
2018-07-12 04:23:57 +02:00
|
|
|
if (!empty($_SERVER['SCRIPT_URL'])) {
|
|
|
|
// Module
|
|
|
|
if (!empty($_SERVER['QUERY_STRING'])) {
|
|
|
|
$path = trim(dirname($_SERVER['SCRIPT_URL'], substr_count(trim($_SERVER['QUERY_STRING'], '/'), '/') + 1), '/');
|
|
|
|
} else {
|
|
|
|
// Root page
|
|
|
|
$path = trim($_SERVER['SCRIPT_URL'], '/');
|
|
|
|
}
|
2018-06-26 02:38:41 +02:00
|
|
|
|
2018-10-10 08:54:18 +02:00
|
|
|
if ($path && $path != $this->urlPath) {
|
|
|
|
$this->urlPath = $path;
|
2018-06-26 02:38:41 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function loadDatabase()
|
|
|
|
{
|
2018-07-20 14:19:26 +02:00
|
|
|
if (DBA::connected()) {
|
2018-06-26 02:38:41 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$db_host = $this->getConfigValue('database', 'hostname');
|
|
|
|
$db_user = $this->getConfigValue('database', 'username');
|
|
|
|
$db_pass = $this->getConfigValue('database', 'password');
|
|
|
|
$db_data = $this->getConfigValue('database', 'database');
|
|
|
|
$charset = $this->getConfigValue('database', 'charset');
|
|
|
|
|
|
|
|
// Use environment variables for mysql if they are set beforehand
|
|
|
|
if (!empty(getenv('MYSQL_HOST'))
|
|
|
|
&& (!empty(getenv('MYSQL_USERNAME')) || !empty(getenv('MYSQL_USER')))
|
2018-07-07 03:24:40 +02:00
|
|
|
&& getenv('MYSQL_PASSWORD') !== false
|
2018-06-26 02:38:41 +02:00
|
|
|
&& !empty(getenv('MYSQL_DATABASE')))
|
|
|
|
{
|
2018-07-07 03:08:48 +02:00
|
|
|
$db_host = getenv('MYSQL_HOST');
|
|
|
|
if (!empty(getenv('MYSQL_PORT'))) {
|
|
|
|
$db_host .= ':' . getenv('MYSQL_PORT');
|
|
|
|
}
|
2018-06-26 02:38:41 +02:00
|
|
|
if (!empty(getenv('MYSQL_USERNAME'))) {
|
|
|
|
$db_user = getenv('MYSQL_USERNAME');
|
2018-07-07 03:08:48 +02:00
|
|
|
} else {
|
2018-06-26 02:38:41 +02:00
|
|
|
$db_user = getenv('MYSQL_USER');
|
|
|
|
}
|
2018-07-07 03:08:48 +02:00
|
|
|
$db_pass = (string) getenv('MYSQL_PASSWORD');
|
2018-06-26 02:38:41 +02:00
|
|
|
$db_data = getenv('MYSQL_DATABASE');
|
|
|
|
}
|
2018-04-27 21:07:04 +02:00
|
|
|
|
2018-06-26 02:38:41 +02:00
|
|
|
$stamp1 = microtime(true);
|
2018-04-27 21:07:04 +02:00
|
|
|
|
2018-07-20 14:19:26 +02:00
|
|
|
DBA::connect($db_host, $db_user, $db_pass, $db_data, $charset);
|
2018-06-26 02:38:41 +02:00
|
|
|
unset($db_host, $db_user, $db_pass, $db_data, $charset);
|
|
|
|
|
2018-10-09 19:58:58 +02:00
|
|
|
$this->saveTimestamp($stamp1, 'network');
|
2017-05-08 08:11:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Returns the base filesystem path of the App
|
|
|
|
*
|
|
|
|
* It first checks for the internal variable, then for DOCUMENT_ROOT and
|
|
|
|
* finally for PWD
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
2018-10-09 19:58:58 +02:00
|
|
|
public function getBasePath()
|
2018-01-16 01:13:21 +01:00
|
|
|
{
|
2018-10-10 08:54:18 +02:00
|
|
|
$basepath = $this->basePath;
|
2017-05-08 08:11:38 +02:00
|
|
|
|
2018-01-16 01:13:21 +01:00
|
|
|
if (!$basepath) {
|
2017-05-08 08:11:38 +02:00
|
|
|
$basepath = Config::get('system', 'basepath');
|
|
|
|
}
|
|
|
|
|
2018-01-16 01:13:21 +01:00
|
|
|
if (!$basepath && x($_SERVER, 'DOCUMENT_ROOT')) {
|
2017-05-08 08:11:38 +02:00
|
|
|
$basepath = $_SERVER['DOCUMENT_ROOT'];
|
|
|
|
}
|
|
|
|
|
2018-01-16 01:13:21 +01:00
|
|
|
if (!$basepath && x($_SERVER, 'PWD')) {
|
2017-05-08 08:11:38 +02:00
|
|
|
$basepath = $_SERVER['PWD'];
|
|
|
|
}
|
|
|
|
|
2018-10-09 19:58:58 +02:00
|
|
|
return self::getRealPath($basepath);
|
2017-07-22 08:43:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Returns a normalized file path
|
|
|
|
*
|
|
|
|
* This is a wrapper for the "realpath" function.
|
|
|
|
* That function cannot detect the real path when some folders aren't readable.
|
|
|
|
* Since this could happen with some hosters we need to handle this.
|
|
|
|
*
|
|
|
|
* @param string $path The path that is about to be normalized
|
|
|
|
* @return string normalized path - when possible
|
|
|
|
*/
|
2018-10-09 19:58:58 +02:00
|
|
|
public static function getRealPath($path)
|
2018-01-16 01:13:21 +01:00
|
|
|
{
|
2017-07-22 08:43:04 +02:00
|
|
|
$normalized = realpath($path);
|
|
|
|
|
|
|
|
if (!is_bool($normalized)) {
|
|
|
|
return $normalized;
|
|
|
|
} else {
|
|
|
|
return $path;
|
|
|
|
}
|
2017-05-08 08:11:38 +02:00
|
|
|
}
|
|
|
|
|
2018-10-09 19:58:58 +02:00
|
|
|
public function getScheme()
|
2018-01-16 01:13:21 +01:00
|
|
|
{
|
2017-05-08 08:11:38 +02:00
|
|
|
return $this->scheme;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Retrieves the Friendica instance base URL
|
|
|
|
*
|
|
|
|
* This function assembles the base URL from multiple parts:
|
|
|
|
* - Protocol is determined either by the request or a combination of
|
|
|
|
* system.ssl_policy and the $ssl parameter.
|
|
|
|
* - Host name is determined either by system.hostname or inferred from request
|
|
|
|
* - Path is inferred from SCRIPT_NAME
|
|
|
|
*
|
|
|
|
* Note: $ssl parameter value doesn't directly correlate with the resulting protocol
|
|
|
|
*
|
|
|
|
* @param bool $ssl Whether to append http or https under SSL_POLICY_SELFSIGN
|
|
|
|
* @return string Friendica server base URL
|
|
|
|
*/
|
2018-10-09 19:58:58 +02:00
|
|
|
public function getBaseURL($ssl = false)
|
2018-01-16 01:13:21 +01:00
|
|
|
{
|
2017-05-08 08:11:38 +02:00
|
|
|
$scheme = $this->scheme;
|
|
|
|
|
|
|
|
if (Config::get('system', 'ssl_policy') == SSL_POLICY_FULL) {
|
|
|
|
$scheme = 'https';
|
|
|
|
}
|
|
|
|
|
|
|
|
// Basically, we have $ssl = true on any links which can only be seen by a logged in user
|
|
|
|
// (and also the login link). Anything seen by an outsider will have it turned off.
|
|
|
|
|
|
|
|
if (Config::get('system', 'ssl_policy') == SSL_POLICY_SELFSIGN) {
|
|
|
|
if ($ssl) {
|
|
|
|
$scheme = 'https';
|
|
|
|
} else {
|
|
|
|
$scheme = 'http';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Config::get('config', 'hostname') != '') {
|
|
|
|
$this->hostname = Config::get('config', 'hostname');
|
|
|
|
}
|
|
|
|
|
2018-10-10 01:18:47 +02:00
|
|
|
return $scheme . '://' . $this->hostname . (!empty($this->getURLPath()) ? '/' . $this->getURLPath() : '' );
|
2017-05-08 08:11:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Initializes the baseurl components
|
|
|
|
*
|
2018-01-16 01:13:21 +01:00
|
|
|
* Clears the baseurl cache to prevent inconsistencies
|
2017-05-08 08:11:38 +02:00
|
|
|
*
|
|
|
|
* @param string $url
|
|
|
|
*/
|
2018-10-09 19:58:58 +02:00
|
|
|
public function setBaseURL($url)
|
2018-01-16 01:13:21 +01:00
|
|
|
{
|
2017-05-08 08:11:38 +02:00
|
|
|
$parsed = @parse_url($url);
|
2018-07-08 07:29:06 +02:00
|
|
|
$hostname = '';
|
2017-05-08 08:11:38 +02:00
|
|
|
|
2018-01-16 01:13:21 +01:00
|
|
|
if (x($parsed)) {
|
2018-07-08 07:29:06 +02:00
|
|
|
if (!empty($parsed['scheme'])) {
|
|
|
|
$this->scheme = $parsed['scheme'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($parsed['host'])) {
|
|
|
|
$hostname = $parsed['host'];
|
|
|
|
}
|
2017-05-08 08:11:38 +02:00
|
|
|
|
|
|
|
if (x($parsed, 'port')) {
|
|
|
|
$hostname .= ':' . $parsed['port'];
|
|
|
|
}
|
|
|
|
if (x($parsed, 'path')) {
|
2018-10-10 08:54:18 +02:00
|
|
|
$this->urlPath = trim($parsed['path'], '\\/');
|
2017-05-08 08:11:38 +02:00
|
|
|
}
|
|
|
|
|
2018-10-09 19:58:58 +02:00
|
|
|
if (file_exists($this->getBasePath() . DIRECTORY_SEPARATOR . '.htpreconfig.php')) {
|
|
|
|
include $this->getBasePath() . DIRECTORY_SEPARATOR . '.htpreconfig.php';
|
2017-05-08 08:11:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (Config::get('config', 'hostname') != '') {
|
|
|
|
$this->hostname = Config::get('config', 'hostname');
|
|
|
|
}
|
|
|
|
|
2018-07-08 07:29:06 +02:00
|
|
|
if (!isset($this->hostname) || ($this->hostname == '')) {
|
2017-05-08 08:11:38 +02:00
|
|
|
$this->hostname = $hostname;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-09 19:58:58 +02:00
|
|
|
public function getHostName()
|
2018-01-16 01:13:21 +01:00
|
|
|
{
|
2017-05-08 08:11:38 +02:00
|
|
|
if (Config::get('config', 'hostname') != '') {
|
|
|
|
$this->hostname = Config::get('config', 'hostname');
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->hostname;
|
|
|
|
}
|
|
|
|
|
2018-10-10 01:18:47 +02:00
|
|
|
public function getURLPath()
|
2018-01-16 01:13:21 +01:00
|
|
|
{
|
2018-10-10 08:54:18 +02:00
|
|
|
return $this->urlPath;
|
2017-05-08 08:11:38 +02:00
|
|
|
}
|
|
|
|
|
2018-10-09 19:58:58 +02:00
|
|
|
public function setPagerTotal($n)
|
2018-01-16 01:13:21 +01:00
|
|
|
{
|
2017-05-08 08:11:38 +02:00
|
|
|
$this->pager['total'] = intval($n);
|
|
|
|
}
|
|
|
|
|
2018-10-09 19:58:58 +02:00
|
|
|
public function setPagerItemsPage($n)
|
2018-01-16 01:13:21 +01:00
|
|
|
{
|
2017-05-08 08:11:38 +02:00
|
|
|
$this->pager['itemspage'] = ((intval($n) > 0) ? intval($n) : 0);
|
|
|
|
$this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
|
|
|
|
}
|
|
|
|
|
2018-10-09 19:58:58 +02:00
|
|
|
public function setPagerPage($n)
|
2018-01-16 01:13:21 +01:00
|
|
|
{
|
2017-05-08 08:11:38 +02:00
|
|
|
$this->pager['page'] = $n;
|
|
|
|
$this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
|
|
|
|
}
|
|
|
|
|
2018-09-21 15:54:40 +02:00
|
|
|
/**
|
|
|
|
* Initializes App->page['htmlhead'].
|
|
|
|
*
|
|
|
|
* Includes:
|
|
|
|
* - Page title
|
|
|
|
* - Favicons
|
|
|
|
* - Registered stylesheets (through App->registerStylesheet())
|
|
|
|
* - Infinite scroll data
|
|
|
|
* - head.tpl template
|
|
|
|
*/
|
2018-09-21 03:30:51 +02:00
|
|
|
public function initHead()
|
2018-01-16 01:13:21 +01:00
|
|
|
{
|
2017-05-08 08:11:38 +02:00
|
|
|
$interval = ((local_user()) ? PConfig::get(local_user(), 'system', 'update_interval') : 40000);
|
|
|
|
|
|
|
|
// If the update is 'deactivated' set it to the highest integer number (~24 days)
|
|
|
|
if ($interval < 0) {
|
|
|
|
$interval = 2147483647;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($interval < 10000) {
|
|
|
|
$interval = 40000;
|
|
|
|
}
|
|
|
|
|
|
|
|
// compose the page title from the sitename and the
|
|
|
|
// current module called
|
|
|
|
if (!$this->module == '') {
|
|
|
|
$this->page['title'] = $this->config['sitename'] . ' (' . $this->module . ')';
|
|
|
|
} else {
|
|
|
|
$this->page['title'] = $this->config['sitename'];
|
|
|
|
}
|
|
|
|
|
2018-09-21 15:54:09 +02:00
|
|
|
if (!empty($this->theme['stylesheet'])) {
|
|
|
|
$stylesheet = $this->theme['stylesheet'];
|
2017-05-08 08:11:38 +02:00
|
|
|
} else {
|
2018-09-21 15:54:09 +02:00
|
|
|
$stylesheet = $this->getCurrentThemeStylesheetPath();
|
2017-05-08 08:11:38 +02:00
|
|
|
}
|
|
|
|
|
2018-09-21 15:54:09 +02:00
|
|
|
$this->registerStylesheet($stylesheet);
|
|
|
|
|
2017-05-08 08:11:38 +02:00
|
|
|
$shortcut_icon = Config::get('system', 'shortcut_icon');
|
|
|
|
if ($shortcut_icon == '') {
|
|
|
|
$shortcut_icon = 'images/friendica-32.png';
|
|
|
|
}
|
|
|
|
|
|
|
|
$touch_icon = Config::get('system', 'touch_icon');
|
|
|
|
if ($touch_icon == '') {
|
|
|
|
$touch_icon = 'images/friendica-128.png';
|
|
|
|
}
|
|
|
|
|
|
|
|
// get data wich is needed for infinite scroll on the network page
|
2018-09-21 03:30:51 +02:00
|
|
|
$infinite_scroll = infinite_scroll_data($this->module);
|
|
|
|
|
|
|
|
Core\Addon::callHooks('head', $this->page['htmlhead']);
|
2017-05-08 08:11:38 +02:00
|
|
|
|
|
|
|
$tpl = get_markup_template('head.tpl');
|
2018-09-21 15:54:09 +02:00
|
|
|
/* put the head template at the beginning of page['htmlhead']
|
|
|
|
* since the code added by the modules frequently depends on it
|
|
|
|
* being first
|
|
|
|
*/
|
2018-01-15 14:05:12 +01:00
|
|
|
$this->page['htmlhead'] = replace_macros($tpl, [
|
2018-10-09 19:58:58 +02:00
|
|
|
'$baseurl' => $this->getBaseURL(),
|
2018-01-16 01:13:21 +01:00
|
|
|
'$local_user' => local_user(),
|
|
|
|
'$generator' => 'Friendica' . ' ' . FRIENDICA_VERSION,
|
2018-01-22 15:54:13 +01:00
|
|
|
'$delitem' => L10n::t('Delete this item?'),
|
|
|
|
'$showmore' => L10n::t('show more'),
|
|
|
|
'$showfewer' => L10n::t('show fewer'),
|
2018-01-16 01:13:21 +01:00
|
|
|
'$update_interval' => $interval,
|
|
|
|
'$shortcut_icon' => $shortcut_icon,
|
|
|
|
'$touch_icon' => $touch_icon,
|
2018-09-21 03:30:51 +02:00
|
|
|
'$infinite_scroll' => $infinite_scroll,
|
2018-07-14 22:31:46 +02:00
|
|
|
'$block_public' => intval(Config::get('system', 'block_public')),
|
2018-09-21 03:30:51 +02:00
|
|
|
'$stylesheets' => $this->stylesheets,
|
2018-01-16 01:13:21 +01:00
|
|
|
]) . $this->page['htmlhead'];
|
|
|
|
}
|
|
|
|
|
2018-09-21 15:54:40 +02:00
|
|
|
/**
|
|
|
|
* Initializes App->page['footer'].
|
|
|
|
*
|
|
|
|
* Includes:
|
|
|
|
* - Javascript homebase
|
|
|
|
* - Mobile toggle link
|
|
|
|
* - Registered footer scripts (through App->registerFooterScript())
|
|
|
|
* - footer.tpl template
|
|
|
|
*/
|
2018-09-21 03:01:05 +02:00
|
|
|
public function initFooter()
|
2018-01-16 01:13:21 +01:00
|
|
|
{
|
2018-09-21 03:01:05 +02:00
|
|
|
// If you're just visiting, let javascript take you home
|
|
|
|
if (!empty($_SESSION['visitor_home'])) {
|
|
|
|
$homebase = $_SESSION['visitor_home'];
|
|
|
|
} elseif (local_user()) {
|
2018-09-22 18:45:49 +02:00
|
|
|
$homebase = 'profile/' . $this->user['nickname'];
|
2018-09-21 03:01:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($homebase)) {
|
|
|
|
$this->page['footer'] .= '<script>var homebase="' . $homebase . '";</script>' . "\n";
|
2017-05-08 08:11:38 +02:00
|
|
|
}
|
2018-09-21 03:01:05 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Add a "toggle mobile" link if we're using a mobile device
|
|
|
|
*/
|
|
|
|
if ($this->is_mobile || $this->is_tablet) {
|
|
|
|
if (isset($_SESSION['show-mobile']) && !$_SESSION['show-mobile']) {
|
|
|
|
$link = 'toggle_mobile?address=' . curPageURL();
|
|
|
|
} else {
|
|
|
|
$link = 'toggle_mobile?off=1&address=' . curPageURL();
|
|
|
|
}
|
|
|
|
$this->page['footer'] .= replace_macros(get_markup_template("toggle_mobile_footer.tpl"), [
|
|
|
|
'$toggle_link' => $link,
|
|
|
|
'$toggle_text' => Core\L10n::t('toggle mobile')
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
Core\Addon::callHooks('footer', $this->page['footer']);
|
|
|
|
|
|
|
|
$tpl = get_markup_template('footer.tpl');
|
2018-09-21 03:30:51 +02:00
|
|
|
$this->page['footer'] = replace_macros($tpl, [
|
2018-10-09 19:58:58 +02:00
|
|
|
'$baseurl' => $this->getBaseURL(),
|
2018-09-21 03:01:05 +02:00
|
|
|
'$footerScripts' => $this->footerScripts,
|
2018-09-21 03:30:51 +02:00
|
|
|
]) . $this->page['footer'];
|
2017-05-08 08:11:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-01-16 01:13:21 +01:00
|
|
|
* @brief Removes the base url from an url. This avoids some mixed content problems.
|
2017-05-08 08:11:38 +02:00
|
|
|
*
|
2018-10-10 01:18:47 +02:00
|
|
|
* @param string $origURL
|
2017-05-08 08:11:38 +02:00
|
|
|
*
|
|
|
|
* @return string The cleaned url
|
|
|
|
*/
|
2018-10-10 01:18:47 +02:00
|
|
|
public function removeBaseURL($origURL)
|
2018-01-16 01:13:21 +01:00
|
|
|
{
|
2017-05-08 08:11:38 +02:00
|
|
|
// Remove the hostname from the url if it is an internal link
|
2018-10-10 01:18:47 +02:00
|
|
|
$nurl = normalise_link($origURL);
|
2018-10-09 19:58:58 +02:00
|
|
|
$base = normalise_link($this->getBaseURL());
|
2017-05-08 08:11:38 +02:00
|
|
|
$url = str_replace($base . '/', '', $nurl);
|
|
|
|
|
|
|
|
// if it is an external link return the orignal value
|
2018-10-10 01:18:47 +02:00
|
|
|
if ($url == normalise_link($origURL)) {
|
|
|
|
return $origURL;
|
2017-05-08 08:11:38 +02:00
|
|
|
} else {
|
|
|
|
return $url;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Register template engine class
|
|
|
|
*
|
|
|
|
* @param string $class
|
|
|
|
*/
|
2018-10-09 19:58:58 +02:00
|
|
|
private function registerTemplateEngine($class)
|
2018-01-16 01:13:21 +01:00
|
|
|
{
|
|
|
|
$v = get_class_vars($class);
|
|
|
|
if (x($v, 'name')) {
|
|
|
|
$name = $v['name'];
|
|
|
|
$this->template_engines[$name] = $class;
|
|
|
|
} else {
|
2017-05-08 08:11:38 +02:00
|
|
|
echo "template engine <tt>$class</tt> cannot be registered without a name.\n";
|
2018-02-01 19:33:04 +01:00
|
|
|
die();
|
2017-05-08 08:11:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Return template engine instance.
|
|
|
|
*
|
|
|
|
* If $name is not defined, return engine defined by theme,
|
|
|
|
* or default
|
|
|
|
*
|
|
|
|
* @return object Template Engine instance
|
|
|
|
*/
|
2018-10-09 19:58:58 +02:00
|
|
|
public function getTemplateEngine()
|
2018-01-16 01:13:21 +01:00
|
|
|
{
|
|
|
|
$template_engine = 'smarty3';
|
|
|
|
if (x($this->theme, 'template_engine')) {
|
|
|
|
$template_engine = $this->theme['template_engine'];
|
2017-05-08 08:11:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($this->template_engines[$template_engine])) {
|
|
|
|
if (isset($this->template_engine_instance[$template_engine])) {
|
|
|
|
return $this->template_engine_instance[$template_engine];
|
|
|
|
} else {
|
|
|
|
$class = $this->template_engines[$template_engine];
|
|
|
|
$obj = new $class;
|
|
|
|
$this->template_engine_instance[$template_engine] = $obj;
|
|
|
|
return $obj;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
echo "template engine <tt>$template_engine</tt> is not registered!\n";
|
|
|
|
killme();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Returns the active template engine.
|
|
|
|
*
|
2018-10-10 08:54:18 +02:00
|
|
|
* @return string the active template engine
|
2017-05-08 08:11:38 +02:00
|
|
|
*/
|
2018-10-09 19:58:58 +02:00
|
|
|
public function getActiveTemplateEngine()
|
2018-01-16 01:13:21 +01:00
|
|
|
{
|
2017-05-08 08:11:38 +02:00
|
|
|
return $this->theme['template_engine'];
|
|
|
|
}
|
|
|
|
|
2018-10-10 08:54:18 +02:00
|
|
|
/**
|
|
|
|
* sets the active template engine
|
|
|
|
*
|
|
|
|
* @param string $engine the template engine (default is Smarty3)
|
|
|
|
*/
|
2018-10-09 19:58:58 +02:00
|
|
|
public function setActiveTemplateEngine($engine = 'smarty3')
|
2018-01-16 01:13:21 +01:00
|
|
|
{
|
2017-05-08 08:11:38 +02:00
|
|
|
$this->theme['template_engine'] = $engine;
|
|
|
|
}
|
|
|
|
|
2018-10-10 08:54:18 +02:00
|
|
|
/**
|
|
|
|
* Gets the right delimiter for a template engine
|
|
|
|
*
|
|
|
|
* Currently:
|
|
|
|
* Internal = ''
|
|
|
|
* Smarty3 = '{{'
|
|
|
|
*
|
|
|
|
* @param string $engine The template engine (default is Smarty3)
|
|
|
|
*
|
|
|
|
* @return string the right delimiter
|
|
|
|
*/
|
|
|
|
public function getTemplateLeftDelimiter($engine = 'smarty3')
|
2018-01-16 01:13:21 +01:00
|
|
|
{
|
2017-05-08 08:11:38 +02:00
|
|
|
return $this->ldelim[$engine];
|
|
|
|
}
|
|
|
|
|
2018-10-10 08:54:18 +02:00
|
|
|
/**
|
|
|
|
* Gets the left delimiter for a template engine
|
|
|
|
*
|
|
|
|
* Currently:
|
|
|
|
* Internal = ''
|
|
|
|
* Smarty3 = '}}'
|
|
|
|
*
|
|
|
|
* @param string $engine The template engine (default is Smarty3)
|
|
|
|
*
|
|
|
|
* @return string the left delimiter
|
|
|
|
*/
|
|
|
|
public function getTemplateRightDelimiter($engine = 'smarty3')
|
2018-01-16 01:13:21 +01:00
|
|
|
{
|
2017-05-08 08:11:38 +02:00
|
|
|
return $this->rdelim[$engine];
|
|
|
|
}
|
|
|
|
|
2018-10-09 19:58:58 +02:00
|
|
|
/**
|
|
|
|
* Saves a timestamp for a value - f.e. a call
|
|
|
|
* Necessary for profiling Friendica
|
|
|
|
*
|
|
|
|
* @param int $timestamp the Timestamp
|
|
|
|
* @param string $value A value to profile
|
|
|
|
*/
|
|
|
|
public function saveTimestamp($timestamp, $value)
|
2018-01-16 01:13:21 +01:00
|
|
|
{
|
2017-05-08 08:11:38 +02:00
|
|
|
if (!isset($this->config['system']['profiler']) || !$this->config['system']['profiler']) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-10-09 19:58:58 +02:00
|
|
|
$duration = (float) (microtime(true) - $timestamp);
|
2017-05-08 08:11:38 +02:00
|
|
|
|
|
|
|
if (!isset($this->performance[$value])) {
|
|
|
|
// Prevent ugly E_NOTICE
|
|
|
|
$this->performance[$value] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->performance[$value] += (float) $duration;
|
|
|
|
$this->performance['marktime'] += (float) $duration;
|
|
|
|
|
2017-08-26 12:01:50 +02:00
|
|
|
$callstack = System::callstack();
|
2017-05-08 08:11:38 +02:00
|
|
|
|
|
|
|
if (!isset($this->callstack[$value][$callstack])) {
|
|
|
|
// Prevent ugly E_NOTICE
|
|
|
|
$this->callstack[$value][$callstack] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->callstack[$value][$callstack] += (float) $duration;
|
|
|
|
}
|
|
|
|
|
2018-10-09 19:58:58 +02:00
|
|
|
/**
|
|
|
|
* Returns the current UserAgent as a String
|
|
|
|
*
|
|
|
|
* @return string the UserAgent as a String
|
|
|
|
*/
|
|
|
|
public function getUserAgent()
|
2018-01-16 01:13:21 +01:00
|
|
|
{
|
2017-05-08 08:11:38 +02:00
|
|
|
return
|
|
|
|
FRIENDICA_PLATFORM . " '" .
|
|
|
|
FRIENDICA_CODENAME . "' " .
|
|
|
|
FRIENDICA_VERSION . '-' .
|
|
|
|
DB_UPDATE_VERSION . '; ' .
|
2018-10-09 19:58:58 +02:00
|
|
|
$this->getBaseURL();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks, if the call is from the Friendica App
|
|
|
|
*
|
|
|
|
* Reason:
|
|
|
|
* The friendica client has problems with the GUID in the notify. this is some workaround
|
|
|
|
*/
|
|
|
|
private function checkFriendicaApp()
|
|
|
|
{
|
|
|
|
// Friendica-Client
|
|
|
|
$this->isFriendicaApp = isset($_SERVER['HTTP_USER_AGENT']) && $_SERVER['HTTP_USER_AGENT'] == 'Apache-HttpClient/UNAVAILABLE (java 1.4)';
|
2017-05-08 08:11:38 +02:00
|
|
|
}
|
|
|
|
|
2018-10-09 19:58:58 +02:00
|
|
|
/**
|
|
|
|
* Is the call via the Friendica app? (not a "normale" call)
|
|
|
|
*
|
|
|
|
* @return bool true if it's from the Friendica app
|
|
|
|
*/
|
|
|
|
public function isFriendicaApp()
|
2018-01-16 01:13:21 +01:00
|
|
|
{
|
2018-10-09 19:58:58 +02:00
|
|
|
return $this->isFriendicaApp;
|
2017-05-08 08:11:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Checks if the site is called via a backend process
|
|
|
|
*
|
|
|
|
* This isn't a perfect solution. But we need this check very early.
|
|
|
|
* So we cannot wait until the modules are loaded.
|
|
|
|
*
|
2018-10-10 08:54:18 +02:00
|
|
|
* @param string $backend true, if the backend flag was set during App initialization
|
|
|
|
*
|
2017-05-08 08:11:38 +02:00
|
|
|
*/
|
2018-10-09 19:58:58 +02:00
|
|
|
private function checkBackend($backend) {
|
2018-01-16 01:13:21 +01:00
|
|
|
static $backends = [
|
|
|
|
'_well_known',
|
|
|
|
'api',
|
|
|
|
'dfrn_notify',
|
|
|
|
'fetch',
|
|
|
|
'hcard',
|
|
|
|
'hostxrd',
|
|
|
|
'nodeinfo',
|
|
|
|
'noscrape',
|
|
|
|
'p',
|
|
|
|
'poco',
|
|
|
|
'post',
|
|
|
|
'proxy',
|
|
|
|
'pubsub',
|
|
|
|
'pubsubhubbub',
|
|
|
|
'receive',
|
|
|
|
'rsd_xml',
|
|
|
|
'salmon',
|
|
|
|
'statistics_json',
|
|
|
|
'xrd',
|
|
|
|
];
|
2017-05-08 08:11:38 +02:00
|
|
|
|
|
|
|
// Check if current module is in backend or backend flag is set
|
2018-10-10 01:16:51 +02:00
|
|
|
$this->isBackend = (in_array($this->module, $backends) || $backend || $this->isBackend);
|
2018-10-09 19:58:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true, if the call is from a backend node (f.e. from a worker)
|
|
|
|
*
|
|
|
|
* @return bool Is it a known backend?
|
|
|
|
*/
|
|
|
|
public function isBackend()
|
|
|
|
{
|
|
|
|
return $this->isBackend;
|
2017-05-08 08:11:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Checks if the maximum number of database processes is reached
|
|
|
|
*
|
|
|
|
* @return bool Is the limit reached?
|
|
|
|
*/
|
2018-06-30 20:07:01 +02:00
|
|
|
public function isMaxProcessesReached()
|
2018-01-16 01:13:21 +01:00
|
|
|
{
|
2017-06-07 00:18:42 +02:00
|
|
|
// Deactivated, needs more investigating if this check really makes sense
|
|
|
|
return false;
|
2017-05-08 08:11:38 +02:00
|
|
|
|
2018-01-16 01:13:21 +01:00
|
|
|
/*
|
|
|
|
* Commented out to suppress static analyzer issues
|
|
|
|
*
|
2017-05-08 08:11:38 +02:00
|
|
|
if ($this->is_backend()) {
|
|
|
|
$process = 'backend';
|
|
|
|
$max_processes = Config::get('system', 'max_processes_backend');
|
|
|
|
if (intval($max_processes) == 0) {
|
|
|
|
$max_processes = 5;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$process = 'frontend';
|
|
|
|
$max_processes = Config::get('system', 'max_processes_frontend');
|
|
|
|
if (intval($max_processes) == 0) {
|
|
|
|
$max_processes = 20;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-21 14:40:21 +02:00
|
|
|
$processlist = DBA::processlist();
|
2017-05-08 08:11:38 +02:00
|
|
|
if ($processlist['list'] != '') {
|
|
|
|
logger('Processcheck: Processes: ' . $processlist['amount'] . ' - Processlist: ' . $processlist['list'], LOGGER_DEBUG);
|
|
|
|
|
|
|
|
if ($processlist['amount'] > $max_processes) {
|
|
|
|
logger('Processcheck: Maximum number of processes for ' . $process . ' tasks (' . $max_processes . ') reached.', LOGGER_DEBUG);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2018-01-16 01:13:21 +01:00
|
|
|
*/
|
2017-05-08 08:11:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Checks if the minimal memory is reached
|
|
|
|
*
|
|
|
|
* @return bool Is the memory limit reached?
|
|
|
|
*/
|
2018-10-09 19:58:58 +02:00
|
|
|
public function isMinMemoryReached()
|
2018-01-16 01:13:21 +01:00
|
|
|
{
|
2017-05-08 08:11:38 +02:00
|
|
|
$min_memory = Config::get('system', 'min_memory', 0);
|
|
|
|
if ($min_memory == 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!is_readable('/proc/meminfo')) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$memdata = explode("\n", file_get_contents('/proc/meminfo'));
|
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$meminfo = [];
|
2017-05-08 08:11:38 +02:00
|
|
|
foreach ($memdata as $line) {
|
2018-09-04 19:48:09 +02:00
|
|
|
$data = explode(':', $line);
|
|
|
|
if (count($data) != 2) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
list($key, $val) = $data;
|
2017-05-08 08:11:38 +02:00
|
|
|
$meminfo[$key] = (int) trim(str_replace('kB', '', $val));
|
|
|
|
$meminfo[$key] = (int) ($meminfo[$key] / 1024);
|
|
|
|
}
|
|
|
|
|
2018-01-16 01:13:21 +01:00
|
|
|
if (!isset($meminfo['MemAvailable']) || !isset($meminfo['MemFree'])) {
|
2017-05-08 08:11:38 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$free = $meminfo['MemAvailable'] + $meminfo['MemFree'];
|
|
|
|
|
|
|
|
$reached = ($free < $min_memory);
|
|
|
|
|
|
|
|
if ($reached) {
|
|
|
|
logger('Minimal memory reached: ' . $free . '/' . $meminfo['MemTotal'] . ' - limit ' . $min_memory, LOGGER_DEBUG);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $reached;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Checks if the maximum load is reached
|
|
|
|
*
|
|
|
|
* @return bool Is the load reached?
|
|
|
|
*/
|
2018-06-30 20:07:01 +02:00
|
|
|
public function isMaxLoadReached()
|
2018-01-16 01:13:21 +01:00
|
|
|
{
|
2018-10-09 19:58:58 +02:00
|
|
|
if ($this->isBackend()) {
|
2017-05-08 08:11:38 +02:00
|
|
|
$process = 'backend';
|
|
|
|
$maxsysload = intval(Config::get('system', 'maxloadavg'));
|
|
|
|
if ($maxsysload < 1) {
|
|
|
|
$maxsysload = 50;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$process = 'frontend';
|
|
|
|
$maxsysload = intval(Config::get('system', 'maxloadavg_frontend'));
|
|
|
|
if ($maxsysload < 1) {
|
|
|
|
$maxsysload = 50;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$load = current_load();
|
|
|
|
if ($load) {
|
|
|
|
if (intval($load) > $maxsysload) {
|
|
|
|
logger('system: load ' . $load . ' for ' . $process . ' tasks (' . $maxsysload . ') too high.');
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-07-23 13:40:52 +02:00
|
|
|
/**
|
|
|
|
* Executes a child process with 'proc_open'
|
|
|
|
*
|
|
|
|
* @param string $command The command to execute
|
|
|
|
* @param array $args Arguments to pass to the command ( [ 'key' => value, 'key2' => value2, ... ]
|
|
|
|
*/
|
|
|
|
public function proc_run($command, $args)
|
2018-01-16 01:13:21 +01:00
|
|
|
{
|
2017-05-08 08:11:38 +02:00
|
|
|
if (!function_exists('proc_open')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-07-24 05:42:44 +02:00
|
|
|
$cmdline = $this->getConfigValue('config', 'php_path', 'php') . ' ' . escapeshellarg($command);
|
2017-05-08 08:11:38 +02:00
|
|
|
|
2018-07-23 13:40:52 +02:00
|
|
|
foreach ($args as $key => $value) {
|
|
|
|
if (!is_null($value) && is_bool($value) && !$value) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$cmdline .= ' --' . $key;
|
|
|
|
if (!is_null($value) && !is_bool($value)) {
|
|
|
|
$cmdline .= ' ' . $value;
|
|
|
|
}
|
2017-05-08 08:11:38 +02:00
|
|
|
}
|
|
|
|
|
2018-10-09 19:58:58 +02:00
|
|
|
if ($this->isMinMemoryReached()) {
|
2017-05-08 08:11:38 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-07-02 13:47:42 +02:00
|
|
|
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
|
2018-10-09 19:58:58 +02:00
|
|
|
$resource = proc_open('cmd /c start /b ' . $cmdline, [], $foo, $this->getBasePath());
|
2017-05-08 08:11:38 +02:00
|
|
|
} else {
|
2018-10-09 19:58:58 +02:00
|
|
|
$resource = proc_open($cmdline . ' &', [], $foo, $this->getBasePath());
|
2017-05-08 08:11:38 +02:00
|
|
|
}
|
|
|
|
if (!is_resource($resource)) {
|
|
|
|
logger('We got no resource for command ' . $cmdline, LOGGER_DEBUG);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
proc_close($resource);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Returns the system user that is executing the script
|
|
|
|
*
|
|
|
|
* This mostly returns something like "www-data".
|
|
|
|
*
|
|
|
|
* @return string system username
|
|
|
|
*/
|
2018-10-09 19:58:58 +02:00
|
|
|
private static function getSystemUser()
|
2018-01-16 01:13:21 +01:00
|
|
|
{
|
|
|
|
if (!function_exists('posix_getpwuid') || !function_exists('posix_geteuid')) {
|
2017-05-08 08:11:38 +02:00
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
$processUser = posix_getpwuid(posix_geteuid());
|
|
|
|
return $processUser['name'];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Checks if a given directory is usable for the system
|
|
|
|
*
|
|
|
|
* @return boolean the directory is usable
|
|
|
|
*/
|
2018-10-09 19:58:58 +02:00
|
|
|
public static function isDirectoryUsable($directory, $check_writable = true)
|
2018-01-16 01:13:21 +01:00
|
|
|
{
|
2017-05-08 08:11:38 +02:00
|
|
|
if ($directory == '') {
|
|
|
|
logger('Directory is empty. This shouldn\'t happen.', LOGGER_DEBUG);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!file_exists($directory)) {
|
2018-10-09 19:58:58 +02:00
|
|
|
logger('Path "' . $directory . '" does not exist for user ' . self::getSystemUser(), LOGGER_DEBUG);
|
2017-05-08 08:11:38 +02:00
|
|
|
return false;
|
|
|
|
}
|
2018-01-16 01:13:21 +01:00
|
|
|
|
2017-05-08 08:11:38 +02:00
|
|
|
if (is_file($directory)) {
|
2018-10-09 19:58:58 +02:00
|
|
|
logger('Path "' . $directory . '" is a file for user ' . self::getSystemUser(), LOGGER_DEBUG);
|
2017-05-08 08:11:38 +02:00
|
|
|
return false;
|
|
|
|
}
|
2018-01-16 01:13:21 +01:00
|
|
|
|
2017-05-08 08:11:38 +02:00
|
|
|
if (!is_dir($directory)) {
|
2018-10-09 19:58:58 +02:00
|
|
|
logger('Path "' . $directory . '" is not a directory for user ' . self::getSystemUser(), LOGGER_DEBUG);
|
2017-05-08 08:11:38 +02:00
|
|
|
return false;
|
|
|
|
}
|
2018-01-16 01:13:21 +01:00
|
|
|
|
2017-06-08 04:00:59 +02:00
|
|
|
if ($check_writable && !is_writable($directory)) {
|
2018-10-09 19:58:58 +02:00
|
|
|
logger('Path "' . $directory . '" is not writable for user ' . self::getSystemUser(), LOGGER_DEBUG);
|
2017-05-08 08:11:38 +02:00
|
|
|
return false;
|
|
|
|
}
|
2018-01-16 01:13:21 +01:00
|
|
|
|
2017-05-08 08:11:38 +02:00
|
|
|
return true;
|
|
|
|
}
|
2018-03-07 02:04:04 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $cat Config category
|
|
|
|
* @param string $k Config key
|
|
|
|
* @param mixed $default Default value if it isn't set
|
2018-10-09 19:58:58 +02:00
|
|
|
*
|
|
|
|
* @return string Returns the value of the Config entry
|
2018-03-07 02:04:04 +01:00
|
|
|
*/
|
|
|
|
public function getConfigValue($cat, $k, $default = null)
|
|
|
|
{
|
|
|
|
$return = $default;
|
|
|
|
|
|
|
|
if ($cat === 'config') {
|
|
|
|
if (isset($this->config[$k])) {
|
|
|
|
$return = $this->config[$k];
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (isset($this->config[$cat][$k])) {
|
|
|
|
$return = $this->config[$cat][$k];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $return;
|
|
|
|
}
|
|
|
|
|
2018-09-08 08:37:53 +02:00
|
|
|
/**
|
|
|
|
* Sets a default value in the config cache. Ignores already existing keys.
|
|
|
|
*
|
|
|
|
* @param string $cat Config category
|
|
|
|
* @param string $k Config key
|
|
|
|
* @param mixed $v Default value to set
|
|
|
|
*/
|
|
|
|
private function setDefaultConfigValue($cat, $k, $v)
|
|
|
|
{
|
|
|
|
if (!isset($this->config[$cat][$k])) {
|
|
|
|
$this->setConfigValue($cat, $k, $v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-07 02:04:04 +01:00
|
|
|
/**
|
|
|
|
* Sets a value in the config cache. Accepts raw output from the config table
|
|
|
|
*
|
|
|
|
* @param string $cat Config category
|
|
|
|
* @param string $k Config key
|
|
|
|
* @param mixed $v Value to set
|
|
|
|
*/
|
|
|
|
public function setConfigValue($cat, $k, $v)
|
|
|
|
{
|
|
|
|
// Only arrays are serialized in database, so we have to unserialize sparingly
|
|
|
|
$value = is_string($v) && preg_match("|^a:[0-9]+:{.*}$|s", $v) ? unserialize($v) : $v;
|
|
|
|
|
|
|
|
if ($cat === 'config') {
|
|
|
|
$this->config[$k] = $value;
|
|
|
|
} else {
|
2018-06-14 13:18:01 +02:00
|
|
|
if (!isset($this->config[$cat])) {
|
|
|
|
$this->config[$cat] = [];
|
|
|
|
}
|
|
|
|
|
2018-03-07 02:04:04 +01:00
|
|
|
$this->config[$cat][$k] = $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Deletes a value from the config cache
|
|
|
|
*
|
|
|
|
* @param string $cat Config category
|
|
|
|
* @param string $k Config key
|
|
|
|
*/
|
|
|
|
public function deleteConfigValue($cat, $k)
|
|
|
|
{
|
|
|
|
if ($cat === 'config') {
|
|
|
|
if (isset($this->config[$k])) {
|
|
|
|
unset($this->config[$k]);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (isset($this->config[$cat][$k])) {
|
|
|
|
unset($this->config[$cat][$k]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieves a value from the user config cache
|
|
|
|
*
|
|
|
|
* @param int $uid User Id
|
|
|
|
* @param string $cat Config category
|
|
|
|
* @param string $k Config key
|
|
|
|
* @param mixed $default Default value if key isn't set
|
2018-10-09 19:58:58 +02:00
|
|
|
*
|
|
|
|
* @return string The value of the config entry
|
2018-03-07 02:04:04 +01:00
|
|
|
*/
|
|
|
|
public function getPConfigValue($uid, $cat, $k, $default = null)
|
|
|
|
{
|
|
|
|
$return = $default;
|
|
|
|
|
|
|
|
if (isset($this->config[$uid][$cat][$k])) {
|
|
|
|
$return = $this->config[$uid][$cat][$k];
|
|
|
|
}
|
|
|
|
|
|
|
|
return $return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets a value in the user config cache
|
|
|
|
*
|
|
|
|
* Accepts raw output from the pconfig table
|
|
|
|
*
|
|
|
|
* @param int $uid User Id
|
|
|
|
* @param string $cat Config category
|
|
|
|
* @param string $k Config key
|
|
|
|
* @param mixed $v Value to set
|
|
|
|
*/
|
|
|
|
public function setPConfigValue($uid, $cat, $k, $v)
|
|
|
|
{
|
|
|
|
// Only arrays are serialized in database, so we have to unserialize sparingly
|
|
|
|
$value = is_string($v) && preg_match("|^a:[0-9]+:{.*}$|s", $v) ? unserialize($v) : $v;
|
|
|
|
|
2018-07-30 06:41:20 +02:00
|
|
|
if (!isset($this->config[$uid]) || !is_array($this->config[$uid])) {
|
2018-06-14 13:18:01 +02:00
|
|
|
$this->config[$uid] = [];
|
|
|
|
}
|
|
|
|
|
2018-07-30 06:41:20 +02:00
|
|
|
if (!isset($this->config[$uid][$cat]) || !is_array($this->config[$uid][$cat])) {
|
2018-06-14 13:18:01 +02:00
|
|
|
$this->config[$uid][$cat] = [];
|
|
|
|
}
|
|
|
|
|
2018-03-07 02:04:04 +01:00
|
|
|
$this->config[$uid][$cat][$k] = $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Deletes a value from the user config cache
|
|
|
|
*
|
|
|
|
* @param int $uid User Id
|
|
|
|
* @param string $cat Config category
|
|
|
|
* @param string $k Config key
|
|
|
|
*/
|
|
|
|
public function deletePConfigValue($uid, $cat, $k)
|
|
|
|
{
|
|
|
|
if (isset($this->config[$uid][$cat][$k])) {
|
|
|
|
unset($this->config[$uid][$cat][$k]);
|
|
|
|
}
|
|
|
|
}
|
2018-04-07 03:47:16 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generates the site's default sender email address
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getSenderEmailAddress()
|
|
|
|
{
|
|
|
|
$sender_email = Config::get('config', 'sender_email');
|
|
|
|
if (empty($sender_email)) {
|
2018-10-09 19:58:58 +02:00
|
|
|
$hostname = $this->getHostName();
|
2018-04-07 03:47:16 +02:00
|
|
|
if (strpos($hostname, ':')) {
|
|
|
|
$hostname = substr($hostname, 0, strpos($hostname, ':'));
|
|
|
|
}
|
|
|
|
|
2018-04-11 08:17:44 +02:00
|
|
|
$sender_email = 'noreply@' . $hostname;
|
2018-04-07 03:47:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $sender_email;
|
|
|
|
}
|
2018-04-28 12:36:40 +02:00
|
|
|
|
2018-04-29 00:30:13 +02:00
|
|
|
/**
|
|
|
|
* Returns the current theme name.
|
|
|
|
*
|
2018-10-09 19:58:58 +02:00
|
|
|
* @return string the name of the current theme
|
2018-04-29 00:30:13 +02:00
|
|
|
*/
|
|
|
|
public function getCurrentTheme()
|
|
|
|
{
|
2018-10-06 16:27:20 +02:00
|
|
|
if ($this->getMode()->isInstall()) {
|
2018-05-20 07:44:20 +02:00
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2018-05-25 08:44:01 +02:00
|
|
|
//// @TODO Compute the current theme only once (this behavior has
|
2018-05-25 08:52:03 +02:00
|
|
|
/// already been implemented, but it didn't work well -
|
2018-05-25 08:44:01 +02:00
|
|
|
/// https://github.com/friendica/friendica/issues/5092)
|
|
|
|
$this->computeCurrentTheme();
|
2018-04-29 00:30:13 +02:00
|
|
|
|
2018-10-09 19:58:58 +02:00
|
|
|
return $this->currentTheme;
|
2018-04-29 00:30:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Computes the current theme name based on the node settings, the user settings and the device type
|
|
|
|
*
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
|
|
|
private function computeCurrentTheme()
|
|
|
|
{
|
|
|
|
$system_theme = Config::get('system', 'theme');
|
|
|
|
if (!$system_theme) {
|
|
|
|
throw new Exception(L10n::t('No system theme config value set.'));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sane default
|
2018-10-09 19:58:58 +02:00
|
|
|
$this->currentTheme = $system_theme;
|
2018-04-29 00:30:13 +02:00
|
|
|
|
|
|
|
$allowed_themes = explode(',', Config::get('system', 'allowed_themes', $system_theme));
|
|
|
|
|
|
|
|
$page_theme = null;
|
|
|
|
// Find the theme that belongs to the user whose stuff we are looking at
|
|
|
|
if ($this->profile_uid && ($this->profile_uid != local_user())) {
|
|
|
|
// Allow folks to override user themes and always use their own on their own site.
|
|
|
|
// This works only if the user is on the same server
|
2018-07-20 14:19:26 +02:00
|
|
|
$user = DBA::selectFirst('user', ['theme'], ['uid' => $this->profile_uid]);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($user) && !PConfig::get(local_user(), 'system', 'always_my_theme')) {
|
2018-04-29 00:30:13 +02:00
|
|
|
$page_theme = $user['theme'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-05 15:56:21 +02:00
|
|
|
$user_theme = Core\Session::get('theme', $system_theme);
|
2018-07-10 14:27:56 +02:00
|
|
|
|
2018-04-29 00:30:13 +02:00
|
|
|
// Specific mobile theme override
|
2018-08-05 15:56:21 +02:00
|
|
|
if (($this->is_mobile || $this->is_tablet) && Core\Session::get('show-mobile', true)) {
|
2018-04-29 00:30:13 +02:00
|
|
|
$system_mobile_theme = Config::get('system', 'mobile-theme');
|
2018-08-05 15:56:21 +02:00
|
|
|
$user_mobile_theme = Core\Session::get('mobile-theme', $system_mobile_theme);
|
2018-04-29 00:30:13 +02:00
|
|
|
|
|
|
|
// --- means same mobile theme as desktop
|
|
|
|
if (!empty($user_mobile_theme) && $user_mobile_theme !== '---') {
|
|
|
|
$user_theme = $user_mobile_theme;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($page_theme) {
|
|
|
|
$theme_name = $page_theme;
|
|
|
|
} else {
|
|
|
|
$theme_name = $user_theme;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($theme_name
|
|
|
|
&& in_array($theme_name, $allowed_themes)
|
|
|
|
&& (file_exists('view/theme/' . $theme_name . '/style.css')
|
|
|
|
|| file_exists('view/theme/' . $theme_name . '/style.php'))
|
|
|
|
) {
|
2018-10-09 19:58:58 +02:00
|
|
|
$this->currentTheme = $theme_name;
|
2018-04-29 00:30:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Return full URL to theme which is currently in effect.
|
|
|
|
*
|
|
|
|
* Provide a sane default if nothing is chosen or the specified theme does not exist.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getCurrentThemeStylesheetPath()
|
|
|
|
{
|
|
|
|
return Core\Theme::getStylesheetPath($this->getCurrentTheme());
|
|
|
|
}
|
2017-05-08 08:11:38 +02:00
|
|
|
}
|