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;
|
|
|
|
use Exception;
|
2019-08-12 12:13:58 -04:00
|
|
|
use Friendica\App\Arguments;
|
2019-08-15 11:23:00 -04:00
|
|
|
use Friendica\App\BaseURL;
|
2019-08-15 14:52:42 -04:00
|
|
|
use Friendica\App\Page;
|
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;
|
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-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() */
|
2019-08-15 11:04:36 -04:00
|
|
|
public $query_string;
|
2019-08-15 14:52:42 -04:00
|
|
|
/**
|
|
|
|
* @var Page The current page environment
|
|
|
|
*/
|
2019-08-15 11:04:36 -04:00
|
|
|
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;
|
2019-08-15 11:25:03 -04: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;
|
2019-08-15 11:27:05 -04:00
|
|
|
public $is_mobile;
|
|
|
|
public $is_tablet;
|
2019-08-15 10:18:08 -04: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
|
|
|
|
|
2019-08-15 10:18:08 -04:00
|
|
|
public $sourcename = '';
|
|
|
|
public $videowidth = 425;
|
|
|
|
public $videoheight = 350;
|
|
|
|
public $force_max_items = 0;
|
2017-05-08 02:11:38 -04:00
|
|
|
public $theme_events_in_profile = true;
|
2019-08-15 14:52:42 -04:00
|
|
|
public $queue;
|
2018-09-20 21:01:05 -04:00
|
|
|
|
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 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;
|
|
|
|
|
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
|
|
|
/**
|
2019-08-15 14:52:42 -04:00
|
|
|
* @deprecated 2019.09 - use Page->registerStylesheet instead
|
|
|
|
* @see Page::registerStylesheet()
|
2018-09-21 09:54:40 -04:00
|
|
|
*/
|
2018-09-20 21:30:51 -04:00
|
|
|
public function registerStylesheet($path)
|
|
|
|
{
|
2019-08-15 14:52:42 -04:00
|
|
|
$this->page->registerStylesheet($path);
|
2018-09-20 21:30:51 -04:00
|
|
|
}
|
|
|
|
|
2018-09-21 09:54:40 -04:00
|
|
|
/**
|
2019-08-15 14:52:42 -04:00
|
|
|
* @deprecated 2019.09 - use Page->registerFooterScript instead
|
|
|
|
* @see Page::registerFooterScript()
|
2018-09-21 09:54:40 -04:00
|
|
|
*/
|
2018-09-20 21:01:05 -04:00
|
|
|
public function registerFooterScript($path)
|
|
|
|
{
|
2019-08-15 14:52:42 -04:00
|
|
|
$this->page->registerFooterScript($path);
|
2018-09-20 21:01:05 -04:00
|
|
|
}
|
|
|
|
|
2017-05-08 02:11:38 -04:00
|
|
|
/**
|
2019-08-15 10:18:08 -04:00
|
|
|
* @param Database $database The Friendica Database
|
|
|
|
* @param Configuration $config The Configuration
|
|
|
|
* @param App\Mode $mode The mode of this Friendica app
|
|
|
|
* @param App\Router $router The router of this Friendica app
|
|
|
|
* @param BaseURL $baseURL The full base URL of this Friendica app
|
|
|
|
* @param LoggerInterface $logger The current app logger
|
|
|
|
* @param Profiler $profiler The profiler of this application
|
|
|
|
* @param L10n $l10n The translator instance
|
|
|
|
* @param App\Arguments $args The Friendica Arguments of the call
|
|
|
|
* @param MobileDetect $mobileDetect A mobile detection class
|
2017-05-08 02:11:38 -04:00
|
|
|
*/
|
2019-08-15 14:52:42 -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, App\Module $module, App\Page $page, MobileDetect $mobileDetect)
|
2018-01-15 19:13:21 -05:00
|
|
|
{
|
2019-08-15 10:18:08 -04:00
|
|
|
$this->database = $database;
|
|
|
|
$this->config = $config;
|
|
|
|
$this->mode = $mode;
|
|
|
|
$this->router = $router;
|
|
|
|
$this->baseURL = $baseURL;
|
|
|
|
$this->profiler = $profiler;
|
|
|
|
$this->logger = $logger;
|
|
|
|
$this->l10n = $l10n;
|
|
|
|
$this->args = $args;
|
|
|
|
$this->mobileDetect = $mobileDetect;
|
|
|
|
|
|
|
|
$this->cmd = $args->getCommand();
|
|
|
|
$this->argv = $args->getArgv();
|
|
|
|
$this->argc = $args->getArgc();
|
|
|
|
$this->query_string = $args->getQueryString();
|
2019-08-15 11:47:08 -04:00
|
|
|
$this->module = $module->getName();
|
2019-08-15 14:52:42 -04:00
|
|
|
$this->page = $page;
|
2017-10-11 14:21:10 -04:00
|
|
|
|
2019-08-15 10:18:08 -04:00
|
|
|
$this->is_mobile = $mobileDetect->isMobile();
|
|
|
|
$this->is_tablet = $mobileDetect->isTablet();
|
2017-05-08 02:11:38 -04:00
|
|
|
|
2019-08-15 10:18:08 -04:00
|
|
|
$this->isAjax = strtolower(defaults($_SERVER, 'HTTP_X_REQUESTED_WITH', '')) == 'xmlhttprequest';
|
|
|
|
|
|
|
|
$this->load();
|
|
|
|
}
|
2017-05-08 02:11:38 -04:00
|
|
|
|
2019-08-15 10:18:08 -04:00
|
|
|
/**
|
|
|
|
* Load the whole app instance
|
|
|
|
*/
|
|
|
|
public function load()
|
|
|
|
{
|
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-15 10:18:08 -04:00
|
|
|
$this->profiler->reset();
|
2018-06-25 20:38:41 -04:00
|
|
|
|
2019-08-15 10:18:08 -04:00
|
|
|
if ($this->mode->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();
|
2019-08-15 10:18:08 -04:00
|
|
|
// Register template engines
|
|
|
|
Core\Renderer::registerTemplateEngine('Friendica\Render\FriendicaSmartyEngine');
|
2018-08-27 00:15:55 -04:00
|
|
|
}
|
|
|
|
|
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
|
2019-08-15 10:18:08 -04:00
|
|
|
*
|
2019-04-08 15:12:10 -04:00
|
|
|
* @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
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-08-15 10:18:08 -04:00
|
|
|
* @brief Initializes the baseurl components
|
2017-05-08 02:11:38 -04:00
|
|
|
*
|
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
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-08-15 11:25:03 -04: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-08-15 11:23:00 -04:00
|
|
|
*
|
|
|
|
* @deprecated 2019.09 - Use BaseURL->remove() instead
|
2019-08-15 11:25:03 -04:00
|
|
|
* @see BaseURL::remove()
|
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
|
|
|
{
|
2019-08-15 11:23:00 -04:00
|
|
|
return $this->baseURL->remove($origURL);
|
2017-05-08 02:11:38 -04:00
|
|
|
}
|
|
|
|
|
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
|
|
|
/**
|
|
|
|
* Returns true, if the call is from a backend node (f.e. from a worker)
|
|
|
|
*
|
|
|
|
* @return bool Is it a known backend?
|
2019-08-15 09:51:15 -04:00
|
|
|
*
|
|
|
|
* @deprecated 2019.09 - use App\Mode->isBackend() instead
|
2019-08-15 11:25:03 -04:00
|
|
|
* @see App\Mode::isBackend()
|
2019-08-15 10:25:34 -04:00
|
|
|
* Use BaseObject::getClass(App\Mode::class) to get the global instance of Mode
|
2019-08-12 12:20:22 -04:00
|
|
|
*/
|
|
|
|
public function isBackend()
|
|
|
|
{
|
2019-08-15 09:51:15 -04:00
|
|
|
return $this->mode->isBackend();
|
2019-08-12 12:20:22 -04:00
|
|
|
}
|
|
|
|
|
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'] != '') {
|
2019-08-15 11:10:14 -04:00
|
|
|
$this->logger->debug('Processcheck: Processes: ' . $processlist['amount'] . ' - Processlist: ' . $processlist['list']);
|
2017-05-08 02:11:38 -04:00
|
|
|
|
|
|
|
if ($processlist['amount'] > $max_processes) {
|
2019-08-15 11:10:14 -04:00
|
|
|
$this->logger->debug('Processcheck: Maximum number of processes for ' . $process . ' tasks (' . $max_processes . ') reached.');
|
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;
|
2019-08-15 10:18:08 -04:00
|
|
|
$meminfo[$key] = (int)trim(str_replace('kB', '', $val));
|
|
|
|
$meminfo[$key] = (int)($meminfo[$key] / 1024);
|
2017-05-08 02:11:38 -04:00
|
|
|
}
|
|
|
|
|
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) {
|
2019-08-15 11:10:14 -04:00
|
|
|
$this->logger->debug('Minimal memory reached.', ['free' => $free, 'memtotal' => $meminfo['MemTotal'], 'limit' => $min_memory]);
|
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-15 10:18:08 -04:00
|
|
|
if ($this->mode->isBackend()) {
|
|
|
|
$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 {
|
2019-08-15 10:18:08 -04:00
|
|
|
$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) {
|
2019-08-15 10:18:08 -04:00
|
|
|
$this->logger->info('system load for process too high.', ['load' => $load, 'process' => $process, 'maxsysload' => $maxsysload]);
|
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-08-15 10:18:08 -04:00
|
|
|
*
|
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)) {
|
2019-08-15 10:18:08 -04:00
|
|
|
$this->logger->debug('We got no resource for command.', ['cmd' => $cmdline]);
|
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()
|
|
|
|
{
|
2019-08-15 10:18:08 -04:00
|
|
|
if ($this->mode->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
|
2019-08-15 10:18:08 -04:00
|
|
|
$user = $this->database->selectFirst('user', ['theme'], ['uid' => $this->profile_uid]);
|
|
|
|
if ($this->database->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');
|
2019-08-15 10:18:08 -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-08-15 10:18:08 -04:00
|
|
|
&& in_array($theme_name, Theme::getAllowedList())
|
|
|
|
&& (file_exists('view/theme/' . $theme_name . '/style.css')
|
|
|
|
|| file_exists('view/theme/' . $theme_name . '/style.php'))
|
2018-04-28 18:30:13 -04:00
|
|
|
) {
|
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-15 10:18:08 -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
|
2019-08-15 10:18:08 -04:00
|
|
|
if ($this->mode->has(App\Mode::LOCALCONFIGPRESENT) && !$this->mode->has(App\Mode::DBAVAILABLE)) {
|
2019-07-23 20:01:45 -04:00
|
|
|
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-08-15 10:18:08 -04:00
|
|
|
if (!$this->mode->isInstall()) {
|
2019-07-23 20:01:45 -04:00
|
|
|
// 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-15 10:18:08 -04:00
|
|
|
if (!$this->mode->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-08-15 10:18:08 -04:00
|
|
|
if ($this->mode->isNormal()) {
|
2019-07-23 20:01:45 -04:00
|
|
|
$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
|
2019-08-15 10:18:08 -04:00
|
|
|
if (!empty($_GET['zrl']) && $this->mode->isNormal()) {
|
2019-07-23 20:01:45 -04:00
|
|
|
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) == "") &&
|
2019-08-15 10:18:08 -04:00
|
|
|
strstr(parse_url($_GET['zrl'], PHP_URL_PATH), "/profile/")) {
|
2019-07-23 20:01:45 -04:00
|
|
|
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
|
2019-08-15 10:18:08 -04:00
|
|
|
$this->logger->debug('Invalid ZRL parameter.', ['zrl' => $_GET['zrl']]);
|
2019-07-23 20:01:45 -04:00
|
|
|
throw new HTTPException\ForbiddenException();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-10-21 22:24:47 -04:00
|
|
|
|
2019-08-15 10:18:08 -04:00
|
|
|
if (!empty($_GET['owt']) && $this->mode->isNormal()) {
|
2019-07-23 20:01:45 -04:00
|
|
|
$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-15 10:18:08 -04:00
|
|
|
if ($this->mode->isInstall() && $moduleName !== 'install') {
|
2019-07-23 20:01:45 -04:00
|
|
|
$this->internalRedirect('install');
|
2019-08-15 10:18:08 -04:00
|
|
|
} elseif (!$this->mode->isInstall() && !$this->mode->has(App\Mode::MAINTENANCEDISABLED) && $moduleName !== 'maintenance') {
|
2019-07-23 20:01:45 -04:00
|
|
|
$this->internalRedirect('maintenance');
|
|
|
|
} else {
|
|
|
|
$this->checkURL();
|
2019-08-15 10:18:08 -04:00
|
|
|
Core\Update::check($this->getBasePath(), false, $this->mode);
|
2019-07-23 20:01:45 -04:00
|
|
|
Core\Addon::loadAddons();
|
|
|
|
Core\Hook::loadHooks();
|
|
|
|
}
|
2018-10-21 22:24:47 -04:00
|
|
|
|
2019-07-23 20:01:45 -04:00
|
|
|
// 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-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-08-15 10:18:08 -04:00
|
|
|
} catch (HTTPException $e) {
|
2019-08-12 12:13:58 -04:00
|
|
|
ModuleHTTPException::rawContent($e);
|
2019-05-01 21:33:33 -04:00
|
|
|
}
|
|
|
|
|
2019-08-15 14:52:42 -04:00
|
|
|
$this->page->run($this, $this->baseURL, $this->mode, $module, $this->l10n, $this->config, $pconfig);
|
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)
|
2019-08-15 10:18:08 -04:00
|
|
|
* @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
|
|
|
}
|
|
|
|
|
2019-08-15 10:18:08 -04:00
|
|
|
$redirectTo = $this->baseURL->get($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-08-15 10:18:08 -04:00
|
|
|
*
|
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
|
|
|
}
|