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