]> git.mxchange.org Git - friendica.git/blob - index.php
Merge pull request #3658 from annando/static-methods
[friendica.git] / index.php
1 <?php
2
3
4 /**
5  *
6  * Friendica
7  *
8  */
9
10 /**
11  *
12  * bootstrap the application
13  *
14  */
15
16 use Friendica\App;
17 use Friendica\Core\System;
18 use Friendica\Core\Config;
19
20 require_once 'boot.php';
21 require_once 'object/BaseObject.php';
22
23 $a = new App(__DIR__);
24 BaseObject::set_app($a);
25
26 // We assume that the index.php is called by a frontend process
27 // The value is set to "true" by default in boot.php
28 $a->backend = false;
29
30 /**
31  *
32  * Load the configuration file which contains our DB credentials.
33  * Ignore errors. If the file doesn't exist or is empty, we are running in
34  * installation mode.
35  *
36  */
37
38 $install = ((file_exists('.htconfig.php') && filesize('.htconfig.php')) ? false : true);
39
40 // Only load config if found, don't surpress errors
41 if (!$install) {
42         include ".htconfig.php";
43 }
44
45 /**
46  *
47  * Try to open the database;
48  *
49  */
50
51 require_once "include/dba.php";
52
53 if (!$install) {
54         $db = new dba($db_host, $db_user, $db_pass, $db_data, $install);
55         unset($db_host, $db_user, $db_pass, $db_data);
56
57         /**
58          * Load configs from db. Overwrite configs from .htconfig.php
59          */
60
61         Config::load();
62
63         if ($a->max_processes_reached() || $a->maxload_reached()) {
64                 header($_SERVER["SERVER_PROTOCOL"] . ' 503 Service Temporarily Unavailable');
65                 header('Retry-After: 120');
66                 header('Refresh: 120; url=' . System::baseUrl() . "/" . $a->query_string);
67                 die("System is currently unavailable. Please try again later");
68         }
69
70         if (get_config('system', 'force_ssl') && ($a->get_scheme() == "http") &&
71                 (intval(get_config('system', 'ssl_policy')) == SSL_POLICY_FULL) &&
72                 (substr(System::baseUrl(), 0, 8) == "https://")) {
73                 header("HTTP/1.1 302 Moved Temporarily");
74                 header("Location: " . System::baseUrl() . "/" . $a->query_string);
75                 exit();
76         }
77
78         require_once 'include/session.php';
79         load_hooks();
80         call_hooks('init_1');
81
82         $maintenance = get_config('system', 'maintenance');
83 }
84
85 $lang = get_browser_language();
86
87 load_translation_table($lang);
88
89 /**
90  *
91  * Important stuff we always need to do.
92  *
93  * The order of these may be important so use caution if you think they're all
94  * intertwingled with no logical order and decide to sort it out. Some of the
95  * dependencies have changed, but at least at one time in the recent past - the
96  * order was critical to everything working properly
97  *
98  */
99
100 // Exclude the backend processes from the session management
101 if (!$a->is_backend()) {
102         $stamp1 = microtime(true);
103         session_start();
104         $a->save_timestamp($stamp1, "parser");
105 } else {
106         require_once "include/poller.php";
107
108         call_worker_if_idle();
109 }
110
111 /**
112  * Language was set earlier, but we can over-ride it in the session.
113  * We have to do it here because the session was just now opened.
114  */
115 if (x($_SESSION,'authenticated') && !x($_SESSION,'language')) {
116         // we didn't loaded user data yet, but we need user language
117         $r = dba::select('user', array('language'), array('uid' => $_SESSION['uid']), array('limit' => 1));
118         $_SESSION['language'] = $lang;
119         if (dbm::is_result($r)) {
120                 $_SESSION['language'] = $r['language'];
121         }
122 }
123
124 if ((x($_SESSION,'language')) && ($_SESSION['language'] !== $lang)) {
125         $lang = $_SESSION['language'];
126         load_translation_table($lang);
127 }
128
129 if ((x($_GET,'zrl')) && (!$install && !$maintenance)) {
130         // Only continue when the given profile link seems valid
131         // Valid profile links contain a path with "/profile/" and no query parameters
132         if ((parse_url($_GET['zrl'], PHP_URL_QUERY) == "") &&
133                 strstr(parse_url($_GET['zrl'], PHP_URL_PATH), "/profile/")) {
134                 $_SESSION['my_url'] = $_GET['zrl'];
135                 $a->query_string = preg_replace('/[\?&]zrl=(.*?)([\?&]|$)/is','',$a->query_string);
136                 zrl_init($a);
137         } else {
138                 // Someone came with an invalid parameter, maybe as a DDoS attempt
139                 // We simply stop processing here
140                 logger("Invalid ZRL parameter ".$_GET['zrl'], LOGGER_DEBUG);
141                 header('HTTP/1.1 403 Forbidden');
142                 echo "<h1>403 Forbidden</h1>";
143                 killme();
144         }
145 }
146
147 /**
148  *
149  * For Mozilla auth manager - still needs sorting, and this might conflict with LRDD header.
150  * Apache/PHP lumps the Link: headers into one - and other services might not be able to parse it
151  * this way. There's a PHP flag to link the headers because by default this will over-write any other
152  * link header.
153  *
154  * What we really need to do is output the raw headers ourselves so we can keep them separate.
155  *
156  */
157
158 // header('Link: <' . System::baseUrl() . '/amcd>; rel="acct-mgmt";');
159
160 if (x($_COOKIE["Friendica"]) || (x($_SESSION,'authenticated')) || (x($_POST,'auth-params')) || ($a->module === 'login')) {
161         require("include/auth.php");
162 }
163
164 if (! x($_SESSION,'authenticated')) {
165         header('X-Account-Management-Status: none');
166 }
167
168 /* set up page['htmlhead'] and page['end'] for the modules to use */
169 $a->page['htmlhead'] = '';
170 $a->page['end'] = '';
171
172
173 if (! x($_SESSION,'sysmsg')) {
174         $_SESSION['sysmsg'] = array();
175 }
176
177 if (! x($_SESSION,'sysmsg_info')) {
178         $_SESSION['sysmsg_info'] = array();
179 }
180
181 // Array for informations about last received items
182 if (! x($_SESSION,'last_updated')) {
183         $_SESSION['last_updated'] = array();
184 }
185 /*
186  * check_config() is responsible for running update scripts. These automatically
187  * update the DB schema whenever we push a new one out. It also checks to see if
188  * any plugins have been added or removed and reacts accordingly.
189  */
190
191 // in install mode, any url loads install module
192 // but we need "view" module for stylesheet
193 if ($install && $a->module!="view") {
194         $a->module = 'install';
195 } elseif ($maintenance && $a->module!="view") {
196         $a->module = 'maintenance';
197 } else {
198         check_url($a);
199         check_db();
200         check_plugins($a);
201 }
202
203 nav_set_selected('nothing');
204
205 //Don't populate apps_menu if apps are private
206 $privateapps = get_config('config','private_addons');
207 if ((local_user()) || (! $privateapps === "1")) {
208         $arr = array('app_menu' => $a->apps);
209
210         call_hooks('app_menu', $arr);
211
212         $a->apps = $arr['app_menu'];
213 }
214
215 /**
216  *
217  * We have already parsed the server path into $a->argc and $a->argv
218  *
219  * $a->argv[0] is our module name. We will load the file mod/{$a->argv[0]}.php
220  * and use it for handling our URL request.
221  * The module file contains a few functions that we call in various circumstances
222  * and in the following order:
223  *
224  * "module"_init
225  * "module"_post (only called if there are $_POST variables)
226  * "module"_afterpost
227  * "module"_content - the string return of this function contains our page body
228  *
229  * Modules which emit other serialisations besides HTML (XML,JSON, etc.) should do
230  * so within the module init and/or post functions and then invoke killme() to terminate
231  * further processing.
232  */
233
234 if (strlen($a->module)) {
235
236         /**
237          *
238          * We will always have a module name.
239          * First see if we have a plugin which is masquerading as a module.
240          *
241          */
242
243         // Compatibility with the Android Diaspora client
244         if ($a->module == "stream") {
245                 $a->module = "network";
246         }
247
248         // Compatibility with the Firefox App
249         if (($a->module == "users") && ($a->cmd == "users/sign_in")) {
250                 $a->module = "login";
251         }
252
253         $privateapps = get_config('config','private_addons');
254
255         if (is_array($a->plugins) && in_array($a->module,$a->plugins) && file_exists("addon/{$a->module}/{$a->module}.php")) {
256                 //Check if module is an app and if public access to apps is allowed or not
257                 if ((!local_user()) && plugin_is_app($a->module) && $privateapps === "1") {
258                         info( t("You must be logged in to use addons. "));
259                 } else {
260                         include_once("addon/{$a->module}/{$a->module}.php");
261                         if (function_exists($a->module . '_module')) {
262                                 $a->module_loaded = true;
263                         }
264                 }
265         }
266
267         /**
268          * If not, next look for a 'standard' program module in the 'mod' directory
269          */
270
271         if ((! $a->module_loaded) && (file_exists("mod/{$a->module}.php"))) {
272                 include_once("mod/{$a->module}.php");
273                 $a->module_loaded = true;
274         }
275
276         /**
277          *
278          * The URL provided does not resolve to a valid module.
279          *
280          * On Dreamhost sites, quite often things go wrong for no apparent reason and they send us to '/internal_error.html'.
281          * We don't like doing this, but as it occasionally accounts for 10-20% or more of all site traffic -
282          * 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
283          * this will often succeed and eventually do the right thing.
284          *
285          * Otherwise we are going to emit a 404 not found.
286          *
287          */
288
289         if (! $a->module_loaded) {
290
291                 // Stupid browser tried to pre-fetch our Javascript img template. Don't log the event or return anything - just quietly exit.
292                 if ((x($_SERVER,'QUERY_STRING')) && preg_match('/{[0-9]}/',$_SERVER['QUERY_STRING']) !== 0) {
293                         killme();
294                 }
295
296                 if ((x($_SERVER,'QUERY_STRING')) && ($_SERVER['QUERY_STRING'] === 'q=internal_error.html') && isset($dreamhost_error_hack)) {
297                         logger('index.php: dreamhost_error_hack invoked. Original URI =' . $_SERVER['REQUEST_URI']);
298                         goaway(System::baseUrl() . $_SERVER['REQUEST_URI']);
299                 }
300
301                 logger('index.php: page not found: ' . $_SERVER['REQUEST_URI'] . ' ADDRESS: ' . $_SERVER['REMOTE_ADDR'] . ' QUERY: ' . $_SERVER['QUERY_STRING'], LOGGER_DEBUG);
302                 header($_SERVER["SERVER_PROTOCOL"] . ' 404 ' . t('Not Found'));
303                 $tpl = get_markup_template("404.tpl");
304                 $a->page['content'] = replace_macros($tpl, array(
305                         '$message' =>  t('Page not found.' )
306                 ));
307         }
308 }
309
310 /**
311  * load current theme info
312  */
313 $theme_info_file = "view/theme/".current_theme()."/theme.php";
314 if (file_exists($theme_info_file)){
315         require_once($theme_info_file);
316 }
317
318
319 /* initialise content region */
320
321 if (! x($a->page,'content')) {
322         $a->page['content'] = '';
323 }
324
325 if (!$install && !$maintenance) {
326         call_hooks('page_content_top',$a->page['content']);
327 }
328
329 /**
330  * Call module functions
331  */
332
333 if ($a->module_loaded) {
334         $a->page['page_title'] = $a->module;
335         $placeholder = '';
336
337         if (function_exists($a->module . '_init')) {
338                 call_hooks($a->module . '_mod_init', $placeholder);
339                 $func = $a->module . '_init';
340                 $func($a);
341         }
342
343         if (function_exists(str_replace('-','_',current_theme()) . '_init')) {
344                 $func = str_replace('-','_',current_theme()) . '_init';
345                 $func($a);
346         }
347
348         if (($_SERVER['REQUEST_METHOD'] === 'POST') && (! $a->error)
349                 && (function_exists($a->module . '_post'))
350                 && (! x($_POST,'auth-params'))) {
351                 call_hooks($a->module . '_mod_post', $_POST);
352                 $func = $a->module . '_post';
353                 $func($a);
354         }
355
356         if ((! $a->error) && (function_exists($a->module . '_afterpost'))) {
357                 call_hooks($a->module . '_mod_afterpost',$placeholder);
358                 $func = $a->module . '_afterpost';
359                 $func($a);
360         }
361
362         if ((! $a->error) && (function_exists($a->module . '_content'))) {
363                 $arr = array('content' => $a->page['content']);
364                 call_hooks($a->module . '_mod_content', $arr);
365                 $a->page['content'] = $arr['content'];
366                 $func = $a->module . '_content';
367                 $arr = array('content' => $func($a));
368                 call_hooks($a->module . '_mod_aftercontent', $arr);
369                 $a->page['content'] .= $arr['content'];
370         }
371
372         if (function_exists(str_replace('-','_',current_theme()) . '_content_loaded')) {
373                 $func = str_replace('-','_',current_theme()) . '_content_loaded';
374                 $func($a);
375         }
376 }
377
378 /*
379  * Create the page head after setting the language
380  * and getting any auth credentials.
381  *
382  * Moved init_pagehead() and init_page_end() to after
383  * all the module functions have executed so that all
384  * theme choices made by the modules can take effect.
385  */
386
387 $a->init_pagehead();
388
389 /*
390  * Build the page ending -- this is stuff that goes right before
391  * the closing </body> tag
392  */
393 $a->init_page_end();
394
395 // If you're just visiting, let javascript take you home
396 if (x($_SESSION, 'visitor_home')) {
397         $homebase = $_SESSION['visitor_home'];
398 } elseif (local_user()) {
399         $homebase = 'profile/' . $a->user['nickname'];
400 }
401
402 if (isset($homebase)) {
403         $a->page['content'] .= '<script>var homebase="' . $homebase . '" ; </script>';
404 }
405
406 /*
407  * now that we've been through the module content, see if the page reported
408  * a permission problem and if so, a 403 response would seem to be in order.
409  */
410 if (stristr(implode("", $_SESSION['sysmsg']), t('Permission denied'))) {
411         header($_SERVER["SERVER_PROTOCOL"] . ' 403 ' . t('Permission denied.'));
412 }
413
414 /*
415  * Report anything which needs to be communicated in the notification area (before the main body)
416  */
417 call_hooks('page_end', $a->page['content']);
418
419 /*
420  * Add the navigation (menu) template
421  */
422 if ($a->module != 'install' && $a->module != 'maintenance') {
423         nav($a);
424 }
425
426 /*
427  * Add a "toggle mobile" link if we're using a mobile device
428  */
429 if ($a->is_mobile || $a->is_tablet) {
430         if (isset($_SESSION['show-mobile']) && !$_SESSION['show-mobile']) {
431                 $link = 'toggle_mobile?address=' . curPageURL();
432         } else {
433                 $link = 'toggle_mobile?off=1&address=' . curPageURL();
434         }
435         $a->page['footer'] = replace_macros(get_markup_template("toggle_mobile_footer.tpl"), array(
436                 '$toggle_link' => $link,
437                 '$toggle_text' => t('toggle mobile')
438         ));
439 }
440
441 /**
442  * Build the page - now that we have all the components
443  */
444
445 if (!$a->theme['stylesheet']) {
446         $stylesheet = current_theme_url();
447 } else {
448         $stylesheet = $a->theme['stylesheet'];
449 }
450
451 $a->page['htmlhead'] = str_replace('{{$stylesheet}}',$stylesheet,$a->page['htmlhead']);
452 //$a->page['htmlhead'] = replace_macros($a->page['htmlhead'], array('$stylesheet' => $stylesheet));
453
454 if (isset($_GET["mode"]) && (($_GET["mode"] == "raw") || ($_GET["mode"] == "minimal"))) {
455         $doc = new DOMDocument();
456
457         $target = new DOMDocument();
458         $target->loadXML("<root></root>");
459
460         $content = mb_convert_encoding($a->page["content"], 'HTML-ENTITIES', "UTF-8");
461
462         /// @TODO one day, kill those error-surpressing @ stuff, or PHP should ban it
463         @$doc->loadHTML($content);
464
465         $xpath = new DomXPath($doc);
466
467         $list = $xpath->query("//*[contains(@id,'tread-wrapper-')]");  /* */
468
469         foreach ($list as $item) {
470                 $item = $target->importNode($item, true);
471
472                 // And then append it to the target
473                 $target->documentElement->appendChild($item);
474         }
475 }
476
477 if (isset($_GET["mode"]) && ($_GET["mode"] == "raw")) {
478
479         header("Content-type: text/html; charset=utf-8");
480
481         echo substr($target->saveHTML(), 6, -8);
482
483         killme();
484 }
485
486 $page    = $a->page;
487 $profile = $a->profile;
488
489 header("X-Friendica-Version: " . FRIENDICA_VERSION);
490 header("Content-type: text/html; charset=utf-8");
491
492 /*
493  * We use $_GET["mode"] for special page templates. So we will check if we have
494  * to load another page template than the default one.
495  * The page templates are located in /view/php/ or in the theme directory.
496  */
497 if (isset($_GET["mode"])) {
498         $template = theme_include($_GET["mode"] . '.php');
499 }
500
501 // If there is no page template use the default page template
502 if (empty($template)) {
503         $template = theme_include("default.php");
504 }
505
506 /// @TODO Looks unsafe (remote-inclusion), is maybe not but theme_include() uses file_exists() but does not escape anything
507 require_once $template;
508
509 killme();