source: trunk/Application/System.php@ 779

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