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