3 * @copyright Copyright (C) 2010-2023, the Friendica project
5 * @license GNU AGPL version 3 or any later version
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as
9 * published by the Free Software Foundation, either version 3 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
25 use Friendica\App\Arguments;
26 use Friendica\App\BaseURL;
27 use Friendica\Capabilities\ICanCreateResponses;
28 use Friendica\Content\Nav;
29 use Friendica\Core\Config\Factory\Config;
30 use Friendica\Core\Session\Capability\IHandleUserSessions;
31 use Friendica\Database\Definition\DbaDefinition;
32 use Friendica\Database\Definition\ViewDefinition;
33 use Friendica\Module\Maintenance;
34 use Friendica\Security\Authentication;
35 use Friendica\Core\Config\ValueObject\Cache;
36 use Friendica\Core\Config\Capability\IManageConfigValues;
37 use Friendica\Core\PConfig\Capability\IManagePersonalConfigValues;
38 use Friendica\Core\L10n;
39 use Friendica\Core\System;
40 use Friendica\Core\Theme;
41 use Friendica\Database\Database;
42 use Friendica\Model\Contact;
43 use Friendica\Model\Profile;
44 use Friendica\Module\Special\HTTPException as ModuleHTTPException;
45 use Friendica\Network\HTTPException;
46 use Friendica\Util\DateTimeFormat;
47 use Friendica\Util\HTTPInputData;
48 use Friendica\Util\HTTPSignature;
49 use Friendica\Util\Profiler;
50 use Friendica\Util\Strings;
51 use Psr\Log\LoggerInterface;
54 * Our main application structure for the life of this page.
56 * Primarily deals with the URL that got us here
57 * and tries to make some sense of it, and
58 * stores our page contents and config storage
59 * and anything else that might need to be passed around
60 * before we spit the page out.
65 const PLATFORM = 'Friendica';
66 const CODENAME = 'Giant Rhubarb';
67 const VERSION = '2023.03-dev';
69 // Allow themes to control internal parameters
70 // by changing App values in theme.php
71 private $theme_info = [
76 private $timezone = '';
77 private $profile_owner = 0;
78 private $contact_id = 0;
82 * @var App\Mode The Mode of the Application
91 /** @var string The name of the current theme */
92 private $currentTheme;
93 /** @var string The name of the current mobile theme */
94 private $currentMobileTheme;
97 * @var IManageConfigValues The config
102 * @var LoggerInterface The logger
107 * @var Profiler The profiler of this app
112 * @var Database The Friendica database connection
117 * @var L10n The translator
127 * @var IManagePersonalConfigValues
132 * @var IHandleUserSessions
137 * @deprecated 2022.03
138 * @see IHandleUserSessions::isAuthenticated()
140 public function isLoggedIn(): bool
142 return $this->session->isAuthenticated();
146 * @deprecated 2022.03
147 * @see IHandleUserSessions::isSiteAdmin()
149 public function isSiteAdmin(): bool
151 return $this->session->isSiteAdmin();
155 * @deprecated 2022.03
156 * @see IHandleUserSessions::getLocalUserId()
158 public function getLoggedInUserId(): int
160 return $this->session->getLocalUserId();
164 * @deprecated 2022.03
165 * @see IHandleUserSessions::getLocalUserNickname()
167 public function getLoggedInUserNickname(): string
169 return $this->session->getLocalUserNickname();
173 * Set the profile owner ID
175 * @param int $owner_id
178 public function setProfileOwner(int $owner_id)
180 $this->profile_owner = $owner_id;
184 * Get the profile owner ID
188 public function getProfileOwner(): int
190 return $this->profile_owner;
196 * @param int $contact_id
199 public function setContactId(int $contact_id)
201 $this->contact_id = $contact_id;
209 public function getContactId(): int
211 return $this->contact_id;
217 * @param string $timezone A valid time zone identifier, see https://www.php.net/manual/en/timezones.php
220 public function setTimeZone(string $timezone)
222 $this->timezone = (new \DateTimeZone($timezone))->getName();
223 DateTimeFormat::setLocalTimeZone($this->timezone);
231 public function getTimeZone(): string
233 return $this->timezone;
237 * Set workerqueue information
239 * @param array $queue
242 public function setQueue(array $queue)
244 $this->queue = $queue;
248 * Fetch workerqueue information
250 * @return array Worker queue
252 public function getQueue(): array
254 return $this->queue ?? [];
258 * Fetch a specific workerqueue field
260 * @param string $index Work queue record to fetch
261 * @return mixed Work queue item or NULL if not found
263 public function getQueueValue(string $index)
265 return $this->queue[$index] ?? null;
268 public function setThemeInfoValue(string $index, $value)
270 $this->theme_info[$index] = $value;
273 public function getThemeInfo()
275 return $this->theme_info;
278 public function getThemeInfoValue(string $index, $default = null)
280 return $this->theme_info[$index] ?? $default;
284 * Returns the current config cache of this node
288 public function getConfigCache()
290 return $this->config->getCache();
294 * The basepath of this app
296 * @return string Base path from configuration
298 public function getBasePath(): string
300 return $this->config->get('system', 'basepath');
304 * @param Database $database The Friendica Database
305 * @param IManageConfigValues $config The Configuration
306 * @param App\Mode $mode The mode of this Friendica app
307 * @param BaseURL $baseURL The full base URL of this Friendica app
308 * @param LoggerInterface $logger The current app logger
309 * @param Profiler $profiler The profiler of this application
310 * @param L10n $l10n The translator instance
311 * @param App\Arguments $args The Friendica Arguments of the call
312 * @param IManagePersonalConfigValues $pConfig Personal configuration
313 * @param IHandleUserSessions $session The (User)Session handler
314 * @param DbaDefinition $dbaDefinition
315 * @param ViewDefinition $viewDefinition
317 public function __construct(Database $database, IManageConfigValues $config, App\Mode $mode, BaseURL $baseURL, LoggerInterface $logger, Profiler $profiler, L10n $l10n, Arguments $args, IManagePersonalConfigValues $pConfig, IHandleUserSessions $session, DbaDefinition $dbaDefinition, ViewDefinition $viewDefinition)
319 $this->database = $database;
320 $this->config = $config;
322 $this->baseURL = $baseURL;
323 $this->profiler = $profiler;
324 $this->logger = $logger;
327 $this->pConfig = $pConfig;
328 $this->session = $session;
330 $this->load($dbaDefinition, $viewDefinition);
334 * Load the whole app instance
336 protected function load(DbaDefinition $dbaDefinition, ViewDefinition $viewDefinition)
340 // Normally this constant is defined - but not if "pcntl" isn't installed
341 if (!defined('SIGTERM')) {
342 define('SIGTERM', 15);
345 // Ensure that all "strtotime" operations do run timezone independent
346 date_default_timezone_set('UTC');
348 // This has to be quite large to deal with embedded private photos
349 ini_set('pcre.backtrack_limit', 500000);
352 get_include_path() . PATH_SEPARATOR
353 . $this->getBasePath() . DIRECTORY_SEPARATOR . 'include' . PATH_SEPARATOR
354 . $this->getBasePath() . DIRECTORY_SEPARATOR . 'library' . PATH_SEPARATOR
355 . $this->getBasePath());
357 $this->profiler->reset();
359 if ($this->mode->has(App\Mode::DBAVAILABLE)) {
360 $this->profiler->update($this->config);
362 Core\Hook::loadHooks();
363 $loader = (new Config())->createConfigFileManager($this->getBasePath(), $_SERVER);
364 Core\Hook::callAll('load_config', $loader);
366 // Hooks are now working, reload the whole definitions with hook enabled
367 $dbaDefinition->load(true);
368 $viewDefinition->load(true);
371 $this->loadDefaultTimezone();
372 // Register template engines
373 Core\Renderer::registerTemplateEngine('Friendica\Render\FriendicaSmartyEngine');
377 * Loads the default timezone
379 * Include support for legacy $default_timezone
381 * @global string $default_timezone
383 private function loadDefaultTimezone()
385 if ($this->config->get('system', 'default_timezone')) {
386 $timezone = $this->config->get('system', 'default_timezone', 'UTC');
388 global $default_timezone;
389 $timezone = $default_timezone ?? '' ?: 'UTC';
392 $this->setTimeZone($timezone);
396 * Returns the current theme name. May be overriden by the mobile theme name.
398 * @return string Current theme name or empty string in installation phase
401 public function getCurrentTheme(): string
403 if ($this->mode->isInstall()) {
407 // Specific mobile theme override
408 if (($this->mode->isMobile() || $this->mode->isTablet()) && $this->session->get('show-mobile', true)) {
409 $user_mobile_theme = $this->getCurrentMobileTheme();
411 // --- means same mobile theme as desktop
412 if (!empty($user_mobile_theme) && $user_mobile_theme !== '---') {
413 return $user_mobile_theme;
417 if (!$this->currentTheme) {
418 $this->computeCurrentTheme();
421 return $this->currentTheme;
425 * Returns the current mobile theme name.
427 * @return string Mobile theme name or empty string if installer
430 public function getCurrentMobileTheme(): string
432 if ($this->mode->isInstall()) {
436 if (is_null($this->currentMobileTheme)) {
437 $this->computeCurrentMobileTheme();
440 return $this->currentMobileTheme;
444 * Setter for current theme name
446 * @param string $theme Name of current theme
448 public function setCurrentTheme(string $theme)
450 $this->currentTheme = $theme;
454 * Setter for current mobile theme name
456 * @param string $theme Name of current mobile theme
458 public function setCurrentMobileTheme(string $theme)
460 $this->currentMobileTheme = $theme;
464 * Computes the current theme name based on the node settings, the page owner settings and the user settings
468 private function computeCurrentTheme()
470 $system_theme = $this->config->get('system', 'theme');
471 if (!$system_theme) {
472 throw new Exception($this->l10n->t('No system theme config value set.'));
476 $this->setCurrentTheme($system_theme);
479 // Find the theme that belongs to the user whose stuff we are looking at
480 if (!empty($this->profile_owner) && ($this->profile_owner != $this->session->getLocalUserId())) {
481 // Allow folks to override user themes and always use their own on their own site.
482 // This works only if the user is on the same server
483 $user = $this->database->selectFirst('user', ['theme'], ['uid' => $this->profile_owner]);
484 if ($this->database->isResult($user) && !$this->session->getLocalUserId()) {
485 $page_theme = $user['theme'];
489 $theme_name = $page_theme ?: $this->session->get('theme', $system_theme);
491 $theme_name = Strings::sanitizeFilePathItem($theme_name);
493 && in_array($theme_name, Theme::getAllowedList())
494 && (file_exists('view/theme/' . $theme_name . '/style.css')
495 || file_exists('view/theme/' . $theme_name . '/style.php'))
497 $this->setCurrentTheme($theme_name);
502 * Computes the current mobile theme name based on the node settings, the page owner settings and the user settings
504 private function computeCurrentMobileTheme()
506 $system_mobile_theme = $this->config->get('system', 'mobile-theme', '');
509 $this->setCurrentMobileTheme($system_mobile_theme);
511 $page_mobile_theme = null;
512 // Find the theme that belongs to the user whose stuff we are looking at
513 if (!empty($this->profile_owner) && ($this->profile_owner != $this->session->getLocalUserId())) {
514 // Allow folks to override user themes and always use their own on their own site.
515 // This works only if the user is on the same server
516 if (!$this->session->getLocalUserId()) {
517 $page_mobile_theme = $this->pConfig->get($this->profile_owner, 'system', 'mobile-theme');
521 $mobile_theme_name = $page_mobile_theme ?: $this->session->get('mobile-theme', $system_mobile_theme);
523 $mobile_theme_name = Strings::sanitizeFilePathItem($mobile_theme_name);
524 if ($mobile_theme_name == '---'
526 in_array($mobile_theme_name, Theme::getAllowedList())
527 && (file_exists('view/theme/' . $mobile_theme_name . '/style.css')
528 || file_exists('view/theme/' . $mobile_theme_name . '/style.php'))
530 $this->setCurrentMobileTheme($mobile_theme_name);
535 * Provide a sane default if nothing is chosen or the specified theme does not exist.
537 * @return string Current theme's stylsheet path
540 public function getCurrentThemeStylesheetPath(): string
542 return Core\Theme::getStylesheetPath($this->getCurrentTheme());
546 * Sets the base url for use in cmdline programs which don't have
549 public function checkURL()
551 $url = $this->config->get('system', 'url');
553 // if the url isn't set or the stored url is radically different
554 // than the currently visited url, store the current value accordingly.
555 // "Radically different" ignores common variations such as http vs https
556 // and www.example.com vs example.com.
557 // We will only change the url to an ip address if there is no existing setting
559 if (empty($url) || (!Util\Strings::compareLink($url, $this->baseURL->get())) && (!preg_match("/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/", $this->baseURL->getHostname()))) {
560 $this->config->set('system', 'url', $this->baseURL->get());
565 * Frontend App script
567 * The App object behaves like a container and a dispatcher at the same time, including a representation of the
568 * request and a representation of the response.
570 * This probably should change to limit the size of this monster method.
572 * @param App\Router $router
573 * @param IManagePersonalConfigValues $pconfig
574 * @param Authentication $auth The Authentication backend of the node
575 * @param App\Page $page The Friendica page printing container
576 * @param ModuleHTTPException $httpException The possible HTTP Exception container
577 * @param HTTPInputData $httpInput A library for processing PHP input streams
578 * @param float $start_time The start time of the overall script execution
580 * @throws HTTPException\InternalServerErrorException
581 * @throws \ImagickException
583 public function runFrontend(App\Router $router, IManagePersonalConfigValues $pconfig, Authentication $auth, App\Page $page, Nav $nav, ModuleHTTPException $httpException, HTTPInputData $httpInput, float $start_time)
585 $this->profiler->set($start_time, 'start');
586 $this->profiler->set(microtime(true), 'classinit');
588 $moduleName = $this->args->getModuleName();
589 $page->setLogging($this->args->getMethod(), $this->args->getModuleName(), $this->args->getCommand());
592 // Missing DB connection: ERROR
593 if ($this->mode->has(App\Mode::LOCALCONFIGPRESENT) && !$this->mode->has(App\Mode::DBAVAILABLE)) {
594 throw new HTTPException\InternalServerErrorException($this->l10n->t('Apologies but the website is unavailable at the moment.'));
597 if (!$this->mode->isInstall()) {
598 // Force SSL redirection
599 if ($this->baseURL->checkRedirectHttps()) {
600 System::externalRedirect($this->baseURL->get() . '/' . $this->args->getQueryString());
603 Core\Hook::callAll('init_1');
606 if ($this->mode->isNormal() && !$this->mode->isBackend()) {
607 $requester = HTTPSignature::getSigner('', $_SERVER);
608 if (!empty($requester)) {
609 Profile::addVisitorCookieForHandle($requester);
614 if (!empty($_GET['zrl']) && $this->mode->isNormal() && !$this->mode->isBackend() && !$this->session->getLocalUserId()) {
615 // Only continue when the given profile link seems valid.
616 // Valid profile links contain a path with "/profile/" and no query parameters
617 if ((parse_url($_GET['zrl'], PHP_URL_QUERY) == '') &&
618 strpos(parse_url($_GET['zrl'], PHP_URL_PATH) ?? '', '/profile/') !== false) {
619 if ($this->session->get('visitor_home') != $_GET['zrl']) {
620 $this->session->set('my_url', $_GET['zrl']);
621 $this->session->set('authenticated', 0);
623 $remote_contact = Contact::getByURL($_GET['zrl'], false, ['subscribe']);
624 if (!empty($remote_contact['subscribe'])) {
625 $_SESSION['remote_comment'] = $remote_contact['subscribe'];
629 Model\Profile::zrlInit($this);
631 // Someone came with an invalid parameter, maybe as a DDoS attempt
632 // We simply stop processing here
633 $this->logger->debug('Invalid ZRL parameter.', ['zrl' => $_GET['zrl']]);
634 throw new HTTPException\ForbiddenException();
638 if (!empty($_GET['owt']) && $this->mode->isNormal()) {
639 $token = $_GET['owt'];
640 Model\Profile::openWebAuthInit($token);
643 if (!$this->mode->isBackend()) {
644 $auth->withSession($this);
647 if (empty($_SESSION['authenticated'])) {
648 header('X-Account-Management-Status: none');
652 * check_config() is responsible for running update scripts. These automatically
653 * update the DB schema whenever we push a new one out. It also checks to see if
654 * any addons have been added or removed and reacts accordingly.
657 // in install mode, any url loads install module
658 // but we need "view" module for stylesheet
659 if ($this->mode->isInstall() && $moduleName !== 'install') {
660 $this->baseURL->redirect('install');
663 Core\Update::check($this->getBasePath(), false);
664 Core\Addon::loadAddons();
665 Core\Hook::loadHooks();
668 // Compatibility with the Android Diaspora client
669 if ($moduleName == 'stream') {
670 $this->baseURL->redirect('network?order=post');
673 if ($moduleName == 'conversations') {
674 $this->baseURL->redirect('message');
677 if ($moduleName == 'commented') {
678 $this->baseURL->redirect('network?order=comment');
681 if ($moduleName == 'liked') {
682 $this->baseURL->redirect('network?order=comment');
685 if ($moduleName == 'activity') {
686 $this->baseURL->redirect('network?conv=1');
689 if (($moduleName == 'status_messages') && ($this->args->getCommand() == 'status_messages/new')) {
690 $this->baseURL->redirect('bookmarklet');
693 if (($moduleName == 'user') && ($this->args->getCommand() == 'user/edit')) {
694 $this->baseURL->redirect('settings');
697 if (($moduleName == 'tag_followings') && ($this->args->getCommand() == 'tag_followings/manage')) {
698 $this->baseURL->redirect('search');
701 // Initialize module that can set the current theme in the init() method, either directly or via App->setProfileOwner
702 $page['page_title'] = $moduleName;
704 // The "view" module is required to show the theme CSS
705 if (!$this->mode->isInstall() && !$this->mode->has(App\Mode::MAINTENANCEDISABLED) && $moduleName !== 'view') {
706 $module = $router->getModule(Maintenance::class);
708 // determine the module class and save it to the module instance
709 // @todo there's an implicit dependency due SESSION::start(), so it has to be called here (yet)
710 $module = $router->getModule();
713 // Processes data from GET requests
714 $httpinput = $httpInput->process();
715 $input = array_merge($httpinput['variables'], $httpinput['files'], $request ?? $_REQUEST);
717 // Let the module run its internal process (init, get, post, ...)
718 $timestamp = microtime(true);
719 $response = $module->run($httpException, $input);
720 $this->profiler->set(microtime(true) - $timestamp, 'content');
721 if ($response->getHeaderLine(ICanCreateResponses::X_HEADER) === ICanCreateResponses::TYPE_HTML) {
722 $page->run($this, $this->baseURL, $this->args, $this->mode, $response, $this->l10n, $this->profiler, $this->config, $pconfig, $nav, $this->session->getLocalUserId());
724 $page->exit($response);
726 } catch (HTTPException $e) {
727 $httpException->rawContent($e);
729 $page->logRuntime($this->config, 'runFrontend');
733 * Automatically redirects to relative or absolute URL
734 * Should only be used if it isn't clear if the URL is either internal or external
736 * @param string $toUrl The target URL
738 * @throws HTTPException\InternalServerErrorException
740 public function redirect(string $toUrl)
742 if (!empty(parse_url($toUrl, PHP_URL_SCHEME))) {
743 Core\System::externalRedirect($toUrl);
745 $this->baseURL->redirect($toUrl);