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