12 * bootstrap the application
16 require_once('boot.php');
17 require_once('object/BaseObject.php');
20 BaseObject::set_app($a);
22 // We assume that the index.php is called by a frontend process
23 // The value is set to "true" by default in boot.php
28 * Load the configuration file which contains our DB credentials.
29 * Ignore errors. If the file doesn't exist or is empty, we are running in installation mode.
33 $install = ((file_exists('.htconfig.php') && filesize('.htconfig.php')) ? false : true);
35 @include(".htconfig.php");
43 * Try to open the database;
47 require_once("include/dba.php");
50 $db = new dba($db_host, $db_user, $db_pass, $db_data, $install);
51 unset($db_host, $db_user, $db_pass, $db_data);
54 * Load configs from db. Overwrite configs from .htconfig.php
57 load_config('config');
58 load_config('system');
60 if ($a->max_processes_reached() OR $a->maxload_reached()) {
61 header($_SERVER["SERVER_PROTOCOL"].' 503 Service Temporarily Unavailable');
62 header('Retry-After: 120');
63 header('Refresh: 120; url='.App::get_baseurl()."/".$a->query_string);
64 die("System is currently unavailable. Please try again later");
67 if (get_config('system','force_ssl') AND ($a->get_scheme() == "http") AND
68 (intval(get_config('system','ssl_policy')) == SSL_POLICY_FULL) AND
69 (substr(App::get_baseurl(), 0, 8) == "https://")) {
70 header("HTTP/1.1 302 Moved Temporarily");
71 header("Location: ".App::get_baseurl()."/".$a->query_string);
75 require_once("include/session.php");
79 $maintenance = get_config('system', 'maintenance');
82 $lang = get_browser_language();
84 load_translation_table($lang);
88 * Important stuff we always need to do.
90 * The order of these may be important so use caution if you think they're all
91 * intertwingled with no logical order and decide to sort it out. Some of the
92 * dependencies have changed, but at least at one time in the recent past - the
93 * order was critical to everything working properly
97 // Exclude the backend processes from the session management
98 if (!$a->is_backend()) {
99 $stamp1 = microtime(true);
101 $a->save_timestamp($stamp1, "parser");
103 require_once "include/poller.php";
105 call_worker_if_idle();
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.
112 if (x($_SESSION,'authenticated') && !x($_SESSION,'language')) {
113 // we didn't loaded user data yet, but we need user language
114 $r = q("SELECT language FROM user WHERE uid=%d", intval($_SESSION['uid']));
115 $_SESSION['language'] = $lang;
116 if (dbm::is_result($r)) $_SESSION['language'] = $r[0]['language'];
119 if((x($_SESSION,'language')) && ($_SESSION['language'] !== $lang)) {
120 $lang = $_SESSION['language'];
121 load_translation_table($lang);
124 if((x($_GET,'zrl')) && (!$install && !$maintenance)) {
125 // Only continue when the given profile link seems valid
126 // Valid profile links contain a path with "/profile/" and no query parameters
127 if ((parse_url($_GET['zrl'], PHP_URL_QUERY) == "") AND
128 strstr(parse_url($_GET['zrl'], PHP_URL_PATH), "/profile/")) {
129 $_SESSION['my_url'] = $_GET['zrl'];
130 $a->query_string = preg_replace('/[\?&]zrl=(.*?)([\?&]|$)/is','',$a->query_string);
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>";
144 * For Mozilla auth manager - still needs sorting, and this might conflict with LRDD header.
145 * Apache/PHP lumps the Link: headers into one - and other services might not be able to parse it
146 * this way. There's a PHP flag to link the headers because by default this will over-write any other
149 * What we really need to do is output the raw headers ourselves so we can keep them separate.
153 // header('Link: <' . App::get_baseurl() . '/amcd>; rel="acct-mgmt";');
155 if (x($_COOKIE["Friendica"]) || (x($_SESSION,'authenticated')) || (x($_POST,'auth-params')) || ($a->module === 'login')) {
156 require("include/auth.php");
159 if (! x($_SESSION,'authenticated')) {
160 header('X-Account-Management-Status: none');
163 /* set up page['htmlhead'] and page['end'] for the modules to use */
164 $a->page['htmlhead'] = '';
165 $a->page['end'] = '';
168 if (! x($_SESSION,'sysmsg')) {
169 $_SESSION['sysmsg'] = array();
172 if (! x($_SESSION,'sysmsg_info')) {
173 $_SESSION['sysmsg_info'] = array();
177 * check_config() is responsible for running update scripts. These automatically
178 * update the DB schema whenever we push a new one out. It also checks to see if
179 * any plugins have been added or removed and reacts accordingly.
182 // in install mode, any url loads install module
183 // but we need "view" module for stylesheet
184 if ($install && $a->module!="view") {
185 $a->module = 'install';
186 } elseif ($maintenance && $a->module!="view") {
187 $a->module = 'maintenance';
194 nav_set_selected('nothing');
196 //Don't populate apps_menu if apps are private
197 $privateapps = get_config('config','private_addons');
198 if ((local_user()) || (! $privateapps === "1")) {
199 $arr = array('app_menu' => $a->apps);
201 call_hooks('app_menu', $arr);
203 $a->apps = $arr['app_menu'];
208 * We have already parsed the server path into $a->argc and $a->argv
210 * $a->argv[0] is our module name. We will load the file mod/{$a->argv[0]}.php
211 * and use it for handling our URL request.
212 * The module file contains a few functions that we call in various circumstances
213 * and in the following order:
216 * "module"_post (only called if there are $_POST variables)
218 * "module"_content - the string return of this function contains our page body
220 * Modules which emit other serialisations besides HTML (XML,JSON, etc.) should do
221 * so within the module init and/or post functions and then invoke killme() to terminate
222 * further processing.
225 if(strlen($a->module)) {
229 * We will always have a module name.
230 * First see if we have a plugin which is masquerading as a module.
234 // Compatibility with the Android Diaspora client
235 if ($a->module == "stream")
236 $a->module = "network";
238 // Compatibility with the Firefox App
239 if (($a->module == "users") AND ($a->cmd == "users/sign_in"))
240 $a->module = "login";
242 $privateapps = get_config('config','private_addons');
244 if (is_array($a->plugins) && in_array($a->module,$a->plugins) && file_exists("addon/{$a->module}/{$a->module}.php")) {
245 //Check if module is an app and if public access to apps is allowed or not
246 if ((!local_user()) && plugin_is_app($a->module) && $privateapps === "1") {
247 info( t("You must be logged in to use addons. "));
250 include_once("addon/{$a->module}/{$a->module}.php");
251 if(function_exists($a->module . '_module'))
252 $a->module_loaded = true;
257 * If not, next look for a 'standard' program module in the 'mod' directory
260 if ((! $a->module_loaded) && (file_exists("mod/{$a->module}.php"))) {
261 include_once("mod/{$a->module}.php");
262 $a->module_loaded = true;
267 * The URL provided does not resolve to a valid module.
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.
274 * Otherwise we are going to emit a 404 not found.
278 if (! $a->module_loaded) {
280 // Stupid browser tried to pre-fetch our Javascript img template. Don't log the event or return anything - just quietly exit.
281 if ((x($_SERVER,'QUERY_STRING')) && preg_match('/{[0-9]}/',$_SERVER['QUERY_STRING']) !== 0) {
285 if ((x($_SERVER,'QUERY_STRING')) && ($_SERVER['QUERY_STRING'] === 'q=internal_error.html') && isset($dreamhost_error_hack)) {
286 logger('index.php: dreamhost_error_hack invoked. Original URI =' . $_SERVER['REQUEST_URI']);
287 goaway(App::get_baseurl() . $_SERVER['REQUEST_URI']);
290 logger('index.php: page not found: ' . $_SERVER['REQUEST_URI'] . ' ADDRESS: ' . $_SERVER['REMOTE_ADDR'] . ' QUERY: ' . $_SERVER['QUERY_STRING'], LOGGER_DEBUG);
291 header($_SERVER["SERVER_PROTOCOL"] . ' 404 ' . t('Not Found'));
292 $tpl = get_markup_template("404.tpl");
293 $a->page['content'] = replace_macros($tpl, array(
294 '$message' => t('Page not found.' )
300 * load current theme info
302 $theme_info_file = "view/theme/".current_theme()."/theme.php";
303 if (file_exists($theme_info_file)){
304 require_once($theme_info_file);
308 /* initialise content region */
310 if (! x($a->page,'content')) {
311 $a->page['content'] = '';
314 if (!$install && !$maintenance) {
315 call_hooks('page_content_top',$a->page['content']);
319 * Call module functions
322 if($a->module_loaded) {
323 $a->page['page_title'] = $a->module;
326 if(function_exists($a->module . '_init')) {
327 call_hooks($a->module . '_mod_init', $placeholder);
328 $func = $a->module . '_init';
332 if(function_exists(str_replace('-','_',current_theme()) . '_init')) {
333 $func = str_replace('-','_',current_theme()) . '_init';
336 // elseif (x($a->theme_info,"extends") && file_exists("view/theme/".$a->theme_info["extends"]."/theme.php")) {
337 // require_once("view/theme/".$a->theme_info["extends"]."/theme.php");
338 // if(function_exists(str_replace('-','_',$a->theme_info["extends"]) . '_init')) {
339 // $func = str_replace('-','_',$a->theme_info["extends"]) . '_init';
344 if(($_SERVER['REQUEST_METHOD'] === 'POST') && (! $a->error)
345 && (function_exists($a->module . '_post'))
346 && (! x($_POST,'auth-params'))) {
347 call_hooks($a->module . '_mod_post', $_POST);
348 $func = $a->module . '_post';
352 if((! $a->error) && (function_exists($a->module . '_afterpost'))) {
353 call_hooks($a->module . '_mod_afterpost',$placeholder);
354 $func = $a->module . '_afterpost';
358 if((! $a->error) && (function_exists($a->module . '_content'))) {
359 $arr = array('content' => $a->page['content']);
360 call_hooks($a->module . '_mod_content', $arr);
361 $a->page['content'] = $arr['content'];
362 $func = $a->module . '_content';
363 $arr = array('content' => $func($a));
364 call_hooks($a->module . '_mod_aftercontent', $arr);
365 $a->page['content'] .= $arr['content'];
368 if(function_exists(str_replace('-','_',current_theme()) . '_content_loaded')) {
369 $func = str_replace('-','_',current_theme()) . '_content_loaded';
375 * Create the page head after setting the language
376 * and getting any auth credentials
378 * Moved init_pagehead() and init_page_end() to after
379 * all the module functions have executed so that all
380 * theme choices made by the modules can take effect
386 * Build the page ending -- this is stuff that goes right before
387 * the closing </body> tag
392 // If you're just visiting, let javascript take you home
394 if(x($_SESSION,'visitor_home'))
395 $homebase = $_SESSION['visitor_home'];
397 $homebase = 'profile/' . $a->user['nickname'];
400 $a->page['content'] .= '<script>var homebase="' . $homebase . '" ; </script>';
402 // now that we've been through the module content, see if the page reported
403 // a permission problem and if so, a 403 response would seem to be in order.
405 if(stristr( implode("",$_SESSION['sysmsg']), t('Permission denied'))) {
406 header($_SERVER["SERVER_PROTOCOL"] . ' 403 ' . t('Permission denied.'));
411 * Report anything which needs to be communicated in the notification area (before the main body)
415 /*if(x($_SESSION,'sysmsg')) {
416 $a->page['content'] = "<div id=\"sysmsg\" class=\"error-message\">{$_SESSION['sysmsg']}</div>\r\n"
417 . ((x($a->page,'content')) ? $a->page['content'] : '');
418 $_SESSION['sysmsg']="";
419 unset($_SESSION['sysmsg']);
421 if(x($_SESSION,'sysmsg_info')) {
422 $a->page['content'] = "<div id=\"sysmsg_info\" class=\"info-message\">{$_SESSION['sysmsg_info']}</div>\r\n"
423 . ((x($a->page,'content')) ? $a->page['content'] : '');
424 $_SESSION['sysmsg_info']="";
425 unset($_SESSION['sysmsg_info']);
430 call_hooks('page_end', $a->page['content']);
435 * Add the navigation (menu) template
439 if($a->module != 'install' && $a->module != 'maintenance') {
444 * Add a "toggle mobile" link if we're using a mobile device
447 if($a->is_mobile || $a->is_tablet) {
448 if(isset($_SESSION['show-mobile']) && !$_SESSION['show-mobile']) {
449 $link = 'toggle_mobile?address=' . curPageURL();
452 $link = 'toggle_mobile?off=1&address=' . curPageURL();
454 $a->page['footer'] = replace_macros(get_markup_template("toggle_mobile_footer.tpl"), array(
455 '$toggle_link' => $link,
456 '$toggle_text' => t('toggle mobile')
461 * Build the page - now that we have all the components
464 if(!$a->theme['stylesheet'])
465 $stylesheet = current_theme_url();
467 $stylesheet = $a->theme['stylesheet'];
469 $a->page['htmlhead'] = str_replace('{{$stylesheet}}',$stylesheet,$a->page['htmlhead']);
470 //$a->page['htmlhead'] = replace_macros($a->page['htmlhead'], array('$stylesheet' => $stylesheet));
472 if (isset($_GET["mode"]) AND (($_GET["mode"] == "raw") OR ($_GET["mode"] == "minimal"))) {
473 $doc = new DOMDocument();
475 $target = new DOMDocument();
476 $target->loadXML("<root></root>");
478 $content = mb_convert_encoding($a->page["content"], 'HTML-ENTITIES', "UTF-8");
480 @$doc->loadHTML($content);
482 $xpath = new DomXPath($doc);
484 $list = $xpath->query("//*[contains(@id,'tread-wrapper-')]"); /* */
486 foreach ($list as $item) {
488 $item = $target->importNode($item, true);
490 // And then append it to the target
491 $target->documentElement->appendChild($item);
495 if (isset($_GET["mode"]) AND ($_GET["mode"] == "raw")) {
497 header("Content-type: text/html; charset=utf-8");
499 echo substr($target->saveHTML(), 6, -8);
501 if (!$a->is_backend())
502 session_write_close();
508 $profile = $a->profile;
510 header("X-Friendica-Version: ".FRIENDICA_VERSION);
511 header("Content-type: text/html; charset=utf-8");
513 // We use $_GET["mode"] for special page templates. So we will check if we have
514 // to load another page template than the default one
515 // The page templates are located in /view/php/ or in the theme directory
516 if (isset($_GET["mode"])) {
517 $template = theme_include($_GET["mode"].'.php');
520 // If there is no page template use the default page template
522 $template = theme_include("default.php");
525 require_once($template);
527 if (!$a->is_backend())
528 session_write_close();