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