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