Backport
[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("admin/mail_intervention.tpl");
493 $mailer->assign("user", S::v('forlife'));
494 $mailer->assign("query", $query);
495 $mailer->send();
496
497 $page->trig("updaté correctement.");
498 }
499 if (Env::v('nomusageN') != $mr['nom_usage']) {
500 set_new_usage($mr['user_id'], Env::v('nomusageN'), make_username(Env::v('prenomN'), Env::v('nomusageN')));
501 }
502 if (Env::v('decesN') != $mr['deces']) {
503 user_clear_all_subs($mr['user_id'], false);
504 }
505 $r = XDB::query("SELECT *, a.alias AS forlife, u.flags AS sexe
506 FROM auth_user_md5 AS u
507 LEFT JOIN aliases AS a ON (a.id = u.user_id AND type= 'a_vie')
508 WHERE u.user_id = {?}", $mr['user_id']);
509 $mr = $r->fetchOneAssoc();
510 break;
511
512 // DELETE FROM auth_user_md5
513 case "u_kill":
514 user_clear_all_subs($mr['user_id']);
515 $page->trig("'{$mr['user_id']}' a été désinscrit !");
516 $mailer = new PlMailer("admin/mail_intervention.tpl");
517 $mailer->assign("user", S::v('forlife'));
518 $mailer->assign("query", "\nUtilisateur $login désinscrit");
519 $mailer->send();
520 break;
521 }
522 }
523
524 $res = XDB::query("SELECT start, host
525 FROM logger.sessions
526 WHERE uid={?} AND suid=0
527 ORDER BY start DESC
528 LIMIT 1", $mr['user_id']);
529 list($lastlogin,$host) = $res->fetchOneRow();
530 $page->assign('lastlogin', $lastlogin);
531 $page->assign('host', $host);
532
533 $res = XDB::query("SELECT alias
534 FROM virtual
535 INNER JOIN virtual_redirect USING(vid)
536 WHERE type = 'user' AND redirect LIKE '" . $login . "@%'");
537 if ($res->numRows()) {
538 $page->assign('virtual', $res->fetchOneCell());
539 }
540
541 $page->assign('aliases', XDB::iterator(
542 "SELECT alias, type='a_vie' AS for_life,FIND_IN_SET('bestalias',flags) AS best,expire
543 FROM aliases
544 WHERE id = {?} AND type!='homonyme'
545 ORDER BY type!= 'a_vie'", $mr["user_id"]));
546 if ($mr['perms'] != 'pending') {
547 $page->assign('emails',$redirect->emails);
548 }
549
550 $page->assign('mr',$mr);
551 }
552 }
553
554 function getMatricule($line, $key)
555 {
556 $mat = $line['matricule'];
557 $year = intval(substr($mat, 0, 3));
558 $rang = intval(substr($mat, 3, 3));
559 if ($year > 200) { $year /= 10; };
560 if ($year < 96) {
561 return null;
562 } else {
563 return sprintf('%04u%04u', 1900+$year, $rang);
564 }
565 }
566
567 function handler_promo(&$page, $action = null, $promo = null)
568 {
569 if (Env::has('promo')) {
570 if(Env::i('promo') > 1900 && Env::i('promo') < 2050) {
571 $action = Env::v('valid_promo') == 'Ajouter des membres' ? 'add' : 'ax';
572 pl_redirect('admin/promo/' . $action . '/' . Env::i('promo'));
573 } else {
574 $page->trig('Promo non valide');
575 }
576 }
577
578 $page->changeTpl('admin/promo.tpl');
579 if ($promo > 1900 && $promo < 2050 && ($action == 'add' || $action == 'ax')) {
580 $page->assign('promo', $promo);
581 } else {
582 return;
583 }
584
585 $importer = new CSVImporter('auth_user_md5', 'matricule');
586 $importer->registerFunction('matricule', 'matricle Ecole vers X.org', array($this, 'getMatricule'));
587 switch ($action) {
588 case 'add':
589 $fields = array('nom', 'nom_ini', 'prenom',
590 'prenom_ini', 'promo', 'promo_sortie', 'flags',
591 'matricule', 'matricule_ax', 'perms');
592 $importer->forceValue('promo', $promo);
593 $importer->forceValue('promo_sortie', $promo + 3);
594 break;
595 case 'ax':
596 $fields = array('matricule', 'matricule_ax');
597 break;
598 }
599 $importer->apply($page, "admin/promo/$action/$promo", $fields);
600 }
601
602 function handler_homonyms(&$page, $op = 'list', $target = null) {
603 $page->changeTpl('admin/homonymes.tpl');
604 $page->assign('xorg_title','Polytechnique.org - Administration - Homonymes');
605 require_once("homonymes.inc.php");
606
607 if ($target) {
608 if (! list($prenom,$nom,$forlife,$loginbis) = select_if_homonyme($target)) {
609 $target=0;
610 } else {
611 $page->assign('nom',$nom);
612 $page->assign('prenom',$prenom);
613 $page->assign('forlife',$forlife);
614 $page->assign('loginbis',$loginbis);
615 }
616 }
617
618 $page->assign('op',$op);
619 $page->assign('target',$target);
620
621 // on a un $target valide, on prepare les mails
622 if ($target) {
623
624 // on examine l'op a effectuer
625 switch ($op) {
626 case 'mail':
627 send_warning_homonyme($prenom, $nom, $forlife, $loginbis);
628 switch_bestalias($target, $loginbis);
629 $op = 'list';
630 break;
631 case 'correct':
632 switch_bestalias($target, $loginbis);
633 XDB::execute("UPDATE aliases SET type='homonyme',expire=NOW() WHERE alias={?}", $loginbis);
634 XDB::execute("REPLACE INTO homonymes (homonyme_id,user_id) VALUES({?},{?})", $target, $target);
635 send_robot_homonyme($prenom, $nom, $forlife, $loginbis);
636 $op = 'list';
637 break;
638 }
639 }
640
641 if ($op == 'list') {
642 $res = XDB::iterator(
643 "SELECT a.alias AS homonyme,s.id AS user_id,s.alias AS forlife,
644 promo,prenom,nom,
645 IF(h.homonyme_id=s.id, a.expire, NULL) AS expire,
646 IF(h.homonyme_id=s.id, a.type, NULL) AS type
647 FROM aliases AS a
648 LEFT JOIN homonymes AS h ON (h.homonyme_id = a.id)
649 INNER JOIN aliases AS s ON (s.id = h.user_id AND s.type='a_vie')
650 INNER JOIN auth_user_md5 AS u ON (s.id=u.user_id)
651 WHERE a.type='homonyme' OR a.expire!=''
652 ORDER BY a.alias,promo");
653 $hnymes = Array();
654 while ($tab = $res->next()) {
655 $hnymes[$tab['homonyme']][] = $tab;
656 }
657 $page->assign_by_ref('hnymes',$hnymes);
658 }
659 }
660
661 function handler_ax_xorg(&$page) {
662 $page->changeTpl('admin/ax-xorg.tpl');
663 $page->assign('xorg_title','Polytechnique.org - Administration - AX/X.org');
664
665 // liste des différences
666 $res = XDB::query(
667 '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
668 FROM auth_user_md5 AS u
669 INNER JOIN identification_ax AS ia ON u.matricule_ax = ia.matricule_ax
670 WHERE (SOUNDEX(u.nom) != SOUNDEX(ia.nom) AND SOUNDEX(CONCAT(ia.particule,u.nom)) != SOUNDEX(ia.nom)
671 AND SOUNDEX(u.nom) != SOUNDEX(ia.nom_patro) AND SOUNDEX(CONCAT(ia.particule,u.nom)) != SOUNDEX(ia.nom_patro))
672 OR u.prenom != ia.prenom OR (u.promo != ia.promo AND u.promo != ia.promo+1 AND u.promo != ia.promo-1)
673 ORDER BY u.promo,u.nom,u.prenom');
674 $page->assign('diffs', $res->fetchAllAssoc());
675
676 // gens à l'ax mais pas chez nous
677 $res = XDB::query(
678 'SELECT ia.promo,ia.nom,ia.nom_patro,ia.prenom
679 FROM identification_ax as ia
680 LEFT JOIN auth_user_md5 AS u ON u.matricule_ax = ia.matricule_ax
681 WHERE u.nom IS NULL');
682 $page->assign('mank', $res->fetchAllAssoc());
683
684 // gens chez nous et pas à l'ax
685 $res = XDB::query('SELECT promo,nom,prenom FROM auth_user_md5 WHERE matricule_ax IS NULL');
686 $page->assign('plus', $res->fetchAllAssoc());
687 }
688
689 function handler_deaths(&$page, $promo = 0, $validate = false) {
690 $page->changeTpl('admin/deces_promo.tpl');
691 $page->assign('xorg_title','Polytechnique.org - Administration - Deces');
692
693 if (!$promo)
694 $promo = Env::i('promo');
695 if (Env::has('sub10')) $promo -= 10;
696 if (Env::has('sub01')) $promo -= 1;
697 if (Env::has('add01')) $promo += 1;
698 if (Env::has('add10')) $promo += 10;
699
700 $page->assign('promo',$promo);
701
702 if ($validate) {
703 $new_deces = array();
704 $res = XDB::iterRow("SELECT user_id,matricule,nom,prenom,deces FROM auth_user_md5 WHERE promo = {?}", $promo);
705 while (list($uid,$mat,$nom,$prenom,$deces) = $res->next()) {
706 $val = Env::v($mat);
707 if($val == $deces || empty($val)) continue;
708 XDB::execute('UPDATE auth_user_md5 SET deces={?} WHERE matricule = {?}', $val, $mat);
709 $new_deces[] = array('name' => "$prenom $nom", 'date' => "$val");
710 if($deces=='0000-00-00' or empty($deces)) {
711 require_once('notifs.inc.php');
712 register_watch_op($uid, WATCH_DEATH, $val);
713 require_once('user.func.inc.php');
714 user_clear_all_subs($uid, false); // by default, dead ppl do not loose their email
715 }
716 }
717 $page->assign('new_deces',$new_deces);
718 }
719
720 $res = XDB::iterator('SELECT matricule, nom, prenom, deces FROM auth_user_md5 WHERE promo = {?} ORDER BY nom,prenom', $promo);
721 $page->assign('decedes', $res);
722 }
723
724 function handler_synchro_ax(&$page, $user = null, $action = null) {
725 $page->changeTpl('admin/synchro_ax.tpl');
726 $page->assign('xorg_title','Polytechnique.org - Administration - Synchro AX');
727
728 require_once('synchro_ax.inc.php');
729
730 if (is_ax_key_missing()) {
731 $page->assign('no_private_key', true);
732 $page->run();
733 }
734
735 require_once('user.func.inc.php');
736
737 if ($user)
738 $login = get_user_forlife($user);
739
740 if (Env::has('user')) {
741 $login = get_user_forlife(Env::v('user'));
742 if ($login === false) {
743 return;
744 }
745 }
746
747 if (Env::has('mat')) {
748 $res = XDB::query(
749 "SELECT alias
750 FROM aliases AS a
751 INNER JOIN auth_user_md5 AS u ON (a.id=u.user_id AND a.type='a_vie')
752 WHERE matricule={?}", Env::i('mat'));
753 $login = $res->fetchOneCell();
754 }
755
756 if ($login) {
757 if ($action == 'import') {
758 ax_synchronize($login, S::v('uid'));
759 }
760 // get details from user, but looking only info that can be seen by ax
761 $user = get_user_details($login, S::v('uid'), 'ax');
762 $userax= get_user_ax($user['matricule_ax']);
763 require_once 'profil.func.inc.php';
764 $diff = diff_user_details($userax, $user, 'ax');
765
766 $page->assign('x', $user);
767 $page->assign('diff', $diff);
768 }
769 }
770
771 function handler_validate(&$page, $action = 'list', $id = null) {
772 $page->changeTpl('admin/valider.tpl');
773 $page->assign('xorg_title','Polytechnique.org - Administration - Valider une demande');
774 $page->addCssLink('nl.css');
775 require_once("validations.inc.php");
776
777 if ($action == 'edit' and !is_null($id)) {
778 $page->assign('preview_id', $id);
779 }
780
781 if(Env::has('uid') && Env::has('type') && Env::has('stamp')) {
782 $req = Validate::get_typed_request(Env::v('uid'), Env::v('type'), Env::v('stamp'));
783 if($req) { $req->handle_formu(); }
784 }
785
786 $r = XDB::iterator('SHOW COLUMNS FROM requests_answers');
787 while (($a = $r->next()) && $a['Field'] != 'category');
788 $page->assign('categories', $categories = explode(',', str_replace("'", '', substr($a['Type'], 5, -1))));
789
790 $hidden = array();
791 if (Post::has('hide')) {
792 $hide = array();
793 foreach ($categories as $cat)
794 if (!Post::v($cat)) {
795 $hidden[$cat] = 1;
796 $hide[] = $cat;
797 }
798 setcookie('hide_requests', join(',',$hide), time()+(count($hide)?25920000:(-3600)), '/', '', 0);
799 } elseif (Env::has('hide_requests')) {
800 foreach (explode(',',Env::v('hide_requests')) as $hide_type)
801 $hidden[$hide_type] = true;
802 }
803 $page->assign('hide_requests', $hidden);
804
805 $page->assign('vit', new ValidateIterator());
806 }
807 function handler_validate_answers(&$page, $action = 'list', $id = null) {
808 $page->assign('xorg_title','Polytechnique.org - Administration - Réponses automatiques de validation');
809 $page->assign('title', 'Gestion des réponses automatiques');
810 $table_editor = new PLTableEditor('admin/validate/answers','requests_answers','id');
811 $table_editor->describe('category','catégorie',true);
812 $table_editor->describe('title','titre',true);
813 $table_editor->describe('answer','texte',false);
814 $table_editor->apply($page, $action, $id);
815 }
816 function handler_skins(&$page, $action = 'list', $id = null) {
817 $page->assign('xorg_title','Polytechnique.org - Administration - Skins');
818 $page->assign('title', 'Gestion des skins');
819 $table_editor = new PLTableEditor('admin/skins','skins','id');
820 $table_editor->describe('name','nom',true);
821 $table_editor->describe('skin_tpl','nom du template',true);
822 $table_editor->describe('auteur','auteur',false);
823 $table_editor->describe('comment','commentaire',true);
824 $table_editor->describe('date','date',false);
825 $table_editor->describe('ext','extension du screenshot',false);
826 $table_editor->apply($page, $action, $id);
827 }
828 function handler_postfix_blacklist(&$page, $action = 'list', $id = null) {
829 $page->assign('xorg_title','Polytechnique.org - Administration - Postfix : Blacklist');
830 $page->assign('title', 'Blacklist de postfix');
831 $table_editor = new PLTableEditor('admin/postfix/blacklist','postfix_blacklist','email', true);
832 $table_editor->describe('reject_text','Texte de rejet',true);
833 $table_editor->describe('email','email',true);
834 $table_editor->apply($page, $action, $id);
835 }
836 function handler_postfix_whitelist(&$page, $action = 'list', $id = null) {
837 $page->assign('xorg_title','Polytechnique.org - Administration - Postfix : Whitelist');
838 $page->assign('title', 'Whitelist de postfix');
839 $table_editor = new PLTableEditor('admin/postfix/whitelist','postfix_whitelist','email', true);
840 $table_editor->describe('email','email',true);
841 $table_editor->apply($page, $action, $id);
842 }
843 function handler_mx_broken(&$page, $action = 'list', $id = null) {
844 $page->assign('xorg_title', 'Polytechnique.org - Administration - MX Défaillants');
845 $page->assign('title', 'MX Défaillant');
846 $table_editor = new PLTableEditor('admin/mx/broken', 'mx_watch', 'host', true);
847 $table_editor->describe('host', 'Masque', true);
848 $table_editor->describe('state', 'Niveau', true);
849 $table_editor->describe('text', 'Description du problème', false);
850 $table_editor->apply($page, $action, $id);
851 }
852 function handler_logger_actions(&$page, $action = 'list', $id = null) {
853 $page->assign('xorg_title','Polytechnique.org - Administration - Actions');
854 $page->assign('title', 'Gestion des actions de logger');
855 $table_editor = new PLTableEditor('admin/logger/actions','logger.actions','id');
856 $table_editor->describe('text','intitulé',true);
857 $table_editor->describe('description','description',true);
858 $table_editor->apply($page, $action, $id);
859 }
860 function handler_downtime(&$page, $action = 'list', $id = null) {
861 $page->assign('xorg_title','Polytechnique.org - Administration - Coupures');
862 $page->assign('title', 'Gestion des coupures');
863 $table_editor = new PLTableEditor('admin/downtime','coupures','id');
864 $table_editor->describe('debut','date',true);
865 $table_editor->describe('duree','durée',false);
866 $table_editor->describe('resume','résumé',true);
867 $table_editor->describe('services','services affectés',true);
868 $table_editor->describe('description','description',false);
869 $table_editor->apply($page, $action, $id);
870 }
871
872 function handler_wiki(&$page, $action='list')
873 {
874 require_once 'wiki.inc.php';
875
876 // update wiki perms
877 if ($action == 'update') {
878 $perms_read = Post::v('read');
879 $perms_edot = Post::v('edit');
880 if ($perms_read || $perms_edit) {
881 foreach ($_POST as $wiki_page => $val) if ($val == 'on') {
882 $wiki_page = str_replace('_', '/', $wiki_page);
883 if (!$perms_read || !$perms_edit)
884 list($perms0, $perms1) = wiki_get_perms($wiki_page);
885 if ($perms_read)
886 $perms0 = $perms_read;
887 if ($perms_edit)
888 $perms1 = $perms_edit;
889 wiki_set_perms($wiki_page, $perms0, $perms1);
890 }
891 }
892 }
893
894 $perms = wiki_perms_options();
895
896 // list wiki pages and their perms
897 $wiki_pages = array();
898 $dir = wiki_work_dir();
899 if (is_dir($dir)) {
900 if ($dh = opendir($dir)) {
901 while (($file = readdir($dh)) !== false) if (substr($file,0,1) >= 'A' && substr($file,0,1) <= 'Z') {
902 list($read,$edit) = wiki_get_perms($file);
903 $wiki_pages[$file] = array('read' => $perms[$read], 'edit' => $perms[$edit]);
904 if (is_file($dir . '/cache_' . wiki_filename($file) . '.tpl')) {
905 $wiki_pages[$file]['cached'] = true;
906 }
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, IF(w.ip = s.ip, s.host, s.forward_host), w.detection, w.state, a.alias AS forlife
965 FROM ip_watch AS w
966 LEFT JOIN logger.sessions AS s ON (s.ip = w.ip OR s.forward_ip = w.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 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
1025 ?>