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