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