]> git.mxchange.org Git - friendica.git/blob - index.php
Merge pull request #4651 from MrPetovan/develop
[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                 $a->module = "network";
233         }
234
235         // Compatibility with the Firefox App
236         if (($a->module == "users") && ($a->cmd == "users/sign_in")) {
237                 $a->module = "login";
238         }
239
240         $privateapps = Config::get('config', 'private_addons');
241
242         if (is_array($a->addons) && in_array($a->module, $a->addons) && file_exists("addon/{$a->module}/{$a->module}.php")) {
243                 //Check if module is an app and if public access to apps is allowed or not
244                 if ((!local_user()) && Addon::isApp($a->module) && $privateapps === "1") {
245                         info(L10n::t("You must be logged in to use addons. "));
246                 } else {
247                         include_once "addon/{$a->module}/{$a->module}.php";
248                         if (function_exists($a->module . '_module')) {
249                                 $a->module_loaded = true;
250                         }
251                 }
252         }
253
254         // Controller class routing
255         if (! $a->module_loaded && class_exists('Friendica\\Module\\' . ucfirst($a->module))) {
256                 $a->module_class = 'Friendica\\Module\\' . ucfirst($a->module);
257                 $a->module_loaded = true;
258         }
259
260         /**
261          * If not, next look for a 'standard' program module in the 'mod' directory
262          */
263
264         if (! $a->module_loaded && file_exists("mod/{$a->module}.php")) {
265                 include_once "mod/{$a->module}.php";
266                 $a->module_loaded = true;
267         }
268
269         /**
270          * The URL provided does not resolve to a valid module.
271          *
272          * On Dreamhost sites, quite often things go wrong for no apparent reason and they send us to '/internal_error.html'.
273          * We don't like doing this, but as it occasionally accounts for 10-20% or more of all site traffic -
274          * 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
275          * this will often succeed and eventually do the right thing.
276          *
277          * Otherwise we are going to emit a 404 not found.
278          */
279
280         if (! $a->module_loaded) {
281                 // Stupid browser tried to pre-fetch our Javascript img template. Don't log the event or return anything - just quietly exit.
282                 if ((x($_SERVER, 'QUERY_STRING')) && preg_match('/{[0-9]}/', $_SERVER['QUERY_STRING']) !== 0) {
283                         killme();
284                 }
285
286                 if ((x($_SERVER, 'QUERY_STRING')) && ($_SERVER['QUERY_STRING'] === 'q=internal_error.html') && isset($dreamhost_error_hack)) {
287                         logger('index.php: dreamhost_error_hack invoked. Original URI =' . $_SERVER['REQUEST_URI']);
288                         goaway(System::baseUrl() . $_SERVER['REQUEST_URI']);
289                 }
290
291                 logger('index.php: page not found: ' . $_SERVER['REQUEST_URI'] . ' ADDRESS: ' . $_SERVER['REMOTE_ADDR'] . ' QUERY: ' . $_SERVER['QUERY_STRING'], LOGGER_DEBUG);
292                 header($_SERVER["SERVER_PROTOCOL"] . ' 404 ' . L10n::t('Not Found'));
293                 $tpl = get_markup_template("404.tpl");
294                 $a->page['content'] = replace_macros(
295                         $tpl,
296                         [
297                         '$message' =>  L10n::t('Page not found.')]
298                 );
299         }
300 }
301
302 /**
303  * Load current theme info
304  */
305 $theme_info_file = "view/theme/".current_theme()."/theme.php";
306 if (file_exists($theme_info_file)) {
307         require_once $theme_info_file;
308 }
309
310
311 /* initialise content region */
312
313 if (! x($a->page, 'content')) {
314         $a->page['content'] = '';
315 }
316
317 if (!$install && !$maintenance) {
318         Addon::callHooks('page_content_top', $a->page['content']);
319 }
320
321 /**
322  * Call module functions
323  */
324
325 if ($a->module_loaded) {
326         $a->page['page_title'] = $a->module;
327         $placeholder = '';
328
329         if ($a->module_class) {
330                 Addon::callHooks($a->module . '_mod_init', $placeholder);
331                 call_user_func([$a->module_class, 'init']);
332         } else if (function_exists($a->module . '_init')) {
333                 Addon::callHooks($a->module . '_mod_init', $placeholder);
334                 $func = $a->module . '_init';
335                 $func($a);
336         }
337
338         if (function_exists(str_replace('-', '_', current_theme()) . '_init')) {
339                 $func = str_replace('-', '_', current_theme()) . '_init';
340                 $func($a);
341         }
342
343         if (! $a->error && $_SERVER['REQUEST_METHOD'] === 'POST') {
344                 Addon::callHooks($a->module . '_mod_post', $_POST);
345                 if ($a->module_class) {
346                         call_user_func([$a->module_class, 'post']);
347                 } else if (function_exists($a->module . '_post')) {
348                         $func = $a->module . '_post';
349                         $func($a);
350                 }
351         }
352
353         if (! $a->error) {
354                 Addon::callHooks($a->module . '_mod_afterpost', $placeholder);
355                 if ($a->module_class) {
356                         call_user_func([$a->module_class, 'afterpost']);
357                 } else if (function_exists($a->module . '_afterpost')) {
358                         $func = $a->module . '_afterpost';
359                         $func($a);
360                 }
361         }
362
363         if (! $a->error) {
364                 $arr = ['content' => $a->page['content']];
365                 Addon::callHooks($a->module . '_mod_content', $arr);
366                 $a->page['content'] = $arr['content'];
367                 if ($a->module_class) {
368                         $arr = ['content' => call_user_func([$a->module_class, 'content'])];
369                 } else if (function_exists($a->module . '_content')) {
370                         $func = $a->module . '_content';
371                         $arr = ['content' => $func($a)];
372                 }
373                 Addon::callHooks($a->module . '_mod_aftercontent', $arr);
374                 $a->page['content'] .= $arr['content'];
375         }
376
377         if (function_exists(str_replace('-', '_', current_theme()) . '_content_loaded')) {
378                 $func = str_replace('-', '_', current_theme()) . '_content_loaded';
379                 $func($a);
380         }
381 }
382
383 /*
384  * Create the page head after setting the language
385  * and getting any auth credentials.
386  *
387  * Moved init_pagehead() and init_page_end() to after
388  * all the module functions have executed so that all
389  * theme choices made by the modules can take effect.
390  */
391
392 $a->init_pagehead();
393
394 /*
395  * Build the page ending -- this is stuff that goes right before
396  * the closing </body> tag
397  */
398 $a->init_page_end();
399
400 // If you're just visiting, let javascript take you home
401 if (x($_SESSION, 'visitor_home')) {
402         $homebase = $_SESSION['visitor_home'];
403 } elseif (local_user()) {
404         $homebase = 'profile/' . $a->user['nickname'];
405 }
406
407 if (isset($homebase)) {
408         $a->page['content'] .= '<script>var homebase="' . $homebase . '" ; </script>';
409 }
410
411 /*
412  * now that we've been through the module content, see if the page reported
413  * a permission problem and if so, a 403 response would seem to be in order.
414  */
415 if (stristr(implode("", $_SESSION['sysmsg']), L10n::t('Permission denied'))) {
416         header($_SERVER["SERVER_PROTOCOL"] . ' 403 ' . L10n::t('Permission denied.'));
417 }
418
419 /*
420  * Report anything which needs to be communicated in the notification area (before the main body)
421  */
422 Addon::callHooks('page_end', $a->page['content']);
423
424 /*
425  * Add the navigation (menu) template
426  */
427 if ($a->module != 'install' && $a->module != 'maintenance') {
428         Nav::build($a);
429 }
430
431 /*
432  * Add a "toggle mobile" link if we're using a mobile device
433  */
434 if ($a->is_mobile || $a->is_tablet) {
435         if (isset($_SESSION['show-mobile']) && !$_SESSION['show-mobile']) {
436                 $link = 'toggle_mobile?address=' . curPageURL();
437         } else {
438                 $link = 'toggle_mobile?off=1&address=' . curPageURL();
439         }
440         $a->page['footer'] = replace_macros(
441                 get_markup_template("toggle_mobile_footer.tpl"),
442                 [
443                         '$toggle_link' => $link,
444                         '$toggle_text' => L10n::t('toggle mobile')]
445         );
446 }
447
448 /**
449  * Build the page - now that we have all the components
450  */
451
452 if (!$a->theme['stylesheet']) {
453         $stylesheet = current_theme_url();
454 } else {
455         $stylesheet = $a->theme['stylesheet'];
456 }
457
458 $a->page['htmlhead'] = str_replace('{{$stylesheet}}', $stylesheet, $a->page['htmlhead']);
459 //$a->page['htmlhead'] = replace_macros($a->page['htmlhead'], array('$stylesheet' => $stylesheet));
460
461 if (isset($_GET["mode"]) && (($_GET["mode"] == "raw") || ($_GET["mode"] == "minimal"))) {
462         $doc = new DOMDocument();
463
464         $target = new DOMDocument();
465         $target->loadXML("<root></root>");
466
467         $content = mb_convert_encoding($a->page["content"], 'HTML-ENTITIES', "UTF-8");
468
469         /// @TODO one day, kill those error-surpressing @ stuff, or PHP should ban it
470         @$doc->loadHTML($content);
471
472         $xpath = new DOMXPath($doc);
473
474         $list = $xpath->query("//*[contains(@id,'tread-wrapper-')]");  /* */
475
476         foreach ($list as $item) {
477                 $item = $target->importNode($item, true);
478
479                 // And then append it to the target
480                 $target->documentElement->appendChild($item);
481         }
482 }
483
484 if (isset($_GET["mode"]) && ($_GET["mode"] == "raw")) {
485         header("Content-type: text/html; charset=utf-8");
486
487         echo substr($target->saveHTML(), 6, -8);
488
489         killme();
490 }
491
492 $page    = $a->page;
493 $profile = $a->profile;
494
495 header("X-Friendica-Version: " . FRIENDICA_VERSION);
496 header("Content-type: text/html; charset=utf-8");
497
498 if (Config::get('system', 'hsts') && (Config::get('system', 'ssl_policy') == SSL_POLICY_FULL)) {
499         header("Strict-Transport-Security: max-age=31536000");
500 }
501
502 // Some security stuff
503 header('X-Content-Type-Options: nosniff');
504 header('X-XSS-Protection: 1; mode=block');
505 header('X-Permitted-Cross-Domain-Policies: none');
506 header('X-Frame-Options: sameorigin');
507
508 // Things like embedded OSM maps don't work, when this is enabled
509 // 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'");
510
511 /*
512  * We use $_GET["mode"] for special page templates. So we will check if we have
513  * to load another page template than the default one.
514  * The page templates are located in /view/php/ or in the theme directory.
515  */
516 if (isset($_GET["mode"])) {
517         $template = Theme::getPathForFile($_GET["mode"] . '.php');
518 }
519
520 // If there is no page template use the default page template
521 if (empty($template)) {
522         $template = Theme::getPathForFile("default.php");
523 }
524
525 /// @TODO Looks unsafe (remote-inclusion), is maybe not but Theme::getPathForFile() uses file_exists() but does not escape anything
526 require_once $template;
527
528 killme();