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