source: trunk/Application/System.php@ 795

Last change on this file since 795 was 795, checked in by chronos, 9 years ago
  • Modified: In module IS use slow HAVING in SQL query for user filter. To show subtables use faster WHERE.
File size: 7.1 KB
Line 
1<?php
2
3$ConfigFileName = dirname(__FILE__).'/../Config/Config.php';
4if(file_exists($ConfigFileName)) include_once($ConfigFileName);
5
6include_once(dirname(__FILE__).'/Version.php');
7include_once(dirname(__FILE__).'/../Common/Global.php');
8include_once(dirname(__FILE__).'/FormClasses.php');
9include_once(dirname(__FILE__).'/FullInstall.php');
10include_once(dirname(__FILE__).'/UpdateTrace.php');
11include_once(dirname(__FILE__).'/View.php');
12include_once(dirname(__FILE__).'/DefaultConfig.php');
13
14class Core extends Application
15{
16 /** @var Type */
17 var $Type;
18 var $Pages;
19 var $Bars;
20 /** @var FormManager */
21 var $FormManager;
22 /** @var Config */
23 var $ConfigManager;
24 var $PathItems;
25 var $RootURLFolder;
26 var $ShowPage;
27 var $Setup;
28 var $CommandLine;
29 var $PageHeaders;
30
31 function __construct()
32 {
33 parent::__construct();
34 $this->Modules = array();
35 $this->Pages = array();
36 $this->ModuleManager->FileName = dirname(__FILE__).'/../Config/ModulesConfig.php';
37 $this->FormManager = new FormManager($this->Database);
38 $this->ShowPage = true;
39 $this->ConfigManager = new Config();
40 $this->RootURLFolder = $_SERVER['SCRIPT_NAME'];
41 if(substr($this->RootURLFolder, -10, 10) == '/index.php')
42 $this->RootURLFolder = substr($this->RootURLFolder, 0, -10);
43 $this->CommandLine = array();
44 $this->PageHeaders = array();
45 }
46
47 function RegisterPage($Path, $Handler)
48 {
49 if(is_array($Path))
50 {
51 $Page = &$this->Pages;
52 $LastKey = array_pop($Path);
53 foreach($Path as $PathItem)
54 {
55 $Page = &$Page[$PathItem];
56 }
57 if(!is_array($Page)) $Page = array('' => $Page);
58 $Page[$LastKey] = $Handler;
59 } else $this->Pages[$Path] = $Handler;
60 }
61
62 function UnregisterPage($Path)
63 {
64 unset($this->Pages[$Path]);
65 }
66
67 function SearchPage($PathItems, $Pages)
68 {
69 if(count($PathItems) > 0) $PathItem = $PathItems[0];
70 else $PathItem = '';
71 if(array_key_exists($PathItem, $Pages))
72 {
73 if(is_array($Pages[$PathItem]))
74 {
75 array_shift($PathItems);
76 return($this->SearchPage($PathItems, $Pages[$PathItem]));
77 } else return($Pages[$PathItem]);
78 } else return('');
79 }
80
81 function PageNotFound()
82 {
83 return('Page '.implode('/', $this->PathItems).' not found.');
84 }
85
86 function ShowPage()
87 {
88 $this->BaseView = new BaseView($this);
89
90 /* @var $Page Page */
91 $ClassName = $this->SearchPage($this->PathItems, $this->Pages);
92 if($ClassName != '')
93 {
94 $Page = new $ClassName($this);
95 } else {
96 $Page = new PageMissing($this);
97 }
98 echo($this->BaseView->GetOutput($Page));
99 }
100
101 function ModulePresent($Name)
102 {
103 return(array_key_exists($Name, $this->Modules));
104 }
105
106 function AddModule($Module)
107 {
108 $this->Modules[get_class($Module)] = $Module;
109 }
110
111 function HumanDate($Time)
112 {
113 return(date('j.n.Y', $Time));
114 }
115
116 function Link($Target)
117 {
118 return($this->RootURLFolder.$Target);
119 }
120
121 function ShowAction($Id)
122 {
123 $Output = '';
124 $DbResult = $this->Database->query('SELECT *, `ActionIcon`.`Name` AS `Icon` FROM `Action` '.
125 'LEFT JOIN `ActionIcon` ON `ActionIcon`.`Id` = `Action`.`Icon` '.
126 'WHERE (`Action`.`Id`='.$Id.')');
127 if($DbResult->num_rows > 0)
128 {
129 $Action = $DbResult->fetch_assoc();
130 if($Action['Icon'] == '') $Action['Icon'] = 'clear.png';
131 if(substr($Action['URL'], 0, 4) != 'http') $Action['URL'] = $this->Link($Action['URL']);
132 if(!defined('NEW_PERMISSION') or $this->User->CheckPermission('System', 'Read', 'Item', $Id))
133 $Output .= '<img alt="'.$Action['Title'].'" src="'.$this->Link('/images/favicons/'.$Action['Icon']).
134 '" width="16" height="16" /> <a href="'.$Action['URL'].'">'.$Action['Title'].'</a>';
135 }
136 return($Output);
137 }
138
139 function RunCommon()
140 {
141 global $Database, $ScriptTimeStart, $ConfigFileName, $Mail, $Type,
142 $DatabaseRevision, $Config;
143
144 date_default_timezone_set('Europe/Prague');
145 mb_internal_encoding("UTF-8");
146 $ScriptTimeStart = GetMicrotime();
147
148 // SQL injection hack protection
149 foreach($_POST as $Index => $Item) $_POST[$Index] = addslashes($Item);
150 foreach($_GET as $Index => $Item) $_GET[$Index] = addslashes($Item);
151
152 if(isset($_SERVER['REMOTE_ADDR'])) session_start();
153
154 $ConfigFileName = dirname(dirname(__FILE__)).'/config.php';
155 if(file_exists($ConfigFileName))
156 $this->ConfigManager->LoadFromFile($ConfigFileName);
157 //$this->Config = $this->ConfigManager->GetAsArray();
158 $this->Config = &$Config;
159
160 try {
161 $this->Database->Connect($this->Config['Database']['Host'], $this->Config['Database']['User'],
162 $this->Config['Database']['Password'], $this->Config['Database']['Database']);
163 $this->Database->Prefix = $this->Config['Database']['Prefix'];
164 $this->Database->charset($this->Config['Database']['Charset']);
165 $this->Database->ShowSQLError = $this->Config['Web']['ShowSQLError'];
166 $this->Database->ShowSQLQuery = $this->Config['Web']['ShowSQLQuery'];
167 if(isset($this->Config['Web']['LogSQLQuery']))
168 $this->Database->LogSQLQuery = $this->Config['Web']['LogSQLQuery'];
169 } catch (Exception $E) {
170 //$Output .= 'Nelze se připojit k databázi.';
171 }
172 if(isset($this->Config['Web']['RootFolder']))
173 $this->RootURLFolder = $this->Config['Web']['RootFolder'];
174 $this->FormManager->Root = $this->RootURLFolder;
175
176 $this->RegisterPageBar('Top');
177
178 $Database = $this->Database;
179 RegisterFormClasses($this->FormManager);
180
181 // Register and start existing modules
182 $this->Setup = new Setup($this);
183 $this->Setup->Start();
184 if($this->Setup->CheckState())
185 {
186 $this->ModuleManager->Start();
187 }
188 }
189
190 function Run()
191 {
192 $this->RunCommon();
193 if($this->ShowPage)
194 {
195 $this->PathItems = ProcessURL();
196 $this->ShowPage();
197 }
198 }
199
200 function RunCommandLine()
201 {
202 global $argv;
203
204 $this->RunCommon();
205 if(count($argv) > 1)
206 {
207 if(array_key_exists($argv[1], $this->CommandLine))
208 {
209 $Command = $this->CommandLine[$argv[1]];
210 $Output = call_user_func($Command['Callback'], $argv);
211 } else $Output = 'Command "'.$argv[1].'" not supported.'."\n";
212 } else $Output = 'No command was given as parameter'."\n";
213 echo($Output);
214 }
215
216 function RegisterCommandLine($Name, $Callback)
217 {
218 $this->CommandLine[$Name] = array('Name' => $Name, 'Callback' => $Callback);
219 }
220
221 function RegisterPageBar($Name)
222 {
223 $this->Bars[$Name] = array();
224 }
225
226 function UnregisterPageBar($Name)
227 {
228 unset($this->Bars[$Name]);
229 }
230
231 function RegisterPageBarItem($BarName, $ItemName, $Callback)
232 {
233 $this->Bars[$BarName][$ItemName] = $Callback;
234 }
235
236 function RegisterPageHeader($Name, $Callback)
237 {
238 $this->PageHeaders[$Name] = $Callback;
239 }
240}
241
242class PageMissing extends Page
243{
244 var $FullTitle = 'Stránka nenalezena';
245 var $ShortTitle = 'Stránka nenalezena';
246
247 function __construct($System)
248 {
249 parent::__construct($System);
250 $this->ParentClass = 'PagePortal';
251 }
252
253 function Show()
254 {
255 Header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found');
256 return('<h3 align="center">Požadovaná stránka neexistuje.</h3>');
257 }
258}
Note: See TracBrowser for help on using the repository browser.