2 error_reporting(E_ERROR | E_WARNING | E_PARSE);
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");
32 * Get the language setting directly from system variables, bypassing get_config()
33 * as database may not yet be configured.
37 $lang = ((isset($a->config['system']['language'])) ? $a->config['system']['language'] : 'en');
39 load_translation_table($lang);
43 * Try to open the database;
47 require_once("dba.php");
48 $db = new dba($db_host, $db_user, $db_pass, $db_data, $install);
49 unset($db_host, $db_user, $db_pass, $db_data);
54 * Important stuff we always need to do.
55 * Initialise authentication and date and time.
56 * Create the HTML head for the page, even if we may not use it (xml, etc.)
57 * The order of these may be important so use caution if you think they're all
58 * intertwingled with no logical order and decide to sort it out. Some of the
59 * dependencies have changed, but at least at one time in the recent past - the
60 * order was critical to everything working properly
65 require_once("session.php");
72 require_once("datetime.php");
74 $a->timezone = (($default_timezone) ? $default_timezone : 'UTC');
76 date_default_timezone_set($a->timezone);
84 * For Mozilla auth manager - still needs sorting, and this might conflict with LRDD header.
85 * Apache/PHP lumps the Link: headers into one - and other services might not be able to parse it
86 * this way. There's a PHP flag to link the headers because by default this will over-write any other
89 * What we really need to do is output the raw headers ourselves so we can keep them separate.
93 // header('Link: <' . $a->get_baseurl() . '/amcd>; rel="acct-mgmt";');
95 if((x($_SESSION,'authenticated')) || (x($_POST,'auth-params')) || ($a->module === 'login'))
98 if(! x($_SESSION,'authenticated'))
99 header('X-Account-Management-Status: none');
101 if(! x($_SESSION,'sysmsg'))
102 $_SESSION['sysmsg'] = '';
105 * check_config() is responsible for running update scripts. These automatically
106 * update the DB schema whenever we push a new one out. It also checks to see if
107 * any plugins have been added or removed and reacts accordingly.
112 $a->module = 'install';
117 $arr = array('app_menu' => $a->apps);
119 call_hooks('app_menu', $arr);
121 $a->apps = $arr['app_menu'];
126 * We have already parsed the server path into $a->argc and $a->argv
128 * $a->argv[0] is our module name. We will load the file mod/{$a->argv[0]}.php
129 * and use it for handling our URL request.
130 * The module file contains a few functions that we call in various circumstances
131 * and in the following order:
134 * "module"_post (only called if there are $_POST variables)
136 * "module"_content - the string return of this function contains our page body
138 * Modules which emit other serialisations besides HTML (XML,JSON, etc.) should do
139 * so within the module init and/or post functions and then invoke killme() to terminate
140 * further processing.
143 if(strlen($a->module)) {
147 * We will always have a module name.
148 * First see if we have a plugin which is masquerading as a module.
152 if(is_array($a->plugins) && in_array($a->module,$a->plugins) && file_exists("addon/{$a->module}/{$a->module}.php")) {
153 include_once("addon/{$a->module}/{$a->module}.php");
154 if(function_exists($a->module . '_module'))
155 $a->module_loaded = true;
159 * If not, next look for a 'standard' program module in the 'mod' directory
162 if((! $a->module_loaded) && (file_exists("mod/{$a->module}.php"))) {
163 include_once("mod/{$a->module}.php");
164 $a->module_loaded = true;
169 * The URL provided does not resolve to a valid module.
171 * On Dreamhost sites, quite often things go wrong for no apparent reason and they send us to '/internal_error.html'.
172 * We don't like doing this, but as it occasionally accounts for 10-20% or more of all site traffic -
173 * 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
174 * this will often succeed and eventually do the right thing.
176 * Otherwise we are going to emit a 404 not found.
180 if(! $a->module_loaded) {
181 if((x($_SERVER,'QUERY_STRING')) && ($_SERVER['QUERY_STRING'] === 'q=internal_error.html') && isset($dreamhost_error_hack)) {
182 logger('index.php: dreamhost_error_hack invoked. Original URI =' . $_SERVER['REQUEST_URI']);
183 goaway($a->get_baseurl() . $_SERVER['REQUEST_URI']);
186 logger('index.php: page not found: ' . $_SERVER['REQUEST_URI'] . ' QUERY: ' . $_SERVER['QUERY_STRING'], LOGGER_DEBUG);
187 header($_SERVER["SERVER_PROTOCOL"] . ' 404 ' . t('Not Found'));
188 notice( t('Page not found.' ) . EOL);
194 /* initialise content region */
196 if(! x($a->page,'content'))
197 $a->page['content'] = '';
201 * Call module functions
204 if($a->module_loaded) {
205 $a->page['page_title'] = $a->module;
206 if(function_exists($a->module . '_init')) {
207 $func = $a->module . '_init';
211 if(($_SERVER['REQUEST_METHOD'] === 'POST') && (! $a->error)
212 && (function_exists($a->module . '_post'))
213 && (! x($_POST,'auth-params'))) {
214 $func = $a->module . '_post';
218 if((! $a->error) && (function_exists($a->module . '_afterpost'))) {
219 $func = $a->module . '_afterpost';
223 if((! $a->error) && (function_exists($a->module . '_content'))) {
224 $func = $a->module . '_content';
225 $a->page['content'] .= $func($a);
230 // If you're just visiting, let javascript take you home
232 if(x($_SESSION,'visitor_home'))
233 $homebase = $_SESSION['visitor_home'];
235 $homebase = $a->get_baseurl() . '/profile/' . $a->user['nickname'];
238 $a->page['content'] .= '<script>var homebase="' . $homebase . '" ; </script>';
240 // now that we've been through the module content, see if the page reported
241 // a permission problem and if so, a 403 response would seem to be in order.
243 if(stristr($_SESSION['sysmsg'], t('Permission denied'))) {
244 header($_SERVER["SERVER_PROTOCOL"] . ' 403 ' . t('Permission denied.'));
249 * Report anything which needs to be communicated in the notification area (before the main body)
253 if(x($_SESSION,'sysmsg')) {
254 $a->page['content'] = "<div id=\"sysmsg\" class=\"error-message\">{$_SESSION['sysmsg']}</div>\r\n"
255 . ((x($a->page,'content')) ? $a->page['content'] : '');
256 unset($_SESSION['sysmsg']);
260 call_hooks('page_end', $a->page['content']);
265 * Add a place for the pause/resume Ajax indicator
269 $a->page['content'] .= '<div id="pause"></div>';
274 * Add the navigation (menu) template
278 if($a->module != 'install') {
279 require_once('nav.php');
284 * Build the page - now that we have all the components
287 $a->page['htmlhead'] = replace_macros($a->page['htmlhead'], array('$stylesheet' => current_theme_url()));
290 $profile = $a->profile;
292 header("Content-type: text/html; charset=utf-8");
294 $template = 'view/' . $lang . '/'
295 . ((x($a->page,'template')) ? $a->page['template'] : 'default' ) . '.php';
297 if(file_exists($template))
298 require_once($template);
300 require_once(str_replace($lang . '/', '', $template));
302 session_write_close();