]> git.mxchange.org Git - friendica.git/blob - index.php
allow mod/view in install mode to load pcss files. Fix unstiled install
[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 // in install mode, any url loads install module
140 // but we need "view" module for stylesheet
141 if($install && $a->module!="view")
142         $a->module = 'install';
143 elseif($maintenance && $a->module!="view")
144         $a->module = 'maintenance';
145 else {
146         check_url($a);
147         check_db();
148         check_plugins($a);
149 }
150
151 nav_set_selected('nothing');
152
153 //Don't populate apps_menu if apps are private
154 $privateapps = get_config('config','private_addons');
155 if((local_user()) || (! $privateapps === "1"))
156 {
157         $arr = array('app_menu' => $a->apps);
158
159         call_hooks('app_menu', $arr);
160
161         $a->apps = $arr['app_menu'];
162 }
163
164 /**
165  *
166  * We have already parsed the server path into $a->argc and $a->argv
167  *
168  * $a->argv[0] is our module name. We will load the file mod/{$a->argv[0]}.php
169  * and use it for handling our URL request.
170  * The module file contains a few functions that we call in various circumstances
171  * and in the following order:
172  *
173  * "module"_init
174  * "module"_post (only called if there are $_POST variables)
175  * "module"_afterpost
176  * "module"_content - the string return of this function contains our page body
177  *
178  * Modules which emit other serialisations besides HTML (XML,JSON, etc.) should do
179  * so within the module init and/or post functions and then invoke killme() to terminate
180  * further processing.
181  */
182
183 if(strlen($a->module)) {
184
185         /**
186          *
187          * We will always have a module name.
188          * First see if we have a plugin which is masquerading as a module.
189          *
190          */
191
192         // Compatibility with the Android Diaspora client
193         if ($a->module == "stream")
194                 $a->module = "network";
195
196         // Compatibility with the Firefox App
197         if (($a->module == "users") AND ($a->cmd == "users/sign_in"))
198                 $a->module = "login";
199
200         $privateapps = get_config('config','private_addons');
201
202         if(is_array($a->plugins) && in_array($a->module,$a->plugins) && file_exists("addon/{$a->module}/{$a->module}.php")) {
203                 //Check if module is an app and if public access to apps is allowed or not
204                 if((!local_user()) && plugin_is_app($a->module) && $privateapps === "1") {
205                         info( t("You must be logged in to use addons. "));
206                 }
207                 else {
208                         include_once("addon/{$a->module}/{$a->module}.php");
209                         if(function_exists($a->module . '_module'))
210                                 $a->module_loaded = true;
211                 }
212         }
213
214         /**
215          * If not, next look for a 'standard' program module in the 'mod' directory
216          */
217
218         if((! $a->module_loaded) && (file_exists("mod/{$a->module}.php"))) {
219                 include_once("mod/{$a->module}.php");
220                 $a->module_loaded = true;
221         }
222
223         /**
224          *
225          * The URL provided does not resolve to a valid module.
226          *
227          * On Dreamhost sites, quite often things go wrong for no apparent reason and they send us to '/internal_error.html'.
228          * We don't like doing this, but as it occasionally accounts for 10-20% or more of all site traffic -
229          * 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
230          * this will often succeed and eventually do the right thing.
231          *
232          * Otherwise we are going to emit a 404 not found.
233          *
234          */
235
236         if(! $a->module_loaded) {
237
238                 // Stupid browser tried to pre-fetch our Javascript img template. Don't log the event or return anything - just quietly exit.
239                 if((x($_SERVER,'QUERY_STRING')) && preg_match('/{[0-9]}/',$_SERVER['QUERY_STRING']) !== 0) {
240                         killme();
241                 }
242
243                 if((x($_SERVER,'QUERY_STRING')) && ($_SERVER['QUERY_STRING'] === 'q=internal_error.html') && isset($dreamhost_error_hack)) {
244                         logger('index.php: dreamhost_error_hack invoked. Original URI =' . $_SERVER['REQUEST_URI']);
245                         goaway($a->get_baseurl() . $_SERVER['REQUEST_URI']);
246                 }
247
248                 logger('index.php: page not found: ' . $_SERVER['REQUEST_URI'] . ' ADDRESS: ' . $_SERVER['REMOTE_ADDR'] . ' QUERY: ' . $_SERVER['QUERY_STRING'], LOGGER_DEBUG);
249                 header($_SERVER["SERVER_PROTOCOL"] . ' 404 ' . t('Not Found'));
250                 $tpl = get_markup_template("404.tpl");
251                 $a->page['content'] = replace_macros($tpl, array(
252                         '$message' =>  t('Page not found.' )
253                 ));
254         }
255 }
256
257 /**
258  * load current theme info
259  */
260 $theme_info_file = "view/theme/".current_theme()."/theme.php";
261 if (file_exists($theme_info_file)){
262         require_once($theme_info_file);
263 }
264
265
266 /* initialise content region */
267
268 if(! x($a->page,'content'))
269         $a->page['content'] = '';
270
271 if(!$install && !$maintenance)
272         call_hooks('page_content_top',$a->page['content']);
273
274 /**
275  * Call module functions
276  */
277
278 if($a->module_loaded) {
279         $a->page['page_title'] = $a->module;
280         $placeholder = '';
281
282         if(function_exists($a->module . '_init')) {
283                 call_hooks($a->module . '_mod_init', $placeholder);
284                 $func = $a->module . '_init';
285                 $func($a);
286         }
287
288         if(function_exists(str_replace('-','_',current_theme()) . '_init')) {
289                 $func = str_replace('-','_',current_theme()) . '_init';
290                 $func($a);
291         }
292 //      elseif (x($a->theme_info,"extends") && file_exists("view/theme/".$a->theme_info["extends"]."/theme.php")) {
293 //              require_once("view/theme/".$a->theme_info["extends"]."/theme.php");
294 //              if(function_exists(str_replace('-','_',$a->theme_info["extends"]) . '_init')) {
295 //                      $func = str_replace('-','_',$a->theme_info["extends"]) . '_init';
296 //                      $func($a);
297 //              }
298 //      }
299
300         if(($_SERVER['REQUEST_METHOD'] === 'POST') && (! $a->error)
301                 && (function_exists($a->module . '_post'))
302                 && (! x($_POST,'auth-params'))) {
303                 call_hooks($a->module . '_mod_post', $_POST);
304                 $func = $a->module . '_post';
305                 $func($a);
306         }
307
308         if((! $a->error) && (function_exists($a->module . '_afterpost'))) {
309                 call_hooks($a->module . '_mod_afterpost',$placeholder);
310                 $func = $a->module . '_afterpost';
311                 $func($a);
312         }
313
314         if((! $a->error) && (function_exists($a->module . '_content'))) {
315                 $arr = array('content' => $a->page['content']);
316                 call_hooks($a->module . '_mod_content', $arr);
317                 $a->page['content'] = $arr['content'];
318                 $func = $a->module . '_content';
319                 $arr = array('content' => $func($a));
320                 call_hooks($a->module . '_mod_aftercontent', $arr);
321                 $a->page['content'] .= $arr['content'];
322         }
323
324         if(function_exists(str_replace('-','_',current_theme()) . '_content_loaded')) {
325                 $func = str_replace('-','_',current_theme()) . '_content_loaded';
326                 $func($a);
327         }
328 }
329
330 /*
331  * Create the page head after setting the language
332  * and getting any auth credentials
333  *
334  * Moved init_pagehead() and init_page_end() to after
335  * all the module functions have executed so that all
336  * theme choices made by the modules can take effect
337  */
338
339 $a->init_pagehead();
340
341 /**
342  * Build the page ending -- this is stuff that goes right before
343  * the closing </body> tag
344  */
345
346 $a->init_page_end();
347
348 // If you're just visiting, let javascript take you home
349
350 if(x($_SESSION,'visitor_home'))
351         $homebase = $_SESSION['visitor_home'];
352 elseif(local_user())
353         $homebase = $a->get_baseurl() . '/profile/' . $a->user['nickname'];
354
355 if(isset($homebase))
356         $a->page['content'] .= '<script>var homebase="' . $homebase . '" ; </script>';
357
358 // now that we've been through the module content, see if the page reported
359 // a permission problem and if so, a 403 response would seem to be in order.
360
361 if(stristr( implode("",$_SESSION['sysmsg']), t('Permission denied'))) {
362         header($_SERVER["SERVER_PROTOCOL"] . ' 403 ' . t('Permission denied.'));
363 }
364
365 /**
366  *
367  * Report anything which needs to be communicated in the notification area (before the main body)
368  *
369  */
370
371 /*if(x($_SESSION,'sysmsg')) {
372         $a->page['content'] = "<div id=\"sysmsg\" class=\"error-message\">{$_SESSION['sysmsg']}</div>\r\n"
373                 . ((x($a->page,'content')) ? $a->page['content'] : '');
374         $_SESSION['sysmsg']="";
375         unset($_SESSION['sysmsg']);
376 }
377 if(x($_SESSION,'sysmsg_info')) {
378         $a->page['content'] = "<div id=\"sysmsg_info\" class=\"info-message\">{$_SESSION['sysmsg_info']}</div>\r\n"
379                 . ((x($a->page,'content')) ? $a->page['content'] : '');
380         $_SESSION['sysmsg_info']="";
381         unset($_SESSION['sysmsg_info']);
382 }*/
383
384
385
386 call_hooks('page_end', $a->page['content']);
387
388
389 /**
390  *
391  * Add a place for the pause/resume Ajax indicator
392  *
393  */
394
395 $a->page['content'] .=  '<div id="pause"></div>';
396
397
398 /**
399  *
400  * Add the navigation (menu) template
401  *
402  */
403
404 if($a->module != 'install' && $a->module != 'maintenance') {
405         nav($a);
406 }
407
408 /**
409  * Add a "toggle mobile" link if we're using a mobile device
410  */
411
412 if($a->is_mobile || $a->is_tablet) {
413         if(isset($_SESSION['show-mobile']) && !$_SESSION['show-mobile']) {
414                 $link = $a->get_baseurl() . '/toggle_mobile?address=' . curPageURL();
415         }
416         else {
417                 $link = $a->get_baseurl() . '/toggle_mobile?off=1&address=' . curPageURL();
418         }
419         $a->page['footer'] = replace_macros(get_markup_template("toggle_mobile_footer.tpl"), array(
420                                 '$toggle_link' => $link,
421                                 '$toggle_text' => t('toggle mobile')
422                          ));
423 }
424
425 /**
426  * Build the page - now that we have all the components
427  */
428
429 if(!$a->theme['stylesheet'])
430         $stylesheet = current_theme_url();
431 else
432         $stylesheet = $a->theme['stylesheet'];
433
434 $a->page['htmlhead'] = str_replace('{{$stylesheet}}',$stylesheet,$a->page['htmlhead']);
435 //$a->page['htmlhead'] = replace_macros($a->page['htmlhead'], array('$stylesheet' => $stylesheet));
436
437 if (isset($_GET["mode"]) AND (($_GET["mode"] == "raw") OR ($_GET["mode"] == "minimal"))) {
438         $doc = new DOMDocument();
439
440         $target = new DOMDocument();
441         $target->loadXML("<root></root>");
442
443         $content = mb_convert_encoding($a->page["content"], 'HTML-ENTITIES', "UTF-8");
444
445         @$doc->loadHTML($content);
446
447         $xpath = new DomXPath($doc);
448
449         $list = $xpath->query("//*[contains(@id,'tread-wrapper-')]");  /* */
450
451         foreach ($list as $item) {
452
453                 $item = $target->importNode($item, true);
454
455                 // And then append it to the target
456                 $target->documentElement->appendChild($item);
457         }
458 }
459
460 if (isset($_GET["mode"]) AND ($_GET["mode"] == "raw")) {
461
462         header("Content-type: text/html; charset=utf-8");
463
464         echo substr($target->saveHTML(), 6, -8);
465
466         session_write_close();
467         exit;
468
469 } elseif (get_pconfig(local_user(),'system','infinite_scroll')
470           AND ($a->module == "network") AND ($_GET["mode"] != "minimal")) {
471         if (is_string($_GET["page"]))
472                 $pageno = $_GET["page"];
473         else
474                 $pageno = 1;
475
476         $reload_uri = "";
477
478         foreach ($_GET AS $param => $value)
479                 if (($param != "page") AND ($param != "q"))
480                         $reload_uri .= "&".$param."=".urlencode($value);
481
482         if (($a->page_offset != "") AND !strstr($reload_uri, "&offset="))
483                 $reload_uri .= "&offset=".urlencode($a->page_offset);
484
485
486 $a->page['htmlhead'] .= <<< EOT
487 <script type="text/javascript">
488
489 $(document).ready(function() {
490     num = $pageno;
491 });
492
493 function loadcontent() {
494         //$("div.loader").show();
495
496         num+=1;
497
498         console.log('Loading page ' + num);
499
500         $.get('/network?mode=raw$reload_uri&page=' + num, function(data) {
501                 $(data).insertBefore('#conversation-end');
502         });
503
504         //$("div.loader").fadeOut('normal');
505 }
506
507 var num = $pageno;
508
509 $(window).scroll(function(e){
510
511         if ($(document).height() != $(window).height()) {
512                 // First method that is expected to work - but has problems with Chrome
513                 if ($(window).scrollTop() == $(document).height() - $(window).height())
514                         loadcontent();
515         } else {
516                 // This method works with Chrome - but seems to be much slower in Firefox
517                 if ($(window).scrollTop() > (($("section").height() + $("header").height() + $("footer").height()) - $(window).height()))
518                         loadcontent();
519         }
520 });
521 </script>
522
523 EOT;
524
525 }
526
527 $page    = $a->page;
528 $profile = $a->profile;
529
530 header("Content-type: text/html; charset=utf-8");
531
532
533 if (isset($_GET["mode"]) AND ($_GET["mode"] == "minimal")) {
534         //$page['content'] = substr($target->saveHTML(), 6, -8)."\n\n".
535         //                      '<div id="conversation-end"></div>'."\n\n";
536
537         require "view/minimal.php";
538 } else {
539         $template = 'view/theme/' . current_theme() . '/'
540                 . ((x($a->page,'template')) ? $a->page['template'] : 'default' ) . '.php';
541
542         if(file_exists($template))
543                 require_once($template);
544         else
545                 require_once(str_replace('theme/' . current_theme() . '/', '', $template));
546 }
547
548 session_write_close();
549 exit;