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