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