#603: Show QoS informations
[platal.git] / modules / admin.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2007 Polytechnique.org *
4 * http://opensource.polytechnique.org/ *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
21
22 class AdminModule extends PLModule
23 {
24 function handlers()
25 {
26 return array(
27 'phpinfo' => $this->make_hook('phpinfo', AUTH_MDP, 'admin'),
28 'admin' => $this->make_hook('default', AUTH_MDP, 'admin'),
29 'admin/ax-xorg' => $this->make_hook('ax_xorg', AUTH_MDP, 'admin'),
30 'admin/deaths' => $this->make_hook('deaths', AUTH_MDP, 'admin'),
31 'admin/downtime' => $this->make_hook('downtime', AUTH_MDP, 'admin'),
32 'admin/homonyms' => $this->make_hook('homonyms', AUTH_MDP, 'admin'),
33 'admin/logger' => $this->make_hook('logger', AUTH_MDP, 'admin'),
34 'admin/logger/actions' => $this->make_hook('logger_actions', AUTH_MDP, 'admin'),
35 'admin/postfix/blacklist' => $this->make_hook('postfix_blacklist', AUTH_MDP, 'admin'),
36 'admin/postfix/delayed' => $this->make_hook('postfix_delayed', AUTH_MDP, 'admin'),
37 'admin/postfix/regexp_bounces' => $this->make_hook('postfix_regexpsbounces', AUTH_MDP, 'admin'),
38 'admin/postfix/whitelist' => $this->make_hook('postfix_whitelist', AUTH_MDP, 'admin'),
39 'admin/mx/broken' => $this->make_hook('mx_broken', AUTH_MDP, 'admin'),
40 'admin/skins' => $this->make_hook('skins', AUTH_MDP, 'admin'),
41 'admin/synchro_ax' => $this->make_hook('synchro_ax', AUTH_MDP, 'admin'),
42 'admin/user' => $this->make_hook('user', AUTH_MDP, 'admin'),
43 'admin/promo' => $this->make_hook('promo', AUTH_MDP, 'admin'),
44 'admin/validate' => $this->make_hook('validate', AUTH_MDP, 'admin'),
45 'admin/validate/answers' => $this->make_hook('validate_answers', AUTH_MDP, 'admin'),
46 'admin/wiki' => $this->make_hook('wiki', AUTH_MDP, 'admin'),
47 'admin/ipwatch' => $this->make_hook('ipwatch', AUTH_MDP, 'admin'),
48 );
49 }
50
51 function handler_phpinfo(&$page)
52 {
53 phpinfo();
54 exit;
55 }
56
57 function handler_default(&$page)
58 {
59 $page->changeTpl('admin/index.tpl');
60 $page->assign('xorg_title','Polytechnique.org - Administration');
61 }
62
63 function handler_postfix_delayed(&$page)
64 {
65 $page->changeTpl('admin/postfix_delayed.tpl');
66 $page->assign('xorg_title','Polytechnique.org - Administration - Postfix : Retardés');
67
68 if (Env::has('del')) {
69 $crc = Env::v('crc');
70 XDB::execute("UPDATE postfix_mailseen SET release = 'del' WHERE crc = {?}", $crc);
71 $page->trig($crc." verra tous ses mails supprimés !");
72 } elseif (Env::has('ok')) {
73 $crc = Env::v('crc');
74 XDB::execute("UPDATE postfix_mailseen SET release = 'ok' WHERE crc = {?}", $crc);
75 $page->trig($crc." a le droit de passer !");
76 }
77
78 $sql = XDB::iterator(
79 "SELECT crc, nb, update_time, create_time,
80 FIND_IN_SET('del', release) AS del,
81 FIND_IN_SET('ok', release) AS ok
82 FROM postfix_mailseen
83 WHERE nb >= 30
84 ORDER BY release != ''");
85
86 $page->assign_by_ref('mails', $sql);
87 }
88
89 function handler_postfix_regexpsbounces(&$page, $new = null) {
90 $page->changeTpl('admin/emails_bounces_re.tpl');
91 $page->assign('xorg_title','Polytechnique.org - Administration - Postfix : Regexps Bounces');
92 $page->assign('new', $new);
93
94 if (Post::has('submit')) {
95 foreach (Env::v('lvl') as $id=>$val) {
96 XDB::query(
97 "REPLACE INTO emails_bounces_re (id,pos,lvl,re,text) VALUES ({?}, {?}, {?}, {?}, {?})",
98 $id, $_POST['pos'][$id], $_POST['lvl'][$id], $_POST['re'][$id], $_POST['text'][$id]
99 );
100 }
101 }
102
103 $page->assign('bre', XDB::iterator("SELECT * FROM emails_bounces_re ORDER BY pos"));
104 }
105
106 // {{{ logger view
107
108 /** Retrieves the available days for a given year and month.
109 * Obtain a list of days of the given month in the given year
110 * that are within the range of dates that we have log entries for.
111 *
112 * @param integer year
113 * @param integer month
114 * @return array days in that month we have log entries covering.
115 * @private
116 */
117 function _getDays($year, $month)
118 {
119 // give a 'no filter' option
120 $months[0] = "----";
121
122 if ($year && $month) {
123 $day_max = Array(-1, 31, checkdate(2, 29, $year) ? 29 : 28 , 31,
124 30, 31, 30, 31, 31, 30, 31, 30, 31);
125 $res = XDB::query("SELECT YEAR (MAX(start)), YEAR (MIN(start)),
126 MONTH(MAX(start)), MONTH(MIN(start)),
127 DAYOFMONTH(MAX(start)),
128 DAYOFMONTH(MIN(start))
129 FROM logger.sessions");
130 list($ymax, $ymin, $mmax, $mmin, $dmax, $dmin) = $res->fetchOneRow();
131
132 if (($year < $ymin) || ($year == $ymin && $month < $mmin)) {
133 return array();
134 }
135
136 if (($year > $ymax) || ($year == $ymax && $month > $mmax)) {
137 return array();
138 }
139
140 $min = ($year==$ymin && $month==$mmin) ? intval($dmin) : 1;
141 $max = ($year==$ymax && $month==$mmax) ? intval($dmax) : $day_max[$month];
142
143 for($i = $min; $i<=$max; $i++) {
144 $days[$i] = $i;
145 }
146 }
147 return $days;
148 }
149
150
151 /** Retrieves the available months for a given year.
152 * Obtains a list of month numbers that are within the timeframe that
153 * we have log entries for.
154 *
155 * @param integer year
156 * @return array List of month numbers we have log info for.
157 * @private
158 */
159 function _getMonths($year)
160 {
161 // give a 'no filter' option
162 $months[0] = "----";
163
164 if ($year) {
165 $res = XDB::query("SELECT YEAR (MAX(start)), YEAR (MIN(start)),
166 MONTH(MAX(start)), MONTH(MIN(start))
167 FROM logger.sessions");
168 list($ymax, $ymin, $mmax, $mmin) = $res->fetchOneRow();
169
170 if (($year < $ymin) || ($year > $ymax)) {
171 return array();
172 }
173
174 $min = $year == $ymin ? intval($mmin) : 1;
175 $max = $year == $ymax ? intval($mmax) : 12;
176
177 for($i = $min; $i<=$max; $i++) {
178 $months[$i] = $i;
179 }
180 }
181 return $months;
182 }
183
184
185 /** Retrieves the available years.
186 * Obtains a list of years that we have log entries covering.
187 *
188 * @return array years we have log entries for.
189 * @private
190 */
191 function _getYears()
192 {
193 // give a 'no filter' option
194 $years[0] = "----";
195
196 // retrieve available years
197 $res = XDB::query("select YEAR(MAX(start)), YEAR(MIN(start)) FROM logger.sessions");
198 list($max, $min) = $res->fetchOneRow();
199
200 for($i = intval($min); $i<=$max; $i++) {
201 $years[$i] = $i;
202 }
203 return $years;
204 }
205
206
207 /** Make a where clause to get a user's sessions.
208 * Prepare the where clause request that will retrieve the sessions.
209 *
210 * @param $year INTEGER Only get log entries made during the given year.
211 * @param $month INTEGER Only get log entries made during the given month.
212 * @param $day INTEGER Only get log entries made during the given day.
213 * @param $uid INTEGER Only get log entries referring to the given user ID.
214 *
215 * @return STRING the WHERE clause of a query, including the 'WHERE' keyword
216 * @private
217 */
218 function _makeWhere($year, $month, $day, $uid)
219 {
220 // start constructing the "where" clause
221 $where = array();
222
223 if ($uid)
224 array_push($where, "uid='$uid'");
225
226 // we were given at least a year
227 if ($year) {
228 if ($day) {
229 $dmin = mktime(0, 0, 0, $month, $day, $year);
230 $dmax = mktime(0, 0, 0, $month, $day+1, $year);
231 } elseif ($month) {
232 $dmin = mktime(0, 0, 0, $month, 1, $year);
233 $dmax = mktime(0, 0, 0, $month+1, 1, $year);
234 } else {
235 $dmin = mktime(0, 0, 0, 1, 1, $year);
236 $dmax = mktime(0, 0, 0, 1, 1, $year+1);
237 }
238 $where[] = "start >= " . date("Ymd000000", $dmin);
239 $where[] = "start < " . date("Ymd000000", $dmax);
240 }
241
242 if (!empty($where)) {
243 return ' WHERE ' . implode($where, " AND ");
244 } else {
245 return '';
246 }
247 // WE know it's totally reversed, so better use array_reverse than a SORT BY start DESC
248 }
249
250 // }}}
251
252 function handler_logger(&$page, $action = null, $arg = null) {
253 if ($action == 'session') {
254
255 // we are viewing a session
256 $res = XDB::query("SELECT ls.*, a.alias AS username, sa.alias AS suer
257 FROM logger.sessions AS ls
258 LEFT JOIN aliases AS a ON (a.id = ls.uid AND a.type='a_vie')
259 LEFT JOIN aliases AS sa ON (sa.id = ls.suid AND sa.type='a_vie')
260 WHERE ls.id = {?}", $arg);
261
262 $page->assign('session', $a = $res->fetchOneAssoc());
263
264 $res = XDB::iterator('SELECT a.text, e.data, e.stamp
265 FROM logger.events AS e
266 LEFT JOIN logger.actions AS a ON e.action=a.id
267 WHERE e.session={?}', $arg);
268 while ($myarr = $res->next()) {
269 $page->append('events', $myarr);
270 }
271
272 } else {
273 $loguser = $action == 'user' ? $arg : Env::v('loguser');
274
275 $res = XDB::query('SELECT id FROM aliases WHERE alias={?}',
276 $loguser);
277 $loguid = $res->fetchOneCell();
278
279 if ($loguid) {
280 $year = Env::i('year');
281 $month = Env::i('month');
282 $day = Env::i('day');
283 } else {
284 $year = Env::i('year', intval(date('Y')));
285 $month = Env::i('month', intval(date('m')));
286 $day = Env::i('day', intval(date('d')));
287 }
288
289 if (!$year)
290 $month = 0;
291 if (!$month)
292 $day = 0;
293
294 // smarty assignments
295 // retrieve available years
296 $page->assign('years', $this->_getYears());
297 $page->assign('year', $year);
298
299 // retrieve available months for the current year
300 $page->assign('months', $this->_getMonths($year));
301 $page->assign('month', $month);
302
303 // retrieve available days for the current year and month
304 $page->assign('days', $this->_getDays($year, $month));
305 $page->assign('day', $day);
306
307 $page->assign('loguser', $loguser);
308 // smarty assignments
309
310 if ($loguid || $year) {
311
312 // get the requested sessions
313 $where = $this->_makeWhere($year, $month, $day, $loguid);
314 $select = "SELECT s.id, s.start, s.uid,
315 a.alias as username
316 FROM logger.sessions AS s
317 LEFT JOIN aliases AS a ON (a.id = s.uid AND a.type='a_vie')
318 $where
319 ORDER BY start DESC";
320 $res = XDB::iterator($select);
321
322 $sessions = array();
323 while ($mysess = $res->next()) {
324 $mysess['events'] = array();
325 $sessions[$mysess['id']] = $mysess;
326 }
327 array_reverse($sessions);
328
329 // attach events
330 $sql = "SELECT s.id, a.text
331 FROM logger.sessions AS s
332 LEFT JOIN logger.events AS e ON(e.session=s.id)
333 INNER JOIN logger.actions AS a ON(a.id=e.action)
334 $where";
335
336 $res = XDB::iterator($sql);
337 while ($event = $res->next()) {
338 array_push($sessions[$event['id']]['events'], $event['text']);
339 }
340 $page->assign_by_ref('sessions', $sessions);
341 } else {
342 $page->assign('msg_nofilters', "Sélectionner une annuée et/ou un utilisateur");
343 }
344 }
345
346 $page->changeTpl('admin/logger-view.tpl');
347
348 $page->assign('xorg_title','Polytechnique.org - Administration - Logs des sessions');
349 }
350
351 function handler_user(&$page, $login = false)
352 {
353 $page->changeTpl('admin/utilisateurs.tpl');
354 $page->assign('xorg_title','Polytechnique.org - Administration - Edit/Su/Log');
355 require_once("emails.inc.php");
356 require_once("user.func.inc.php");
357
358 if (S::has('suid')) {
359 $page->kill("déjà en SUID !!!");
360 }
361
362 if (Env::has('user_id')) {
363 $login = get_user_forlife(Env::i('user_id'));
364 if (empty($login)) {
365 $login = Env::i('user_id');
366 }
367 } elseif (Env::has('login')) {
368 $login = get_user_forlife(Env::v('login'));
369 }
370
371 if(Env::has('logs_button') && $login) {
372 pl_redirect("admin/logger?loguser=$login&year=".date('Y')."&month=".date('m'));
373 }
374
375 if (Env::has('ax_button') && $login) {
376 pl_redirect("admin/synchro_ax/$login");
377 }
378
379 if(Env::has('suid_button') && $login) {
380 $_SESSION['log']->log("suid_start", "login by ".S::v('forlife'));
381 $_SESSION['suid'] = $_SESSION;
382 $r = XDB::query("SELECT id FROM aliases WHERE alias={?}", $login);
383 if($uid = $r->fetchOneCell()) {
384 start_connexion($uid,true);
385 pl_redirect("");
386 }
387 }
388
389 if ($login) {
390 if (is_numeric($login)) {
391 $r = XDB::query("SELECT *, a.alias AS forlife, u.flags AS sexe,
392 (year(naissance) > promo - 15 or year(naissance) < promo - 25) AS naiss_err
393 FROM auth_user_md5 AS u
394 LEFT JOIN aliases AS a ON (a.id = u.user_id AND type= 'a_vie')
395 WHERE u.user_id = {?}", $login);
396 } else {
397 $r = XDB::query("SELECT *, a.alias AS forlife, u.flags AS sexe,
398 (year(naissance) > promo - 15 or year(naissance) < promo - 25) AS naiss_err
399 FROM auth_user_md5 AS u
400 INNER JOIN aliases AS a ON ( a.id = u.user_id AND a.alias={?} AND type!='homonyme' )", $login);
401 }
402 $mr = $r->fetchOneAssoc();
403
404 if (!is_numeric($login)) { //user has a forlife
405 $redirect = new Redirect($mr['user_id']);
406 }
407
408 // Check if there was a submission
409 foreach($_POST as $key => $val) {
410 switch ($key) {
411 case "add_fwd":
412 $email = trim(Env::v('email'));
413 if (!isvalid_email_redirection($email)) {
414 $page->trig("invalid email $email");
415 } else {
416 $redirect->add_email($email);
417 $page->trig("Ajout de $email effectué");
418 }
419 break;
420
421 case "del_fwd":
422 if (!empty($val)) {
423 $redirect->delete_email($val);
424 }
425 break;
426
427 case "del_alias":
428 if (!empty($val)) {
429 XDB::execute("DELETE FROM aliases
430 WHERE id={?} AND alias={?}
431 AND type!='a_vie' AND type!='homonyme'", $mr['user_id'], $val);
432 XDB::execute("UPDATE emails
433 SET rewrite = ''
434 WHERE uid = {?} AND rewrite LIKE CONCAT({?}, '@%')",
435 $mr['user_id'], $val);
436 fix_bestalias($mr['user_id']);
437 $page->trig($val." a été supprimé");
438 }
439 break;
440 case "activate_fwd":
441 if (!empty($val)) {
442 $redirect->modify_one_email($val, true);
443 }
444 break;
445 case "deactivate_fwd":
446 if (!empty($val)) {
447 $redirect->modify_one_email($val, false);
448 }
449 break;
450 case "add_alias":
451 XDB::execute("INSERT INTO aliases (id,alias,type) VALUES ({?}, {?}, 'alias')",
452 $mr['user_id'], Env::v('email'));
453 break;
454
455 case "best":
456 // 'bestalias' is the first bit of the set : 1
457 // 255 is the max for flags (8 sets max)
458 XDB::execute("UPDATE aliases SET flags= flags & (255 - 1) WHERE id={?}", $mr['user_id']);
459 XDB::execute("UPDATE aliases
460 SET flags= flags | 1
461 WHERE id={?} AND alias={?}", $mr['user_id'], $val);
462 break;
463
464
465 // Editer un profil
466 case "u_edit":
467 require_once('secure_hash.inc.php');
468 $pass_encrypted = Env::v('newpass_clair') != "********" ? hash_encrypt(Env::v('newpass_clair')) : Env::v('passw');
469 $naiss = Env::v('naissanceN');
470 $deces = Env::v('decesN');
471 $perms = Env::v('permsN');
472 $prenm = Env::v('prenomN');
473 $nom = Env::v('nomN');
474 $promo = Env::i('promoN');
475 $sexe = Env::v('sexeN');
476 $comm = Env::v('commentN');
477
478 $query = "UPDATE auth_user_md5 SET
479 naissance = '$naiss',
480 deces = '$deces',
481 password = '$pass_encrypted',
482 perms = '$perms',
483 prenom = '".addslashes($prenm)."',
484 nom = '".addslashes($nom)."',
485 flags = '$sexe',
486 promo = $promo,
487 comment = '".addslashes($comm)."'
488 WHERE user_id = '{$mr['user_id']}'";
489 if (XDB::execute($query)) {
490 user_reindex($mr['user_id']);
491
492 $mailer = new PlMailer();
493 $mailer->setFrom("webmaster@polytechnique.org");
494 $mailer->addTo("web@polytechnique.org");
495 $mailer->setSubject("INTERVENTION de ".S::v('forlife'));
496 $mailer->setTxtBody(preg_replace("/[ \t]+/", ' ', $query));
497 $mailer->send();
498
499 $page->trig("updaté correctement.");
500 }
501 if (Env::v('nomusageN') != $mr['nom_usage']) {
502 set_new_usage($mr['user_id'], Env::v('nomusageN'), make_username(Env::v('prenomN'), Env::v('nomusageN')));
503 }
504 if (Env::v('decesN') != $mr['deces']) {
505 user_clear_all_subs($mr['user_id'], false);
506 }
507 $r = XDB::query("SELECT *, a.alias AS forlife, u.flags AS sexe
508 FROM auth_user_md5 AS u
509 LEFT JOIN aliases AS a ON (a.id = u.user_id AND type= 'a_vie')
510 WHERE u.user_id = {?}", $mr['user_id']);
511 $mr = $r->fetchOneAssoc();
512 break;
513
514 // DELETE FROM auth_user_md5
515 case "u_kill":
516 user_clear_all_subs($mr['user_id']);
517 $page->trig("'{$mr['user_id']}' a été désinscrit !");
518 $mailer = new PlMailer();
519 $mailer->setFrom("webmaster@polytechnique.org");
520 $mailer->addTo("web@polytechnique.org");
521 $mailer->setSubject("INTERVENTION de ".S::v('forlife'));
522 $mailer->setTxtBody("\nUtilisateur $login désinscrit");
523 $mailer->send();
524 break;
525 }
526 }
527
528 $res = XDB::query("SELECT start, host
529 FROM logger.sessions
530 WHERE uid={?} AND suid=0
531 ORDER BY start DESC
532 LIMIT 1", $mr['user_id']);
533 list($lastlogin,$host) = $res->fetchOneRow();
534 $page->assign('lastlogin', $lastlogin);
535 $page->assign('host', $host);
536
537 $res = XDB::query("SELECT alias
538 FROM virtual
539 INNER JOIN virtual_redirect USING(vid)
540 WHERE type = 'user' AND redirect LIKE '" . $login . "@%'");
541 if ($res->numRows()) {
542 $page->assign('virtual', $res->fetchOneCell());
543 }
544
545 $page->assign('aliases', XDB::iterator(
546 "SELECT alias, type='a_vie' AS for_life,FIND_IN_SET('bestalias',flags) AS best,expire
547 FROM aliases
548 WHERE id = {?} AND type!='homonyme'
549 ORDER BY type!= 'a_vie'", $mr["user_id"]));
550 if ($mr['perms'] != 'pending') {
551 $page->assign('emails',$redirect->emails);
552 }
553
554 $page->assign('mr',$mr);
555 }
556 }
557
558 function getMatricule($line, $key)
559 {
560 $mat = $line['matricule'];
561 $year = intval(substr($mat, 0, 3));
562 $rang = intval(substr($mat, 3, 3));
563 if ($year > 200) { $year /= 10; };
564 if ($year < 96) {
565 return null;
566 } else {
567 return sprintf('%04u%04u', 1900+$year, $rang);
568 }
569 }
570
571 function handler_promo(&$page, $action = null, $promo = null)
572 {
573 if (Env::has('promo')) {
574 if(Env::i('promo') > 1900 && Env::i('promo') < 2050) {
575 $action = Env::v('valid_promo') == 'Ajouter des membres' ? 'add' : 'ax';
576 pl_redirect('admin/promo/' . $action . '/' . Env::i('promo'));
577 } else {
578 $page->trig('Promo non valide');
579 }
580 }
581
582 $page->changeTpl('admin/promo.tpl');
583 if ($promo > 1900 && $promo < 2050 && ($action == 'add' || $action == 'ax')) {
584 $page->assign('promo', $promo);
585 } else {
586 return;
587 }
588
589 $importer = new CSVImporter('auth_user_md5', 'matricule');
590 $importer->registerFunction('matricule', 'matricle Ecole vers X.org', array($this, 'getMatricule'));
591 switch ($action) {
592 case 'add':
593 $fields = array('nom', 'nom_ini', 'prenom',
594 'prenom_ini', 'promo', 'promo_sortie', 'flags',
595 'matricule', 'matricule_ax', 'perms');
596 $importer->forceValue('promo', $promo);
597 $importer->forceValue('promo_sortie', $promo + 3);
598 break;
599 case 'ax':
600 $fields = array('matricule', 'matricule_ax');
601 break;
602 }
603 $importer->apply($page, "admin/promo/$action/$promo", $fields);
604 }
605
606 function handler_homonyms(&$page, $op = 'list', $target = null) {
607 $page->changeTpl('admin/homonymes.tpl');
608 $page->assign('xorg_title','Polytechnique.org - Administration - Homonymes');
609 require_once("homonymes.inc.php");
610
611 if ($target) {
612 if (! list($prenom,$nom,$forlife,$loginbis) = select_if_homonyme($target)) {
613 $target=0;
614 } else {
615 $page->assign('nom',$nom);
616 $page->assign('prenom',$prenom);
617 $page->assign('forlife',$forlife);
618 $page->assign('loginbis',$loginbis);
619 }
620 }
621
622 $page->assign('op',$op);
623 $page->assign('target',$target);
624
625 // on a un $target valide, on prepare les mails
626 if ($target) {
627
628 // on examine l'op a effectuer
629 switch ($op) {
630 case 'mail':
631 send_warning_homonyme($prenom, $nom, $forlife, $loginbis);
632 switch_bestalias($target, $loginbis);
633 $op = 'list';
634 break;
635 case 'correct':
636 switch_bestalias($target, $loginbis);
637 XDB::execute("UPDATE aliases SET type='homonyme',expire=NOW() WHERE alias={?}", $loginbis);
638 XDB::execute("REPLACE INTO homonymes (homonyme_id,user_id) VALUES({?},{?})", $target, $target);
639 send_robot_homonyme($prenom, $nom, $forlife, $loginbis);
640 $op = 'list';
641 break;
642 }
643 }
644
645 if ($op == 'list') {
646 $res = XDB::iterator(
647 "SELECT a.alias AS homonyme,s.id AS user_id,s.alias AS forlife,
648 promo,prenom,nom,
649 IF(h.homonyme_id=s.id, a.expire, NULL) AS expire,
650 IF(h.homonyme_id=s.id, a.type, NULL) AS type
651 FROM aliases AS a
652 LEFT JOIN homonymes AS h ON (h.homonyme_id = a.id)
653 INNER JOIN aliases AS s ON (s.id = h.user_id AND s.type='a_vie')
654 INNER JOIN auth_user_md5 AS u ON (s.id=u.user_id)
655 WHERE a.type='homonyme' OR a.expire!=''
656 ORDER BY a.alias,promo");
657 $hnymes = Array();
658 while ($tab = $res->next()) {
659 $hnymes[$tab['homonyme']][] = $tab;
660 }
661 $page->assign_by_ref('hnymes',$hnymes);
662 }
663 }
664
665 function handler_ax_xorg(&$page) {
666 $page->changeTpl('admin/ax-xorg.tpl');
667 $page->assign('xorg_title','Polytechnique.org - Administration - AX/X.org');
668
669 // liste des différences
670 $res = XDB::query(
671 'SELECT u.promo,u.nom AS nom,u.prenom AS prenom,ia.nom AS nomax,ia.prenom AS prenomax,u.matricule AS mat,ia.matricule_ax AS matax
672 FROM auth_user_md5 AS u
673 INNER JOIN identification_ax AS ia ON u.matricule_ax = ia.matricule_ax
674 WHERE (SOUNDEX(u.nom) != SOUNDEX(ia.nom) AND SOUNDEX(CONCAT(ia.particule,u.nom)) != SOUNDEX(ia.nom)
675 AND SOUNDEX(u.nom) != SOUNDEX(ia.nom_patro) AND SOUNDEX(CONCAT(ia.particule,u.nom)) != SOUNDEX(ia.nom_patro))
676 OR u.prenom != ia.prenom OR (u.promo != ia.promo AND u.promo != ia.promo+1 AND u.promo != ia.promo-1)
677 ORDER BY u.promo,u.nom,u.prenom');
678 $page->assign('diffs', $res->fetchAllAssoc());
679
680 // gens à l'ax mais pas chez nous
681 $res = XDB::query(
682 'SELECT ia.promo,ia.nom,ia.nom_patro,ia.prenom
683 FROM identification_ax as ia
684 LEFT JOIN auth_user_md5 AS u ON u.matricule_ax = ia.matricule_ax
685 WHERE u.nom IS NULL');
686 $page->assign('mank', $res->fetchAllAssoc());
687
688 // gens chez nous et pas à l'ax
689 $res = XDB::query('SELECT promo,nom,prenom FROM auth_user_md5 WHERE matricule_ax IS NULL');
690 $page->assign('plus', $res->fetchAllAssoc());
691 }
692
693 function handler_deaths(&$page, $promo = 0, $validate = false) {
694 $page->changeTpl('admin/deces_promo.tpl');
695 $page->assign('xorg_title','Polytechnique.org - Administration - Deces');
696
697 if (!$promo)
698 $promo = Env::i('promo');
699 if (Env::has('sub10')) $promo -= 10;
700 if (Env::has('sub01')) $promo -= 1;
701 if (Env::has('add01')) $promo += 1;
702 if (Env::has('add10')) $promo += 10;
703
704 $page->assign('promo',$promo);
705
706 if ($validate) {
707 $new_deces = array();
708 $res = XDB::iterRow("SELECT user_id,matricule,nom,prenom,deces FROM auth_user_md5 WHERE promo = {?}", $promo);
709 while (list($uid,$mat,$nom,$prenom,$deces) = $res->next()) {
710 $val = Env::v($mat);
711 if($val == $deces || empty($val)) continue;
712 XDB::execute('UPDATE auth_user_md5 SET deces={?} WHERE matricule = {?}', $val, $mat);
713 $new_deces[] = array('name' => "$prenom $nom", 'date' => "$val");
714 if($deces=='0000-00-00' or empty($deces)) {
715 require_once('notifs.inc.php');
716 register_watch_op($uid, WATCH_DEATH, $val);
717 require_once('user.func.inc.php');
718 user_clear_all_subs($uid, false); // by default, dead ppl do not loose their email
719 }
720 }
721 $page->assign('new_deces',$new_deces);
722 }
723
724 $res = XDB::iterator('SELECT matricule, nom, prenom, deces FROM auth_user_md5 WHERE promo = {?} ORDER BY nom,prenom', $promo);
725 $page->assign('decedes', $res);
726 }
727
728 function handler_synchro_ax(&$page, $user = null, $action = null) {
729 $page->changeTpl('admin/synchro_ax.tpl');
730 $page->assign('xorg_title','Polytechnique.org - Administration - Synchro AX');
731
732 require_once('synchro_ax.inc.php');
733
734 if (is_ax_key_missing()) {
735 $page->assign('no_private_key', true);
736 $page->run();
737 }
738
739 require_once('user.func.inc.php');
740
741 if ($user)
742 $login = get_user_forlife($user);
743
744 if (Env::has('user')) {
745 $login = get_user_forlife(Env::v('user'));
746 if ($login === false) {
747 return;
748 }
749 }
750
751 if (Env::has('mat')) {
752 $res = XDB::query(
753 "SELECT alias
754 FROM aliases AS a
755 INNER JOIN auth_user_md5 AS u ON (a.id=u.user_id AND a.type='a_vie')
756 WHERE matricule={?}", Env::i('mat'));
757 $login = $res->fetchOneCell();
758 }
759
760 if ($login) {
761 if ($action == 'import') {
762 ax_synchronize($login, S::v('uid'));
763 }
764 // get details from user, but looking only info that can be seen by ax
765 $user = get_user_details($login, S::v('uid'), 'ax');
766 $userax= get_user_ax($user['matricule_ax']);
767 require_once 'profil.func.inc.php';
768 $diff = diff_user_details($userax, $user, 'ax');
769
770 $page->assign('x', $user);
771 $page->assign('diff', $diff);
772 }
773 }
774
775 function handler_validate(&$page, $action = 'list', $id = null) {
776 $page->changeTpl('admin/valider.tpl');
777 $page->assign('xorg_title','Polytechnique.org - Administration - Valider une demande');
778 require_once("validations.inc.php");
779
780 if ($action == 'edit' and !is_null($id)) {
781 $page->assign('preview_id', $id);
782 }
783
784 if(Env::has('uid') && Env::has('type') && Env::has('stamp')) {
785 $req = Validate::get_typed_request(Env::v('uid'), Env::v('type'), Env::v('stamp'));
786 if($req) { $req->handle_formu(); }
787 }
788
789 $r = XDB::iterator('SHOW COLUMNS FROM requests_answers');
790 while (($a = $r->next()) && $a['Field'] != 'category');
791 $page->assign('categories', $categories = explode(',', str_replace("'", '', substr($a['Type'], 5, -1))));
792
793 $hidden = array();
794 if (Post::has('hide')) {
795 $hide = array();
796 foreach ($categories as $cat)
797 if (!Post::v($cat)) {
798 $hidden[$cat] = 1;
799 $hide[] = $cat;
800 }
801 setcookie('hide_requests', join(',',$hide), time()+(count($hide)?25920000:(-3600)), '/', '', 0);
802 } elseif (Env::has('hide_requests')) {
803 foreach (explode(',',Env::v('hide_requests')) as $hide_type)
804 $hidden[$hide_type] = true;
805 }
806 $page->assign('hide_requests', $hidden);
807
808 $page->assign('vit', new ValidateIterator());
809 }
810 function handler_validate_answers(&$page, $action = 'list', $id = null) {
811 $page->assign('xorg_title','Polytechnique.org - Administration - Réponses automatiques de validation');
812 $page->assign('title', 'Gestion des réponses automatiques');
813 $table_editor = new PLTableEditor('admin/validate/answers','requests_answers','id');
814 $table_editor->describe('category','catégorie',true);
815 $table_editor->describe('title','titre',true);
816 $table_editor->describe('answer','texte',false);
817 $table_editor->apply($page, $action, $id);
818 }
819 function handler_skins(&$page, $action = 'list', $id = null) {
820 $page->assign('xorg_title','Polytechnique.org - Administration - Skins');
821 $page->assign('title', 'Gestion des skins');
822 $table_editor = new PLTableEditor('admin/skins','skins','id');
823 $table_editor->describe('name','nom',true);
824 $table_editor->describe('skin_tpl','nom du template',true);
825 $table_editor->describe('auteur','auteur',false);
826 $table_editor->describe('comment','commentaire',true);
827 $table_editor->describe('date','date',false);
828 $table_editor->describe('ext','extension du screenshot',false);
829 $table_editor->apply($page, $action, $id);
830 }
831 function handler_postfix_blacklist(&$page, $action = 'list', $id = null) {
832 $page->assign('xorg_title','Polytechnique.org - Administration - Postfix : Blacklist');
833 $page->assign('title', 'Blacklist de postfix');
834 $table_editor = new PLTableEditor('admin/postfix/blacklist','postfix_blacklist','email', true);
835 $table_editor->describe('reject_text','Texte de rejet',true);
836 $table_editor->describe('email','email',true);
837 $table_editor->apply($page, $action, $id);
838 }
839 function handler_postfix_whitelist(&$page, $action = 'list', $id = null) {
840 $page->assign('xorg_title','Polytechnique.org - Administration - Postfix : Whitelist');
841 $page->assign('title', 'Whitelist de postfix');
842 $table_editor = new PLTableEditor('admin/postfix/whitelist','postfix_whitelist','email', true);
843 $table_editor->describe('email','email',true);
844 $table_editor->apply($page, $action, $id);
845 }
846 function handler_mx_broken(&$page, $action = 'list', $id = null) {
847 $page->assign('xorg_title', 'Polytechnique.org - Administration - MX Défaillants');
848 $page->assign('title', 'MX Défaillant');
849 $table_editor = new PLTableEditor('admin/mx/broken', 'mx_watch', 'host', true);
850 $table_editor->describe('host', 'Masque', true);
851 $table_editor->describe('state', 'Niveau', true);
852 $table_editor->describe('text', 'Description du problème', false);
853 $table_editor->apply($page, $action, $id);
854 }
855 function handler_logger_actions(&$page, $action = 'list', $id = null) {
856 $page->assign('xorg_title','Polytechnique.org - Administration - Actions');
857 $page->assign('title', 'Gestion des actions de logger');
858 $table_editor = new PLTableEditor('admin/logger/actions','logger.actions','id');
859 $table_editor->describe('text','intitulé',true);
860 $table_editor->describe('description','description',true);
861 $table_editor->apply($page, $action, $id);
862 }
863 function handler_downtime(&$page, $action = 'list', $id = null) {
864 $page->assign('xorg_title','Polytechnique.org - Administration - Coupures');
865 $page->assign('title', 'Gestion des coupures');
866 $table_editor = new PLTableEditor('admin/downtime','coupures','id');
867 $table_editor->describe('debut','date',true);
868 $table_editor->describe('duree','durée',false);
869 $table_editor->describe('resume','résumé',true);
870 $table_editor->describe('services','services affectés',true);
871 $table_editor->describe('description','description',false);
872 $table_editor->apply($page, $action, $id);
873 }
874
875 function handler_wiki(&$page, $action='list')
876 {
877 require_once 'wiki.inc.php';
878
879 // update wiki perms
880 if ($action == 'update') {
881 $perms_read = Post::v('read');
882 $perms_edot = Post::v('edit');
883 if ($perms_read || $perms_edit) {
884 foreach ($_POST as $wiki_page => $val) if ($val == 'on') {
885 $wiki_page = str_replace('_', '/', $wiki_page);
886 if (!$perms_read || !$perms_edit)
887 list($perms0, $perms1) = wiki_get_perms($wiki_page);
888 if ($perms_read)
889 $perms0 = $perms_read;
890 if ($perms_edit)
891 $perms1 = $perms_edit;
892 wiki_set_perms($wiki_page, $perms0, $perms1);
893 }
894 }
895 }
896
897 $perms = wiki_perms_options();
898
899 // list wiki pages and their perms
900 $wiki_pages = array();
901 $dir = wiki_work_dir();
902 if (is_dir($dir)) {
903 if ($dh = opendir($dir)) {
904 while (($file = readdir($dh)) !== false) if (substr($file,0,1) >= 'A' && substr($file,0,1) <= 'Z') {
905 list($read,$edit) = wiki_get_perms($file);
906 $wiki_pages[$file] = array('read' => $perms[$read], 'edit' => $perms[$edit]);
907 }
908 closedir($dh);
909 }
910 }
911 ksort($wiki_pages);
912 $wiki_tree = array();
913 foreach ($wiki_pages as $file => $desc) {
914 list($cat, $name) = explode('.', $file);
915 if (!isset($wiki_tree[$cat])) {
916 $wiki_tree[$cat] = array();
917 }
918 $wiki_tree[$cat][$name] = $desc;
919 }
920
921
922
923 $page->changeTpl('admin/wiki.tpl');
924 $page->assign('wiki_pages', $wiki_tree);
925 $page->assign('perms_opts', $perms);
926 }
927
928 function handler_ipwatch(&$page, $action = 'list', $ip = null)
929 {
930 $page->changeTpl('admin/ipwatcher.tpl');
931
932 $states = array('safe' => 'Ne pas surveiller',
933 'unsafe' => 'Surveiller les inscription',
934 'dangerous' => 'Surveiller tous les accès',
935 'ban' => 'Bannir cette adresse');
936 $page->assign('states', $states);
937
938 switch (Post::v('action')) {
939 case 'create':
940 if (trim(Post::v('ipN')) != '') {
941 Xdb::execute('INSERT IGNORE INTO ip_watch (ip, state, detection, last, uid, description)
942 VALUES ({?}, {?}, CURDATE(), NOW(), {?}, {?})',
943 trim(Post::v('ipN')), Post::v('stateN'), S::i('uid'), Post::v('descriptionN'));
944 };
945 break;
946
947 case 'edit':
948 Xdb::execute('UPDATE ip_watch
949 SET state = {?}, last = NOW(), uid = {?}, description = {?}
950 WHERE ip = {?}', Post::v('stateN'), S::i('uid'), Post::v('descriptionN'), Post::v('ipN'));
951 break;
952
953 default:
954 if ($action == 'delete' && !is_null($ip)) {
955 Xdb::execute('DELETE FROM emails_watch WHERE ip = {?}', $ip);
956 }
957 }
958 if ($action != 'create' && $action != 'edit') {
959 $action = 'list';
960 }
961 $page->assign('action', $action);
962
963 if ($action == 'list') {
964 $sql = "SELECT w.ip, s.host, w.detection, w.state, a.alias AS forlife
965 FROM ip_watch AS w
966 LEFT JOIN logger.sessions AS s USING(ip)
967 LEFT JOIN aliases AS a ON (a.id = s.uid AND a.type = 'a_vie')
968 GROUP BY w.ip, a.alias
969 ORDER BY w.state, w.ip, a.alias";
970 $it = Xdb::iterRow($sql);
971
972 $table = array();
973 $props = array();
974 while (list($ip, $host, $date, $state, $forlife) = $it->next()) {
975 if (count($props) == 0 || $props['ip'] != $ip) {
976 if (count($props) > 0) {
977 $table[] = $props;
978 }
979 $props = array('ip' => $ip,
980 'host' => $host,
981 'detection' => $date,
982 'state' => $state,
983 'users' => array($forlife));
984 } else {
985 $props['users'][] = $forlife;
986 }
987 }
988 if (count($props) > 0) {
989 $table[] = $props;
990 }
991 $page->assign('table', $table);
992 } elseif ($action == 'edit') {
993 $sql = "SELECT w.detection, w.state, w.last, w.description,
994 a1.alias AS edit, a2.alias AS forlife, s.host
995 FROM ip_watch AS w
996 LEFT JOIN aliases AS a1 ON (a1.id = w.uid AND a1.type = 'a_vie')
997 LEFT JOIN logger.sessions AS s ON (w.ip = s.ip)
998 LEFT JOIN aliases AS a2 ON (a2.id = s.uid AND a2.type = 'a_vie')
999 WHERE w.ip = {?}
1000 GROUP BY a2.alias
1001 ORDER BY a2.alias";
1002 $it = Xdb::iterRow($sql, $ip);
1003
1004 $props = array();
1005 while (list($detection, $state, $last, $description, $edit, $forlife, $host) = $it->next()) {
1006 if (count($props) == 0) {
1007 $props = array('ip' => $ip,
1008 'host' => $host,
1009 'detection' => $detection,
1010 'state' => $state,
1011 'last' => $last,
1012 'description' => $description,
1013 'edit' => $edit,
1014 'users' => array($forlife));
1015 } else {
1016 $props['users'][] = $forlife;
1017 }
1018 }
1019 $page->assign('ip', $props);
1020 }
1021 }
1022 }
1023
1024 ?>