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