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