]> git.mxchange.org Git - friendica.git/blob - index.php
52ea58374e8fa4d0d55b2258831349c304e4bdf3
[friendica.git] / index.php
1 <?php
2
3 require_once("boot.php");
4
5 $a = new App;
6
7 $debug_text = ''; // Debugging functions should never be used on production systems.
8
9 // Setup the database.
10
11 $install = ((file_exists('.htconfig.php')) ? false : true);
12
13 @include(".htconfig.php");
14 require_once("dba.php");
15 $db = new dba($db_host, $db_user, $db_pass, $db_data, $install);
16         unset($db_host, $db_user, $db_pass, $db_data);
17
18 if(! $install)
19         require_once("session.php");
20
21 require_once("datetime.php");
22
23 date_default_timezone_set(($default_timezone) ? $default_timezone : 'UTC');
24
25 $a->init_pagehead();
26
27 session_start();
28
29 if((x($_SESSION,'authenticated')) || (x($_POST['auth-params'])))
30         require("auth.php");
31
32 if($install)
33         $a->module = 'install';
34 else
35         check_config($a);
36
37 if(strlen($a->module)) {
38         if(file_exists("mod/{$a->module}.php")) {
39                 include("mod/{$a->module}.php");
40                 $a->module_loaded = true;
41         }
42         else {
43                 header($_SERVER["SERVER_PROTOCOL"] . ' 404 ' . t('Not Found'));
44                 notice( t('Page not found' ) . EOL);
45         }
46 }
47
48 // invoke module functions
49 // Important: Modules normally do not emit content, unless you need it for debugging.
50 // The module_init, module_post, and module_afterpost functions process URL parameters and POST processing.
51 // The module_content function returns content text to this file where it is included on the page.
52 // Modules emitting XML/Atom, etc. should do so idirectly and promptly exit before the HTML page can be rendered.
53 // "Most" HTML resides in the view directory as text templates with macro substitution. 
54 // They look like HTML with PHP variables but only a couple pass through the PHP processor - those with .php extensions.
55 // The macro substitution is defined per page for the .tpl files. 
56 // Information transfer between functions can be accomplished via the App session '$a' and its related variables.
57 // x() queries both a variable's existence and that it is "non-zero" or "non-empty" depending on how it is called. 
58 // q() is the SQL query form. All string (%s) variables MUST be passed through dbesc(). 
59 // All int values MUST be cast to integer using intval(); 
60
61 if($a->module_loaded) {
62         $a->page['page_title'] = $a->module;
63         if(function_exists($a->module . '_init')) {
64                 $func = $a->module . '_init';
65                 $func($a);
66         }
67
68         if(($_SERVER['REQUEST_METHOD'] == 'POST') && (! $a->error)
69                 && (function_exists($a->module . '_post'))
70                 && (! x($_POST,'auth-params'))) {
71                 $func = $a->module . '_post';
72                 $func($a);
73         }
74
75         if((! $a->error) && (function_exists($a->module . '_afterpost'))) {
76                 $func = $a->module . '_afterpost';
77                 $func($a);
78         }
79
80         if((! $a->error) && (function_exists($a->module . '_content'))) {
81                 $func = $a->module . '_content';
82                 $a->page['content'] .= $func($a);
83         }
84
85 }
86
87 // report anything important happening
88         
89 if(x($_SESSION,'sysmsg')) {
90         $a->page['content'] = "<div id=\"sysmsg\" class=\"error-message\">{$_SESSION['sysmsg']}</div>\r\n"
91                 . $a->page['content'];
92         unset($_SESSION['sysmsg']);
93 }
94
95 if(stristr($_SESSION['sysmsg'], t('Permission denied'))) {
96         header($_SERVER["SERVER_PROTOCOL"] . ' 403 ' . t('Permission denied.'));
97 }
98
99
100 // Feel free to comment out this line on production sites.
101 $a->page['content'] .= $debug_text;
102
103 // build page
104
105 // Navigation (menu) template
106 if($a->module != 'install')
107         require_once("nav.php");
108
109 $page    = $a->page;
110 $profile = $a->profile;
111
112 header("Content-type: text/html; charset=utf-8");
113 $template = "view/" 
114         . ((x($a->page,'theme')) ? $a->page['theme'] . '/' : "" ) 
115         . ((x($a->page,'template')) ? $a->page['template'] : 'default' ) 
116         . ".php";
117
118 require_once($template);
119
120 session_write_close();
121 exit;