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