root / admin / admin.php @ 6a0e8b753f32cc0b935eab48973ba0ddc4e9f081
Historique | Voir | Annoter | Télécharger (14,78 ko)
1 | <?php
|
---|---|
2 | /*
|
3 | * admin.php - Administration des compétitions |
4 | * Copyright (C) 2008 Romuald DELAVERGNE <delavergne@free.fr> |
5 | * |
6 | * This source code is licensed under the GNU General Public License, |
7 | * Version 2. See the file COPYING for more details. |
8 | */ |
9 | |
10 | require_once 'zip.lib.php'; |
11 | require_once 'unzip.lib.php'; |
12 | |
13 | if (basename(dirname($_SERVER['PHP_SELF'])) == "admin") |
14 | require_once '../functions.php'; |
15 | else
|
16 | require_once 'functions.php'; |
17 | |
18 | function hiddenVars() { ?> |
19 | <input type="hidden" name="typeCompetition" value="<?=$_POST['typeCompetition']?>" /> |
20 | <input type="hidden" name="saison" value="<?=$_POST['saison']?>" /> |
21 | <input type="hidden" name="div1" value="<?=$_POST['div1']?>" /> |
22 | <input type="hidden" name="div2" value="<?=$_POST['div2']?>" /> |
23 | <input type="hidden" name="poule" value="<?=$_POST['poule']?>" /> |
24 | <input type="hidden" name="phase" value="<?=$_POST['phase']?>" /> |
25 | <?php }
|
26 | |
27 | function retour($button, $message = "") { ?>
|
28 | <form method="post" action="index.php"> |
29 | <?php if ($message != "") echo "\t\t\t$message"; ?> |
30 | <?php hiddenVars() ?> |
31 | <input type="submit" value="<?=$button?>" /> |
32 | </form>
|
33 | <?php }
|
34 | |
35 | /* |
36 | echo "<pre>\n";
|
37 | print_r($_POST); |
38 | echo "</pre>\n";
|
39 | */ |
40 | |
41 | // Données reçues par l'index ou cette page |
42 | $championnat = $_POST['championnat']; |
43 | if ($_POST['validation_championnat'] == "ajouter") $championnat = "validation_ajouter"; |
44 | if ($_POST['validation_championnat'] == "modifier") $championnat = "validation_modifier"; |
45 | if ($_POST['validation_penalites'] == "valider") $championnat = "validation_penalites"; |
46 | |
47 | if (isset($_POST['rencontre-ajouter'])) { |
48 | $rencontre = "ajouter"; |
49 | } else { |
50 | $vars = preg_grep("/^rencontre-/", array_keys($_POST)); |
51 | if ($vars) { |
52 | $rencontre = $_POST[current($vars)]; |
53 | $rencontreId = current($vars); |
54 | } |
55 | } |
56 | if ($_POST['validation_rencontre'] == "ajouter") $rencontre = "validation_ajouter"; |
57 | if ($_POST['validation_rencontre'] == "modifier") $rencontre = "validation_modifier"; |
58 | |
59 | $equipes = get_magic_quotes_gpc() ? stripslashes($_POST['equipes']) : $_POST['equipes']; |
60 | $journees = get_magic_quotes_gpc() ? stripslashes($_POST['journees']) : $_POST['journees']; |
61 | $journee = get_magic_quotes_gpc() ? stripslashes($_POST['journee']) : $_POST['journee']; |
62 | $domicile = get_magic_quotes_gpc() ? stripslashes($_POST['domicile']) : $_POST['domicile']; |
63 | $visiteur = get_magic_quotes_gpc() ? stripslashes($_POST['visiteur']) : $_POST['visiteur']; |
64 | $ptsDom = get_magic_quotes_gpc() ? stripslashes($_POST['ptsDom']) : $_POST['ptsDom']; |
65 | $ptsVis = get_magic_quotes_gpc() ? stripslashes($_POST['ptsVis']) : $_POST['ptsVis']; |
66 | $scoreDom = get_magic_quotes_gpc() ? stripslashes($_POST['scoreDom']) : $_POST['scoreDom']; |
67 | $scoreVis = get_magic_quotes_gpc() ? stripslashes($_POST['scoreVis']) : $_POST['scoreVis']; |
68 | |
69 | $message = ""; |
70 | |
71 | if ($_POST['saison'] && $_POST['div1']) { |
72 | $path = (IamAdmin()) ? "../datas" : "datas"; |
73 | $path .= "/".$_POST['saison']."/".$_POST['div1']; |
74 | if ($_POST['div2']) $path .= $SEP_DIV.$_POST['div2']; |
75 | if ($_POST['poule'] || $_POST['phase']) $path .= "/"; |
76 | if ($_POST['poule']) $path .= $_POST['poule']; |
77 | if ($_POST['phase']) $path .= $SEP_DIV.$_POST['phase']; |
78 | } |
79 | |
80 | if ($_POST['exporter'] == "exporter") { |
81 | $zip = new zipfile(); |
82 | backup($zip, "../datas", "datas"); |
83 | $archive = $zip->file();
|
84 | header("Content-Type: application/x-zip"); |
85 | header("Content-Disposition: inline; filename=datas-".date("Y-m-d").".zip"); |
86 | echo $archive; |
87 | exit; |
88 | } elseif ($_POST['validation_importer'] == "importer") { |
89 | if ($_FILES['zipfile']['error'] == 0) { |
90 | $dest = ".."; |
91 | $zip = new SimpleUnzip($_FILES['zipfile']['tmp_name']); |
92 | if ($zip) { |
93 | $needToImport = array(); |
94 | $alreadyExist = array(); |
95 | foreach ($zip->Entries as $extr) {
|
96 | if (!file_exists($dest."/".$extr->Path)) {
|
97 | mkdirRecursive($dest."/".$extr->Path);
|
98 | $needToImport[] = $extr->Path;
|
99 | } else { |
100 | if (!in_array($extr->Path, $needToImport)) {
|
101 | if (!in_array($extr->Path, $alreadyExist)) {
|
102 | $message .= "<p>Le championnat ".$extr->Path." n'a pas été importé car il existe déjà !</p>"; |
103 | $alreadyExist[] = $extr->Path;
|
104 | } |
105 | } |
106 | } |
107 | if (in_array($extr->Path, $needToImport)) {
|
108 | $fh = fopen($dest."/".$extr->Path."/".$extr->Name, 'w'); |
109 | fwrite($fh, $extr->Data);
|
110 | fclose($fh); |
111 | } |
112 | } |
113 | $message .= "Données importées"; |
114 | } else { |
115 | $message = $_POST['zipfile'].": fichier invalide !"; |
116 | } |
117 | } else { |
118 | $message = "Erreur lors du chargement du fichier '".$_FILES['zipfile']['name']."' !"; |
119 | } |
120 | } elseif ($_POST['supprimer-tout'] == "tout supprimer") { |
121 | $message = "pas implémenté."; |
122 | } |
123 | |
124 | if ($path) { |
125 | //echo "<p>path=$path.</p>\n"; |
126 | switch ($championnat) { |
127 | case "pénalités": |
128 | $Pen = getPenalites($path); |
129 | $equipes = getEquipes($path); |
130 | $journees = getJournees($path); |
131 | break; |
132 | case "modifier": |
133 | if (file_exists("$path/equipes")) { |
134 | $equipes = file_get_contents("$path/equipes"); |
135 | } |
136 | if (file_exists("$path/journees")) { |
137 | $journees = file_get_contents("$path/journees"); |
138 | } |
139 | break; |
140 | case "validation_ajouter": |
141 | if (!file_exists($path)) { |
142 | mkdirRecursive($path); |
143 | my_file_put_contents("$path/equipes", $equipes); |
144 | my_file_put_contents("$path/journees", $journees); |
145 | $message = "La compétition a été ajoutée."; |
146 | } else { |
147 | $message = "La compétition existe déjà !"; |
148 | } |
149 | break; |
150 | case "validation_modifier": |
151 | my_file_put_contents("$path/equipes", $equipes); |
152 | my_file_put_contents("$path/journees", $journees); |
153 | $message = "La compétition a été mise à jour."; |
154 | break; |
155 | case "validation_penalites": |
156 | $vars = preg_grep("/^pen_/", array_keys($_POST)); |
157 | if ($vars) { |
158 | $penalites = ""; |
159 | foreach ($vars as $var) { |
160 | if ($_POST[$var] > 0) {
|
161 | list($prefix, $equipe) = explode("_", $var); |
162 | $penalites .= $equipe.":".$_POST[$var]."\n"; |
163 | } |
164 | } |
165 | $file = "$path/penalites"; |
166 | if ($penalites) { |
167 | my_file_put_contents($file, $penalites); |
168 | } else { |
169 | if (file_exists($file)) unlink($file); |
170 | } |
171 | $message = "Les pénalités ont été mises à jour."; |
172 | } |
173 | break; |
174 | case "supprimer": |
175 | // Suppression de tous les fichiers du répertoire |
176 | if ($dir = opendir($path)) { |
177 | while (($file = readdir($dir)) !== FALSE) { |
178 | if (is_file("$path/$file")) unlink("$path/$file"); |
179 | } |
180 | closedir($dir); |
181 | } |
182 | // Suppression du maximum de répertoires |
183 | while (isEmptyDir($path) && basename($path) != "datas") { |
184 | monRmdir($path); |
185 | $path = dirname($path); |
186 | } |
187 | $message = "Le championnat a été supprimé."; |
188 | break; |
189 | } |
190 | switch ($rencontre) { |
191 | case "ajouter": |
192 | $equipes = getEquipes($path); |
193 | $journees = getJournees($path); |
194 | break; |
195 | case "modifier": |
196 | $equipes = getEquipes($path); |
197 | $journees = getJournees($path); |
198 | list($prefix, $journee, $domicile, $visiteur) = explode("-", $rencontreId); |
199 | $file = "$path/match-".$journee."-".$domicile."-".$visiteur; |
200 | if (file_exists($file)) { |
201 | $resu = file_get_contents($file); |
202 | list($ptsDom, $ptsVis, $scoreDom, $scoreVis) = explode(":", $resu); |
203 | } |
204 | break; |
205 | case "validation_ajouter": |
206 | if ($journee == "" || $domicile == "" || $visiteur == "") { |
207 | $message = "Vous devez saisir le numéro de la journée, l'équipe qui reçoit et qui se déplace !"; |
208 | } else { |
209 | $file = "$path/match-".$journee."-".$domicile."-".$visiteur; |
210 | if (!file_exists($file)) { |
211 | my_file_put_contents($file, $ptsDom.":".$ptsVis.":".$scoreDom.":".$scoreVis); |
212 | $message = "La nouvelle rencontre a été ajoutée."; |
213 | } else { |
214 | $message = "La rencontre existe déjà !"; |
215 | } |
216 | } |
217 | break; |
218 | case "validation_modifier": |
219 | $file = "$path/match-".$journee."-".$domicile."-".$visiteur; |
220 | my_file_put_contents($file, $ptsDom.":".$ptsVis.":".$scoreDom.":".$scoreVis); |
221 | $message = "La rencontre a été mise à jour."; |
222 | break; |
223 | case "supprimer": |
224 | list($prefix, $journee, $domicile, $visiteur) = explode("-", $rencontreId); |
225 | $file = "match-".$journee."-".$domicile."-".$visiteur; |
226 | if (file_exists("$path/$file")) { |
227 | unlink("$path/$file"); |
228 | $message = "La rencontre a été supprimée."; |
229 | } |
230 | break; |
231 | } |
232 | } |
233 | ?>
|
234 | <html>
|
235 | <head>
|
236 | <title>Administration</title> |
237 | <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> |
238 | <meta http-equiv="Content-language" content="fr" /> |
239 | <meta name="copyright" content="Tous droits réservés - All Rights Reserved" /> |
240 | <meta name="author" content="Romuald DELAVERGNE"> |
241 | </head>
|
242 | <html>
|
243 | <body>
|
244 | <?php if ($championnat == "ajouter" || $championnat == "modifier" ) { ?> |
245 | <form name="admin" method="post" action="<?=$_SERVER['PHP_SELF']?>"> |
246 | <table border="0"> |
247 | <tr>
|
248 | <td>Saison</td> |
249 | <td>
|
250 | : |
251 | <?php if ($championnat == "ajouter") { ?> |
252 | <input type="text" name="saison" size="5" value="" /> |
253 | <?php } else { ?> |
254 | <input type="hidden" name="saison" value="<?=$_POST['saison']?>" /> |
255 | <?=$_POST['saison']."/".($_POST['saison']+1)."\n"?> |
256 | <?php } ?> |
257 | </td>
|
258 | </tr>
|
259 | <?php if ($_POST['typeCompetition'] != "") { ?> |
260 | <input type="hidden" name="div1" value="<?=$_POST['typeCompetition']?>" /> |
261 | <tr>
|
262 | <td><?=$_POST['typeCompetition'] == "C" ? "Coupe" : "Tournoi"?></td> |
263 | <td>
|
264 | : |
265 | <?php if ($championnat == "ajouter") { ?> |
266 | <input type="text" name="div2" value="" /> |
267 | <?php } else { ?> |
268 | <input type="hidden" name="div2" value="<?=$_POST['div2']?>" /> |
269 | <?=$_POST['div2']."\n"?> |
270 | <?php } ?> |
271 | </td>
|
272 | </tr>
|
273 | <?php } else { ?> |
274 | <tr>
|
275 | <td>Division</td> |
276 | <td>
|
277 | : |
278 | <?php if ($championnat == "ajouter") { ?> |
279 | <select name="div1"> |
280 | <option value=""></option> |
281 | <?php
|
282 | foreach ($DIVISION as $n => $d) { |
283 | echo "\t\t\t\t\t\t<option value=\"$n\">$d</option>\n"; |
284 | } |
285 | ?>
|
286 | </select>
|
287 | <input type="text" name="div2" size="3" value="" /> |
288 | <?php } else { ?> |
289 | <input type="hidden" name="div1" value="<?=$_POST['div1']?>" /> |
290 | <input type="hidden" name="div2" value="<?=$_POST['div2']?>" /> |
291 | <?=$_POST['div1'].$_POST['div2']."\n"?> |
292 | <?php } ?> |
293 | </td>
|
294 | </tr>
|
295 | <?php } ?> |
296 | <?php if ($championnat == "ajouter" || $_POST['poule']) { ?> |
297 | <tr>
|
298 | <td><?=($_POST['typeCompetition'] != "") ? "Poule/Tableau" : "Poule"?></td> |
299 | <td>
|
300 | : |
301 | <?php if ($championnat == "ajouter") { ?> |
302 | <input type="text" name="poule" value="" /> |
303 | <?php } else { ?> |
304 | <input type="hidden" name="poule" value="<?=$_POST['poule']?>" /> |
305 | <?=$_POST['poule']."\n"?> |
306 | <?php } ?> |
307 | </td>
|
308 | </tr>
|
309 | <?php } ?> |
310 | <?php if (($championnat == "ajouter" || $_POST['phase']) && $_POST['typeCompetition'] == "") { ?> |
311 | <tr>
|
312 | <td>Phase</td> |
313 | <td>
|
314 | : |
315 | <?php if ($championnat == "ajouter") { ?> |
316 | <select name="phase"> |
317 | <option value=""></option> |
318 | <option value="1">1</option> |
319 | <option value="2">2</option> |
320 | </select>
|
321 | <?php } else { ?> |
322 | <input type="hidden" name="phase" value="<?=$_POST['phase']?>" /> |
323 | <?=$_POST['phase']."\n"?> |
324 | <?php } ?> |
325 | </td>
|
326 | </tr>
|
327 | <?php } ?> |
328 | <tr>
|
329 | <td colspan="2"> |
330 | <br /> |
331 | Liste des <?=$_POST['typeCompetition'] == "T" ? "joueurs" : "équipes"?> : |
332 | </td>
|
333 | </tr>
|
334 | <tr>
|
335 | <td colspan="2"> |
336 | <textarea name="equipes" cols="30" rows="10"><?=$equipes?></textarea> |
337 | </td>
|
338 | </tr>
|
339 | <tr>
|
340 | <td colspan="2"> |
341 | <br /> |
342 | Liste des <?=$_POST['typeCompetition'] == "T" ? "tours" : "journées"?> : |
343 | </td>
|
344 | </tr>
|
345 | <tr>
|
346 | <td colspan="2"> |
347 | <textarea name="journees" cols="30" rows="10"><?=$journees?></textarea> |
348 | </td>
|
349 | </tr>
|
350 | </table>
|
351 | <?php if ($championnat == "ajouter") { ?> |
352 | <input type="submit" name="validation_championnat" value="ajouter" /> |
353 | <?php } ?> |
354 | <?php if ($championnat == "modifier" ) { ?> |
355 | <input type="submit" name="validation_championnat" value="modifier" /> |
356 | <?php } ?> |
357 | </form>
|
358 | <?php retour("annuler"); ?> |
359 | <?php } else if ($championnat == "pénalités") { ?> |
360 | <form method="post" action="<?=$_SERVER['PHP_SELF']?>"> |
361 | <table>
|
362 | <?php foreach ($equipes as $n => $e) { ?> |
363 | <tr>
|
364 | <td><?=$e?></td> |
365 | <td>:<input type="text" name="pen_<?=$n?>" size="3" value="<?=($Pen[$n] ? $Pen[$n] : "0")?>" /></td> |
366 | </tr>
|
367 | <?php } ?> |
368 | </table>
|
369 | <?php hiddenVars() ?> |
370 | <input type="submit" name="validation_penalites" value="valider" /> |
371 | </form>
|
372 | <?php retour("annuler"); ?> |
373 | <?php } else if ($rencontre == "ajouter" || $rencontre == "modifier") { ?> |
374 | <form method="post" action="<?=$_SERVER['PHP_SELF']?>"> |
375 | <table border="0"> |
376 | <tr>
|
377 | <td colspan="3"> |
378 | <?php if ($rencontre == "ajouter") { ?> |
379 | Journée<?=$_POST['typeCompetition'] != "" ? "/tour" : ""?> |
380 | <select name="journee"> |
381 | <option value=""></option> |
382 | <?php
|
383 | foreach ($journees as $n => $j) { |
384 | echo "\t\t\t\t\t\t<option value=\"$n\">$j</option>\n"; |
385 | } |
386 | ?>
|
387 | </select>
|
388 | <?php } else { ?> |
389 | <?=$journees[$journee]."\n"?> |
390 | <input type="hidden" name="journee" value="<?=$journee?>" /> |
391 | <?php } ?> |
392 | </td>
|
393 | </tr>
|
394 | <tr>
|
395 | <td>
|
396 | <?php if ($rencontre == "ajouter") { ?> |
397 | Équipe à domicile : |
398 | <select name="domicile"> |
399 | <option value=""></option> |
400 | <?php
|
401 | foreach ($equipes as $n => $e) { |
402 | echo "\t\t\t\t\t\t<option value=\"$n\">$e</option>\n"; |
403 | } |
404 | ?>
|
405 | </select>
|
406 | <?php } else { ?> |
407 | <input type="hidden" name="domicile" value="<?=$domicile?>" /> |
408 | <?=$equipes[$domicile]."\n"?> |
409 | <?php } ?> |
410 | </td>
|
411 | <td> points : <input type="text" name="ptsDom" size="3" value="<?=$ptsDom?>" /></td> |
412 | <td> score : <input type="text" name="scoreDom" size="3" value="<?=$scoreDom?>" /></td> |
413 | </tr>
|
414 | <tr>
|
415 | <td>
|
416 | <?php if ($rencontre == "ajouter") { ?> |
417 | Équipe à l'extérieure : |
418 | <select name="visiteur"> |
419 | <option value=""></option> |
420 | <?php
|
421 | foreach ($equipes as $n => $e) { |
422 | echo "\t\t\t\t\t\t<option value=\"$n\">$e</option>\n"; |
423 | } |
424 | ?>
|
425 | </select>
|
426 | <?php } else { ?> |
427 | <input type="hidden" name="visiteur" value="<?=$visiteur?>" /> |
428 | <?=$equipes[$visiteur]."\n"?> |
429 | <?php } ?> |
430 | </td>
|
431 | <td> points : <input type="text" name="ptsVis" size="3" value="<?=$ptsVis?>" /></td> |
432 | <td> score : <input type="text" name="scoreVis" size="3" value="<?=$scoreVis?>" /></td> |
433 | </tr>
|
434 | </table>
|
435 | <?php hiddenVars() ?> |
436 | <?php if ($rencontre == "ajouter") { ?> |
437 | <input type="submit" name="validation_rencontre" value="ajouter" /> |
438 | <?php } ?> |
439 | <?php if ($rencontre == "modifier") { ?> |
440 | <input type="submit" name="validation_rencontre" value="modifier" /> |
441 | <?php } ?> |
442 | </form>
|
443 | <?php retour("annuler"); ?> |
444 | <?php } else if ($_POST['importer'] == "importer") { ?> |
445 | <form method="post" enctype="multipart/form-data"> |
446 | <?php hiddenVars() ?> |
447 | <input type="file" name="zipfile" value="" /> |
448 | <input type="submit" name="validation_importer" value="importer" /> |
449 | </form>
|
450 | <?php retour("annuler"); ?> |
451 | <?php
|
452 | } else { |
453 | retour("continuer", $message); |
454 | } |
455 | ?>
|
456 | </body>
|
457 | </html>
|