2017-05-08 02:11:38 -04:00
|
|
|
<?php
|
2018-01-22 09:54:13 -05:00
|
|
|
/**
|
|
|
|
* @file src/App.php
|
|
|
|
*/
|
2017-05-08 02:11:38 -04:00
|
|
|
namespace Friendica;
|
|
|
|
|
2018-07-19 22:15:21 -04:00
|
|
|
use Detection\MobileDetect;
|
2018-10-21 22:24:47 -04:00
|
|
|
use DOMDocument;
|
|
|
|
use DOMXPath;
|
2018-07-19 22:15:21 -04:00
|
|
|
use Exception;
|
2019-08-12 12:13:58 -04:00
|
|
|
use Friendica\App\Arguments;
|
|
|
|
use Friendica\App\Module;
|
2019-07-12 16:38:50 -04:00
|
|
|
use Friendica\Core\Config\Cache\ConfigCache;
|
2019-02-10 13:52:21 -05:00
|
|
|
use Friendica\Core\Config\Configuration;
|
2019-08-12 12:13:58 -04:00
|
|
|
use Friendica\Core\Config\PConfiguration;
|
2019-07-09 15:44:02 -04:00
|
|
|
use Friendica\Core\L10n\L10n;
|
2019-07-23 20:01:45 -04:00
|
|
|
use Friendica\Core\System;
|
2019-03-31 21:50:00 -04:00
|
|
|
use Friendica\Core\Theme;
|
2019-06-06 18:10:45 -04:00
|
|
|
use Friendica\Database\Database;
|
2018-07-20 08:19:26 -04:00
|
|
|
use Friendica\Database\DBA;
|
2019-03-19 02:44:51 -04:00
|
|
|
use Friendica\Model\Profile;
|
2019-07-23 20:01:45 -04:00
|
|
|
use Friendica\Module\Login;
|
2019-08-12 12:13:58 -04:00
|
|
|
use Friendica\Module\Special\HTTPException as ModuleHTTPException;
|
2019-05-01 21:33:33 -04:00
|
|
|
use Friendica\Network\HTTPException;
|
2019-04-08 15:12:10 -04:00
|
|
|
use Friendica\Util\BaseURL;
|
2019-06-23 13:56:21 -04:00
|
|
|
use Friendica\Util\ConfigFileLoader;
|
2019-03-19 02:44:51 -04:00
|
|
|
use Friendica\Util\HTTPSignature;
|
2019-02-16 17:11:30 -05:00
|
|
|
use Friendica\Util\Profiler;
|
2019-03-31 21:50:00 -04:00
|
|
|
use Friendica\Util\Strings;
|
2018-12-30 15:42:56 -05:00
|
|
|
use Psr\Log\LoggerInterface;
|
2017-05-11 11:53:04 -04:00
|
|
|
|
2017-05-08 02:11:38 -04: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-15 19:13:21 -05:00
|
|
|
class App
|
|
|
|
{
|
2019-08-12 12:13:58 -04:00
|
|
|
/** @deprecated 2019.09 - use App\Arguments->getQueryString() */
|
2018-06-25 20:38:41 -04:00
|
|
|
public $query_string = '';
|
|
|
|
public $page = [];
|
2017-05-08 02:11:38 -04:00
|
|
|
public $profile;
|
|
|
|
public $profile_uid;
|
|
|
|
public $user;
|
|
|
|
public $cid;
|
|
|
|
public $contact;
|
|
|
|
public $contacts;
|
|
|
|
public $page_contact;
|
|
|
|
public $content;
|
2018-01-15 08:05:12 -05:00
|
|
|
public $data = [];
|
2019-08-12 12:13:58 -04:00
|
|
|
/** @deprecated 2019.09 - use App\Arguments->getCommand() */
|
2018-06-25 20:38:41 -04:00
|
|
|
public $cmd = '';
|
2019-08-12 12:13:58 -04:00
|
|
|
/** @deprecated 2019.09 - use App\Arguments->getArgv() or Arguments->get() */
|
2017-05-08 02:11:38 -04:00
|
|
|
public $argv;
|
2019-08-12 12:13:58 -04:00
|
|
|
/** @deprecated 2019.09 - use App\Arguments->getArgc() */
|
2017-05-08 02:11:38 -04:00
|
|
|
public $argc;
|
2019-08-12 12:13:58 -04:00
|
|
|
/** @deprecated 2019.09 - Use App\Module->getName() instead */
|
2017-05-08 02:11:38 -04:00
|
|
|
public $module;
|
|
|
|
public $timezone;
|
|
|
|
public $interactive = true;
|
|
|
|
public $identities;
|
|
|
|
public $is_mobile = false;
|
|
|
|
public $is_tablet = false;
|
2018-01-15 08:05:12 -05:00
|
|
|
public $theme_info = [];
|
2017-05-08 02:11:38 -04:00
|
|
|
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-20 21:30:51 -04:00
|
|
|
public $stylesheets = [];
|
2018-09-20 21:01:05 -04:00
|
|
|
public $footerScripts = [];
|
|
|
|
|
2018-10-06 10:27:20 -04:00
|
|
|
/**
|
|
|
|
* @var App\Mode The Mode of the Application
|
|
|
|
*/
|
|
|
|
private $mode;
|
|
|
|
|
2019-04-05 23:16:12 -04:00
|
|
|
/**
|
|
|
|
* @var App\Router
|
|
|
|
*/
|
|
|
|
private $router;
|
|
|
|
|
2018-10-09 13:58:58 -04:00
|
|
|
/**
|
2019-04-08 15:12:10 -04:00
|
|
|
* @var BaseURL
|
2018-10-09 13:58:58 -04:00
|
|
|
*/
|
2019-04-08 15:12:10 -04:00
|
|
|
private $baseURL;
|
2018-10-09 13:58:58 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @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-10-13 12:57:31 -04:00
|
|
|
/**
|
|
|
|
* @var bool check if request was an AJAX (xmlhttprequest) request
|
|
|
|
*/
|
|
|
|
private $isAjax;
|
|
|
|
|
2019-01-11 20:48:29 -05:00
|
|
|
/**
|
|
|
|
* @var MobileDetect
|
|
|
|
*/
|
|
|
|
public $mobileDetect;
|
|
|
|
|
2018-12-30 15:42:56 -05:00
|
|
|
/**
|
2019-02-10 13:52:21 -05:00
|
|
|
* @var Configuration The config
|
2019-02-03 16:22:04 -05:00
|
|
|
*/
|
|
|
|
private $config;
|
|
|
|
|
2019-02-17 15:12:12 -05:00
|
|
|
/**
|
|
|
|
* @var LoggerInterface The logger
|
2018-12-30 15:42:56 -05:00
|
|
|
*/
|
|
|
|
private $logger;
|
|
|
|
|
2019-02-03 16:22:04 -05:00
|
|
|
/**
|
2019-02-16 17:11:30 -05:00
|
|
|
* @var Profiler The profiler of this app
|
2019-02-03 16:22:04 -05:00
|
|
|
*/
|
2019-02-16 17:11:30 -05:00
|
|
|
private $profiler;
|
2019-02-03 16:22:04 -05:00
|
|
|
|
2019-06-06 18:10:45 -04:00
|
|
|
/**
|
|
|
|
* @var Database The Friendica database connection
|
|
|
|
*/
|
|
|
|
private $database;
|
|
|
|
|
2019-07-09 15:44:02 -04:00
|
|
|
/**
|
|
|
|
* @var L10n The translator
|
|
|
|
*/
|
|
|
|
private $l10n;
|
|
|
|
|
2019-08-12 12:13:58 -04:00
|
|
|
/**
|
|
|
|
* @var App\Arguments
|
|
|
|
*/
|
|
|
|
private $args;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var App\Module
|
|
|
|
*/
|
|
|
|
private $moduleClass;
|
|
|
|
|
2019-02-03 16:22:04 -05:00
|
|
|
/**
|
|
|
|
* Returns the current config cache of this node
|
|
|
|
*
|
2019-07-12 16:38:50 -04:00
|
|
|
* @return ConfigCache
|
2019-02-03 16:22:04 -05:00
|
|
|
*/
|
2019-02-10 13:52:21 -05:00
|
|
|
public function getConfigCache()
|
2019-02-03 16:22:04 -05:00
|
|
|
{
|
2019-02-10 13:52:21 -05:00
|
|
|
return $this->config->getCache();
|
2019-02-03 16:22:04 -05:00
|
|
|
}
|
|
|
|
|
2019-04-13 15:46:06 -04:00
|
|
|
/**
|
2019-04-14 08:05:48 -04:00
|
|
|
* Returns the current config of this node
|
2019-04-13 15:46:06 -04:00
|
|
|
*
|
|
|
|
* @return Configuration
|
|
|
|
*/
|
|
|
|
public function getConfig()
|
|
|
|
{
|
|
|
|
return $this->config;
|
|
|
|
}
|
|
|
|
|
2019-02-03 16:22:04 -05:00
|
|
|
/**
|
|
|
|
* The basepath of this app
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getBasePath()
|
|
|
|
{
|
2019-05-13 13:30:03 -04:00
|
|
|
// Don't use the basepath of the config table for basepath (it should always be the config-file one)
|
|
|
|
return $this->config->getCache()->get('system', 'basepath');
|
2019-02-03 16:22:04 -05:00
|
|
|
}
|
|
|
|
|
2019-02-17 15:12:12 -05:00
|
|
|
/**
|
|
|
|
* The Logger of this app
|
|
|
|
*
|
|
|
|
* @return LoggerInterface
|
|
|
|
*/
|
|
|
|
public function getLogger()
|
|
|
|
{
|
|
|
|
return $this->logger;
|
|
|
|
}
|
|
|
|
|
2019-02-16 17:11:30 -05:00
|
|
|
/**
|
|
|
|
* The profiler of this app
|
|
|
|
*
|
|
|
|
* @return Profiler
|
|
|
|
*/
|
|
|
|
public function getProfiler()
|
|
|
|
{
|
|
|
|
return $this->profiler;
|
|
|
|
}
|
|
|
|
|
2019-03-13 21:36:49 -04:00
|
|
|
/**
|
|
|
|
* Returns the Mode of the Application
|
|
|
|
*
|
|
|
|
* @return App\Mode The Application Mode
|
|
|
|
*/
|
|
|
|
public function getMode()
|
|
|
|
{
|
|
|
|
return $this->mode;
|
|
|
|
}
|
|
|
|
|
2019-08-12 12:13:58 -04:00
|
|
|
/**
|
|
|
|
* Returns the Database of the Application
|
|
|
|
*
|
|
|
|
* @return Database
|
|
|
|
*/
|
|
|
|
public function getDBA()
|
|
|
|
{
|
|
|
|
return $this->database;
|
|
|
|
}
|
|
|
|
|
2018-09-21 09:54:40 -04: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.
|
|
|
|
*
|
2018-10-21 22:24:47 -04:00
|
|
|
* @see initHead()
|
2018-09-21 09:54:40 -04:00
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
*/
|
2018-09-20 21:30:51 -04:00
|
|
|
public function registerStylesheet($path)
|
|
|
|
{
|
2019-03-31 06:00:20 -04:00
|
|
|
if (mb_strpos($path, $this->getBasePath() . DIRECTORY_SEPARATOR) === 0) {
|
|
|
|
$path = mb_substr($path, mb_strlen($this->getBasePath() . DIRECTORY_SEPARATOR));
|
2019-03-30 06:13:27 -04:00
|
|
|
}
|
2018-09-20 21:30:51 -04:00
|
|
|
|
2019-03-31 02:53:25 -04:00
|
|
|
$this->stylesheets[] = trim($path, '/');
|
2018-09-20 21:30:51 -04:00
|
|
|
}
|
|
|
|
|
2018-09-21 09:54:40 -04: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.
|
|
|
|
*
|
2018-10-21 22:24:47 -04:00
|
|
|
* @see initFooter()
|
2018-09-21 09:54:40 -04:00
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
*/
|
2018-09-20 21:01:05 -04:00
|
|
|
public function registerFooterScript($path)
|
|
|
|
{
|
2019-03-23 10:20:51 -04:00
|
|
|
$url = str_replace($this->getBasePath() . DIRECTORY_SEPARATOR, '', $path);
|
2018-09-20 21:01:05 -04:00
|
|
|
|
2018-09-20 21:30:51 -04:00
|
|
|
$this->footerScripts[] = trim($url, '/');
|
2018-09-20 21:01:05 -04:00
|
|
|
}
|
|
|
|
|
2017-06-11 15:51:18 -04:00
|
|
|
public $queue;
|
2017-05-08 02:11:38 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief App constructor.
|
|
|
|
*
|
2019-06-06 18:10:45 -04:00
|
|
|
* @param Database $database The Friendica Database
|
2019-02-10 13:52:21 -05:00
|
|
|
* @param Configuration $config The Configuration
|
2019-03-13 21:36:49 -04:00
|
|
|
* @param App\Mode $mode The mode of this Friendica app
|
2019-04-05 23:16:12 -04:00
|
|
|
* @param App\Router $router The router of this Friendica app
|
2019-04-08 15:12:10 -04:00
|
|
|
* @param BaseURL $baseURL The full base URL of this Friendica app
|
2019-02-17 15:12:12 -05:00
|
|
|
* @param LoggerInterface $logger The current app logger
|
2019-02-16 17:11:30 -05:00
|
|
|
* @param Profiler $profiler The profiler of this application
|
2019-07-09 15:44:02 -04:00
|
|
|
* @param L10n $l10n The translator instance
|
2018-08-20 16:15:39 -04:00
|
|
|
*
|
|
|
|
* @throws Exception if the Basepath is not usable
|
2017-05-08 02:11:38 -04:00
|
|
|
*/
|
2019-08-12 12:13:58 -04:00
|
|
|
public function __construct(Database $database, Configuration $config, App\Mode $mode, App\Router $router, BaseURL $baseURL, LoggerInterface $logger, Profiler $profiler, L10n $l10n, Arguments $args, Module $module)
|
2018-01-15 19:13:21 -05:00
|
|
|
{
|
2019-06-06 18:10:45 -04:00
|
|
|
$this->database = $database;
|
2019-02-17 15:12:12 -05:00
|
|
|
$this->config = $config;
|
2019-03-13 21:36:49 -04:00
|
|
|
$this->mode = $mode;
|
2019-04-05 23:16:12 -04:00
|
|
|
$this->router = $router;
|
2019-04-08 15:12:10 -04:00
|
|
|
$this->baseURL = $baseURL;
|
2019-04-05 23:16:12 -04:00
|
|
|
$this->profiler = $profiler;
|
|
|
|
$this->logger = $logger;
|
2019-07-09 15:44:02 -04:00
|
|
|
$this->l10n = $l10n;
|
2019-08-12 12:13:58 -04:00
|
|
|
$this->args = $args;
|
2019-08-12 12:20:22 -04:00
|
|
|
$this->isBackend = $this->checkBackend($module);
|
2017-10-11 14:21:10 -04:00
|
|
|
|
2019-02-16 17:11:30 -05:00
|
|
|
$this->profiler->reset();
|
2017-05-08 02:11:38 -04:00
|
|
|
|
2018-08-27 00:15:55 -04:00
|
|
|
$this->reload();
|
2017-05-08 02:11:38 -04:00
|
|
|
|
2018-07-02 07:23:47 -04: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 02:11:38 -04:00
|
|
|
|
|
|
|
set_include_path(
|
|
|
|
get_include_path() . PATH_SEPARATOR
|
2019-03-23 10:20:51 -04:00
|
|
|
. $this->getBasePath() . DIRECTORY_SEPARATOR . 'include' . PATH_SEPARATOR
|
|
|
|
. $this->getBasePath() . DIRECTORY_SEPARATOR . 'library' . PATH_SEPARATOR
|
|
|
|
. $this->getBasePath());
|
2017-05-08 02:11:38 -04:00
|
|
|
|
2019-08-12 12:13:58 -04:00
|
|
|
$this->cmd = $args->getCommand();
|
|
|
|
$this->argv = $args->getArgv();
|
|
|
|
$this->argc = $args->getArgc();
|
|
|
|
$this->query_string = $args->getQueryString();
|
2019-04-11 05:27:26 -04:00
|
|
|
|
2017-05-08 02:11:38 -04:00
|
|
|
// Detect mobile devices
|
2017-05-11 11:53:04 -04:00
|
|
|
$mobile_detect = new MobileDetect();
|
2019-01-11 20:48:29 -05:00
|
|
|
|
|
|
|
$this->mobileDetect = $mobile_detect;
|
|
|
|
|
2017-05-08 02:11:38 -04:00
|
|
|
$this->is_mobile = $mobile_detect->isMobile();
|
|
|
|
$this->is_tablet = $mobile_detect->isTablet();
|
|
|
|
|
2018-10-13 13:10:46 -04:00
|
|
|
$this->isAjax = strtolower(defaults($_SERVER, 'HTTP_X_REQUESTED_WITH', '')) == 'xmlhttprequest';
|
2018-10-13 12:57:31 -04:00
|
|
|
|
2017-05-08 02:11:38 -04:00
|
|
|
// Register template engines
|
2018-10-31 13:25:38 -04:00
|
|
|
Core\Renderer::registerTemplateEngine('Friendica\Render\FriendicaSmartyEngine');
|
2018-06-25 20:38:41 -04:00
|
|
|
}
|
|
|
|
|
2018-08-27 00:15:55 -04:00
|
|
|
/**
|
|
|
|
* Reloads the whole app instance
|
|
|
|
*/
|
|
|
|
public function reload()
|
|
|
|
{
|
2018-10-06 10:27:20 -04:00
|
|
|
if ($this->getMode()->has(App\Mode::DBAVAILABLE)) {
|
2019-07-20 19:22:10 -04:00
|
|
|
$this->profiler->update($this->config);
|
2019-02-22 19:24:08 -05:00
|
|
|
|
|
|
|
Core\Hook::loadHooks();
|
2019-07-20 19:22:10 -04:00
|
|
|
$loader = new ConfigFileLoader($this->getBasePath());
|
2019-02-22 19:24:08 -05:00
|
|
|
Core\Hook::callAll('load_config', $loader);
|
2018-08-27 00:15:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->loadDefaultTimezone();
|
|
|
|
}
|
|
|
|
|
2018-06-27 23:05:38 -04:00
|
|
|
/**
|
|
|
|
* Loads the default timezone
|
|
|
|
*
|
|
|
|
* Include support for legacy $default_timezone
|
|
|
|
*
|
|
|
|
* @global string $default_timezone
|
|
|
|
*/
|
2018-06-25 20:38:41 -04:00
|
|
|
private function loadDefaultTimezone()
|
|
|
|
{
|
2019-02-03 16:22:04 -05:00
|
|
|
if ($this->config->get('system', 'default_timezone')) {
|
|
|
|
$this->timezone = $this->config->get('system', 'default_timezone');
|
2018-06-25 20:38:41 -04:00
|
|
|
} else {
|
|
|
|
global $default_timezone;
|
|
|
|
$this->timezone = !empty($default_timezone) ? $default_timezone : 'UTC';
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->timezone) {
|
|
|
|
date_default_timezone_set($this->timezone);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-04-08 15:12:10 -04:00
|
|
|
* Returns the scheme of the current call
|
|
|
|
* @return string
|
|
|
|
*
|
|
|
|
* @deprecated 2019.06 - use BaseURL->getScheme() instead
|
2018-06-25 20:38:41 -04:00
|
|
|
*/
|
2018-10-09 13:58:58 -04:00
|
|
|
public function getScheme()
|
2018-01-15 19:13:21 -05:00
|
|
|
{
|
2019-04-08 15:12:10 -04:00
|
|
|
return $this->baseURL->getScheme();
|
2017-05-08 02:11:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-04-08 15:12:10 -04:00
|
|
|
* Retrieves the Friendica instance base URL
|
2017-05-08 02:11:38 -04:00
|
|
|
*
|
2019-04-08 15:12:10 -04:00
|
|
|
* @param bool $ssl Whether to append http or https under BaseURL::SSL_POLICY_SELFSIGN
|
2017-05-08 02:11:38 -04:00
|
|
|
*
|
|
|
|
* @return string Friendica server base URL
|
2019-08-12 12:13:58 -04:00
|
|
|
*
|
|
|
|
* @deprecated 2019.09 - use BaseUrl->get($ssl) instead
|
2017-05-08 02:11:38 -04:00
|
|
|
*/
|
2018-10-09 13:58:58 -04:00
|
|
|
public function getBaseURL($ssl = false)
|
2018-01-15 19:13:21 -05:00
|
|
|
{
|
2019-04-08 15:12:10 -04:00
|
|
|
return $this->baseURL->get($ssl);
|
2017-05-08 02:11:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Initializes the baseurl components
|
|
|
|
*
|
2018-01-15 19:13:21 -05:00
|
|
|
* Clears the baseurl cache to prevent inconsistencies
|
2017-05-08 02:11:38 -04:00
|
|
|
*
|
|
|
|
* @param string $url
|
2019-04-08 15:12:10 -04:00
|
|
|
*
|
|
|
|
* @deprecated 2019.06 - use BaseURL->saveByURL($url) instead
|
2017-05-08 02:11:38 -04:00
|
|
|
*/
|
2018-10-09 13:58:58 -04:00
|
|
|
public function setBaseURL($url)
|
2018-01-15 19:13:21 -05:00
|
|
|
{
|
2019-04-08 15:12:10 -04:00
|
|
|
$this->baseURL->saveByURL($url);
|
2017-05-08 02:11:38 -04:00
|
|
|
}
|
|
|
|
|
2019-04-08 15:12:10 -04:00
|
|
|
/**
|
|
|
|
* Returns the current hostname
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*
|
|
|
|
* @deprecated 2019.06 - use BaseURL->getHostname() instead
|
|
|
|
*/
|
2018-10-09 13:58:58 -04:00
|
|
|
public function getHostName()
|
2018-01-15 19:13:21 -05:00
|
|
|
{
|
2019-04-08 15:12:10 -04:00
|
|
|
return $this->baseURL->getHostname();
|
2017-05-08 02:11:38 -04:00
|
|
|
}
|
|
|
|
|
2019-04-08 15:12:10 -04:00
|
|
|
/**
|
|
|
|
* Returns the sub-path of the full URL
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*
|
|
|
|
* @deprecated 2019.06 - use BaseURL->getUrlPath() instead
|
|
|
|
*/
|
2018-10-09 19:18:47 -04:00
|
|
|
public function getURLPath()
|
2018-01-15 19:13:21 -05:00
|
|
|
{
|
2019-04-08 15:12:10 -04:00
|
|
|
return $this->baseURL->getUrlPath();
|
2017-05-08 02:11:38 -04:00
|
|
|
}
|
|
|
|
|
2018-09-21 09:54:40 -04:00
|
|
|
/**
|
|
|
|
* Initializes App->page['htmlhead'].
|
|
|
|
*
|
|
|
|
* Includes:
|
|
|
|
* - Page title
|
|
|
|
* - Favicons
|
|
|
|
* - Registered stylesheets (through App->registerStylesheet())
|
|
|
|
* - Infinite scroll data
|
|
|
|
* - head.tpl template
|
|
|
|
*/
|
2019-08-12 12:13:58 -04:00
|
|
|
private function initHead(App\Module $module, PConfiguration $pconfig)
|
2018-01-15 19:13:21 -05:00
|
|
|
{
|
2019-08-12 12:13:58 -04:00
|
|
|
$interval = ((local_user()) ? $pconfig->get(local_user(), 'system', 'update_interval') : 40000);
|
2017-05-08 02:11:38 -04:00
|
|
|
|
|
|
|
// If the update is 'deactivated' set it to the highest integer number (~24 days)
|
|
|
|
if ($interval < 0) {
|
|
|
|
$interval = 2147483647;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($interval < 10000) {
|
|
|
|
$interval = 40000;
|
|
|
|
}
|
|
|
|
|
2019-03-04 06:47:40 -05:00
|
|
|
// Default title: current module called
|
2019-08-12 12:13:58 -04:00
|
|
|
if (empty($this->page['title']) && $module->getName()) {
|
|
|
|
$this->page['title'] = ucfirst($module->getName());
|
2017-05-08 02:11:38 -04:00
|
|
|
}
|
|
|
|
|
2019-03-04 06:47:40 -05:00
|
|
|
// Prepend the sitename to the page title
|
2019-03-04 07:54:51 -05:00
|
|
|
$this->page['title'] = $this->config->get('config', 'sitename', '') . (!empty($this->page['title']) ? ' | ' . $this->page['title'] : '');
|
2019-03-04 06:47:40 -05:00
|
|
|
|
2018-10-31 13:25:38 -04:00
|
|
|
if (!empty(Core\Renderer::$theme['stylesheet'])) {
|
|
|
|
$stylesheet = Core\Renderer::$theme['stylesheet'];
|
2017-05-08 02:11:38 -04:00
|
|
|
} else {
|
2018-09-21 09:54:09 -04:00
|
|
|
$stylesheet = $this->getCurrentThemeStylesheetPath();
|
2017-05-08 02:11:38 -04:00
|
|
|
}
|
|
|
|
|
2018-09-21 09:54:09 -04:00
|
|
|
$this->registerStylesheet($stylesheet);
|
|
|
|
|
2019-03-23 10:23:23 -04:00
|
|
|
$shortcut_icon = $this->config->get('system', 'shortcut_icon');
|
2017-05-08 02:11:38 -04:00
|
|
|
if ($shortcut_icon == '') {
|
|
|
|
$shortcut_icon = 'images/friendica-32.png';
|
|
|
|
}
|
|
|
|
|
2019-03-23 10:23:23 -04:00
|
|
|
$touch_icon = $this->config->get('system', 'touch_icon');
|
2017-05-08 02:11:38 -04:00
|
|
|
if ($touch_icon == '') {
|
|
|
|
$touch_icon = 'images/friendica-128.png';
|
|
|
|
}
|
|
|
|
|
2018-12-26 01:06:24 -05:00
|
|
|
Core\Hook::callAll('head', $this->page['htmlhead']);
|
2017-05-08 02:11:38 -04:00
|
|
|
|
2018-10-31 10:44:06 -04:00
|
|
|
$tpl = Core\Renderer::getMarkupTemplate('head.tpl');
|
2018-09-21 09:54:09 -04: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-10-31 10:35:50 -04:00
|
|
|
$this->page['htmlhead'] = Core\Renderer::replaceMacros($tpl, [
|
2018-01-15 19:13:21 -05:00
|
|
|
'$local_user' => local_user(),
|
|
|
|
'$generator' => 'Friendica' . ' ' . FRIENDICA_VERSION,
|
2019-07-09 15:44:02 -04:00
|
|
|
'$delitem' => $this->l10n->t('Delete this item?'),
|
2018-01-15 19:13:21 -05:00
|
|
|
'$update_interval' => $interval,
|
|
|
|
'$shortcut_icon' => $shortcut_icon,
|
|
|
|
'$touch_icon' => $touch_icon,
|
2019-03-23 10:23:23 -04:00
|
|
|
'$block_public' => intval($this->config->get('system', 'block_public')),
|
2018-09-20 21:30:51 -04:00
|
|
|
'$stylesheets' => $this->stylesheets,
|
2018-01-15 19:13:21 -05:00
|
|
|
]) . $this->page['htmlhead'];
|
|
|
|
}
|
|
|
|
|
2018-09-21 09:54:40 -04:00
|
|
|
/**
|
|
|
|
* Initializes App->page['footer'].
|
|
|
|
*
|
|
|
|
* Includes:
|
|
|
|
* - Javascript homebase
|
|
|
|
* - Mobile toggle link
|
|
|
|
* - Registered footer scripts (through App->registerFooterScript())
|
|
|
|
* - footer.tpl template
|
|
|
|
*/
|
2019-08-12 12:13:58 -04:00
|
|
|
private function initFooter()
|
2018-01-15 19:13:21 -05:00
|
|
|
{
|
2018-09-20 21:01:05 -04: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 12:45:49 -04:00
|
|
|
$homebase = 'profile/' . $this->user['nickname'];
|
2018-09-20 21:01:05 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($homebase)) {
|
|
|
|
$this->page['footer'] .= '<script>var homebase="' . $homebase . '";</script>' . "\n";
|
2017-05-08 02:11:38 -04:00
|
|
|
}
|
2018-09-20 21:01:05 -04: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']) {
|
2018-11-10 08:55:48 -05:00
|
|
|
$link = 'toggle_mobile?address=' . urlencode(curPageURL());
|
2018-09-20 21:01:05 -04:00
|
|
|
} else {
|
2018-11-10 08:55:48 -05:00
|
|
|
$link = 'toggle_mobile?off=1&address=' . urlencode(curPageURL());
|
2018-09-20 21:01:05 -04:00
|
|
|
}
|
2018-10-31 10:44:06 -04:00
|
|
|
$this->page['footer'] .= Core\Renderer::replaceMacros(Core\Renderer::getMarkupTemplate("toggle_mobile_footer.tpl"), [
|
2018-09-20 21:01:05 -04:00
|
|
|
'$toggle_link' => $link,
|
2019-07-09 15:44:02 -04:00
|
|
|
'$toggle_text' => $this->l10n->t('toggle mobile')
|
2018-09-20 21:01:05 -04:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2018-12-26 01:06:24 -05:00
|
|
|
Core\Hook::callAll('footer', $this->page['footer']);
|
2018-09-20 21:01:05 -04:00
|
|
|
|
2018-10-31 10:44:06 -04:00
|
|
|
$tpl = Core\Renderer::getMarkupTemplate('footer.tpl');
|
2018-10-31 10:35:50 -04:00
|
|
|
$this->page['footer'] = Core\Renderer::replaceMacros($tpl, [
|
2018-09-20 21:01:05 -04:00
|
|
|
'$footerScripts' => $this->footerScripts,
|
2018-09-20 21:30:51 -04:00
|
|
|
]) . $this->page['footer'];
|
2017-05-08 02:11:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-01-15 19:13:21 -05:00
|
|
|
* @brief Removes the base url from an url. This avoids some mixed content problems.
|
2017-05-08 02:11:38 -04:00
|
|
|
*
|
2018-10-09 19:18:47 -04:00
|
|
|
* @param string $origURL
|
2017-05-08 02:11:38 -04:00
|
|
|
*
|
|
|
|
* @return string The cleaned url
|
2019-05-01 21:33:33 -04:00
|
|
|
* @throws HTTPException\InternalServerErrorException
|
2017-05-08 02:11:38 -04:00
|
|
|
*/
|
2018-10-09 19:18:47 -04:00
|
|
|
public function removeBaseURL($origURL)
|
2018-01-15 19:13:21 -05:00
|
|
|
{
|
2017-05-08 02:11:38 -04:00
|
|
|
// Remove the hostname from the url if it is an internal link
|
2018-11-08 11:28:29 -05:00
|
|
|
$nurl = Util\Strings::normaliseLink($origURL);
|
|
|
|
$base = Util\Strings::normaliseLink($this->getBaseURL());
|
2017-05-08 02:11:38 -04:00
|
|
|
$url = str_replace($base . '/', '', $nurl);
|
|
|
|
|
|
|
|
// if it is an external link return the orignal value
|
2018-11-08 11:28:29 -05:00
|
|
|
if ($url == Util\Strings::normaliseLink($origURL)) {
|
2018-10-09 19:18:47 -04:00
|
|
|
return $origURL;
|
2017-05-08 02:11:38 -04:00
|
|
|
} else {
|
|
|
|
return $url;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-09 13:58:58 -04:00
|
|
|
/**
|
|
|
|
* Returns the current UserAgent as a String
|
|
|
|
*
|
|
|
|
* @return string the UserAgent as a String
|
2019-05-01 21:33:33 -04:00
|
|
|
* @throws HTTPException\InternalServerErrorException
|
2018-10-09 13:58:58 -04:00
|
|
|
*/
|
|
|
|
public function getUserAgent()
|
2018-01-15 19:13:21 -05:00
|
|
|
{
|
2017-05-08 02:11:38 -04:00
|
|
|
return
|
|
|
|
FRIENDICA_PLATFORM . " '" .
|
|
|
|
FRIENDICA_CODENAME . "' " .
|
|
|
|
FRIENDICA_VERSION . '-' .
|
|
|
|
DB_UPDATE_VERSION . '; ' .
|
2018-10-09 13:58:58 -04:00
|
|
|
$this->getBaseURL();
|
|
|
|
}
|
|
|
|
|
2019-08-12 12:20:22 -04:00
|
|
|
/**
|
|
|
|
* Checks if the site is called via a backend process
|
|
|
|
*
|
|
|
|
* @param Module $module The pre-loaded module (just name, not class!)
|
|
|
|
|
|
|
|
* @return bool True, if the call is a backend call
|
|
|
|
*/
|
|
|
|
private function checkBackend(Module $module)
|
|
|
|
{
|
|
|
|
return basename(($_SERVER['PHP_SELF'] ?? ''), '.php') !== 'index' ||
|
|
|
|
$module->isBackend();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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 02:11:38 -04:00
|
|
|
/**
|
|
|
|
* @brief Checks if the maximum number of database processes is reached
|
|
|
|
*
|
|
|
|
* @return bool Is the limit reached?
|
|
|
|
*/
|
2018-06-30 14:07:01 -04:00
|
|
|
public function isMaxProcessesReached()
|
2018-01-15 19:13:21 -05:00
|
|
|
{
|
2017-06-06 18:18:42 -04:00
|
|
|
// Deactivated, needs more investigating if this check really makes sense
|
|
|
|
return false;
|
2017-05-08 02:11:38 -04:00
|
|
|
|
2018-01-15 19:13:21 -05:00
|
|
|
/*
|
|
|
|
* Commented out to suppress static analyzer issues
|
|
|
|
*
|
2017-05-08 02:11:38 -04:00
|
|
|
if ($this->is_backend()) {
|
|
|
|
$process = 'backend';
|
2019-03-23 10:23:23 -04:00
|
|
|
$max_processes = $this->config->get('system', 'max_processes_backend');
|
2017-05-08 02:11:38 -04:00
|
|
|
if (intval($max_processes) == 0) {
|
|
|
|
$max_processes = 5;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$process = 'frontend';
|
2019-03-23 10:23:23 -04:00
|
|
|
$max_processes = $this->config->get('system', 'max_processes_frontend');
|
2017-05-08 02:11:38 -04:00
|
|
|
if (intval($max_processes) == 0) {
|
|
|
|
$max_processes = 20;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-21 08:40:21 -04:00
|
|
|
$processlist = DBA::processlist();
|
2017-05-08 02:11:38 -04:00
|
|
|
if ($processlist['list'] != '') {
|
2018-10-30 11:43:27 -04:00
|
|
|
Core\Logger::log('Processcheck: Processes: ' . $processlist['amount'] . ' - Processlist: ' . $processlist['list'], Core\Logger::DEBUG);
|
2017-05-08 02:11:38 -04:00
|
|
|
|
|
|
|
if ($processlist['amount'] > $max_processes) {
|
2018-10-30 11:43:27 -04:00
|
|
|
Core\Logger::log('Processcheck: Maximum number of processes for ' . $process . ' tasks (' . $max_processes . ') reached.', Core\Logger::DEBUG);
|
2017-05-08 02:11:38 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2018-01-15 19:13:21 -05:00
|
|
|
*/
|
2017-05-08 02:11:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Checks if the minimal memory is reached
|
|
|
|
*
|
|
|
|
* @return bool Is the memory limit reached?
|
2019-05-01 21:33:33 -04:00
|
|
|
* @throws HTTPException\InternalServerErrorException
|
2017-05-08 02:11:38 -04:00
|
|
|
*/
|
2018-10-09 13:58:58 -04:00
|
|
|
public function isMinMemoryReached()
|
2018-01-15 19:13:21 -05:00
|
|
|
{
|
2019-03-23 10:23:23 -04:00
|
|
|
$min_memory = $this->config->get('system', 'min_memory', 0);
|
2017-05-08 02:11:38 -04:00
|
|
|
if ($min_memory == 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!is_readable('/proc/meminfo')) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$memdata = explode("\n", file_get_contents('/proc/meminfo'));
|
|
|
|
|
2018-01-15 08:05:12 -05:00
|
|
|
$meminfo = [];
|
2017-05-08 02:11:38 -04:00
|
|
|
foreach ($memdata as $line) {
|
2018-09-04 13:48:09 -04:00
|
|
|
$data = explode(':', $line);
|
|
|
|
if (count($data) != 2) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
list($key, $val) = $data;
|
2017-05-08 02:11:38 -04:00
|
|
|
$meminfo[$key] = (int) trim(str_replace('kB', '', $val));
|
|
|
|
$meminfo[$key] = (int) ($meminfo[$key] / 1024);
|
|
|
|
}
|
|
|
|
|
2018-11-19 17:21:40 -05:00
|
|
|
if (!isset($meminfo['MemFree'])) {
|
2017-05-08 02:11:38 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-11-19 17:21:40 -05:00
|
|
|
$free = $meminfo['MemFree'];
|
2017-05-08 02:11:38 -04:00
|
|
|
|
|
|
|
$reached = ($free < $min_memory);
|
|
|
|
|
|
|
|
if ($reached) {
|
2018-10-30 11:43:27 -04:00
|
|
|
Core\Logger::log('Minimal memory reached: ' . $free . '/' . $meminfo['MemTotal'] . ' - limit ' . $min_memory, Core\Logger::DEBUG);
|
2017-05-08 02:11:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return $reached;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Checks if the maximum load is reached
|
|
|
|
*
|
|
|
|
* @return bool Is the load reached?
|
2019-05-01 21:33:33 -04:00
|
|
|
* @throws HTTPException\InternalServerErrorException
|
2017-05-08 02:11:38 -04:00
|
|
|
*/
|
2018-06-30 14:07:01 -04:00
|
|
|
public function isMaxLoadReached()
|
2018-01-15 19:13:21 -05:00
|
|
|
{
|
2019-08-12 12:20:22 -04:00
|
|
|
if ($this->isBackend()) {
|
2017-05-08 02:11:38 -04:00
|
|
|
$process = 'backend';
|
2019-03-23 10:23:23 -04:00
|
|
|
$maxsysload = intval($this->config->get('system', 'maxloadavg'));
|
2017-05-08 02:11:38 -04:00
|
|
|
if ($maxsysload < 1) {
|
|
|
|
$maxsysload = 50;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$process = 'frontend';
|
2019-03-23 10:23:23 -04:00
|
|
|
$maxsysload = intval($this->config->get('system', 'maxloadavg_frontend'));
|
2017-05-08 02:11:38 -04:00
|
|
|
if ($maxsysload < 1) {
|
|
|
|
$maxsysload = 50;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-21 22:24:47 -04:00
|
|
|
$load = Core\System::currentLoad();
|
2017-05-08 02:11:38 -04:00
|
|
|
if ($load) {
|
|
|
|
if (intval($load) > $maxsysload) {
|
2018-10-29 17:20:46 -04:00
|
|
|
Core\Logger::log('system: load ' . $load . ' for ' . $process . ' tasks (' . $maxsysload . ') too high.');
|
2017-05-08 02:11:38 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-07-23 07:40:52 -04: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, ... ]
|
2019-05-01 21:33:33 -04:00
|
|
|
* @throws HTTPException\InternalServerErrorException
|
2018-07-23 07:40:52 -04:00
|
|
|
*/
|
|
|
|
public function proc_run($command, $args)
|
2018-01-15 19:13:21 -05:00
|
|
|
{
|
2017-05-08 02:11:38 -04:00
|
|
|
if (!function_exists('proc_open')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-02-03 16:22:04 -05:00
|
|
|
$cmdline = $this->config->get('config', 'php_path', 'php') . ' ' . escapeshellarg($command);
|
2017-05-08 02:11:38 -04:00
|
|
|
|
2018-07-23 07:40:52 -04: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 02:11:38 -04:00
|
|
|
}
|
|
|
|
|
2018-10-09 13:58:58 -04:00
|
|
|
if ($this->isMinMemoryReached()) {
|
2017-05-08 02:11:38 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-07-02 07:47:42 -04:00
|
|
|
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
|
2019-03-23 10:20:51 -04:00
|
|
|
$resource = proc_open('cmd /c start /b ' . $cmdline, [], $foo, $this->getBasePath());
|
2017-05-08 02:11:38 -04:00
|
|
|
} else {
|
2019-03-23 10:20:51 -04:00
|
|
|
$resource = proc_open($cmdline . ' &', [], $foo, $this->getBasePath());
|
2017-05-08 02:11:38 -04:00
|
|
|
}
|
|
|
|
if (!is_resource($resource)) {
|
2018-10-30 11:43:27 -04:00
|
|
|
Core\Logger::log('We got no resource for command ' . $cmdline, Core\Logger::DEBUG);
|
2017-05-08 02:11:38 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
proc_close($resource);
|
|
|
|
}
|
|
|
|
|
2018-04-06 21:47:16 -04:00
|
|
|
/**
|
|
|
|
* Generates the site's default sender email address
|
|
|
|
*
|
|
|
|
* @return string
|
2019-05-01 21:33:33 -04:00
|
|
|
* @throws HTTPException\InternalServerErrorException
|
2018-04-06 21:47:16 -04:00
|
|
|
*/
|
|
|
|
public function getSenderEmailAddress()
|
|
|
|
{
|
2019-03-23 10:23:23 -04:00
|
|
|
$sender_email = $this->config->get('config', 'sender_email');
|
2018-04-06 21:47:16 -04:00
|
|
|
if (empty($sender_email)) {
|
2019-04-08 17:12:34 -04:00
|
|
|
$hostname = $this->baseURL->getHostname();
|
2018-04-06 21:47:16 -04:00
|
|
|
if (strpos($hostname, ':')) {
|
|
|
|
$hostname = substr($hostname, 0, strpos($hostname, ':'));
|
|
|
|
}
|
|
|
|
|
2018-04-11 02:17:44 -04:00
|
|
|
$sender_email = 'noreply@' . $hostname;
|
2018-04-06 21:47:16 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return $sender_email;
|
|
|
|
}
|
2018-04-28 06:36:40 -04:00
|
|
|
|
2018-04-28 18:30:13 -04:00
|
|
|
/**
|
|
|
|
* Returns the current theme name.
|
|
|
|
*
|
2018-10-09 13:58:58 -04:00
|
|
|
* @return string the name of the current theme
|
2019-05-01 21:33:33 -04:00
|
|
|
* @throws HTTPException\InternalServerErrorException
|
2018-04-28 18:30:13 -04:00
|
|
|
*/
|
|
|
|
public function getCurrentTheme()
|
|
|
|
{
|
2018-10-06 10:27:20 -04:00
|
|
|
if ($this->getMode()->isInstall()) {
|
2018-05-20 01:44:20 -04:00
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2018-12-29 00:18:52 -05:00
|
|
|
if (!$this->currentTheme) {
|
|
|
|
$this->computeCurrentTheme();
|
|
|
|
}
|
2018-04-28 18:30:13 -04:00
|
|
|
|
2018-10-09 13:58:58 -04:00
|
|
|
return $this->currentTheme;
|
2018-04-28 18:30:13 -04:00
|
|
|
}
|
|
|
|
|
2018-12-29 00:18:52 -05:00
|
|
|
public function setCurrentTheme($theme)
|
|
|
|
{
|
|
|
|
$this->currentTheme = $theme;
|
|
|
|
}
|
|
|
|
|
2018-04-28 18:30:13 -04:00
|
|
|
/**
|
|
|
|
* Computes the current theme name based on the node settings, the user settings and the device type
|
|
|
|
*
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
|
|
|
private function computeCurrentTheme()
|
|
|
|
{
|
2019-03-23 10:23:23 -04:00
|
|
|
$system_theme = $this->config->get('system', 'theme');
|
2018-04-28 18:30:13 -04:00
|
|
|
if (!$system_theme) {
|
2019-07-09 15:44:02 -04:00
|
|
|
throw new Exception($this->l10n->t('No system theme config value set.'));
|
2018-04-28 18:30:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Sane default
|
2018-10-09 13:58:58 -04:00
|
|
|
$this->currentTheme = $system_theme;
|
2018-04-28 18:30:13 -04:00
|
|
|
|
|
|
|
$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 08:19:26 -04:00
|
|
|
$user = DBA::selectFirst('user', ['theme'], ['uid' => $this->profile_uid]);
|
2018-10-21 22:24:47 -04:00
|
|
|
if (DBA::isResult($user) && !Core\PConfig::get(local_user(), 'system', 'always_my_theme')) {
|
2018-04-28 18:30:13 -04:00
|
|
|
$page_theme = $user['theme'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-05 09:56:21 -04:00
|
|
|
$user_theme = Core\Session::get('theme', $system_theme);
|
2018-07-10 08:27:56 -04:00
|
|
|
|
2018-04-28 18:30:13 -04:00
|
|
|
// Specific mobile theme override
|
2018-08-05 09:56:21 -04:00
|
|
|
if (($this->is_mobile || $this->is_tablet) && Core\Session::get('show-mobile', true)) {
|
2019-03-23 10:23:23 -04:00
|
|
|
$system_mobile_theme = $this->config->get('system', 'mobile-theme');
|
2018-08-05 09:56:21 -04:00
|
|
|
$user_mobile_theme = Core\Session::get('mobile-theme', $system_mobile_theme);
|
2018-04-28 18:30:13 -04: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;
|
|
|
|
}
|
|
|
|
|
2019-03-31 21:50:00 -04:00
|
|
|
$theme_name = Strings::sanitizeFilePathItem($theme_name);
|
2018-04-28 18:30:13 -04:00
|
|
|
if ($theme_name
|
2019-03-31 21:50:00 -04:00
|
|
|
&& in_array($theme_name, Theme::getAllowedList())
|
2018-04-28 18:30:13 -04:00
|
|
|
&& (file_exists('view/theme/' . $theme_name . '/style.css')
|
|
|
|
|| file_exists('view/theme/' . $theme_name . '/style.php'))
|
|
|
|
) {
|
2018-10-09 13:58:58 -04:00
|
|
|
$this->currentTheme = $theme_name;
|
2018-04-28 18:30:13 -04: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
|
2019-05-01 21:33:33 -04:00
|
|
|
* @throws HTTPException\InternalServerErrorException
|
2018-04-28 18:30:13 -04:00
|
|
|
*/
|
|
|
|
public function getCurrentThemeStylesheetPath()
|
|
|
|
{
|
|
|
|
return Core\Theme::getStylesheetPath($this->getCurrentTheme());
|
|
|
|
}
|
2018-10-13 12:57:31 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if request was an AJAX (xmlhttprequest) request.
|
|
|
|
*
|
|
|
|
* @return boolean true if it was an AJAX request
|
|
|
|
*/
|
|
|
|
public function isAjax()
|
|
|
|
{
|
|
|
|
return $this->isAjax;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-08-12 12:13:58 -04:00
|
|
|
* @deprecated use Arguments->get() instead
|
2018-10-13 12:57:31 -04:00
|
|
|
*
|
2019-08-12 12:13:58 -04:00
|
|
|
* @see App\Arguments
|
2018-10-13 12:57:31 -04:00
|
|
|
*/
|
|
|
|
public function getArgumentValue($position, $default = '')
|
|
|
|
{
|
2019-08-12 12:13:58 -04:00
|
|
|
return $this->args->get($position, $default);
|
2018-10-13 12:57:31 -04:00
|
|
|
}
|
2018-10-20 12:19:55 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the base url for use in cmdline programs which don't have
|
|
|
|
* $_SERVER variables
|
|
|
|
*/
|
|
|
|
public function checkURL()
|
|
|
|
{
|
2019-03-23 10:23:23 -04:00
|
|
|
$url = $this->config->get('system', 'url');
|
2018-10-20 12:19:55 -04:00
|
|
|
|
|
|
|
// if the url isn't set or the stored url is radically different
|
|
|
|
// than the currently visited url, store the current value accordingly.
|
|
|
|
// "Radically different" ignores common variations such as http vs https
|
|
|
|
// and www.example.com vs example.com.
|
|
|
|
// We will only change the url to an ip address if there is no existing setting
|
|
|
|
|
2019-04-08 17:12:34 -04:00
|
|
|
if (empty($url) || (!Util\Strings::compareLink($url, $this->getBaseURL())) && (!preg_match("/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/", $this->baseURL->getHostname()))) {
|
2019-03-23 10:23:23 -04:00
|
|
|
$this->config->set('system', 'url', $this->getBaseURL());
|
2018-10-21 22:24:47 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Frontend App script
|
|
|
|
*
|
|
|
|
* The App object behaves like a container and a dispatcher at the same time, including a representation of the
|
|
|
|
* request and a representation of the response.
|
|
|
|
*
|
|
|
|
* This probably should change to limit the size of this monster method.
|
2019-08-12 12:13:58 -04:00
|
|
|
*
|
|
|
|
* @param App\Module $module The determined module
|
2018-10-21 22:24:47 -04:00
|
|
|
*/
|
2019-08-12 12:13:58 -04:00
|
|
|
public function runFrontend(App\Module $module, App\Router $router, PConfiguration $pconfig)
|
2018-10-21 22:24:47 -04:00
|
|
|
{
|
2019-08-12 12:13:58 -04:00
|
|
|
$moduleName = $module->getName();
|
|
|
|
|
2019-07-23 20:01:45 -04:00
|
|
|
try {
|
|
|
|
// Missing DB connection: ERROR
|
|
|
|
if ($this->getMode()->has(App\Mode::LOCALCONFIGPRESENT) && !$this->getMode()->has(App\Mode::DBAVAILABLE)) {
|
|
|
|
throw new HTTPException\InternalServerErrorException('Apologies but the website is unavailable at the moment.');
|
|
|
|
}
|
2018-10-21 22:24:47 -04:00
|
|
|
|
2019-07-23 20:01:45 -04:00
|
|
|
// Max Load Average reached: ERROR
|
|
|
|
if ($this->isMaxProcessesReached() || $this->isMaxLoadReached()) {
|
|
|
|
header('Retry-After: 120');
|
2019-08-12 12:13:58 -04:00
|
|
|
header('Refresh: 120; url=' . $this->baseURL->get() . "/" . $this->args->getQueryString());
|
2018-10-21 22:24:47 -04:00
|
|
|
|
2019-07-23 20:01:45 -04:00
|
|
|
throw new HTTPException\ServiceUnavailableException('The node is currently overloaded. Please try again later.');
|
2018-10-21 22:24:47 -04:00
|
|
|
}
|
|
|
|
|
2019-07-23 20:01:45 -04:00
|
|
|
if (!$this->getMode()->isInstall()) {
|
|
|
|
// Force SSL redirection
|
|
|
|
if ($this->baseURL->checkRedirectHttps()) {
|
2019-08-12 12:13:58 -04:00
|
|
|
System::externalRedirect($this->baseURL->get() . '/' . $this->args->getQueryString());
|
2019-07-23 20:01:45 -04:00
|
|
|
}
|
2018-10-21 22:24:47 -04:00
|
|
|
|
2019-07-23 20:01:45 -04:00
|
|
|
Core\Session::init();
|
|
|
|
Core\Hook::callAll('init_1');
|
2019-03-19 02:44:51 -04:00
|
|
|
}
|
|
|
|
|
2019-07-23 20:01:45 -04:00
|
|
|
// Exclude the backend processes from the session management
|
2019-08-13 13:05:32 -04:00
|
|
|
if (!$this->isBackend()) {
|
2019-07-23 20:01:45 -04:00
|
|
|
$stamp1 = microtime(true);
|
|
|
|
session_start();
|
|
|
|
$this->profiler->saveTimestamp($stamp1, 'parser', Core\System::callstack());
|
|
|
|
$this->l10n->setSessionVariable();
|
|
|
|
$this->l10n->setLangFromSession();
|
|
|
|
} else {
|
|
|
|
$_SESSION = [];
|
|
|
|
Core\Worker::executeIfIdle();
|
|
|
|
}
|
2019-05-26 16:15:38 -04:00
|
|
|
|
2019-07-23 20:01:45 -04:00
|
|
|
if ($this->getMode()->isNormal()) {
|
|
|
|
$requester = HTTPSignature::getSigner('', $_SERVER);
|
|
|
|
if (!empty($requester)) {
|
|
|
|
Profile::addVisitorCookieForHandle($requester);
|
2018-10-21 22:24:47 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-23 20:01:45 -04:00
|
|
|
// ZRL
|
|
|
|
if (!empty($_GET['zrl']) && $this->getMode()->isNormal()) {
|
|
|
|
if (!local_user()) {
|
|
|
|
// Only continue when the given profile link seems valid
|
|
|
|
// Valid profile links contain a path with "/profile/" and no query parameters
|
|
|
|
if ((parse_url($_GET['zrl'], PHP_URL_QUERY) == "") &&
|
|
|
|
strstr(parse_url($_GET['zrl'], PHP_URL_PATH), "/profile/")) {
|
|
|
|
if (Core\Session::get('visitor_home') != $_GET["zrl"]) {
|
|
|
|
Core\Session::set('my_url', $_GET['zrl']);
|
|
|
|
Core\Session::set('authenticated', 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
Model\Profile::zrlInit($this);
|
|
|
|
} else {
|
|
|
|
// Someone came with an invalid parameter, maybe as a DDoS attempt
|
|
|
|
// We simply stop processing here
|
|
|
|
Core\Logger::log("Invalid ZRL parameter " . $_GET['zrl'], Core\Logger::DEBUG);
|
|
|
|
throw new HTTPException\ForbiddenException();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-10-21 22:24:47 -04:00
|
|
|
|
2019-07-23 20:01:45 -04:00
|
|
|
if (!empty($_GET['owt']) && $this->getMode()->isNormal()) {
|
|
|
|
$token = $_GET['owt'];
|
|
|
|
Model\Profile::openWebAuthInit($token);
|
|
|
|
}
|
2018-10-21 22:24:47 -04:00
|
|
|
|
2019-08-12 12:13:58 -04:00
|
|
|
Login::sessionAuth();
|
2018-10-21 22:24:47 -04:00
|
|
|
|
2019-07-23 20:01:45 -04:00
|
|
|
if (empty($_SESSION['authenticated'])) {
|
|
|
|
header('X-Account-Management-Status: none');
|
|
|
|
}
|
2018-10-21 22:24:47 -04:00
|
|
|
|
2019-07-23 20:01:45 -04:00
|
|
|
$_SESSION['sysmsg'] = Core\Session::get('sysmsg', []);
|
|
|
|
$_SESSION['sysmsg_info'] = Core\Session::get('sysmsg_info', []);
|
|
|
|
$_SESSION['last_updated'] = Core\Session::get('last_updated', []);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* check_config() is responsible for running update scripts. These automatically
|
|
|
|
* update the DB schema whenever we push a new one out. It also checks to see if
|
|
|
|
* any addons have been added or removed and reacts accordingly.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// in install mode, any url loads install module
|
|
|
|
// but we need "view" module for stylesheet
|
2019-08-12 12:13:58 -04:00
|
|
|
if ($this->getMode()->isInstall() && $moduleName !== 'install') {
|
2019-07-23 20:01:45 -04:00
|
|
|
$this->internalRedirect('install');
|
2019-08-12 12:13:58 -04:00
|
|
|
} elseif (!$this->getMode()->isInstall() && !$this->getMode()->has(App\Mode::MAINTENANCEDISABLED) && $moduleName !== 'maintenance') {
|
2019-07-23 20:01:45 -04:00
|
|
|
$this->internalRedirect('maintenance');
|
|
|
|
} else {
|
|
|
|
$this->checkURL();
|
|
|
|
Core\Update::check($this->getBasePath(), false, $this->getMode());
|
|
|
|
Core\Addon::loadAddons();
|
|
|
|
Core\Hook::loadHooks();
|
|
|
|
}
|
2018-10-21 22:24:47 -04:00
|
|
|
|
2019-07-23 20:01:45 -04:00
|
|
|
$this->page = [
|
|
|
|
'aside' => '',
|
|
|
|
'bottom' => '',
|
|
|
|
'content' => '',
|
|
|
|
'footer' => '',
|
|
|
|
'htmlhead' => '',
|
|
|
|
'nav' => '',
|
|
|
|
'page_title' => '',
|
|
|
|
'right_aside' => '',
|
|
|
|
'template' => '',
|
|
|
|
'title' => ''
|
|
|
|
];
|
|
|
|
|
|
|
|
// Compatibility with the Android Diaspora client
|
2019-08-12 12:13:58 -04:00
|
|
|
if ($moduleName == 'stream') {
|
2019-07-23 20:01:45 -04:00
|
|
|
$this->internalRedirect('network?order=post');
|
|
|
|
}
|
2018-10-21 22:24:47 -04:00
|
|
|
|
2019-08-12 12:13:58 -04:00
|
|
|
if ($moduleName == 'conversations') {
|
2019-07-23 20:01:45 -04:00
|
|
|
$this->internalRedirect('message');
|
|
|
|
}
|
2018-10-21 22:24:47 -04:00
|
|
|
|
2019-08-12 12:13:58 -04:00
|
|
|
if ($moduleName == 'commented') {
|
2019-07-23 20:01:45 -04:00
|
|
|
$this->internalRedirect('network?order=comment');
|
|
|
|
}
|
2018-10-21 22:24:47 -04:00
|
|
|
|
2019-08-12 12:13:58 -04:00
|
|
|
if ($moduleName == 'liked') {
|
2019-07-23 20:01:45 -04:00
|
|
|
$this->internalRedirect('network?order=comment');
|
|
|
|
}
|
2018-10-21 22:24:47 -04:00
|
|
|
|
2019-08-12 12:13:58 -04:00
|
|
|
if ($moduleName == 'activity') {
|
2019-07-23 20:01:45 -04:00
|
|
|
$this->internalRedirect('network?conv=1');
|
|
|
|
}
|
2018-10-21 22:24:47 -04:00
|
|
|
|
2019-08-12 12:13:58 -04:00
|
|
|
if (($moduleName == 'status_messages') && ($this->args->getCommand() == 'status_messages/new')) {
|
2019-07-23 20:01:45 -04:00
|
|
|
$this->internalRedirect('bookmarklet');
|
|
|
|
}
|
2018-10-21 22:24:47 -04:00
|
|
|
|
2019-08-12 12:13:58 -04:00
|
|
|
if (($moduleName == 'user') && ($this->args->getCommand() == 'user/edit')) {
|
2019-07-23 20:01:45 -04:00
|
|
|
$this->internalRedirect('settings');
|
|
|
|
}
|
2018-10-21 22:24:47 -04:00
|
|
|
|
2019-08-12 12:13:58 -04:00
|
|
|
if (($moduleName == 'tag_followings') && ($this->args->getCommand() == 'tag_followings/manage')) {
|
2019-07-23 20:01:45 -04:00
|
|
|
$this->internalRedirect('search');
|
|
|
|
}
|
2018-10-21 22:24:47 -04:00
|
|
|
|
2019-07-23 20:01:45 -04:00
|
|
|
// Initialize module that can set the current theme in the init() method, either directly or via App->profile_uid
|
2019-08-12 12:13:58 -04:00
|
|
|
$this->page['page_title'] = $moduleName;
|
2018-10-21 22:24:47 -04:00
|
|
|
|
2019-08-12 12:13:58 -04:00
|
|
|
// determine the module class and save it to the module instance
|
|
|
|
// @todo there's an implicit dependency due SESSION::start(), so it has to be called here (yet)
|
|
|
|
$module = $module->determineClass($this->args, $router, $this->config);
|
2018-10-21 22:24:47 -04:00
|
|
|
|
2019-08-12 12:13:58 -04:00
|
|
|
// Let the module run it's internal process (init, get, post, ...)
|
|
|
|
$module->run($this->l10n, $this, $this->logger, $this->getCurrentTheme(), $_SERVER, $_POST);
|
2018-11-20 16:34:39 -05:00
|
|
|
|
2019-05-01 21:33:33 -04:00
|
|
|
} catch(HTTPException $e) {
|
2019-08-12 12:13:58 -04:00
|
|
|
ModuleHTTPException::rawContent($e);
|
2019-05-01 21:33:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
$content = '';
|
2018-10-21 22:24:47 -04:00
|
|
|
|
2019-05-01 21:33:33 -04:00
|
|
|
try {
|
2019-08-12 12:13:58 -04:00
|
|
|
$moduleClass = $module->getClassName();
|
|
|
|
|
2019-05-01 21:33:33 -04:00
|
|
|
$arr = ['content' => $content];
|
2019-08-12 12:13:58 -04:00
|
|
|
Core\Hook::callAll($moduleClass . '_mod_content', $arr);
|
2019-05-01 21:33:33 -04:00
|
|
|
$content = $arr['content'];
|
2019-08-12 12:13:58 -04:00
|
|
|
$arr = ['content' => call_user_func([$moduleClass, 'content'])];
|
|
|
|
Core\Hook::callAll($moduleClass . '_mod_aftercontent', $arr);
|
2019-05-01 21:33:33 -04:00
|
|
|
$content .= $arr['content'];
|
|
|
|
} catch(HTTPException $e) {
|
2019-08-12 12:13:58 -04:00
|
|
|
$content = ModuleHTTPException::content($e);
|
2018-11-21 09:13:24 -05:00
|
|
|
}
|
2018-10-21 22:24:47 -04:00
|
|
|
|
2018-11-21 09:13:24 -05:00
|
|
|
// initialise content region
|
|
|
|
if ($this->getMode()->isNormal()) {
|
2018-12-26 01:06:24 -05:00
|
|
|
Core\Hook::callAll('page_content_top', $this->page['content']);
|
2018-12-29 00:18:52 -05:00
|
|
|
}
|
|
|
|
|
2018-11-21 09:13:24 -05:00
|
|
|
$this->page['content'] .= $content;
|
|
|
|
|
2018-10-21 22:24:47 -04:00
|
|
|
/* Create the page head after setting the language
|
|
|
|
* and getting any auth credentials.
|
|
|
|
*
|
|
|
|
* Moved initHead() and initFooter() to after
|
|
|
|
* all the module functions have executed so that all
|
|
|
|
* theme choices made by the modules can take effect.
|
|
|
|
*/
|
2019-08-12 12:13:58 -04:00
|
|
|
$this->initHead($module, $pconfig);
|
2018-10-21 22:24:47 -04:00
|
|
|
|
|
|
|
/* Build the page ending -- this is stuff that goes right before
|
|
|
|
* the closing </body> tag
|
|
|
|
*/
|
|
|
|
$this->initFooter();
|
|
|
|
|
2019-04-13 10:32:15 -04:00
|
|
|
if (!$this->isAjax()) {
|
|
|
|
Core\Hook::callAll('page_end', $this->page['content']);
|
|
|
|
}
|
2018-10-21 22:24:47 -04:00
|
|
|
|
|
|
|
// Add the navigation (menu) template
|
2019-08-12 12:13:58 -04:00
|
|
|
if ($moduleName != 'install' && $moduleName != 'maintenance') {
|
2018-10-31 10:44:06 -04:00
|
|
|
$this->page['htmlhead'] .= Core\Renderer::replaceMacros(Core\Renderer::getMarkupTemplate('nav_head.tpl'), []);
|
2018-10-22 14:44:55 -04:00
|
|
|
$this->page['nav'] = Content\Nav::build($this);
|
2018-10-21 22:24:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Build the page - now that we have all the components
|
|
|
|
if (isset($_GET["mode"]) && (($_GET["mode"] == "raw") || ($_GET["mode"] == "minimal"))) {
|
|
|
|
$doc = new DOMDocument();
|
|
|
|
|
|
|
|
$target = new DOMDocument();
|
|
|
|
$target->loadXML("<root></root>");
|
|
|
|
|
|
|
|
$content = mb_convert_encoding($this->page["content"], 'HTML-ENTITIES', "UTF-8");
|
|
|
|
|
|
|
|
/// @TODO one day, kill those error-surpressing @ stuff, or PHP should ban it
|
|
|
|
@$doc->loadHTML($content);
|
|
|
|
|
|
|
|
$xpath = new DOMXPath($doc);
|
|
|
|
|
|
|
|
$list = $xpath->query("//*[contains(@id,'tread-wrapper-')]"); /* */
|
|
|
|
|
|
|
|
foreach ($list as $item) {
|
|
|
|
$item = $target->importNode($item, true);
|
|
|
|
|
|
|
|
// And then append it to the target
|
|
|
|
$target->documentElement->appendChild($item);
|
|
|
|
}
|
|
|
|
|
2019-01-07 12:51:48 -05:00
|
|
|
if ($_GET["mode"] == "raw") {
|
|
|
|
header("Content-type: text/html; charset=utf-8");
|
2018-10-21 22:24:47 -04:00
|
|
|
|
2019-01-07 12:51:48 -05:00
|
|
|
echo substr($target->saveHTML(), 6, -8);
|
2018-10-21 22:24:47 -04:00
|
|
|
|
2019-01-07 12:51:48 -05:00
|
|
|
exit();
|
|
|
|
}
|
2018-10-21 22:24:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
$page = $this->page;
|
|
|
|
$profile = $this->profile;
|
|
|
|
|
|
|
|
header("X-Friendica-Version: " . FRIENDICA_VERSION);
|
|
|
|
header("Content-type: text/html; charset=utf-8");
|
|
|
|
|
2019-04-08 17:12:34 -04:00
|
|
|
if ($this->config->get('system', 'hsts') && ($this->baseURL->getSSLPolicy() == BaseUrl::SSL_POLICY_FULL)) {
|
2018-10-21 22:24:47 -04:00
|
|
|
header("Strict-Transport-Security: max-age=31536000");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Some security stuff
|
|
|
|
header('X-Content-Type-Options: nosniff');
|
|
|
|
header('X-XSS-Protection: 1; mode=block');
|
|
|
|
header('X-Permitted-Cross-Domain-Policies: none');
|
|
|
|
header('X-Frame-Options: sameorigin');
|
|
|
|
|
|
|
|
// Things like embedded OSM maps don't work, when this is enabled
|
|
|
|
// header("Content-Security-Policy: default-src 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; connect-src 'self'; style-src 'self' 'unsafe-inline'; font-src 'self'; img-src 'self' https: data:; media-src 'self' https:; child-src 'self' https:; object-src 'none'");
|
|
|
|
|
2018-10-22 08:17:55 -04:00
|
|
|
/* We use $_GET["mode"] for special page templates. So we will check if we have
|
2018-10-21 22:24:47 -04:00
|
|
|
* to load another page template than the default one.
|
|
|
|
* The page templates are located in /view/php/ or in the theme directory.
|
|
|
|
*/
|
|
|
|
if (isset($_GET["mode"])) {
|
|
|
|
$template = Core\Theme::getPathForFile($_GET["mode"] . '.php');
|
|
|
|
}
|
|
|
|
|
|
|
|
// If there is no page template use the default page template
|
|
|
|
if (empty($template)) {
|
|
|
|
$template = Core\Theme::getPathForFile("default.php");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Theme templates expect $a as an App instance
|
|
|
|
$a = $this;
|
|
|
|
|
2018-10-26 08:13:31 -04:00
|
|
|
// Used as is in view/php/default.php
|
2019-07-09 15:44:02 -04:00
|
|
|
$lang = $this->l10n->getCurrentLang();
|
2018-10-26 08:13:31 -04:00
|
|
|
|
2018-10-21 22:24:47 -04:00
|
|
|
/// @TODO Looks unsafe (remote-inclusion), is maybe not but Core\Theme::getPathForFile() uses file_exists() but does not escape anything
|
|
|
|
require_once $template;
|
2018-10-20 12:19:55 -04:00
|
|
|
}
|
2018-10-13 14:02:04 -04:00
|
|
|
|
|
|
|
/**
|
2018-10-19 17:42:33 -04:00
|
|
|
* Redirects to another module relative to the current Friendica base.
|
2018-10-19 14:11:27 -04:00
|
|
|
* If you want to redirect to a external URL, use System::externalRedirectTo()
|
2018-10-13 14:02:04 -04:00
|
|
|
*
|
|
|
|
* @param string $toUrl The destination URL (Default is empty, which is the default page of the Friendica node)
|
|
|
|
* @param bool $ssl if true, base URL will try to get called with https:// (works just for relative paths)
|
2018-10-19 14:11:27 -04:00
|
|
|
*
|
2019-05-01 21:33:33 -04:00
|
|
|
* @throws HTTPException\InternalServerErrorException In Case the given URL is not relative to the Friendica node
|
2018-10-13 14:02:04 -04:00
|
|
|
*/
|
2018-10-19 14:11:27 -04:00
|
|
|
public function internalRedirect($toUrl = '', $ssl = false)
|
2018-10-13 14:02:04 -04:00
|
|
|
{
|
2018-11-30 06:27:17 -05:00
|
|
|
if (!empty(parse_url($toUrl, PHP_URL_SCHEME))) {
|
2019-05-01 21:33:33 -04:00
|
|
|
throw new HTTPException\InternalServerErrorException("'$toUrl is not a relative path, please use System::externalRedirectTo");
|
2018-10-13 14:02:04 -04:00
|
|
|
}
|
|
|
|
|
2018-10-19 14:11:27 -04:00
|
|
|
$redirectTo = $this->getBaseURL($ssl) . '/' . ltrim($toUrl, '/');
|
2018-10-22 18:07:00 -04:00
|
|
|
Core\System::externalRedirect($redirectTo);
|
2018-10-13 14:02:04 -04:00
|
|
|
}
|
2018-10-24 14:16:14 -04:00
|
|
|
|
|
|
|
/**
|
2018-10-24 14:52:38 -04:00
|
|
|
* Automatically redirects to relative or absolute URL
|
2018-10-24 14:16:14 -04:00
|
|
|
* Should only be used if it isn't clear if the URL is either internal or external
|
|
|
|
*
|
|
|
|
* @param string $toUrl The target URL
|
2019-05-01 21:33:33 -04:00
|
|
|
* @throws HTTPException\InternalServerErrorException
|
2018-10-24 14:16:14 -04:00
|
|
|
*/
|
|
|
|
public function redirect($toUrl)
|
|
|
|
{
|
2018-11-30 06:27:17 -05:00
|
|
|
if (!empty(parse_url($toUrl, PHP_URL_SCHEME))) {
|
2018-10-24 14:24:22 -04:00
|
|
|
Core\System::externalRedirect($toUrl);
|
2018-10-24 14:16:14 -04:00
|
|
|
} else {
|
|
|
|
$this->internalRedirect($toUrl);
|
|
|
|
}
|
|
|
|
}
|
2017-05-08 02:11:38 -04:00
|
|
|
}
|