]> git.mxchange.org Git - friendica.git/blob - src/App/Page.php
Merge remote-tracking branch 'upstream/2023.09-rc' into smilies
[friendica.git] / src / App / Page.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\App;
23
24 use ArrayAccess;
25 use DOMDocument;
26 use DOMXPath;
27 use Friendica\App;
28 use Friendica\Content\Nav;
29 use Friendica\Core\Config\Capability\IManageConfigValues;
30 use Friendica\Core\Hook;
31 use Friendica\Core\L10n;
32 use Friendica\Core\Logger;
33 use Friendica\Core\PConfig\Capability\IManagePersonalConfigValues;
34 use Friendica\Core\Renderer;
35 use Friendica\Core\System;
36 use Friendica\Core\Theme;
37 use Friendica\Module\Response;
38 use Friendica\Network\HTTPException;
39 use Friendica\Util\Network;
40 use Friendica\Util\Profiler;
41 use Friendica\Util\Strings;
42 use GuzzleHttp\Psr7\Utils;
43 use Psr\Http\Message\ResponseInterface;
44
45 /**
46  * Contains the page specific environment variables for the current Page
47  * - Contains all stylesheets
48  * - Contains all footer-scripts
49  * - Contains all page specific content (header, footer, content, ...)
50  *
51  * The run() method is the single point where the page will get printed to the screen
52  */
53 class Page implements ArrayAccess
54 {
55         /**
56          * @var array Contains all stylesheets, which should get loaded during page
57          */
58         private $stylesheets = [];
59         /**
60          * @var array Contains all scripts, which are added to the footer at last
61          */
62         private $footerScripts = [];
63         /**
64          * @var array The page content, which are showed directly
65          */
66         private $page = [
67                 'aside'       => '',
68                 'bottom'      => '',
69                 'content'     => '',
70                 'footer'      => '',
71                 'htmlhead'    => '',
72                 'nav'         => '',
73                 'page_title'  => '',
74                 'right_aside' => '',
75                 'template'    => '',
76                 'title'       => '',
77                 'section'     => '',
78                 'module'      => '',
79         ];
80         /**
81          * @var string The basepath of the page
82          */
83         private $basePath;
84
85         private $timestamp = 0;
86         private $method    = '';
87         private $module    = '';
88         private $command   = '';
89
90         /**
91          * @param string $basepath The Page basepath
92          */
93         public function __construct(string $basepath)
94         {
95                 $this->timestamp = microtime(true);
96                 $this->basePath = $basepath;
97         }
98
99         public function setLogging(string $method, string $module, string $command)
100         {
101                 $this->method  = $method;
102                 $this->module  = $module;
103                 $this->command = $command;
104         }
105
106         public function logRuntime(IManageConfigValues $config, string $origin = '')
107         {
108                 $ignore = $config->get('system', 'runtime_ignore');
109                 if (in_array($this->module, $ignore) || in_array($this->command, $ignore)) {
110                         return;
111                 }
112
113                 $signature = !empty($_SERVER['HTTP_SIGNATURE']);
114                 $load      = number_format(System::currentLoad(), 2);
115                 $runtime   = number_format(microtime(true) - $this->timestamp, 3);
116                 if ($runtime > $config->get('system', 'runtime_loglimit')) {
117                         Logger::debug('Runtime', ['method' => $this->method, 'module' => $this->module, 'runtime' => $runtime, 'load' => $load, 'origin' => $origin, 'signature' => $signature, 'request' => $_SERVER['REQUEST_URI'] ?? '']);
118                 }
119         }
120
121         // ArrayAccess interface
122
123         /**
124          * @inheritDoc
125          */
126         #[\ReturnTypeWillChange]
127         public function offsetExists($offset): bool
128         {
129                 return isset($this->page[$offset]);
130         }
131
132         /**
133          * @inheritDoc
134          */
135         #[\ReturnTypeWillChange]
136         public function offsetGet($offset)
137         {
138                 return $this->page[$offset] ?? null;
139         }
140
141         /**
142          * @inheritDoc
143          */
144         #[\ReturnTypeWillChange]
145         public function offsetSet($offset, $value): void
146         {
147                 $this->page[$offset] = $value;
148         }
149
150         /**
151          * @inheritDoc
152          */
153         #[\ReturnTypeWillChange]
154         public function offsetUnset($offset): void
155         {
156                 if (isset($this->page[$offset])) {
157                         unset($this->page[$offset]);
158                 }
159         }
160
161         /**
162          * Register a stylesheet file path to be included in the <head> tag of every page.
163          * Inclusion is done in App->initHead().
164          * The path can be absolute or relative to the Friendica installation base folder.
165          *
166          * @param string $path
167          * @param string $media
168          * @see Page::initHead()
169          */
170         public function registerStylesheet(string $path, string $media = 'screen')
171         {
172                 $path = Network::appendQueryParam($path, ['v' => App::VERSION]);
173
174                 if (mb_strpos($path, $this->basePath . DIRECTORY_SEPARATOR) === 0) {
175                         $path = mb_substr($path, mb_strlen($this->basePath . DIRECTORY_SEPARATOR));
176                 }
177
178                 $this->stylesheets[trim($path, '/')] = $media;
179         }
180
181         /**
182          * Initializes Page->page['htmlhead'].
183          *
184          * Includes:
185          * - Page title
186          * - Favicons
187          * - Registered stylesheets (through App->registerStylesheet())
188          * - Infinite scroll data
189          * - head.tpl template
190          *
191          * @param App                         $app      The Friendica App instance
192          * @param Arguments                   $args     The Friendica App Arguments
193          * @param L10n                        $l10n     The l10n language instance
194          * @param IManageConfigValues         $config   The Friendica configuration
195          * @param IManagePersonalConfigValues $pConfig  The Friendica personal configuration (for user)
196          * @param int                         $localUID The local user id
197          *
198          * @throws HTTPException\InternalServerErrorException
199          */
200         private function initHead(App $app, Arguments $args, L10n $l10n, IManageConfigValues $config, IManagePersonalConfigValues $pConfig, int $localUID)
201         {
202                 $interval = ($localUID ? $pConfig->get($localUID, 'system', 'update_interval') : 40000);
203
204                 // If the update is 'deactivated' set it to the highest integer number (~24 days)
205                 if ($interval < 0) {
206                         $interval = 2147483647;
207                 }
208
209                 if ($interval < 10000) {
210                         $interval = 40000;
211                 }
212
213                 // Default title: current module called
214                 if (empty($this->page['title']) && $args->getModuleName()) {
215                         $this->page['title'] = ucfirst($args->getModuleName());
216                 }
217
218                 // Prepend the sitename to the page title
219                 $this->page['title'] = $config->get('config', 'sitename', '') . (!empty($this->page['title']) ? ' | ' . $this->page['title'] : '');
220
221                 if (!empty(Renderer::$theme['stylesheet'])) {
222                         $stylesheet = Renderer::$theme['stylesheet'];
223                 } else {
224                         $stylesheet = $app->getCurrentThemeStylesheetPath();
225                 }
226
227                 $this->registerStylesheet($stylesheet);
228
229                 $shortcut_icon = $config->get('system', 'shortcut_icon');
230                 if ($shortcut_icon == '') {
231                         $shortcut_icon = 'images/friendica.svg';
232                 }
233
234                 $touch_icon = $config->get('system', 'touch_icon');
235                 if ($touch_icon == '') {
236                         $touch_icon = 'images/friendica-192.png';
237                 }
238
239                 Hook::callAll('head', $this->page['htmlhead']);
240
241                 $tpl = Renderer::getMarkupTemplate('head.tpl');
242                 /* put the head template at the beginning of page['htmlhead']
243                  * since the code added by the modules frequently depends on it
244                  * being first
245                  */
246                 $this->page['htmlhead'] = Renderer::replaceMacros($tpl, [
247                         '$l10n' => [
248                                 'delitem'          => $l10n->t('Delete this item?'),
249                                 'blockAuthor'      => $l10n->t("Block this author? They won't be able to follow you nor see your public posts, and you won't be able to see their posts and their notifications."),
250                                 'ignoreAuthor'     => $l10n->t("Ignore this author? You won't be able to see their posts and their notifications."),
251                                 'collapseAuthor'   => $l10n->t("Collapse this author's posts?"),
252                                 'ignoreServer'     => $l10n->t("Ignore this author's server?"),
253                                 'ignoreServerDesc' => $l10n->t("You won't see any content from this server including reshares in your Network page, the community pages and individual conversations."),
254
255                                 'likeError'     => $l10n->t('Like not successful'),
256                                 'dislikeError'  => $l10n->t('Dislike not successful'),
257                                 'announceError' => $l10n->t('Sharing not successful'),
258                                 'attendError'   => $l10n->t('Attendance unsuccessful'),
259                                 'srvError'      => $l10n->t('Backend error'),
260                                 'netError'      => $l10n->t('Network error'),
261
262                                 // Dropzone
263                                 'dictDefaultMessage'           => $l10n->t('Drop files here to upload'),
264                                 'dictFallbackMessage'          => $l10n->t("Your browser does not support drag and drop file uploads."),
265                                 'dictFallbackText'             => $l10n->t('Please use the fallback form below to upload your files like in the olden days.'),
266                                 'dictFileTooBig'               => $l10n->t('File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB.'),
267                                 'dictInvalidFileType'          => $l10n->t("You can't upload files of this type."),
268                                 'dictResponseError'            => $l10n->t('Server responded with {{statusCode}} code.'),
269                                 'dictCancelUpload'             => $l10n->t('Cancel upload'),
270                                 'dictUploadCanceled'           => $l10n->t('Upload canceled.'),
271                                 'dictCancelUploadConfirmation' => $l10n->t('Are you sure you want to cancel this upload?'),
272                                 'dictRemoveFile'               => $l10n->t('Remove file'),
273                                 'dictMaxFilesExceeded'         => $l10n->t("You can't upload any more files."),
274                         ],
275
276                         '$local_user'      => $localUID,
277                         '$generator'       => 'Friendica' . ' ' . App::VERSION,
278                         '$update_interval' => $interval,
279                         '$shortcut_icon'   => $shortcut_icon,
280                         '$touch_icon'      => $touch_icon,
281                         '$block_public'    => intval($config->get('system', 'block_public')),
282                         '$stylesheets'     => $this->stylesheets,
283
284                         // Dropzone
285                         '$max_imagesize' => round(\Friendica\Util\Strings::getBytesFromShorthand($config->get('system', 'maximagesize')) / 1000000, 1),
286
287                 ]) . $this->page['htmlhead'];
288         }
289
290         /**
291          * Returns the complete URL of the current page, e.g.: http(s)://something.com/network
292          *
293          * Taken from http://webcheatsheet.com/php/get_current_page_url.php
294          */
295         private function curPageURL(): string
296         {
297                 $pageURL = 'http';
298                 if (!empty($_SERVER["HTTPS"]) && ($_SERVER["HTTPS"] == "on")) {
299                         $pageURL .= "s";
300                 }
301
302                 $pageURL .= "://";
303
304                 if ($_SERVER["SERVER_PORT"] != "80" && $_SERVER["SERVER_PORT"] != "443") {
305                         $pageURL .= $_SERVER["SERVER_NAME"] . ":" . $_SERVER["SERVER_PORT"] . $_SERVER["REQUEST_URI"];
306                 } else {
307                         $pageURL .= $_SERVER["SERVER_NAME"] . $_SERVER["REQUEST_URI"];
308                 }
309                 return $pageURL;
310         }
311
312         /**
313          * Initializes Page->page['footer'].
314          *
315          * Includes:
316          * - JavaScript homebase
317          * - Mobile toggle link
318          * - Registered footer scripts (through App->registerFooterScript())
319          * - footer.tpl template
320          *
321          * @param App  $app  The Friendica App instance
322          * @param Mode $mode The Friendica runtime mode
323          * @param L10n $l10n The l10n instance
324          *
325          * @throws HTTPException\InternalServerErrorException
326          */
327         private function initFooter(App $app, Mode $mode, L10n $l10n)
328         {
329                 // If you're just visiting, let javascript take you home
330                 if (!empty($_SESSION['visitor_home'])) {
331                         $homebase = $_SESSION['visitor_home'];
332                 } elseif (!empty($app->getLoggedInUserNickname())) {
333                         $homebase = 'profile/' . $app->getLoggedInUserNickname();
334                 }
335
336                 if (isset($homebase)) {
337                         $this->page['footer'] .= '<script>var homebase="' . $homebase . '";</script>' . "\n";
338                 }
339
340                 /*
341                  * Add a "toggle mobile" link if we're using a mobile device
342                  */
343                 if ($mode->isMobile() || $mode->isTablet()) {
344                         if (isset($_SESSION['show-mobile']) && !$_SESSION['show-mobile']) {
345                                 $link = 'toggle_mobile?address=' . urlencode($this->curPageURL());
346                         } else {
347                                 $link = 'toggle_mobile?off=1&address=' . urlencode($this->curPageURL());
348                         }
349                         $this->page['footer'] .= Renderer::replaceMacros(Renderer::getMarkupTemplate("toggle_mobile_footer.tpl"), [
350                                 '$toggle_link' => $link,
351                                 '$toggle_text' => $l10n->t('toggle mobile')
352                         ]);
353                 }
354
355                 Hook::callAll('footer', $this->page['footer']);
356
357                 $tpl                  = Renderer::getMarkupTemplate('footer.tpl');
358                 $this->page['footer'] = Renderer::replaceMacros($tpl, [
359                         '$footerScripts' => array_unique($this->footerScripts),
360                 ]) . $this->page['footer'];
361         }
362
363         /**
364          * Initializes Page->page['content'].
365          *
366          * Includes:
367          * - module content
368          * - hooks for content
369          *
370          * @param ResponseInterface  $response The Module response class
371          * @param Mode               $mode     The Friendica execution mode
372          *
373          * @throws HTTPException\InternalServerErrorException
374          */
375         private function initContent(ResponseInterface $response, Mode $mode)
376         {
377                 // initialise content region
378                 if ($mode->isNormal()) {
379                         Hook::callAll('page_content_top', $this->page['content']);
380                 }
381
382                 $this->page['content'] .= (string)$response->getBody();
383         }
384
385         /**
386          * Register a javascript file path to be included in the <footer> tag of every page.
387          * Inclusion is done in App->initFooter().
388          * The path can be absolute or relative to the Friendica installation base folder.
389          *
390          * @param string $path
391          *
392          * @see Page::initFooter()
393          *
394          */
395         public function registerFooterScript($path)
396         {
397                 $path = Network::appendQueryParam($path, ['v' => App::VERSION]);
398
399                 $url = str_replace($this->basePath . DIRECTORY_SEPARATOR, '', $path);
400
401                 $this->footerScripts[] = trim($url, '/');
402         }
403
404         /**
405          * Executes the creation of the current page and prints it to the screen
406          *
407          * @param App                         $app      The Friendica App
408          * @param BaseURL                     $baseURL  The Friendica Base URL
409          * @param Arguments                   $args     The Friendica App arguments
410          * @param Mode                        $mode     The current node mode
411          * @param ResponseInterface           $response The Response of the module class, including type, content & headers
412          * @param L10n                        $l10n     The l10n language class
413          * @param Profiler                    $profiler
414          * @param IManageConfigValues         $config   The Configuration of this node
415          * @param IManagePersonalConfigValues $pconfig  The personal/user configuration
416          * @param Nav                         $nav
417          * @param int                         $localUID
418          * @throws HTTPException\MethodNotAllowedException
419          * @throws HTTPException\InternalServerErrorException
420          * @throws HTTPException\ServiceUnavailableException
421          */
422         public function run(App $app, BaseURL $baseURL, Arguments $args, Mode $mode, ResponseInterface $response, L10n $l10n, Profiler $profiler, IManageConfigValues $config, IManagePersonalConfigValues $pconfig, Nav $nav, int $localUID)
423         {
424                 $moduleName = $args->getModuleName();
425
426                 $this->command = $moduleName;
427                 $this->method  = $args->getMethod();
428
429                 /* Create the page content.
430                  * Calls all hooks which are including content operations
431                  *
432                  * Sets the $Page->page['content'] variable
433                  */
434                 $timestamp = microtime(true);
435                 $this->initContent($response, $mode);
436
437                 // Load current theme info after module has been initialized as theme could have been set in module
438                 $currentTheme = $app->getCurrentTheme();
439                 $theme_info_file = 'view/theme/' . $currentTheme . '/theme.php';
440                 if (file_exists($theme_info_file)) {
441                         require_once $theme_info_file;
442                 }
443
444                 if (function_exists(str_replace('-', '_', $currentTheme) . '_init')) {
445                         $func = str_replace('-', '_', $currentTheme) . '_init';
446                         $func($app);
447                 }
448
449                 /* Create the page head after setting the language
450                  * and getting any auth credentials.
451                  *
452                  * Moved initHead() and initFooter() to after
453                  * all the module functions have executed so that all
454                  * theme choices made by the modules can take effect.
455                  */
456                 $this->initHead($app, $args, $l10n, $config, $pconfig, $localUID);
457
458                 /* Build the page ending -- this is stuff that goes right before
459                  * the closing </body> tag
460                  */
461                 $this->initFooter($app, $mode, $l10n);
462
463                 $profiler->set(microtime(true) - $timestamp, 'aftermath');
464
465                 if (!$mode->isAjax()) {
466                         Hook::callAll('page_end', $this->page['content']);
467                 }
468
469                 // Add the navigation (menu) template
470                 if ($moduleName != 'install' && $moduleName != 'maintenance') {
471                         $this->page['htmlhead'] .= Renderer::replaceMacros(Renderer::getMarkupTemplate('nav_head.tpl'), []);
472                         $this->page['nav']      = $nav->getHtml();
473                 }
474
475                 // Build the page - now that we have all the components
476                 if (isset($_GET["mode"]) && (($_GET["mode"] == "raw") || ($_GET["mode"] == "minimal"))) {
477                         $doc = new DOMDocument();
478
479                         $target = new DOMDocument();
480                         $target->loadXML("<root></root>");
481
482                         $content = mb_convert_encoding($this->page["content"], 'HTML-ENTITIES', "UTF-8");
483
484                         /// @TODO one day, kill those error-suppressing @ stuff, or PHP should ban it
485                         @$doc->loadHTML($content);
486
487                         $xpath = new DOMXPath($doc);
488
489                         $list = $xpath->query("//*[contains(@id,'tread-wrapper-')]");  /* */
490
491                         foreach ($list as $item) {
492                                 $item = $target->importNode($item, true);
493
494                                 // And then append it to the target
495                                 $target->documentElement->appendChild($item);
496                         }
497
498                         if ($_GET["mode"] == "raw") {
499                                 $response->withBody(Utils::streamFor($target->saveHTML()));
500                                 System::echoResponse($response);
501                                 System::exit();
502                         }
503                 }
504
505                 $page    = $this->page;
506
507                 // add and escape some common but crucial content for direct "echo" in HTML (security)
508                 $page['title']   = htmlspecialchars($page['title'] ?? '');
509                 $page['section'] = htmlspecialchars($args->get(0) ?? 'generic');
510                 $page['module']  = htmlspecialchars($args->getModuleName() ?? '');
511
512                 header("X-Friendica-Version: " . App::VERSION);
513                 header("Content-type: text/html; charset=utf-8");
514
515                 if ($config->get('system', 'hsts') && ($baseURL->getScheme() === 'https')) {
516                         header("Strict-Transport-Security: max-age=31536000");
517                 }
518
519                 // Some security stuff
520                 header('X-Content-Type-Options: nosniff');
521                 header('X-XSS-Protection: 1; mode=block');
522                 header('X-Permitted-Cross-Domain-Policies: none');
523                 header('X-Frame-Options: sameorigin');
524
525                 // Things like embedded OSM maps don't work, when this is enabled
526                 // header("Content-Security-Policy: default-src 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; connect-src 'self'; style-src 'self' 'unsafe-inline'; font-src 'self'; img-src 'self' https: data:; media-src 'self' https:; child-src 'self' https:; object-src 'none'");
527
528                 /* We use $_GET["mode"] for special page templates. So we will check if we have
529                  * to load another page template than the default one.
530                  * The page templates are located in /view/php/ or in the theme directory.
531                  */
532                 if (isset($_GET['mode'])) {
533                         $template = Theme::getPathForFile('php/' . Strings::sanitizeFilePathItem($_GET['mode']) . '.php');
534                 }
535
536                 // If there is no page template use the default page template
537                 if (empty($template)) {
538                         $template = Theme::getPathForFile('php/default.php');
539                 }
540
541                 // Theme templates expect $a as an App instance
542                 $a = $app;
543
544                 // Used as is in view/php/default.php
545                 $lang = $l10n->getCurrentLang();
546
547                 ob_start();
548                 require_once $template;
549                 $body = ob_get_clean();
550
551                 return $response->withBody(Utils::streamFor($body));
552         }
553 }