11 * bootstrap the application
15 require_once('boot.php');
21 * Load the configuration file which contains our DB credentials.
22 * Ignore errors. If the file doesn't exist or is empty, we are running in installation mode.
26 $install = ((file_exists('.htconfig.php') && filesize('.htconfig.php')) ? false : true);
28 @include(".htconfig.php");
30 $lang = get_language();
32 load_translation_table($lang);
36 * Try to open the database;
40 require_once("dba.php");
43 $db = new dba($db_host, $db_user, $db_pass, $db_data, $install);
44 unset($db_host, $db_user, $db_pass, $db_data);
47 * Load configs from db. Overwrite configs from .htconfig.php
50 load_config('config');
51 load_config('system');
53 require_once("session.php");
61 * Important stuff we always need to do.
62 * Initialise authentication and date and time.
63 * Create the HTML head for the page, even if we may not use it (xml, etc.)
64 * The order of these may be important so use caution if you think they're all
65 * intertwingled with no logical order and decide to sort it out. Some of the
66 * dependencies have changed, but at least at one time in the recent past - the
67 * order was critical to everything working properly
71 require_once("datetime.php");
73 $a->timezone = (($default_timezone) ? $default_timezone : 'UTC');
75 date_default_timezone_set($a->timezone);
80 * Language was set earlier, but we can over-ride it in the session.
81 * We have to do it here because the session was just now opened.
84 if(array_key_exists('system_language',$_POST)) {
85 if(strlen($_POST['system_language']))
86 $_SESSION['language'] = $_POST['system_language'];
88 unset($_SESSION['language']);
90 if((x($_SESSION,'language')) && ($_SESSION['language'] !== $lang)) {
91 $lang = $_SESSION['language'];
92 load_translation_table($lang);
96 $_SESSION['my_url'] = $_GET['zrl'];
97 $a->query_string = preg_replace('/[\?&]zrl=(.*?)([\?&]|$)/is','',$a->query_string);
99 $arr = array('zrl' => $_SESSION['my_url'], 'url' => $a->cmd);
100 call_hooks('zrl_init',$arr);
106 * For Mozilla auth manager - still needs sorting, and this might conflict with LRDD header.
107 * Apache/PHP lumps the Link: headers into one - and other services might not be able to parse it
108 * this way. There's a PHP flag to link the headers because by default this will over-write any other
111 * What we really need to do is output the raw headers ourselves so we can keep them separate.
115 // header('Link: <' . $a->get_baseurl() . '/amcd>; rel="acct-mgmt";');
117 if((x($_SESSION,'authenticated')) || (x($_POST,'auth-params')) || ($a->module === 'login'))
120 if(! x($_SESSION,'authenticated'))
121 header('X-Account-Management-Status: none');
125 * Create the page head after setting the language
126 * and getting any auth credentials
133 if(! x($_SESSION,'sysmsg'))
134 $_SESSION['sysmsg'] = array();
136 if(! x($_SESSION,'sysmsg_info'))
137 $_SESSION['sysmsg_info'] = array();
140 * check_config() is responsible for running update scripts. These automatically
141 * update the DB schema whenever we push a new one out. It also checks to see if
142 * any plugins have been added or removed and reacts accordingly.
147 $a->module = 'install';
151 nav_set_selected('nothing');
153 $arr = array('app_menu' => $a->apps);
155 call_hooks('app_menu', $arr);
157 $a->apps = $arr['app_menu'];
161 * We have already parsed the server path into $a->argc and $a->argv
163 * $a->argv[0] is our module name. We will load the file mod/{$a->argv[0]}.php
164 * and use it for handling our URL request.
165 * The module file contains a few functions that we call in various circumstances
166 * and in the following order:
169 * "module"_post (only called if there are $_POST variables)
171 * "module"_content - the string return of this function contains our page body
173 * Modules which emit other serialisations besides HTML (XML,JSON, etc.) should do
174 * so within the module init and/or post functions and then invoke killme() to terminate
175 * further processing.
178 if(strlen($a->module)) {
182 * We will always have a module name.
183 * First see if we have a plugin which is masquerading as a module.
187 if(is_array($a->plugins) && in_array($a->module,$a->plugins) && file_exists("addon/{$a->module}/{$a->module}.php")) {
188 include_once("addon/{$a->module}/{$a->module}.php");
189 if(function_exists($a->module . '_module'))
190 $a->module_loaded = true;
194 * If not, next look for a 'standard' program module in the 'mod' directory
197 if((! $a->module_loaded) && (file_exists("mod/{$a->module}.php"))) {
198 include_once("mod/{$a->module}.php");
199 $a->module_loaded = true;
204 * The URL provided does not resolve to a valid module.
206 * On Dreamhost sites, quite often things go wrong for no apparent reason and they send us to '/internal_error.html'.
207 * We don't like doing this, but as it occasionally accounts for 10-20% or more of all site traffic -
208 * 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
209 * this will often succeed and eventually do the right thing.
211 * Otherwise we are going to emit a 404 not found.
215 if(! $a->module_loaded) {
217 // Stupid browser tried to pre-fetch our Javascript img template. Don't log the event or return anything - just quietly exit.
218 if((x($_SERVER,'QUERY_STRING')) && preg_match('/{[0-9]}/',$_SERVER['QUERY_STRING']) !== 0) {
222 if((x($_SERVER,'QUERY_STRING')) && ($_SERVER['QUERY_STRING'] === 'q=internal_error.html') && isset($dreamhost_error_hack)) {
223 logger('index.php: dreamhost_error_hack invoked. Original URI =' . $_SERVER['REQUEST_URI']);
224 goaway($a->get_baseurl() . $_SERVER['REQUEST_URI']);
227 logger('index.php: page not found: ' . $_SERVER['REQUEST_URI'] . ' ADDRESS: ' . $_SERVER['REMOTE_ADDR'] . ' QUERY: ' . $_SERVER['QUERY_STRING'], LOGGER_DEBUG);
228 header($_SERVER["SERVER_PROTOCOL"] . ' 404 ' . t('Not Found'));
229 $tpl = get_markup_template("404.tpl");
230 $a->page['content'] = replace_macros($tpl, array(
231 '$message' => t('Page not found.' )
237 * load current theme info
239 $theme_info_file = "view/theme/".current_theme()."/theme.php";
240 if (file_exists($theme_info_file)){
241 require_once($theme_info_file);
245 /* initialise content region */
247 if(! x($a->page,'content'))
248 $a->page['content'] = '';
251 call_hooks('page_content_top',$a->page['content']);
254 * Call module functions
257 if($a->module_loaded) {
258 $a->page['page_title'] = $a->module;
259 if(function_exists($a->module . '_init')) {
260 $func = $a->module . '_init';
264 if(function_exists(str_replace('-','_',current_theme()) . '_init')) {
265 $func = str_replace('-','_',current_theme()) . '_init';
268 // elseif (x($a->theme_info,"extends") && file_exists("view/theme/".$a->theme_info["extends"]."/theme.php")) {
269 // require_once("view/theme/".$a->theme_info["extends"]."/theme.php");
270 // if(function_exists(str_replace('-','_',$a->theme_info["extends"]) . '_init')) {
271 // $func = str_replace('-','_',$a->theme_info["extends"]) . '_init';
276 if(($_SERVER['REQUEST_METHOD'] === 'POST') && (! $a->error)
277 && (function_exists($a->module . '_post'))
278 && (! x($_POST,'auth-params'))) {
279 $func = $a->module . '_post';
283 if((! $a->error) && (function_exists($a->module . '_afterpost'))) {
284 $func = $a->module . '_afterpost';
288 if((! $a->error) && (function_exists($a->module . '_content'))) {
289 $func = $a->module . '_content';
290 $a->page['content'] .= $func($a);
295 // If you're just visiting, let javascript take you home
297 if(x($_SESSION,'visitor_home'))
298 $homebase = $_SESSION['visitor_home'];
300 $homebase = $a->get_baseurl() . '/profile/' . $a->user['nickname'];
303 $a->page['content'] .= '<script>var homebase="' . $homebase . '" ; </script>';
305 // now that we've been through the module content, see if the page reported
306 // a permission problem and if so, a 403 response would seem to be in order.
308 if(stristr( implode("",$_SESSION['sysmsg']), t('Permission denied'))) {
309 header($_SERVER["SERVER_PROTOCOL"] . ' 403 ' . t('Permission denied.'));
314 * Report anything which needs to be communicated in the notification area (before the main body)
318 /*if(x($_SESSION,'sysmsg')) {
319 $a->page['content'] = "<div id=\"sysmsg\" class=\"error-message\">{$_SESSION['sysmsg']}</div>\r\n"
320 . ((x($a->page,'content')) ? $a->page['content'] : '');
321 $_SESSION['sysmsg']="";
322 unset($_SESSION['sysmsg']);
324 if(x($_SESSION,'sysmsg_info')) {
325 $a->page['content'] = "<div id=\"sysmsg_info\" class=\"info-message\">{$_SESSION['sysmsg_info']}</div>\r\n"
326 . ((x($a->page,'content')) ? $a->page['content'] : '');
327 $_SESSION['sysmsg_info']="";
328 unset($_SESSION['sysmsg_info']);
333 call_hooks('page_end', $a->page['content']);
338 * Add a place for the pause/resume Ajax indicator
342 $a->page['content'] .= '<div id="pause"></div>';
347 * Add the navigation (menu) template
351 if($a->module != 'install') {
356 * Build the page - now that we have all the components
359 $a->page['htmlhead'] = replace_macros($a->page['htmlhead'], array('$stylesheet' => current_theme_url()));
362 $profile = $a->profile;
364 header("Content-type: text/html; charset=utf-8");
366 $template = 'view/theme/' . current_theme() . '/'
367 . ((x($a->page,'template')) ? $a->page['template'] : 'default' ) . '.php';
369 if(file_exists($template))
370 require_once($template);
372 require_once(str_replace('theme/' . current_theme() . '/', '', $template));
374 session_write_close();