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