]> git.mxchange.org Git - friendica.git/blob - index.php
There is now "rawContent" for technical endpoints
[friendica.git] / index.php
1 <?php
2 /**
3  * @file index.php
4  * Friendica
5  */
6
7 /**
8  * Bootstrap the application
9  */
10
11 use Friendica\App;
12 use Friendica\Content\Nav;
13 use Friendica\Core\Addon;
14 use Friendica\Core\Config;
15 use Friendica\Core\L10n;
16 use Friendica\Core\Session;
17 use Friendica\Core\System;
18 use Friendica\Core\Theme;
19 use Friendica\Core\Worker;
20 use Friendica\Database\DBA;
21 use Friendica\Model\Profile;
22 use Friendica\Module\Login;
23
24 require_once 'boot.php';
25
26 $a = new App(__DIR__);
27
28 // We assume that the index.php is called by a frontend process
29 // The value is set to "true" by default in boot.php
30 $a->backend = false;
31
32 /**
33  * Try to open the database;
34  */
35
36 require_once "include/dba.php";
37
38 // Missing DB connection: ERROR
39 if ($a->mode & App::MODE_LOCALCONFIGPRESENT && !($a->mode & App::MODE_DBAVAILABLE)) {
40         System::httpExit(500, ['title' => 'Error 500 - Internal Server Error', 'description' => 'Apologies but the website is unavailable at the moment.']);
41 }
42
43 // Max Load Average reached: ERROR
44 if ($a->isMaxProcessesReached() || $a->isMaxLoadReached()) {
45         header('Retry-After: 120');
46         header('Refresh: 120; url=' . System::baseUrl() . "/" . $a->query_string);
47
48         System::httpExit(503, ['title' => 'Error 503 - Service Temporarily Unavailable', 'description' => 'System is currently overloaded. Please try again later.']);
49 }
50
51 if (!$a->isInstallMode()) {
52         if (Config::get('system', 'force_ssl') && ($a->get_scheme() == "http")
53                 && (intval(Config::get('system', 'ssl_policy')) == SSL_POLICY_FULL)
54                 && (substr(System::baseUrl(), 0, 8) == "https://")
55                 && ($_SERVER['REQUEST_METHOD'] == 'GET')) {
56                 header("HTTP/1.1 302 Moved Temporarily");
57                 header("Location: " . System::baseUrl() . "/" . $a->query_string);
58                 exit();
59         }
60
61         Config::init();
62         Session::init();
63         Addon::loadHooks();
64         Addon::callHooks('init_1');
65 }
66
67 $lang = L10n::getBrowserLanguage();
68
69 L10n::loadTranslationTable($lang);
70
71 /**
72  * Important stuff we always need to do.
73  *
74  * The order of these may be important so use caution if you think they're all
75  * intertwingled with no logical order and decide to sort it out. Some of the
76  * dependencies have changed, but at least at one time in the recent past - the
77  * order was critical to everything working properly
78  */
79
80 // Exclude the backend processes from the session management
81 if (!$a->is_backend()) {
82         $stamp1 = microtime(true);
83         session_start();
84         $a->save_timestamp($stamp1, "parser");
85 } else {
86         $_SESSION = [];
87         Worker::executeIfIdle();
88 }
89
90 /**
91  * Language was set earlier, but we can over-ride it in the session.
92  * We have to do it here because the session was just now opened.
93  */
94 if (x($_SESSION, 'authenticated') && !x($_SESSION, 'language')) {
95         $_SESSION['language'] = $lang;
96         // we haven't loaded user data yet, but we need user language
97         if (!empty($_SESSION['uid'])) {
98                 $user = DBA::selectFirst('user', ['language'], ['uid' => $_SESSION['uid']]);
99                 if (DBA::isResult($user)) {
100                         $_SESSION['language'] = $user['language'];
101                 }
102         }
103 }
104
105 if (x($_SESSION, 'language') && ($_SESSION['language'] !== $lang)) {
106         $lang = $_SESSION['language'];
107         L10n::loadTranslationTable($lang);
108 }
109
110 if (!empty($_GET['zrl']) && $a->mode == App::MODE_NORMAL) {
111         $a->query_string = Profile::stripZrls($a->query_string);
112         if (!local_user()) {
113                 // Only continue when the given profile link seems valid
114                 // Valid profile links contain a path with "/profile/" and no query parameters
115                 if ((parse_url($_GET['zrl'], PHP_URL_QUERY) == "") &&
116                         strstr(parse_url($_GET['zrl'], PHP_URL_PATH), "/profile/")) {
117                         if (defaults($_SESSION, "visitor_home", "") != $_GET["zrl"]) {
118                                 $_SESSION['my_url'] = $_GET['zrl'];
119                                 $_SESSION['authenticated'] = 0;
120                         }
121                         Profile::zrlInit($a);
122                 } else {
123                         // Someone came with an invalid parameter, maybe as a DDoS attempt
124                         // We simply stop processing here
125                         logger("Invalid ZRL parameter " . $_GET['zrl'], LOGGER_DEBUG);
126                         header('HTTP/1.1 403 Forbidden');
127                         echo "<h1>403 Forbidden</h1>";
128                         killme();
129                 }
130         }
131 }
132
133 if ((x($_GET,'owt')) && $a->mode == App::MODE_NORMAL) {
134         $token = $_GET['owt'];
135         $a->query_string = Profile::stripQueryParam($a->query_string, 'owt');
136         Profile::openWebAuthInit($token);
137 }
138
139 /**
140  * For Mozilla auth manager - still needs sorting, and this might conflict with LRDD header.
141  * Apache/PHP lumps the Link: headers into one - and other services might not be able to parse it
142  * this way. There's a PHP flag to link the headers because by default this will over-write any other
143  * link header.
144  *
145  * What we really need to do is output the raw headers ourselves so we can keep them separate.
146  */
147
148 // header('Link: <' . System::baseUrl() . '/amcd>; rel="acct-mgmt";');
149
150 Login::sessionAuth();
151
152 if (! x($_SESSION, 'authenticated')) {
153         header('X-Account-Management-Status: none');
154 }
155
156 /* set up page['htmlhead'] and page['end'] for the modules to use */
157 $a->page['htmlhead'] = '';
158 $a->page['end'] = '';
159
160 $_SESSION['sysmsg']       = defaults($_SESSION, 'sysmsg'      , []);
161 $_SESSION['sysmsg_info']  = defaults($_SESSION, 'sysmsg_info' , []);
162 $_SESSION['last_updated'] = defaults($_SESSION, 'last_updated', []);
163
164 /*
165  * check_config() is responsible for running update scripts. These automatically
166  * update the DB schema whenever we push a new one out. It also checks to see if
167  * any addons have been added or removed and reacts accordingly.
168  */
169
170 // in install mode, any url loads install module
171 // but we need "view" module for stylesheet
172 if ($a->isInstallMode() && $a->module!="view") {
173         $a->module = 'install';
174 } elseif (!($a->mode & App::MODE_MAINTENANCEDISABLED) && $a->module != "view") {
175         $a->module = 'maintenance';
176 } else {
177         check_url($a);
178         check_db(false);
179         check_addons($a);
180 }
181
182 Nav::setSelected('nothing');
183
184 //Don't populate apps_menu if apps are private
185 $privateapps = Config::get('config', 'private_addons');
186 if ((local_user()) || (! $privateapps === "1")) {
187         $arr = ['app_menu' => $a->apps];
188
189         Addon::callHooks('app_menu', $arr);
190
191         $a->apps = $arr['app_menu'];
192 }
193
194 /**
195  * We have already parsed the server path into $a->argc and $a->argv
196  *
197  * $a->argv[0] is our module name. We will load the file mod/{$a->argv[0]}.php
198  * and use it for handling our URL request.
199  * The module file contains a few functions that we call in various circumstances
200  * and in the following order:
201  *
202  * "module"_init
203  * "module"_post (only called if there are $_POST variables)
204  * "module"_afterpost
205  * "module"_content - the string return of this function contains our page body
206  *
207  * Modules which emit other serialisations besides HTML (XML,JSON, etc.) should do
208  * so within the module init and/or post functions and then invoke killme() to terminate
209  * further processing.
210  */
211 if (strlen($a->module)) {
212
213         /**
214          * We will always have a module name.
215          * First see if we have an addon which is masquerading as a module.
216          */
217
218         // Compatibility with the Android Diaspora client
219         if ($a->module == 'stream') {
220                 goaway('network?f=&order=post');
221         }
222
223         if ($a->module == 'conversations') {
224                 goaway('message');
225         }
226
227         if ($a->module == 'commented') {
228                 goaway('network?f=&order=comment');
229         }
230
231         if ($a->module == 'liked') {
232                 goaway('network?f=&order=comment');
233         }
234
235         if ($a->module == 'activity') {
236                 goaway('network/?f=&conv=1');
237         }
238
239         if (($a->module == 'status_messages') && ($a->cmd == 'status_messages/new')) {
240                 goaway('bookmarklet');
241         }
242
243         if (($a->module == 'user') && ($a->cmd == 'user/edit')) {
244                 goaway('settings');
245         }
246
247         if (($a->module == 'tag_followings') && ($a->cmd == 'tag_followings/manage')) {
248                 goaway('search');
249         }
250
251         // Compatibility with the Firefox App
252         if (($a->module == "users") && ($a->cmd == "users/sign_in")) {
253                 $a->module = "login";
254         }
255
256         $privateapps = Config::get('config', 'private_addons');
257
258         if (is_array($a->addons) && in_array($a->module, $a->addons) && file_exists("addon/{$a->module}/{$a->module}.php")) {
259                 //Check if module is an app and if public access to apps is allowed or not
260                 if ((!local_user()) && Addon::isApp($a->module) && $privateapps === "1") {
261                         info(L10n::t("You must be logged in to use addons. "));
262                 } else {
263                         include_once "addon/{$a->module}/{$a->module}.php";
264                         if (function_exists($a->module . '_module')) {
265                                 $a->module_loaded = true;
266                         }
267                 }
268         }
269
270         // Controller class routing
271         if (! $a->module_loaded && class_exists('Friendica\\Module\\' . ucfirst($a->module))) {
272                 $a->module_class = 'Friendica\\Module\\' . ucfirst($a->module);
273                 $a->module_loaded = true;
274         }
275
276         /**
277          * If not, next look for a 'standard' program module in the 'mod' directory
278          */
279
280         if (! $a->module_loaded && file_exists("mod/{$a->module}.php")) {
281                 include_once "mod/{$a->module}.php";
282                 $a->module_loaded = true;
283         }
284
285         /**
286          * The URL provided does not resolve to a valid module.
287          *
288          * On Dreamhost sites, quite often things go wrong for no apparent reason and they send us to '/internal_error.html'.
289          * We don't like doing this, but as it occasionally accounts for 10-20% or more of all site traffic -
290          * we are going to trap this and redirect back to the requested page. As long as you don't have a critical error on your page
291          * this will often succeed and eventually do the right thing.
292          *
293          * Otherwise we are going to emit a 404 not found.
294          */
295
296         if (! $a->module_loaded) {
297                 // Stupid browser tried to pre-fetch our Javascript img template. Don't log the event or return anything - just quietly exit.
298                 if ((x($_SERVER, 'QUERY_STRING')) && preg_match('/{[0-9]}/', $_SERVER['QUERY_STRING']) !== 0) {
299                         killme();
300                 }
301
302                 if ((x($_SERVER, 'QUERY_STRING')) && ($_SERVER['QUERY_STRING'] === 'q=internal_error.html') && isset($dreamhost_error_hack)) {
303                         logger('index.php: dreamhost_error_hack invoked. Original URI =' . $_SERVER['REQUEST_URI']);
304                         goaway(System::baseUrl() . $_SERVER['REQUEST_URI']);
305                 }
306
307                 logger('index.php: page not found: ' . $_SERVER['REQUEST_URI'] . ' ADDRESS: ' . $_SERVER['REMOTE_ADDR'] . ' QUERY: ' . $_SERVER['QUERY_STRING'], LOGGER_DEBUG);
308                 header($_SERVER["SERVER_PROTOCOL"] . ' 404 ' . L10n::t('Not Found'));
309                 $tpl = get_markup_template("404.tpl");
310                 $a->page['content'] = replace_macros(
311                         $tpl,
312                         [
313                         '$message' =>  L10n::t('Page not found.')]
314                 );
315         }
316 }
317
318 /**
319  * Load current theme info
320  */
321 $theme_info_file = 'view/theme/' . $a->getCurrentTheme() . '/theme.php';
322 if (file_exists($theme_info_file)) {
323         require_once $theme_info_file;
324 }
325
326
327 /* initialise content region */
328
329 if (! x($a->page, 'content')) {
330         $a->page['content'] = '';
331 }
332
333 if ($a->mode == App::MODE_NORMAL) {
334         Addon::callHooks('page_content_top', $a->page['content']);
335 }
336
337 /**
338  * Call module functions
339  */
340
341 if ($a->module_loaded) {
342         $a->page['page_title'] = $a->module;
343         $placeholder = '';
344
345         Addon::callHooks($a->module . '_mod_init', $placeholder);
346
347         if ($a->module_class) {
348                 call_user_func([$a->module_class, 'init']);
349         } else if (function_exists($a->module . '_init')) {
350                 $func = $a->module . '_init';
351                 $func($a);
352         }
353
354         // "rawContent" is especially meant for technical endpoints.
355         // This endpoint doesn't need any theme initialization or other comparable stuff.
356         if (!$a->error && $a->module_class) {
357                 call_user_func([$a->module_class, 'rawContent']);
358         }
359
360         if (function_exists(str_replace('-', '_', $a->getCurrentTheme()) . '_init')) {
361                 $func = str_replace('-', '_', $a->getCurrentTheme()) . '_init';
362                 $func($a);
363         }
364
365         if (! $a->error && $_SERVER['REQUEST_METHOD'] === 'POST') {
366                 Addon::callHooks($a->module . '_mod_post', $_POST);
367                 if ($a->module_class) {
368                         call_user_func([$a->module_class, 'post']);
369                 } else if (function_exists($a->module . '_post')) {
370                         $func = $a->module . '_post';
371                         $func($a);
372                 }
373         }
374
375         if (! $a->error) {
376                 Addon::callHooks($a->module . '_mod_afterpost', $placeholder);
377                 if ($a->module_class) {
378                         call_user_func([$a->module_class, 'afterpost']);
379                 } else if (function_exists($a->module . '_afterpost')) {
380                         $func = $a->module . '_afterpost';
381                         $func($a);
382                 }
383         }
384
385         if (! $a->error) {
386                 $arr = ['content' => $a->page['content']];
387                 Addon::callHooks($a->module . '_mod_content', $arr);
388                 $a->page['content'] = $arr['content'];
389                 if ($a->module_class) {
390                         $arr = ['content' => call_user_func([$a->module_class, 'content'])];
391                 } else if (function_exists($a->module . '_content')) {
392                         $func = $a->module . '_content';
393                         $arr = ['content' => $func($a)];
394                 }
395                 Addon::callHooks($a->module . '_mod_aftercontent', $arr);
396                 $a->page['content'] .= $arr['content'];
397         }
398
399         if (function_exists(str_replace('-', '_', $a->getCurrentTheme()) . '_content_loaded')) {
400                 $func = str_replace('-', '_', $a->getCurrentTheme()) . '_content_loaded';
401                 $func($a);
402         }
403 }
404
405 /*
406  * Create the page head after setting the language
407  * and getting any auth credentials.
408  *
409  * Moved init_pagehead() and init_page_end() to after
410  * all the module functions have executed so that all
411  * theme choices made by the modules can take effect.
412  */
413
414 $a->init_pagehead();
415
416 /*
417  * Build the page ending -- this is stuff that goes right before
418  * the closing </body> tag
419  */
420 $a->init_page_end();
421
422 // If you're just visiting, let javascript take you home
423 if (x($_SESSION, 'visitor_home')) {
424         $homebase = $_SESSION['visitor_home'];
425 } elseif (local_user()) {
426         $homebase = 'profile/' . $a->user['nickname'];
427 }
428
429 if (isset($homebase)) {
430         $a->page['content'] .= '<script>var homebase="' . $homebase . '" ; </script>';
431 }
432
433 /*
434  * now that we've been through the module content, see if the page reported
435  * a permission problem and if so, a 403 response would seem to be in order.
436  */
437 if (stristr(implode("", $_SESSION['sysmsg']), L10n::t('Permission denied'))) {
438         header($_SERVER["SERVER_PROTOCOL"] . ' 403 ' . L10n::t('Permission denied.'));
439 }
440
441 /*
442  * Report anything which needs to be communicated in the notification area (before the main body)
443  */
444 Addon::callHooks('page_end', $a->page['content']);
445
446 /*
447  * Add the navigation (menu) template
448  */
449 if ($a->module != 'install' && $a->module != 'maintenance') {
450         Nav::build($a);
451 }
452
453 /*
454  * Add a "toggle mobile" link if we're using a mobile device
455  */
456 if ($a->is_mobile || $a->is_tablet) {
457         if (isset($_SESSION['show-mobile']) && !$_SESSION['show-mobile']) {
458                 $link = 'toggle_mobile?address=' . curPageURL();
459         } else {
460                 $link = 'toggle_mobile?off=1&address=' . curPageURL();
461         }
462         $a->page['footer'] = replace_macros(
463                 get_markup_template("toggle_mobile_footer.tpl"),
464                 [
465                         '$toggle_link' => $link,
466                         '$toggle_text' => L10n::t('toggle mobile')]
467         );
468 }
469
470 /**
471  * Build the page - now that we have all the components
472  */
473
474 if (!$a->theme['stylesheet']) {
475         $stylesheet = $a->getCurrentThemeStylesheetPath();
476 } else {
477         $stylesheet = $a->theme['stylesheet'];
478 }
479
480 $a->page['htmlhead'] = str_replace('{{$stylesheet}}', $stylesheet, $a->page['htmlhead']);
481 //$a->page['htmlhead'] = replace_macros($a->page['htmlhead'], array('$stylesheet' => $stylesheet));
482
483 if (isset($_GET["mode"]) && (($_GET["mode"] == "raw") || ($_GET["mode"] == "minimal"))) {
484         $doc = new DOMDocument();
485
486         $target = new DOMDocument();
487         $target->loadXML("<root></root>");
488
489         $content = mb_convert_encoding($a->page["content"], 'HTML-ENTITIES', "UTF-8");
490
491         /// @TODO one day, kill those error-surpressing @ stuff, or PHP should ban it
492         @$doc->loadHTML($content);
493
494         $xpath = new DOMXPath($doc);
495
496         $list = $xpath->query("//*[contains(@id,'tread-wrapper-')]");  /* */
497
498         foreach ($list as $item) {
499                 $item = $target->importNode($item, true);
500
501                 // And then append it to the target
502                 $target->documentElement->appendChild($item);
503         }
504 }
505
506 if (isset($_GET["mode"]) && ($_GET["mode"] == "raw")) {
507         header("Content-type: text/html; charset=utf-8");
508
509         echo substr($target->saveHTML(), 6, -8);
510
511         killme();
512 }
513
514 $page    = $a->page;
515 $profile = $a->profile;
516
517 header("X-Friendica-Version: " . FRIENDICA_VERSION);
518 header("Content-type: text/html; charset=utf-8");
519
520 if (Config::get('system', 'hsts') && (Config::get('system', 'ssl_policy') == SSL_POLICY_FULL)) {
521         header("Strict-Transport-Security: max-age=31536000");
522 }
523
524 // Some security stuff
525 header('X-Content-Type-Options: nosniff');
526 header('X-XSS-Protection: 1; mode=block');
527 header('X-Permitted-Cross-Domain-Policies: none');
528 header('X-Frame-Options: sameorigin');
529
530 // Things like embedded OSM maps don't work, when this is enabled
531 // 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'");
532
533 /*
534  * We use $_GET["mode"] for special page templates. So we will check if we have
535  * to load another page template than the default one.
536  * The page templates are located in /view/php/ or in the theme directory.
537  */
538 if (isset($_GET["mode"])) {
539         $template = Theme::getPathForFile($_GET["mode"] . '.php');
540 }
541
542 // If there is no page template use the default page template
543 if (empty($template)) {
544         $template = Theme::getPathForFile("default.php");
545 }
546
547 /// @TODO Looks unsafe (remote-inclusion), is maybe not but Theme::getPathForFile() uses file_exists() but does not escape anything
548 require_once $template;
549
550 killme();