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