]> git.mxchange.org Git - friendica.git/blob - src/App.php
"getStyledURL" is now public
[friendica.git] / src / App.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
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.
11  *
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.
16  *
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/>.
19  *
20  */
21
22 namespace Friendica;
23
24 use Exception;
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;
52
53 /**
54  * Our main application structure for the life of this page.
55  *
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.
61  *
62  */
63 class App
64 {
65         const PLATFORM = 'Friendica';
66         const CODENAME = 'Giant Rhubarb';
67         const VERSION  = '2023.09-dev';
68
69         // Allow themes to control internal parameters
70         // by changing App values in theme.php
71         private $theme_info = [
72                 'videowidth'        => 425,
73                 'videoheight'       => 350,
74         ];
75
76         private $timezone      = '';
77         private $profile_owner = 0;
78         private $contact_id    = 0;
79         private $queue         = [];
80
81         /**
82          * @var App\Mode The Mode of the Application
83          */
84         private $mode;
85
86         /**
87          * @var BaseURL
88          */
89         private $baseURL;
90
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;
95
96         /**
97          * @var IManageConfigValues The config
98          */
99         private $config;
100
101         /**
102          * @var LoggerInterface The logger
103          */
104         private $logger;
105
106         /**
107          * @var Profiler The profiler of this app
108          */
109         private $profiler;
110
111         /**
112          * @var Database The Friendica database connection
113          */
114         private $database;
115
116         /**
117          * @var L10n The translator
118          */
119         private $l10n;
120
121         /**
122          * @var App\Arguments
123          */
124         private $args;
125
126         /**
127          * @var IManagePersonalConfigValues
128          */
129         private $pConfig;
130
131         /**
132          * @var IHandleUserSessions
133          */
134         private $session;
135
136         /**
137          * @deprecated 2022.03
138          * @see IHandleUserSessions::isAuthenticated()
139          */
140         public function isLoggedIn(): bool
141         {
142                 return $this->session->isAuthenticated();
143         }
144
145         /**
146          * @deprecated 2022.03
147          * @see IHandleUserSessions::isSiteAdmin()
148          */
149         public function isSiteAdmin(): bool
150         {
151                 return $this->session->isSiteAdmin();
152         }
153
154         /**
155          * @deprecated 2022.03
156          * @see IHandleUserSessions::getLocalUserId()
157          */
158         public function getLoggedInUserId(): int
159         {
160                 return $this->session->getLocalUserId();
161         }
162
163         /**
164          * @deprecated 2022.03
165          * @see IHandleUserSessions::getLocalUserNickname()
166          */
167         public function getLoggedInUserNickname(): string
168         {
169                 return $this->session->getLocalUserNickname();
170         }
171
172         /**
173          * Set the profile owner ID
174          *
175          * @param int $owner_id
176          * @return void
177          */
178         public function setProfileOwner(int $owner_id)
179         {
180                 $this->profile_owner = $owner_id;
181         }
182
183         /**
184          * Get the profile owner ID
185          *
186          * @return int
187          */
188         public function getProfileOwner(): int
189         {
190                 return $this->profile_owner;
191         }
192
193         /**
194          * Set the contact ID
195          *
196          * @param int $contact_id
197          * @return void
198          */
199         public function setContactId(int $contact_id)
200         {
201                 $this->contact_id = $contact_id;
202         }
203
204         /**
205          * Get the contact ID
206          *
207          * @return int
208          */
209         public function getContactId(): int
210         {
211                 return $this->contact_id;
212         }
213
214         /**
215          * Set the timezone
216          *
217          * @param string $timezone A valid time zone identifier, see https://www.php.net/manual/en/timezones.php
218          * @return void
219          */
220         public function setTimeZone(string $timezone)
221         {
222                 $this->timezone = (new \DateTimeZone($timezone))->getName();
223                 DateTimeFormat::setLocalTimeZone($this->timezone);
224         }
225
226         /**
227          * Get the timezone
228          *
229          * @return int
230          */
231         public function getTimeZone(): string
232         {
233                 return $this->timezone;
234         }
235
236         /**
237          * Set workerqueue information
238          *
239          * @param array $queue
240          * @return void
241          */
242         public function setQueue(array $queue)
243         {
244                 $this->queue = $queue;
245         }
246
247         /**
248          * Fetch workerqueue information
249          *
250          * @return array Worker queue
251          */
252         public function getQueue(): array
253         {
254                 return $this->queue ?? [];
255         }
256
257         /**
258          * Fetch a specific workerqueue field
259          *
260          * @param string $index Work queue record to fetch
261          * @return mixed Work queue item or NULL if not found
262          */
263         public function getQueueValue(string $index)
264         {
265                 return $this->queue[$index] ?? null;
266         }
267
268         public function setThemeInfoValue(string $index, $value)
269         {
270                 $this->theme_info[$index] = $value;
271         }
272
273         public function getThemeInfo()
274         {
275                 return $this->theme_info;
276         }
277
278         public function getThemeInfoValue(string $index, $default = null)
279         {
280                 return $this->theme_info[$index] ?? $default;
281         }
282
283         /**
284          * Returns the current config cache of this node
285          *
286          * @return Cache
287          */
288         public function getConfigCache()
289         {
290                 return $this->config->getCache();
291         }
292
293         /**
294          * The basepath of this app
295          *
296          * @return string Base path from configuration
297          */
298         public function getBasePath(): string
299         {
300                 return $this->config->get('system', 'basepath');
301         }
302
303         /**
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
316          */
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)
318         {
319                 $this->database       = $database;
320                 $this->config         = $config;
321                 $this->mode           = $mode;
322                 $this->baseURL        = $baseURL;
323                 $this->profiler       = $profiler;
324                 $this->logger         = $logger;
325                 $this->l10n           = $l10n;
326                 $this->args           = $args;
327                 $this->pConfig        = $pConfig;
328                 $this->session        = $session;
329
330                 $this->load($dbaDefinition, $viewDefinition);
331         }
332
333         /**
334          * Load the whole app instance
335          */
336         protected function load(DbaDefinition $dbaDefinition, ViewDefinition $viewDefinition)
337         {
338                 if ($this->config->get('system', 'ini_max_execution_time') !== false) {
339                         set_time_limit((int)$this->config->get('system', 'ini_max_execution_time'));
340                 }
341
342                 if ($this->config->get('system', 'ini_pcre_backtrack_limit') !== false) {
343                         ini_set('pcre.backtrack_limit', (int)$this->config->get('system', 'ini_pcre_backtrack_limit'));
344                 }
345
346                 // Normally this constant is defined - but not if "pcntl" isn't installed
347                 if (!defined('SIGTERM')) {
348                         define('SIGTERM', 15);
349                 }
350
351                 // Ensure that all "strtotime" operations do run timezone independent
352                 date_default_timezone_set('UTC');
353
354                 set_include_path(
355                         get_include_path() . PATH_SEPARATOR
356                         . $this->getBasePath() . DIRECTORY_SEPARATOR . 'include' . PATH_SEPARATOR
357                         . $this->getBasePath() . DIRECTORY_SEPARATOR . 'library' . PATH_SEPARATOR
358                         . $this->getBasePath());
359
360                 $this->profiler->reset();
361
362                 if ($this->mode->has(App\Mode::DBAVAILABLE)) {
363                         Core\Hook::loadHooks();
364                         $loader = (new Config())->createConfigFileManager($this->getBasePath(), $_SERVER);
365                         Core\Hook::callAll('load_config', $loader);
366
367                         // Hooks are now working, reload the whole definitions with hook enabled
368                         $dbaDefinition->load(true);
369                         $viewDefinition->load(true);
370                 }
371
372                 $this->loadDefaultTimezone();
373                 // Register template engines
374                 Core\Renderer::registerTemplateEngine('Friendica\Render\FriendicaSmartyEngine');
375         }
376
377         /**
378          * Loads the default timezone
379          *
380          * Include support for legacy $default_timezone
381          *
382          * @global string $default_timezone
383          */
384         private function loadDefaultTimezone()
385         {
386                 if ($this->config->get('system', 'default_timezone')) {
387                         $timezone = $this->config->get('system', 'default_timezone', 'UTC');
388                 } else {
389                         global $default_timezone;
390                         $timezone = $default_timezone ?? '' ?: 'UTC';
391                 }
392
393                 $this->setTimeZone($timezone);
394         }
395
396         /**
397          * Returns the current theme name. May be overridden by the mobile theme name.
398          *
399          * @return string Current theme name or empty string in installation phase
400          * @throws Exception
401          */
402         public function getCurrentTheme(): string
403         {
404                 if ($this->mode->isInstall()) {
405                         return '';
406                 }
407
408                 // Specific mobile theme override
409                 if (($this->mode->isMobile() || $this->mode->isTablet()) && $this->session->get('show-mobile', true)) {
410                         $user_mobile_theme = $this->getCurrentMobileTheme();
411
412                         // --- means same mobile theme as desktop
413                         if (!empty($user_mobile_theme) && $user_mobile_theme !== '---') {
414                                 return $user_mobile_theme;
415                         }
416                 }
417
418                 if (!$this->currentTheme) {
419                         $this->computeCurrentTheme();
420                 }
421
422                 return $this->currentTheme;
423         }
424
425         /**
426          * Returns the current mobile theme name.
427          *
428          * @return string Mobile theme name or empty string if installer
429          * @throws Exception
430          */
431         public function getCurrentMobileTheme(): string
432         {
433                 if ($this->mode->isInstall()) {
434                         return '';
435                 }
436
437                 if (is_null($this->currentMobileTheme)) {
438                         $this->computeCurrentMobileTheme();
439                 }
440
441                 return $this->currentMobileTheme;
442         }
443
444         /**
445          * Setter for current theme name
446          *
447          * @param string $theme Name of current theme
448          */
449         public function setCurrentTheme(string $theme)
450         {
451                 $this->currentTheme = $theme;
452         }
453
454         /**
455          * Setter for current mobile theme name
456          *
457          * @param string $theme Name of current mobile theme
458          */
459         public function setCurrentMobileTheme(string $theme)
460         {
461                 $this->currentMobileTheme = $theme;
462         }
463
464         /**
465          * Computes the current theme name based on the node settings, the page owner settings and the user settings
466          *
467          * @throws Exception
468          */
469         private function computeCurrentTheme()
470         {
471                 $system_theme = $this->config->get('system', 'theme');
472                 if (!$system_theme) {
473                         throw new Exception($this->l10n->t('No system theme config value set.'));
474                 }
475
476                 // Sane default
477                 $this->setCurrentTheme($system_theme);
478
479                 $page_theme = null;
480                 // Find the theme that belongs to the user whose stuff we are looking at
481                 if (!empty($this->profile_owner) && ($this->profile_owner != $this->session->getLocalUserId())) {
482                         // Allow folks to override user themes and always use their own on their own site.
483                         // This works only if the user is on the same server
484                         $user = $this->database->selectFirst('user', ['theme'], ['uid' => $this->profile_owner]);
485                         if ($this->database->isResult($user) && !$this->session->getLocalUserId()) {
486                                 $page_theme = $user['theme'];
487                         }
488                 }
489
490                 $theme_name = $page_theme ?: $this->session->get('theme', $system_theme);
491
492                 $theme_name = Strings::sanitizeFilePathItem($theme_name);
493                 if ($theme_name
494                     && in_array($theme_name, Theme::getAllowedList())
495                     && (file_exists('view/theme/' . $theme_name . '/style.css')
496                         || file_exists('view/theme/' . $theme_name . '/style.php'))
497                 ) {
498                         $this->setCurrentTheme($theme_name);
499                 }
500         }
501
502         /**
503          * Computes the current mobile theme name based on the node settings, the page owner settings and the user settings
504          */
505         private function computeCurrentMobileTheme()
506         {
507                 $system_mobile_theme = $this->config->get('system', 'mobile-theme', '');
508
509                 // Sane default
510                 $this->setCurrentMobileTheme($system_mobile_theme);
511
512                 $page_mobile_theme = null;
513                 // Find the theme that belongs to the user whose stuff we are looking at
514                 if (!empty($this->profile_owner) && ($this->profile_owner != $this->session->getLocalUserId())) {
515                         // Allow folks to override user themes and always use their own on their own site.
516                         // This works only if the user is on the same server
517                         if (!$this->session->getLocalUserId()) {
518                                 $page_mobile_theme = $this->pConfig->get($this->profile_owner, 'system', 'mobile-theme');
519                         }
520                 }
521
522                 $mobile_theme_name = $page_mobile_theme ?: $this->session->get('mobile-theme', $system_mobile_theme);
523
524                 $mobile_theme_name = Strings::sanitizeFilePathItem($mobile_theme_name);
525                 if ($mobile_theme_name == '---'
526                         ||
527                         in_array($mobile_theme_name, Theme::getAllowedList())
528                         && (file_exists('view/theme/' . $mobile_theme_name . '/style.css')
529                                 || file_exists('view/theme/' . $mobile_theme_name . '/style.php'))
530                 ) {
531                         $this->setCurrentMobileTheme($mobile_theme_name);
532                 }
533         }
534
535         /**
536          * Provide a sane default if nothing is chosen or the specified theme does not exist.
537          *
538          * @return string Current theme's stylesheet path
539          * @throws Exception
540          */
541         public function getCurrentThemeStylesheetPath(): string
542         {
543                 return Core\Theme::getStylesheetPath($this->getCurrentTheme());
544         }
545
546         /**
547          * Frontend App script
548          *
549          * The App object behaves like a container and a dispatcher at the same time, including a representation of the
550          * request and a representation of the response.
551          *
552          * This probably should change to limit the size of this monster method.
553          *
554          * @param App\Router                  $router
555          * @param IManagePersonalConfigValues $pconfig
556          * @param Authentication              $auth       The Authentication backend of the node
557          * @param App\Page                    $page       The Friendica page printing container
558          * @param ModuleHTTPException         $httpException The possible HTTP Exception container
559          * @param HTTPInputData               $httpInput  A library for processing PHP input streams
560          * @param float                       $start_time The start time of the overall script execution
561          * @param array                       $server     The $_SERVER array
562          *
563          * @throws HTTPException\InternalServerErrorException
564          * @throws \ImagickException
565          */
566         public function runFrontend(App\Router $router, IManagePersonalConfigValues $pconfig, Authentication $auth, App\Page $page, Nav $nav, ModuleHTTPException $httpException, HTTPInputData $httpInput, float $start_time, array $server)
567         {
568                 $this->profiler->set($start_time, 'start');
569                 $this->profiler->set(microtime(true), 'classinit');
570
571                 $moduleName = $this->args->getModuleName();
572                 $page->setLogging($this->args->getMethod(), $this->args->getModuleName(), $this->args->getCommand());
573
574                 try {
575                         // Missing DB connection: ERROR
576                         if ($this->mode->has(App\Mode::LOCALCONFIGPRESENT) && !$this->mode->has(App\Mode::DBAVAILABLE)) {
577                                 throw new HTTPException\InternalServerErrorException($this->l10n->t('Apologies but the website is unavailable at the moment.'));
578                         }
579
580                         if (!$this->mode->isInstall()) {
581                                 // Force SSL redirection
582                                 if ($this->config->get('system', 'force_ssl') &&
583                                         (empty($server['HTTPS']) || $server['HTTPS'] === 'off') &&
584                                         !empty($server['REQUEST_METHOD']) &&
585                                         $server['REQUEST_METHOD'] === 'GET') {
586                                         System::externalRedirect($this->baseURL . '/' . $this->args->getQueryString());
587                                 }
588                                 Core\Hook::callAll('init_1');
589                         }
590
591                         if ($this->mode->isNormal() && !$this->mode->isBackend()) {
592                                 $requester = HTTPSignature::getSigner('', $_SERVER);
593                                 if (!empty($requester)) {
594                                         Profile::addVisitorCookieForHandle($requester);
595                                 }
596                         }
597
598                         // ZRL
599                         if (!empty($_GET['zrl']) && $this->mode->isNormal() && !$this->mode->isBackend() && !$this->session->getLocalUserId()) {
600                                 // Only continue when the given profile link seems valid.
601                                 // Valid profile links contain a path with "/profile/" and no query parameters
602                                 if ((parse_url($_GET['zrl'], PHP_URL_QUERY) == '') &&
603                                         strpos(parse_url($_GET['zrl'], PHP_URL_PATH) ?? '', '/profile/') !== false) {
604                                         if ($this->session->get('visitor_home') != $_GET['zrl']) {
605                                                 $this->session->set('my_url', $_GET['zrl']);
606                                                 $this->session->set('authenticated', 0);
607
608                                                 $remote_contact = Contact::getByURL($_GET['zrl'], false, ['subscribe']);
609                                                 if (!empty($remote_contact['subscribe'])) {
610                                                         $_SESSION['remote_comment'] = $remote_contact['subscribe'];
611                                                 }
612                                         }
613
614                                         Model\Profile::zrlInit($this);
615                                 } else {
616                                         // Someone came with an invalid parameter, maybe as a DDoS attempt
617                                         // We simply stop processing here
618                                         $this->logger->debug('Invalid ZRL parameter.', ['zrl' => $_GET['zrl']]);
619                                         throw new HTTPException\ForbiddenException();
620                                 }
621                         }
622
623                         if (!empty($_GET['owt']) && $this->mode->isNormal()) {
624                                 $token = $_GET['owt'];
625                                 Model\Profile::openWebAuthInit($token);
626                         }
627
628                         if (!$this->mode->isBackend()) {
629                                 $auth->withSession($this);
630                         }
631
632                         if (empty($_SESSION['authenticated'])) {
633                                 header('X-Account-Management-Status: none');
634                         }
635
636                         /*
637                          * check_config() is responsible for running update scripts. These automatically
638                          * update the DB schema whenever we push a new one out. It also checks to see if
639                          * any addons have been added or removed and reacts accordingly.
640                          */
641
642                         // in install mode, any url loads install module
643                         // but we need "view" module for stylesheet
644                         if ($this->mode->isInstall() && $moduleName !== 'install') {
645                                 $this->baseURL->redirect('install');
646                         } else {
647                                 Core\Update::check($this->getBasePath(), false);
648                                 Core\Addon::loadAddons();
649                                 Core\Hook::loadHooks();
650                         }
651
652                         // Compatibility with the Android Diaspora client
653                         if ($moduleName == 'stream') {
654                                 $this->baseURL->redirect('network?order=post');
655                         }
656
657                         if ($moduleName == 'conversations') {
658                                 $this->baseURL->redirect('message');
659                         }
660
661                         if ($moduleName == 'commented') {
662                                 $this->baseURL->redirect('network?order=comment');
663                         }
664
665                         if ($moduleName == 'liked') {
666                                 $this->baseURL->redirect('network?order=comment');
667                         }
668
669                         if ($moduleName == 'activity') {
670                                 $this->baseURL->redirect('network?conv=1');
671                         }
672
673                         if (($moduleName == 'status_messages') && ($this->args->getCommand() == 'status_messages/new')) {
674                                 $this->baseURL->redirect('bookmarklet');
675                         }
676
677                         if (($moduleName == 'user') && ($this->args->getCommand() == 'user/edit')) {
678                                 $this->baseURL->redirect('settings');
679                         }
680
681                         if (($moduleName == 'tag_followings') && ($this->args->getCommand() == 'tag_followings/manage')) {
682                                 $this->baseURL->redirect('search');
683                         }
684
685                         // Initialize module that can set the current theme in the init() method, either directly or via App->setProfileOwner
686                         $page['page_title'] = $moduleName;
687
688                         // The "view" module is required to show the theme CSS
689                         if (!$this->mode->isInstall() && !$this->mode->has(App\Mode::MAINTENANCEDISABLED) && $moduleName !== 'view') {
690                                 $module = $router->getModule(Maintenance::class);
691                         } else {
692                                 // determine the module class and save it to the module instance
693                                 // @todo there's an implicit dependency due SESSION::start(), so it has to be called here (yet)
694                                 $module = $router->getModule();
695                         }
696
697                         // Processes data from GET requests
698                         $httpinput = $httpInput->process();
699                         $input     = array_merge($httpinput['variables'], $httpinput['files'], $request ?? $_REQUEST);
700
701                         // Let the module run its internal process (init, get, post, ...)
702                         $timestamp = microtime(true);
703                         $response = $module->run($httpException, $input);
704                         $this->profiler->set(microtime(true) - $timestamp, 'content');
705                         if ($response->getHeaderLine(ICanCreateResponses::X_HEADER) === ICanCreateResponses::TYPE_HTML) {
706                                 $page->run($this, $this->baseURL, $this->args, $this->mode, $response, $this->l10n, $this->profiler, $this->config, $pconfig, $nav, $this->session->getLocalUserId());
707                         } else {
708                                 $page->exit($response);
709                         }
710                 } catch (HTTPException $e) {
711                         $httpException->rawContent($e);
712                 }
713                 $page->logRuntime($this->config, 'runFrontend');
714         }
715
716         /**
717          * Automatically redirects to relative or absolute URL
718          * Should only be used if it isn't clear if the URL is either internal or external
719          *
720          * @param string $toUrl The target URL
721          *
722          * @throws HTTPException\InternalServerErrorException
723          */
724         public function redirect(string $toUrl)
725         {
726                 if (!empty(parse_url($toUrl, PHP_URL_SCHEME))) {
727                         Core\System::externalRedirect($toUrl);
728                 } else {
729                         $this->baseURL->redirect($toUrl);
730                 }
731         }
732 }