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