]> git.mxchange.org Git - friendica.git/blob - index.php
comment boxes not work in alternate languages
[friendica.git] / index.php
1 <?php
2
3 /**
4  *
5  * Friendica
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 or is empty, we are running in installation mode.
23  *
24  */
25
26 $install = ((file_exists('.htconfig.php') && filesize('.htconfig.php')) ? false : true);
27
28 @include(".htconfig.php");
29
30 $lang = get_language();
31         
32 load_translation_table($lang);
33
34 /**
35  *
36  * Try to open the database;
37  *
38  */
39
40 require_once("dba.php");
41 $db = new dba($db_host, $db_user, $db_pass, $db_data, $install);
42         unset($db_host, $db_user, $db_pass, $db_data);
43
44
45 if(! $install) {
46
47         /**
48          * Load configs from db. Overwrite configs from .htconfig.php
49          */
50
51         load_config('config');
52         load_config('system');
53
54         require_once("session.php");
55         load_hooks();
56         call_hooks('init_1');
57 }
58
59
60 /**
61  *
62  * Important stuff we always need to do.
63  * Initialise authentication and  date and time. 
64  * Create the HTML head for the page, even if we may not use it (xml, etc.)
65  * The order of these may be important so use caution if you think they're all
66  * intertwingled with no logical order and decide to sort it out. Some of the
67  * dependencies have changed, but at least at one time in the recent past - the 
68  * order was critical to everything working properly
69  *
70  */
71
72 require_once("datetime.php");
73
74 $a->timezone = (($default_timezone) ? $default_timezone : 'UTC');
75
76 date_default_timezone_set($a->timezone);
77
78 session_start();
79
80 /**
81  * Language was set earlier, but we can over-ride it in the session.
82  * We have to do it here because the session was just now opened.
83  */
84
85 if(array_key_exists('system_language',$_POST)) {
86         if(strlen($_POST['system_language']))
87                 $_SESSION['language'] = $_POST['system_language'];
88         else
89                 unset($_SESSION['language']);
90 }
91 if((x($_SESSION,'language')) && ($_SESSION['language'] !== $lang)) {
92         $lang = $_SESSION['language'];
93         load_translation_table($lang);
94 }
95
96 /*
97  * Create the page head after setting the language
98  *
99  */
100
101 $a->init_pagehead();
102
103 /**
104  *
105  * For Mozilla auth manager - still needs sorting, and this might conflict with LRDD header.
106  * Apache/PHP lumps the Link: headers into one - and other services might not be able to parse it
107  * this way. There's a PHP flag to link the headers because by default this will over-write any other 
108  * link header. 
109  *
110  * What we really need to do is output the raw headers ourselves so we can keep them separate.
111  *
112  */
113  
114 // header('Link: <' . $a->get_baseurl() . '/amcd>; rel="acct-mgmt";');
115
116 if((x($_SESSION,'authenticated')) || (x($_POST,'auth-params')) || ($a->module === 'login'))
117         require("auth.php");
118
119 if(! x($_SESSION,'authenticated'))
120         header('X-Account-Management-Status: none');
121
122 if(! x($_SESSION,'sysmsg'))
123         $_SESSION['sysmsg'] = array();
124
125 if(! x($_SESSION,'sysmsg_info'))
126         $_SESSION['sysmsg_info'] = array();
127
128 /*
129  * check_config() is responsible for running update scripts. These automatically 
130  * update the DB schema whenever we push a new one out. It also checks to see if
131  * any plugins have been added or removed and reacts accordingly. 
132  */
133
134
135 if($install)
136         $a->module = 'install';
137 else
138         check_config($a);
139
140 nav_set_selected('nothing');
141
142 $arr = array('app_menu' => $a->apps);
143
144 call_hooks('app_menu', $arr);
145
146 $a->apps = $arr['app_menu'];
147
148 /**
149  *
150  * We have already parsed the server path into $a->argc and $a->argv
151  *
152  * $a->argv[0] is our module name. We will load the file mod/{$a->argv[0]}.php
153  * and use it for handling our URL request.
154  * The module file contains a few functions that we call in various circumstances
155  * and in the following order:
156  * 
157  * "module"_init
158  * "module"_post (only called if there are $_POST variables)
159  * "module"_afterpost
160  * "module"_content - the string return of this function contains our page body
161  *
162  * Modules which emit other serialisations besides HTML (XML,JSON, etc.) should do 
163  * so within the module init and/or post functions and then invoke killme() to terminate
164  * further processing.
165  */
166
167 if(strlen($a->module)) {
168
169         /**
170          *
171          * We will always have a module name.
172          * First see if we have a plugin which is masquerading as a module.
173          *
174          */
175
176         if(is_array($a->plugins) && in_array($a->module,$a->plugins) && file_exists("addon/{$a->module}/{$a->module}.php")) {
177                 include_once("addon/{$a->module}/{$a->module}.php");
178                 if(function_exists($a->module . '_module'))
179                         $a->module_loaded = true;
180         }
181
182         /**
183          * If not, next look for a 'standard' program module in the 'mod' directory
184          */
185
186         if((! $a->module_loaded) && (file_exists("mod/{$a->module}.php"))) {
187                 include_once("mod/{$a->module}.php");
188                 $a->module_loaded = true;
189         }
190
191         /**
192          *
193          * The URL provided does not resolve to a valid module.
194          *
195          * On Dreamhost sites, quite often things go wrong for no apparent reason and they send us to '/internal_error.html'. 
196          * We don't like doing this, but as it occasionally accounts for 10-20% or more of all site traffic - 
197          * 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
198          * this will often succeed and eventually do the right thing.
199          *
200          * Otherwise we are going to emit a 404 not found.
201          *
202          */
203
204         if(! $a->module_loaded) {
205
206                 // Stupid browser tried to pre-fetch our Javascript img template. Don't log the event or return anything - just quietly exit.
207                 if((x($_SERVER,'QUERY_STRING')) && preg_match('/{[0-9]}/',$_SERVER['QUERY_STRING']) !== 0) {
208                         killme();
209                 }
210
211                 if((x($_SERVER,'QUERY_STRING')) && ($_SERVER['QUERY_STRING'] === 'q=internal_error.html') && isset($dreamhost_error_hack)) {
212                         logger('index.php: dreamhost_error_hack invoked. Original URI =' . $_SERVER['REQUEST_URI']);
213                         goaway($a->get_baseurl() . $_SERVER['REQUEST_URI']);
214                 }
215
216                 logger('index.php: page not found: ' . $_SERVER['REQUEST_URI'] . ' ADDRESS: ' . $_SERVER['REMOTE_ADDR'] . ' QUERY: ' . $_SERVER['QUERY_STRING'], LOGGER_DEBUG);
217                 header($_SERVER["SERVER_PROTOCOL"] . ' 404 ' . t('Not Found'));
218                 $tpl = get_markup_template("404.tpl");
219                 $a->page['content'] = replace_macros($tpl, array(
220                         '$message' =>  t('Page not found.' )
221                 ));
222         }
223 }
224
225 /**
226  * load current theme info
227  */
228 $theme_info_file = "view/theme/".current_theme()."/theme.php";
229 if (file_exists($theme_info_file)){
230         require_once($theme_info_file);
231 }
232
233
234 /* initialise content region */
235
236 if(! x($a->page,'content'))
237         $a->page['content'] = '';
238
239
240 /**
241  * Call module functions
242  */
243
244 if($a->module_loaded) {
245         $a->page['page_title'] = $a->module;
246         if(function_exists($a->module . '_init')) {
247                 $func = $a->module . '_init';
248                 $func($a);
249         }
250
251         if(($_SERVER['REQUEST_METHOD'] === 'POST') && (! $a->error)
252                 && (function_exists($a->module . '_post'))
253                 && (! x($_POST,'auth-params'))) {
254                 $func = $a->module . '_post';
255                 $func($a);
256         }
257
258         if((! $a->error) && (function_exists($a->module . '_afterpost'))) {
259                 $func = $a->module . '_afterpost';
260                 $func($a);
261         }
262
263         if((! $a->error) && (function_exists($a->module . '_content'))) {
264                 $func = $a->module . '_content';
265                 $a->page['content'] .= $func($a);
266         }
267
268 }
269
270 // If you're just visiting, let javascript take you home
271
272 if(x($_SESSION,'visitor_home'))
273         $homebase = $_SESSION['visitor_home'];
274 elseif(local_user())
275         $homebase = $a->get_baseurl() . '/profile/' . $a->user['nickname'];
276
277 if(isset($homebase))
278         $a->page['content'] .= '<script>var homebase="' . $homebase . '" ; </script>';
279
280 // now that we've been through the module content, see if the page reported
281 // a permission problem and if so, a 403 response would seem to be in order.
282
283 if(stristr( implode("",$_SESSION['sysmsg']), t('Permission denied'))) {
284         header($_SERVER["SERVER_PROTOCOL"] . ' 403 ' . t('Permission denied.'));
285 }
286
287 /**
288  *
289  * Report anything which needs to be communicated in the notification area (before the main body)
290  *
291  */
292         
293 /*if(x($_SESSION,'sysmsg')) {
294         $a->page['content'] = "<div id=\"sysmsg\" class=\"error-message\">{$_SESSION['sysmsg']}</div>\r\n"
295                 . ((x($a->page,'content')) ? $a->page['content'] : '');
296         $_SESSION['sysmsg']="";
297         unset($_SESSION['sysmsg']);
298 }
299 if(x($_SESSION,'sysmsg_info')) {
300         $a->page['content'] = "<div id=\"sysmsg_info\" class=\"info-message\">{$_SESSION['sysmsg_info']}</div>\r\n"
301                 . ((x($a->page,'content')) ? $a->page['content'] : '');
302         $_SESSION['sysmsg_info']="";
303         unset($_SESSION['sysmsg_info']);
304 }*/
305
306
307
308 call_hooks('page_end', $a->page['content']);
309
310
311 /**
312  *
313  * Add a place for the pause/resume Ajax indicator
314  *
315  */
316
317 $a->page['content'] .=  '<div id="pause"></div>';
318
319
320 /**
321  *
322  * Add the navigation (menu) template
323  *
324  */
325
326 if($a->module != 'install') {
327         nav($a);
328 }
329
330 /**
331  * Build the page - now that we have all the components
332  */
333
334 $a->page['htmlhead'] = replace_macros($a->page['htmlhead'], array('$stylesheet' => current_theme_url()));
335
336 $page    = $a->page;
337 $profile = $a->profile;
338
339 header("Content-type: text/html; charset=utf-8");
340
341 $template = 'view/' . $lang . '/' 
342         . ((x($a->page,'template')) ? $a->page['template'] : 'default' ) . '.php';
343
344 if(file_exists($template))
345         require_once($template);
346 else
347         require_once(str_replace($lang . '/', '', $template));
348
349 session_write_close();
350 exit;