]> git.mxchange.org Git - friendica.git/blob - src/App.php
Merge pull request #9346 from annando/reduce-contact-update
[friendica.git] / src / App.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
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\Security\Authentication;
28 use Friendica\Core\Config\Cache;
29 use Friendica\Core\Config\IConfig;
30 use Friendica\Core\PConfig\IPConfig;
31 use Friendica\Core\L10n;
32 use Friendica\Core\System;
33 use Friendica\Core\Theme;
34 use Friendica\Database\Database;
35 use Friendica\Model\Profile;
36 use Friendica\Module\Special\HTTPException as ModuleHTTPException;
37 use Friendica\Network\HTTPException;
38 use Friendica\Util\ConfigFileLoader;
39 use Friendica\Util\HTTPSignature;
40 use Friendica\Util\Profiler;
41 use Friendica\Util\Strings;
42 use Psr\Log\LoggerInterface;
43
44 /**
45  * Our main application structure for the life of this page.
46  *
47  * Primarily deals with the URL that got us here
48  * and tries to make some sense of it, and
49  * stores our page contents and config storage
50  * and anything else that might need to be passed around
51  * before we spit the page out.
52  *
53  */
54 class App
55 {
56         public $profile;
57         public $profile_uid;
58         public $user;
59         public $cid;
60         public $contact;
61         public $contacts;
62         public $page_contact;
63         public $content;
64         public $data = [];
65         /** @deprecated 2019.09 - use App\Arguments->getArgv() or Arguments->get() */
66         public $argv;
67         /** @deprecated 2019.09 - use App\Arguments->getArgc() */
68         public $argc;
69         public $timezone;
70         public $interactive = true;
71         public $identities;
72         public $theme_info = [];
73         public $category;
74         // Allow themes to control internal parameters
75         // by changing App values in theme.php
76
77         public $sourcename              = '';
78         public $videowidth              = 425;
79         public $videoheight             = 350;
80         public $force_max_items         = 0;
81         public $theme_events_in_profile = true;
82         public $queue;
83
84         /**
85          * @var App\Mode The Mode of the Application
86          */
87         private $mode;
88
89         /**
90          * @var BaseURL
91          */
92         private $baseURL;
93
94         /** @var string The name of the current theme */
95         private $currentTheme;
96         /** @var string The name of the current mobile theme */
97         private $currentMobileTheme;
98
99         /**
100          * @var IConfig The config
101          */
102         private $config;
103
104         /**
105          * @var LoggerInterface The logger
106          */
107         private $logger;
108
109         /**
110          * @var Profiler The profiler of this app
111          */
112         private $profiler;
113
114         /**
115          * @var Database The Friendica database connection
116          */
117         private $database;
118
119         /**
120          * @var L10n The translator
121          */
122         private $l10n;
123
124         /**
125          * @var App\Arguments
126          */
127         private $args;
128
129         /**
130          * @var Core\Process The process methods
131          */
132         private $process;
133
134         /**
135          * @var IPConfig
136          */
137         private $pConfig;
138
139         /**
140          * Returns the current config cache of this node
141          *
142          * @return Cache
143          */
144         public function getConfigCache()
145         {
146                 return $this->config->getCache();
147         }
148
149         /**
150          * The basepath of this app
151          *
152          * @return string
153          */
154         public function getBasePath()
155         {
156                 // Don't use the basepath of the config table for basepath (it should always be the config-file one)
157                 return $this->config->getCache()->get('system', 'basepath');
158         }
159
160         /**
161          * @param Database        $database The Friendica Database
162          * @param IConfig         $config   The Configuration
163          * @param App\Mode        $mode     The mode of this Friendica app
164          * @param BaseURL         $baseURL  The full base URL of this Friendica app
165          * @param LoggerInterface $logger   The current app logger
166          * @param Profiler        $profiler The profiler of this application
167          * @param L10n            $l10n     The translator instance
168          * @param App\Arguments   $args     The Friendica Arguments of the call
169          * @param Core\Process    $process  The process methods
170          * @param IPConfig        $pConfig  Personal configuration
171          */
172         public function __construct(Database $database, IConfig $config, App\Mode $mode, BaseURL $baseURL, LoggerInterface $logger, Profiler $profiler, L10n $l10n, Arguments $args, Core\Process $process, IPConfig $pConfig)
173         {
174                 $this->database = $database;
175                 $this->config   = $config;
176                 $this->mode     = $mode;
177                 $this->baseURL  = $baseURL;
178                 $this->profiler = $profiler;
179                 $this->logger   = $logger;
180                 $this->l10n     = $l10n;
181                 $this->args     = $args;
182                 $this->process  = $process;
183                 $this->pConfig  = $pConfig;
184
185                 $this->argv         = $args->getArgv();
186                 $this->argc         = $args->getArgc();
187
188                 $this->load();
189         }
190
191         /**
192          * Load the whole app instance
193          */
194         public function load()
195         {
196                 set_time_limit(0);
197
198                 // This has to be quite large to deal with embedded private photos
199                 ini_set('pcre.backtrack_limit', 500000);
200
201                 set_include_path(
202                         get_include_path() . PATH_SEPARATOR
203                         . $this->getBasePath() . DIRECTORY_SEPARATOR . 'include' . PATH_SEPARATOR
204                         . $this->getBasePath() . DIRECTORY_SEPARATOR . 'library' . PATH_SEPARATOR
205                         . $this->getBasePath());
206
207                 $this->profiler->reset();
208
209                 if ($this->mode->has(App\Mode::DBAVAILABLE)) {
210                         $this->profiler->update($this->config);
211
212                         Core\Hook::loadHooks();
213                         $loader = new ConfigFileLoader($this->getBasePath());
214                         Core\Hook::callAll('load_config', $loader);
215                 }
216
217                 $this->loadDefaultTimezone();
218                 // Register template engines
219                 Core\Renderer::registerTemplateEngine('Friendica\Render\FriendicaSmartyEngine');
220         }
221
222         /**
223          * Loads the default timezone
224          *
225          * Include support for legacy $default_timezone
226          *
227          * @global string $default_timezone
228          */
229         private function loadDefaultTimezone()
230         {
231                 if ($this->config->get('system', 'default_timezone')) {
232                         $this->timezone = $this->config->get('system', 'default_timezone');
233                 } else {
234                         global $default_timezone;
235                         $this->timezone = !empty($default_timezone) ? $default_timezone : 'UTC';
236                 }
237
238                 if ($this->timezone) {
239                         date_default_timezone_set($this->timezone);
240                 }
241         }
242
243         /**
244          * Returns the current theme name. May be overriden by the mobile theme name.
245          *
246          * @return string
247          * @throws Exception
248          */
249         public function getCurrentTheme()
250         {
251                 if ($this->mode->isInstall()) {
252                         return '';
253                 }
254
255                 // Specific mobile theme override
256                 if (($this->mode->isMobile() || $this->mode->isTablet()) && Core\Session::get('show-mobile', true)) {
257                         $user_mobile_theme = $this->getCurrentMobileTheme();
258
259                         // --- means same mobile theme as desktop
260                         if (!empty($user_mobile_theme) && $user_mobile_theme !== '---') {
261                                 return $user_mobile_theme;
262                         }
263                 }
264
265                 if (!$this->currentTheme) {
266                         $this->computeCurrentTheme();
267                 }
268
269                 return $this->currentTheme;
270         }
271
272         /**
273          * Returns the current mobile theme name.
274          *
275          * @return string
276          * @throws Exception
277          */
278         public function getCurrentMobileTheme()
279         {
280                 if ($this->mode->isInstall()) {
281                         return '';
282                 }
283
284                 if (is_null($this->currentMobileTheme)) {
285                         $this->computeCurrentMobileTheme();
286                 }
287
288                 return $this->currentMobileTheme;
289         }
290
291         public function setCurrentTheme($theme)
292         {
293                 $this->currentTheme = $theme;
294         }
295
296         public function setCurrentMobileTheme($theme)
297         {
298                 $this->currentMobileTheme = $theme;
299         }
300
301         /**
302          * Computes the current theme name based on the node settings, the page owner settings and the user settings
303          *
304          * @throws Exception
305          */
306         private function computeCurrentTheme()
307         {
308                 $system_theme = $this->config->get('system', 'theme');
309                 if (!$system_theme) {
310                         throw new Exception($this->l10n->t('No system theme config value set.'));
311                 }
312
313                 // Sane default
314                 $this->setCurrentTheme($system_theme);
315
316                 $page_theme = null;
317                 // Find the theme that belongs to the user whose stuff we are looking at
318                 if ($this->profile_uid && ($this->profile_uid != local_user())) {
319                         // Allow folks to override user themes and always use their own on their own site.
320                         // This works only if the user is on the same server
321                         $user = $this->database->selectFirst('user', ['theme'], ['uid' => $this->profile_uid]);
322                         if ($this->database->isResult($user) && !$this->pConfig->get(local_user(), 'system', 'always_my_theme')) {
323                                 $page_theme = $user['theme'];
324                         }
325                 }
326
327                 $theme_name = $page_theme ?: Core\Session::get('theme', $system_theme);
328
329                 $theme_name = Strings::sanitizeFilePathItem($theme_name);
330                 if ($theme_name
331                     && in_array($theme_name, Theme::getAllowedList())
332                     && (file_exists('view/theme/' . $theme_name . '/style.css')
333                         || file_exists('view/theme/' . $theme_name . '/style.php'))
334                 ) {
335                         $this->setCurrentTheme($theme_name);
336                 }
337         }
338
339         /**
340          * Computes the current mobile theme name based on the node settings, the page owner settings and the user settings
341          */
342         private function computeCurrentMobileTheme()
343         {
344                 $system_mobile_theme = $this->config->get('system', 'mobile-theme', '');
345
346                 // Sane default
347                 $this->setCurrentMobileTheme($system_mobile_theme);
348
349                 $page_mobile_theme = null;
350                 // Find the theme that belongs to the user whose stuff we are looking at
351                 if ($this->profile_uid && ($this->profile_uid != local_user())) {
352                         // Allow folks to override user themes and always use their own on their own site.
353                         // This works only if the user is on the same server
354                         if (!$this->pConfig->get(local_user(), 'system', 'always_my_theme')) {
355                                 $page_mobile_theme = $this->pConfig->get($this->profile_uid, 'system', 'mobile-theme');
356                         }
357                 }
358
359                 $mobile_theme_name = $page_mobile_theme ?: Core\Session::get('mobile-theme', $system_mobile_theme);
360
361                 $mobile_theme_name = Strings::sanitizeFilePathItem($mobile_theme_name);
362                 if ($mobile_theme_name == '---'
363                         ||
364                         in_array($mobile_theme_name, Theme::getAllowedList())
365                         && (file_exists('view/theme/' . $mobile_theme_name . '/style.css')
366                                 || file_exists('view/theme/' . $mobile_theme_name . '/style.php'))
367                 ) {
368                         $this->setCurrentMobileTheme($mobile_theme_name);
369                 }
370         }
371
372         /**
373          * Provide a sane default if nothing is chosen or the specified theme does not exist.
374          *
375          * @return string
376          * @throws Exception
377          */
378         public function getCurrentThemeStylesheetPath()
379         {
380                 return Core\Theme::getStylesheetPath($this->getCurrentTheme());
381         }
382
383         /**
384          * Sets the base url for use in cmdline programs which don't have
385          * $_SERVER variables
386          */
387         public function checkURL()
388         {
389                 $url = $this->config->get('system', 'url');
390
391                 // if the url isn't set or the stored url is radically different
392                 // than the currently visited url, store the current value accordingly.
393                 // "Radically different" ignores common variations such as http vs https
394                 // and www.example.com vs example.com.
395                 // We will only change the url to an ip address if there is no existing setting
396
397                 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()))) {
398                         $this->config->set('system', 'url', $this->baseURL->get());
399                 }
400         }
401
402         /**
403          * Frontend App script
404          *
405          * The App object behaves like a container and a dispatcher at the same time, including a representation of the
406          * request and a representation of the response.
407          *
408          * This probably should change to limit the size of this monster method.
409          *
410          * @param App\Module     $module The determined module
411          * @param App\Router     $router
412          * @param IPConfig       $pconfig
413          * @param Authentication $auth The Authentication backend of the node
414          * @param App\Page       $page The Friendica page printing container
415          *
416          * @throws HTTPException\InternalServerErrorException
417          * @throws \ImagickException
418          */
419         public function runFrontend(App\Module $module, App\Router $router, IPConfig $pconfig, Authentication $auth, App\Page $page)
420         {
421                 $moduleName = $module->getName();
422
423                 try {
424                         // Missing DB connection: ERROR
425                         if ($this->mode->has(App\Mode::LOCALCONFIGPRESENT) && !$this->mode->has(App\Mode::DBAVAILABLE)) {
426                                 throw new HTTPException\InternalServerErrorException('Apologies but the website is unavailable at the moment.');
427                         }
428
429                         // Max Load Average reached: ERROR
430                         if ($this->process->isMaxProcessesReached() || $this->process->isMaxLoadReached()) {
431                                 header('Retry-After: 120');
432                                 header('Refresh: 120; url=' . $this->baseURL->get() . "/" . $this->args->getQueryString());
433
434                                 throw new HTTPException\ServiceUnavailableException('The node is currently overloaded. Please try again later.');
435                         }
436
437                         if (!$this->mode->isInstall()) {
438                                 // Force SSL redirection
439                                 if ($this->baseURL->checkRedirectHttps()) {
440                                         System::externalRedirect($this->baseURL->get() . '/' . $this->args->getQueryString());
441                                 }
442
443                                 Core\Hook::callAll('init_1');
444                         }
445
446                         // Exclude the backend processes from the session management
447                         if ($this->mode->isBackend()) {
448                                 Core\Worker::executeIfIdle();
449                         }
450
451                         if ($this->mode->isNormal() && !$this->mode->isBackend()) {
452                                 $requester = HTTPSignature::getSigner('', $_SERVER);
453                                 if (!empty($requester)) {
454                                         Profile::addVisitorCookieForHandle($requester);
455                                 }
456                         }
457
458                         // ZRL
459                         if (!empty($_GET['zrl']) && $this->mode->isNormal() && !$this->mode->isBackend()) {
460                                 if (!local_user()) {
461                                         // Only continue when the given profile link seems valid
462                                         // Valid profile links contain a path with "/profile/" and no query parameters
463                                         if ((parse_url($_GET['zrl'], PHP_URL_QUERY) == "") &&
464                                             strstr(parse_url($_GET['zrl'], PHP_URL_PATH), "/profile/")) {
465                                                 if (Core\Session::get('visitor_home') != $_GET["zrl"]) {
466                                                         Core\Session::set('my_url', $_GET['zrl']);
467                                                         Core\Session::set('authenticated', 0);
468                                                 }
469
470                                                 Model\Profile::zrlInit($this);
471                                         } else {
472                                                 // Someone came with an invalid parameter, maybe as a DDoS attempt
473                                                 // We simply stop processing here
474                                                 $this->logger->debug('Invalid ZRL parameter.', ['zrl' => $_GET['zrl']]);
475                                                 throw new HTTPException\ForbiddenException();
476                                         }
477                                 }
478                         }
479
480                         if (!empty($_GET['owt']) && $this->mode->isNormal()) {
481                                 $token = $_GET['owt'];
482                                 Model\Profile::openWebAuthInit($token);
483                         }
484
485                         $auth->withSession($this);
486
487                         if (empty($_SESSION['authenticated'])) {
488                                 header('X-Account-Management-Status: none');
489                         }
490
491                         $_SESSION['sysmsg']       = Core\Session::get('sysmsg', []);
492                         $_SESSION['sysmsg_info']  = Core\Session::get('sysmsg_info', []);
493                         $_SESSION['last_updated'] = Core\Session::get('last_updated', []);
494
495                         /*
496                          * check_config() is responsible for running update scripts. These automatically
497                          * update the DB schema whenever we push a new one out. It also checks to see if
498                          * any addons have been added or removed and reacts accordingly.
499                          */
500
501                         // in install mode, any url loads install module
502                         // but we need "view" module for stylesheet
503                         if ($this->mode->isInstall() && $moduleName !== 'install') {
504                                 $this->baseURL->redirect('install');
505                         } elseif (!$this->mode->isInstall() && !$this->mode->has(App\Mode::MAINTENANCEDISABLED) && $moduleName !== 'maintenance') {
506                                 $this->baseURL->redirect('maintenance');
507                         } else {
508                                 $this->checkURL();
509                                 Core\Update::check($this->getBasePath(), false, $this->mode);
510                                 Core\Addon::loadAddons();
511                                 Core\Hook::loadHooks();
512                         }
513
514                         // Compatibility with the Android Diaspora client
515                         if ($moduleName == 'stream') {
516                                 $this->baseURL->redirect('network?order=post');
517                         }
518
519                         if ($moduleName == 'conversations') {
520                                 $this->baseURL->redirect('message');
521                         }
522
523                         if ($moduleName == 'commented') {
524                                 $this->baseURL->redirect('network?order=comment');
525                         }
526
527                         if ($moduleName == 'liked') {
528                                 $this->baseURL->redirect('network?order=comment');
529                         }
530
531                         if ($moduleName == 'activity') {
532                                 $this->baseURL->redirect('network?conv=1');
533                         }
534
535                         if (($moduleName == 'status_messages') && ($this->args->getCommand() == 'status_messages/new')) {
536                                 $this->baseURL->redirect('bookmarklet');
537                         }
538
539                         if (($moduleName == 'user') && ($this->args->getCommand() == 'user/edit')) {
540                                 $this->baseURL->redirect('settings');
541                         }
542
543                         if (($moduleName == 'tag_followings') && ($this->args->getCommand() == 'tag_followings/manage')) {
544                                 $this->baseURL->redirect('search');
545                         }
546
547                         // Initialize module that can set the current theme in the init() method, either directly or via App->profile_uid
548                         $page['page_title'] = $moduleName;
549
550                         // determine the module class and save it to the module instance
551                         // @todo there's an implicit dependency due SESSION::start(), so it has to be called here (yet)
552                         $module = $module->determineClass($this->args, $router, $this->config);
553
554                         // Let the module run it's internal process (init, get, post, ...)
555                         $module->run($this->l10n, $this->baseURL, $this->logger, $_SERVER, $_POST);
556                 } catch (HTTPException $e) {
557                         ModuleHTTPException::rawContent($e);
558                 }
559
560                 $page->run($this, $this->baseURL, $this->mode, $module, $this->l10n, $this->config, $pconfig);
561         }
562
563         /**
564          * Automatically redirects to relative or absolute URL
565          * Should only be used if it isn't clear if the URL is either internal or external
566          *
567          * @param string $toUrl The target URL
568          *
569          * @throws HTTPException\InternalServerErrorException
570          */
571         public function redirect($toUrl)
572         {
573                 if (!empty(parse_url($toUrl, PHP_URL_SCHEME))) {
574                         Core\System::externalRedirect($toUrl);
575                 } else {
576                         $this->baseURL->redirect($toUrl);
577                 }
578         }
579 }