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