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