]> git.mxchange.org Git - friendica.git/blob - index.php
Autodetect browser language (should we make this optional?)
[friendica.git] / index.php
1 <?php
2 error_reporting(E_ERROR | E_WARNING | E_PARSE);
3 /**
4  *
5  * Friendika
6  *
7  */
8
9 /**
10  *
11  * bootstrap the application
12  *
13  */
14
15 require_once('boot.php');
16
17 $a = new App;
18
19 /**
20  *
21  * Load the configuration file which contains our DB credentials.
22  * Ignore errors. If the file doesn't exist, we are running in installation mode.
23  *
24  */
25
26 $install = ((file_exists('.htconfig.php')) ? false : true);
27
28 @include(".htconfig.php");
29
30 /**
31  *
32  * Get the language setting directly from system variables, bypassing get_config()
33  * as database may not yet be configured.
34  * 
35  * If possible, we use the value from the browser.
36  *
37  */
38
39 if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
40         $langs = preg_split("/[,-]/",$_SERVER['HTTP_ACCEPT_LANGUAGE'],2);
41         $lang = $langs[0];
42 } else {
43         $lang = ((isset($a->config['system']['language'])) ? $a->config['system']['language'] : 'en');
44 }
45         
46 load_translation_table($lang);
47
48 /**
49  *
50  * Try to open the database;
51  *
52  */
53
54 require_once("dba.php");
55 $db = new dba($db_host, $db_user, $db_pass, $db_data, $install);
56         unset($db_host, $db_user, $db_pass, $db_data);
57
58
59 /**
60  *
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
68  *
69  */
70
71 if(! $install) {
72         require_once("session.php");
73         load_hooks();
74         call_hooks('init_1');
75 }
76
77
78
79 require_once("datetime.php");
80
81 $a->timezone = (($default_timezone) ? $default_timezone : 'UTC');
82
83 date_default_timezone_set($a->timezone);
84
85 $a->init_pagehead();
86
87 session_start();
88
89 /**
90  *
91  * For Mozilla auth manager - still needs sorting, and this might conflict with LRDD header.
92  * Apache/PHP lumps the Link: headers into one - and other services might not be able to parse it
93  * this way. There's a PHP flag to link the headers because by default this will over-write any other 
94  * link header. 
95  *
96  * What we really need to do is output the raw headers ourselves so we can keep them separate.
97  *
98  */
99  
100 // header('Link: <' . $a->get_baseurl() . '/amcd>; rel="acct-mgmt";');
101
102 if((x($_SESSION,'authenticated')) || (x($_POST,'auth-params')) || ($a->module === 'login'))
103         require("auth.php");
104
105 if(! x($_SESSION,'authenticated'))
106         header('X-Account-Management-Status: none');
107
108 if(! x($_SESSION,'sysmsg'))
109         $_SESSION['sysmsg'] = '';
110
111 /*
112  * check_config() is responible for running update scripts. These automatically 
113  * update the DB schema whenever  we push a new one out. 
114  */
115
116
117 if($install)
118         $a->module = 'install';
119 else
120         check_config($a);
121
122
123 $arr = array('app_menu' => $a->apps);
124
125 call_hooks('app_menu', $arr);
126
127 $a->apps = $arr['app_menu'];
128
129
130 /**
131  *
132  * We have already parsed the server path into $->argc and $a->argv
133  *
134  * $a->argv[0] is our module name. We will load the file mod/{$a->argv[0]}.php
135  * and use it for handling our URL request.
136  * The module file contains a few functions that we call in various circumstances
137  * and in the following order:
138  * 
139  * "module"_init
140  * "module"_post (only if there are $_POST variables)
141  * "module"_afterpost
142  * "module"_content - the string return of this function contains our page body
143  *
144  * Modules which emit other serialisations besides HTML (XML,JSON, etc.) should do 
145  * so within the module init and/or post functions and then invoke killme() to terminate
146  * further processing.
147  */
148
149 if(strlen($a->module)) {
150         if(is_array($a->plugins) && in_array($a->module,$a->plugins) && file_exists("addon/{$a->module}/{$a->module}.php")) {
151                 include_once("addon/{$a->module}/{$a->module}.php");
152                 if(function_exists($a->module . '_module'))
153                         $a->module_loaded = true;
154         }
155         if((! $a->module_loaded) && (file_exists("mod/{$a->module}.php"))) {
156                 include("mod/{$a->module}.php");
157                 $a->module_loaded = true;
158         }
159         if(! $a->module_loaded) {
160                 if((x($_SERVER,'QUERY_STRING')) && ($_SERVER['QUERY_STRING'] === 'q=internal_error.html') && isset($dreamhost_error_hack)) {
161                         logger('index.php: dreamhost_error_hack invoked. Original URI =' . $_SERVER['REQUEST_URI']);
162                         goaway($a->get_baseurl() . $_SERVER['REQUEST_URI']);
163                 }
164
165                 logger('index.php: page not found: ' . $_SERVER['REQUEST_URI'] . ' QUERY: ' . $_SERVER['QUERY_STRING'], LOGGER_DEBUG);
166                 header($_SERVER["SERVER_PROTOCOL"] . ' 404 ' . t('Not Found'));
167                 notice( t('Page not found.' ) . EOL);
168         }
169 }
170
171
172
173 /* initialise content region */
174
175 if(! x($a->page,'content'))
176         $a->page['content'] = '';
177
178
179 /**
180  * Call module functions
181  */
182
183 if($a->module_loaded) {
184         $a->page['page_title'] = $a->module;
185         if(function_exists($a->module . '_init')) {
186                 $func = $a->module . '_init';
187                 $func($a);
188         }
189
190         if(($_SERVER['REQUEST_METHOD'] === 'POST') && (! $a->error)
191                 && (function_exists($a->module . '_post'))
192                 && (! x($_POST,'auth-params'))) {
193                 $func = $a->module . '_post';
194                 $func($a);
195         }
196
197         if((! $a->error) && (function_exists($a->module . '_afterpost'))) {
198                 $func = $a->module . '_afterpost';
199                 $func($a);
200         }
201
202         if((! $a->error) && (function_exists($a->module . '_content'))) {
203                 $func = $a->module . '_content';
204                 $a->page['content'] .= $func($a);
205         }
206
207 }
208
209 // let javascript take you home
210
211 if(x($_SESSION,'visitor_home'))
212         $homebase = $_SESSION['visitor_home'];
213 elseif(local_user())
214         $homebase = $a->get_baseurl() . '/profile/' . $a->user['nickname'];
215
216 if(isset($homebase))
217         $a->page['content'] .= '<script>var homebase="' . $homebase . '" ; </script>';
218
219 // now that we've been through the module content, see if the page reported
220 // a permission problem and if so, a 403 response would seem to be in order.
221
222 if(stristr($_SESSION['sysmsg'], t('Permission denied'))) {
223         header($_SERVER["SERVER_PROTOCOL"] . ' 403 ' . t('Permission denied.'));
224 }
225
226 /**
227  *
228  * Report anything which needs to be communicated in the notification area (before the main body)
229  *
230  */
231         
232 if(x($_SESSION,'sysmsg')) {
233         $a->page['content'] = "<div id=\"sysmsg\" class=\"error-message\">{$_SESSION['sysmsg']}</div>\r\n"
234                 . ((x($a->page,'content')) ? $a->page['content'] : '');
235         unset($_SESSION['sysmsg']);
236 }
237
238
239 call_hooks('page_end', $a->page['content']);
240
241
242 /**
243  *
244  * Add a place for the pause/resume Ajax indicator
245  *
246  */
247
248 $a->page['content'] .=  '<div id="pause"></div>';
249
250
251 /**
252  *
253  * Add the navigation (menu) template
254  *
255  */
256
257 if($a->module != 'install') {
258         require_once('nav.php');
259         nav($a);
260 }
261
262 /**
263  * Build the page - now that we have all the components
264  */
265
266 $a->page['htmlhead'] = replace_macros($a->page['htmlhead'], array('$stylesheet' => current_theme_url()));
267
268 $page    = $a->page;
269 $profile = $a->profile;
270
271 header("Content-type: text/html; charset=utf-8");
272
273 $template = 'view/' . $lang . '/' 
274         . ((x($a->page,'template')) ? $a->page['template'] : 'default' ) . '.php';
275
276 if(file_exists($template))
277         require_once($template);
278 else
279         require_once(str_replace($lang . '/', '', $template));
280
281 session_write_close();
282 exit;