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