source: trunk/www/index.php@ 15

Last change on this file since 15 was 15, checked in by george, 16 years ago
  • Přidáno: Nastavení parametrů gcc překladu emulátoru přes konfigurační soubor.
  • Přidáno: Podpora řazení dle sloupců v tabulkách.
  • Upraveno: Nezjišťovat informace o stavu serverů z tabulek mangosu, ale ukládat stavové informace serverů přímo do tabulky Server. Nutno provádět aktualizaci tabulky.
File size: 15.2 KB
Line 
1<?php
2
3include('global.php');
4
5class Index extends Page
6{
7 var $FullTitle = 'Seznam serverů';
8 var $ShortTitle = 'Seznam serverů';
9
10 function ShowServerListOnRow($Row)
11 {
12 $Row['NetworkPortRealmd'] = $this->System->Config['Web']['Host'].':'.$Row['NetworkPortRealmd'];
13 $Row['Name'] = '<a href="?Action=ServerShow&amp;Id='.$Row['Id'].'">'.$Row['Name'].'</a>';
14 return($Row);
15 }
16
17 function ShowServerList()
18 {
19 global $Config;
20
21 $Server = new Server($this->Database, 0);
22 $Server->UpdateServerList();
23 $Output = '<h4>Seznam serverů</h4>';
24 $Table = new Table('ServerList');
25 $Table->OnRow = array($this, 'ShowServerListOnRow');
26 $Table->LoadValuesFromDatabase($this->Database);
27 $Output .= $Table->Show();
28 if($this->System->Modules['User']->User['Role'] >= USER_ROLE_USER)
29 {
30 $DbResult = $this->Database->query('SELECT COUNT(*) FROM Server');
31 $DbRow = $DbResult->fetch_row();
32 $ServerCount = $DbRow[0];
33 $DbResult = $this->Database->query('SELECT COUNT(*) FROM Server WHERE User='.$this->System->Modules['User']->User['Id']);
34 $DbRow = $DbResult->fetch_row();
35 if(($ServerCount < $Config['MaxServerCount']) and ($DbRow[0] == 0))
36 $Output .= '<br /><div style="text-align: center;"><a href="?Action=ServerAdd">Vytvořit nový server</a></dev>';
37 }
38 return($Output);
39 }
40
41 function ShowServer($Id)
42 {
43 $Server = new Server($this->Database, $Id);
44 $Output = '<h4>Podrobnosti serveru</h4>';
45 $Form = new Form('EditServer');
46 $Form->LoadValuesFromDatabase($Id);
47 $Output .= $Form->ShowTable();
48 $Output .= '<div style="text-align: center">';
49 if(($this->System->Modules['User']->User['Role'] >= USER_ROLE_USER) and ($this->System->Modules['User']->User['Id'] == $Server->Server['User']))
50 {
51 $Output .= '<br /><a href="http://'.$this->System->Config['Web']['Host'].'/mysql/">Správa databáze</a> ';
52 if(array_key_exists('Id', $Server->Server['Database']))
53 {
54 $ServerStatus = $Server->GetState();
55 if($ServerStatus['RealmdPortState'] == true) $Output .= ' <a href="?Action=ServerStop">Zastavit</a> <a href="?Action=ServerRestart">Restartovat</a>';
56 else $Output .= ' <a href="?Action=ServerStart">Spustit</a>';
57 }
58 $Output .= ' <a href="?Action=ServerEdit">Upravit</a>';
59 $Output .= ' <a href="?Action=ServerDatabaseImport">Načtení čisté databáze</a>';
60 }
61 $Output .= '</div>';
62 return($Output);
63 }
64
65 function ShowEmulatorListOnRow($Row)
66 {
67 $Row['Name'] = '<a href="?Action=EmulatorShow&amp;Id='.$Row['Id'].'">'.$Row['Name'].'</a>';
68 return($Row);
69 }
70
71 function ShowEmulatorList()
72 {
73 global $Config;
74
75 $Output = '<h4>Seznam verzí emulátoru</h4>';
76 $Table = new Table('EmulatorList');
77 $Table->OnRow = array($this, 'ShowEmulatorListOnRow');
78 $Table->LoadValuesFromDatabase($this->Database);
79 $Output .= $Table->Show();
80 if($this->System->Modules['User']->User['Role'] >= USER_ROLE_ADMINISTRATOR)
81 {
82 $Output .= '<br /><div style="text-align: center;"><a href="?Action=EmulatorAdd">Přidat emulátor</a></dev>';
83 }
84 return($Output);
85 }
86
87 function EmulatorShow($Id)
88 {
89 //$Server = new Server($this->Database, $Id);
90 $Output = '<h4>Podrobnosti emulátoru</h4>';
91 $Form = new Form('EmulatorItem');
92 $Form->LoadValuesFromDatabase($Id);
93 $Output .= $Form->ShowTable();
94 $Output .= '<div style="text-align: center">';
95 if($this->System->Modules['User']->User['Role'] >= USER_ROLE_ADMINISTRATOR)
96 {
97 $Output .= ' <a href="?Action=EmulatorCompile&amp;Id='.$Id.'">Přeložit</a>';
98 $Output .= ' <a href="?Action=EmulatorDownloadAndCompile&amp;Id='.$Id.'">Stáhnout a přeložit</a>';
99 }
100 $Output .= '</div>';
101 return($Output);
102 }
103
104 function Show()
105 {
106 global $Config;
107
108 $Output = '';
109 if(array_key_exists('Action', $_GET))
110 {
111 if($_GET['Action'] == 'LoginForm')
112 {
113 $Form = new Form('UserLogin');
114 $Form->OnSubmit = '?Action=Login';
115 $Output .= $Form->ShowEditForm();
116 $Output .= '<div class="Centred"><a href="?Action=UserRegister">Registrovat se</a> '.
117 '<a href="?Action=PasswordRecovery">Obnova zapomenutého hesla</a></div>';
118 } else
119 if($_GET['Action'] == 'Login')
120 {
121 $Form = new Form('UserLogin');
122 $Form->OnSubmit = '?Action=Login';
123 $Form->LoadValuesFromForm();
124 $Result = $this->System->Modules['User']->Login($Form->Values['Username'], $Form->Values['Password']);
125 $Output .= $this->SystemMessage('Přihlášení', $Result);
126 if($Result <> USER_LOGGED_IN)
127 {
128 $Form->Values['Password'] = '';
129 $Output .= $Form->ShowEditForm();
130 $Output .= '<div class="Centred"><a href="?Action=UserRegister">Registrovat se</a> '.
131 '<a href="?Action=PasswordRecovery">Obnova zapomenutého hesla</a></div>';
132 }
133 } else
134 if($_GET['Action'] == 'Logout')
135 {
136 $Output .= $this->SystemMessage('Odhlášení', $this->System->Modules['User']->Logout());
137 } else
138 if($_GET['Action'] == 'UserOptions')
139 {
140 $UserOptions = new Form('UserOptions');
141 $UserOptions->LoadValuesFromDatabase($this->System->Modules['User']->User['Id']);
142 $UserOptions->OnSubmit = '?Action=UserOptionsSave';
143 $Output .= $UserOptions->ShowEditForm();
144 } else
145 if($_GET['Action'] == 'UserOptionsSave')
146 {
147 $UserOptions = new Form('UserOptions', array());
148 $UserOptions->LoadValuesFromForm();
149 $UserOptions->SaveValuesToDatabase($this->System->Modules['User']->User['Id']);
150 $Output .= $this->SystemMessage('Nastavení', 'Nastavení uloženo.');
151 $this->System->Modules['Log']->NewRecord('User', 'Nastavení uživatele změněno', $UserOptions->Values['Name']);
152 $UserOptions->LoadValuesFromDatabase($this->System->Modules['User']->User['Id']);
153 $UserOptions->OnSubmit = '?Action=UserOptionsSave';
154 $Output .= $UserOptions->ShowEditForm();
155 } else
156 if($_GET['Action'] == 'UserRegister')
157 {
158 $Form = new Form('UserRegister');
159 $Form->LoadValuesFromForm();
160 $Form->OnSubmit = '?Action=UserRegisterSave';
161 $Output .= $Form->ShowEditForm();
162 } else
163 if($_GET['Action'] == 'UserRegisterConfirm')
164 {
165 $Output .= $this->SystemMessage('Potvrzení registrace', $this->System->Modules['User']->RegisterConfirm($_GET['User'], $_GET['H']));
166 } else
167 if($_GET['Action'] == 'PasswordRecovery')
168 {
169 $Form = new Form('PasswordRecovery');
170 $Form->OnSubmit = '?Action=PasswordRecovery2';
171 $Output .= $Form->ShowEditForm();
172 } else
173 if($_GET['Action'] == 'PasswordRecovery2')
174 {
175 $Form = new Form('PasswordRecovery');
176 $Form->LoadValuesFromForm();
177 $Result = $this->System->Modules['User']->PasswordRecoveryRequest($Form->Values['Name'], $Form->Values['Email']);
178 $Output .= $this->SystemMessage('Obnova hesla', $Result);
179 if($Result <> USER_PASSWORD_RECOVERY_SUCCESS)
180 {
181 $Output .= $Form->ShowEditForm();
182 }
183 } else
184 if($_GET['Action'] == 'PasswordRecoveryConfirm')
185 {
186 $Output .= $this->SystemMessage('Obnova hesla', $this->System->Modules['User']->PasswordRecoveryConfirm($_GET['User'], $_GET['H'], $_GET['P']));
187 } else
188 if($_GET['Action'] == 'UserRegisterSave')
189 {
190 $Form = new Form('UserRegister', array());
191 $Form->LoadValuesFromForm();
192 $Result = $this->System->Modules['User']->Register($Form->Values['Login'], $Form->Values['Password'], $Form->Values['Password2'], $Form->Values['Email'], $Form->Values['Name']);
193 $Output .= $this->SystemMessage('Registrace nového účtu', $Result);
194 if($Result <> USER_REGISTRATED)
195 {
196 $Form->OnSubmit = '?Action=UserRegisterSave';
197 $Output .= $Form->ShowEditForm();
198 }
199 } else
200 if($_GET['Action'] == 'ServerAdd')
201 {
202 if($this->System->Modules['User']->User['Role'] >= USER_ROLE_USER)
203 {
204 $DbResult = $this->Database->query('SELECT COUNT(*) FROM Server');
205 $DbRow = $DbResult->fetch_row();
206 $ServerCount = $DbRow[0];
207 if($ServerCount < $Config['MaxServerCount'])
208 {
209 $DbResult = $this->Database->query('SELECT COUNT(*) FROM Server WHERE User='.$this->System->Modules['User']->User['Id']);
210 $DbRow = $DbResult->fetch_row();
211 if($DbRow[0] > 0) $Output .= $this->SystemMessage('Nový server', 'Lze vytvořit pouze jeden server pro každý uživatelský účet.');
212 else
213 {
214 $Form = new Form('NewServer');
215 $Form->LoadValuesFromForm();
216 $Form->OnSubmit = '?Action=ServerCreate';
217 $Output .= 'Tento formulář vám umožní si vytvořit nový server. Pečlivě vyplňte požadované údaje.';
218 $Output .= $Form->ShowEditForm();
219 }
220 } else $Output .= $this->SystemMessage('Nový serve', 'Nelze vytvářet další servery');
221 } else $Output .= USER_BAD_ROLE;
222 } else
223 if($_GET['Action'] == 'ServerCreate')
224 {
225 if($this->System->Modules['User']->User['Role'] >= USER_ROLE_USER)
226 {
227 $DbResult = $this->Database->query('SELECT COUNT(*) FROM Server WHERE User='.$this->System->Modules['User']->User['Id']);
228 $DbRow = $DbResult->fetch_row();
229 if($DbRow[0] > 0) $Output .= $this->SystemMessage('Nový server', 'Lze vytvořit pouze jeden server pro každý uživatelský účet.');
230 else
231 {
232 $Form = new Form('NewServer', array());
233 $Form->LoadValuesFromForm();
234 $this->Database->insert('Server', array('Name' => $Form->Values['Name'], 'Description' => $Form->Values['Description'], 'User' => $this->System->Modules['User']->User['Id'], 'Motd' => $Form->Values['Motd'], 'Homepage' => $Form->Values['Homepage'], 'Type' => $Form->Values['Type'], 'Database' => 1));
235 $LastInsertId = $this->Database->insert_id;
236 $Server = new Server($this->Database, $LastInsertId);
237 $Server->CreateDatabase();
238 $Output .= $this->SystemMessage('Nový server', 'Server vytvořen.');
239 //$UserOptions->LoadValuesFromDatabase($this->System->Modules['User']->User['Id']);
240 //$Form->OnSubmit = '?Action=ServerCreate';
241 //$Output .= $Form->ShowEditForm();
242 }
243 } else $Output .= USER_BAD_ROLE;
244 } else
245 if($_GET['Action'] == 'ServerShow')
246 {
247 if(array_key_exists('Id', $_GET)) $Output .= $this->ShowServer($_GET['Id']);
248 else
249 {
250 $DbResult = $this->Database->query('SELECT Id FROM Server WHERE User='.$this->System->Modules['User']->User['Id']);
251 $Server = $DbResult->fetch_assoc();
252 $Output .= $this->ShowServer($Server['Id']);
253 }
254 } else
255 if($_GET['Action'] == 'ServerEdit')
256 {
257 if($this->System->Modules['User']->User['Role'] >= USER_ROLE_USER)
258 {
259 $DbResult = $this->Database->query('SELECT Id FROM Server WHERE User='.$this->System->Modules['User']->User['Id']);
260 $Server = $DbResult->fetch_assoc();
261 $Form = new Form('EditServer');
262 $Form->LoadValuesFromDatabase($Server['Id']);
263 $Form->OnSubmit = '?Action=ServerSave';
264 $Output .= $Form->ShowEditForm();
265 } else $Output .= USER_BAD_ROLE;
266 } else
267 if($_GET['Action'] == 'ServerSave')
268 {
269 if($this->System->Modules['User']->User['Role'] >= USER_ROLE_USER)
270 {
271 $DbResult = $this->Database->query('SELECT Id FROM Server WHERE User='.$this->System->Modules['User']->User['Id']);
272 $Server = $DbResult->fetch_assoc();
273 $UserOptions = new Form('EditServer', array());
274 $UserOptions->LoadValuesFromForm();
275 $Output .= $this->SystemMessage('Upravit server', 'Nastavení serveru uloženo.');
276 $UserOptions->SaveValuesToDatabase($Server['Id']);
277 $UserOptions->OnSubmit = '?Action=ServerSave';
278
279 $Server = new Server($this->Database, $Server['Id']);
280 $Server->SaveConfiguration();
281
282 $Output .= $UserOptions->ShowEditForm();
283 } else $Output .= USER_BAD_ROLE;
284 } else
285 if($_GET['Action'] == 'ServerStart')
286 {
287 if($this->System->Modules['User']->User['Role'] >= USER_ROLE_USER)
288 {
289 $DbResult = $this->Database->query('SELECT Id FROM Server WHERE User='.$this->System->Modules['User']->User['Id']);
290 $Server = $DbResult->fetch_assoc();
291 $Server = new Server($this->Database, $Server['Id']);
292 $Output .= $this->SystemMessage('Spuštění serveru', $Server->Start());
293 } else $Output .= USER_BAD_ROLE;
294 } else
295 if($_GET['Action'] == 'ServerStop')
296 {
297 if($this->System->Modules['User']->User['Role'] >= USER_ROLE_USER)
298 {
299 $DbResult = $this->Database->query('SELECT Id FROM Server WHERE User='.$this->System->Modules['User']->User['Id']);
300 $Server = $DbResult->fetch_assoc();
301 $Server = new Server($this->Database, $Server['Id']);
302 $Output .= $this->SystemMessage('Zastavení serveru', $Server->Stop());
303 } else $Output .= USER_BAD_ROLE;
304 } else
305 if($_GET['Action'] == 'ServerDatabaseImport')
306 {
307 if($this->System->Modules['User']->User['Role'] >= USER_ROLE_USER)
308 {
309 $DbResult = $this->Database->query('SELECT Id FROM Server WHERE User='.$this->System->Modules['User']->User['Id']);
310 $Server = $DbResult->fetch_assoc();
311 $Server = new Server($this->Database, $Server['Id']);
312 $Server->ImportDatabase(true);
313 $Output .= $this->SystemMessage('Import čisté databáze', 'Úloha zařazena do fronty');
314 } else $Output .= USER_BAD_ROLE;
315 } else
316 if($_GET['Action'] == 'EmulatorShow')
317 {
318 if(array_key_exists('Id', $_GET))
319 {
320 $Output .= $this->EmulatorShow($_GET['Id']);
321 } else $Output .= $this->SystemMessage('Překlad emulátoru', 'Nebylo zadáno Id');
322 } else
323 if($_GET['Action'] == 'EmulatorList')
324 {
325 $Output .= $this->ShowEmulatorList();
326 } else
327 if($_GET['Action'] == 'EmulatorCompile')
328 {
329 if(array_key_exists('Id', $_GET))
330 {
331 $Emulator = new Emulator($this->Database, $_GET['Id']);
332 $Emulator->Compile();
333 $Output .= $this->SystemMessage('Překlad emulátoru', 'Úloha zařazena do fronty');
334 } else $Output .= $this->SystemMessage('Překlad emulátoru', 'Nebylo zadáno Id');
335 } else
336 if($_GET['Action'] == 'Test')
337 {
338 //$Emulator = new Emulator($this->Database, 2);
339 // $Emulator->Compile();
340 //$Server = new Server($this->Database, 1);
341 //$Output .= $Server->ImportDatabase();
342 //$Config = new MangosConfigurationFile($this->Database);
343 //$Config->Load('../emu/mangos/7681/etc/mangosd.conf');
344 //$Config->Save('../server/1/etc/mangosd.conf');
345 } else
346 {
347 $Output = $this->ShowServerList();
348 }
349 } else
350 {
351 $Output = $this->ShowServerList();
352 }
353 return($Output);
354 }
355}
356
357$System->AddModule(new Index());
358$System->Modules['Index']->GetOutput();
359
360?>
Note: See TracBrowser for help on using the repository browser.