Backports
[platal.git] / modules / admin.php
CommitLineData
86f0a6af 1<?php
2/***************************************************************************
5ddeb07c 3 * Copyright (C) 2003-2007 Polytechnique.org *
86f0a6af 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
22class AdminModule extends PLModule
23{
24 function handlers()
25 {
26 return array(
5f9a40b4 27 'phpinfo' => $this->make_hook('phpinfo', AUTH_MDP, 'admin'),
28 'admin' => $this->make_hook('default', AUTH_MDP, 'admin'),
86f0a6af 29 'admin/ax-xorg' => $this->make_hook('ax_xorg', AUTH_MDP, 'admin'),
30 'admin/deaths' => $this->make_hook('deaths', AUTH_MDP, 'admin'),
e7ae7df9 31 'admin/downtime' => $this->make_hook('downtime', AUTH_MDP, 'admin'),
e7ae7df9 32 'admin/homonyms' => $this->make_hook('homonyms', AUTH_MDP, 'admin'),
e7ae7df9 33 'admin/logger' => $this->make_hook('logger', AUTH_MDP, 'admin'),
34 'admin/logger/actions' => $this->make_hook('logger_actions', AUTH_MDP, 'admin'),
e7ae7df9 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'),
ccdbc270 39 'admin/mx/broken' => $this->make_hook('mx_broken', AUTH_MDP, 'admin'),
e7ae7df9 40 'admin/skins' => $this->make_hook('skins', AUTH_MDP, 'admin'),
41 'admin/synchro_ax' => $this->make_hook('synchro_ax', AUTH_MDP, 'admin'),
e7ae7df9 42 'admin/user' => $this->make_hook('user', AUTH_MDP, 'admin'),
1f53925a 43 'admin/promo' => $this->make_hook('promo', AUTH_MDP, 'admin'),
e7ae7df9 44 'admin/validate' => $this->make_hook('validate', AUTH_MDP, 'admin'),
e18888f4 45 'admin/validate/answers' => $this->make_hook('validate_answers', AUTH_MDP, 'admin'),
3aec1c21 46 'admin/wiki' => $this->make_hook('wiki', AUTH_MDP, 'admin'),
5480a216 47 'admin/ipwatch' => $this->make_hook('ipwatch', AUTH_MDP, 'admin'),
86f0a6af 48 );
49 }
50
5f9a40b4 51 function handler_phpinfo(&$page)
52 {
53 phpinfo();
54 exit;
55 }
56
86f0a6af 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
441e9e98 106 // {{{ logger view
86f0a6af 107
441e9e98 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
504ccd57 264 $res = XDB::iterator('SELECT a.text, e.data, e.stamp
441e9e98 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);
504ccd57 314 $select = "SELECT s.id, s.start, s.uid,
441e9e98 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 }
86f0a6af 344 }
345
8b1f8e12 346 $page->changeTpl('admin/logger-view.tpl');
86f0a6af 347
c4271d38 348 $page->assign('xorg_title','Polytechnique.org - Administration - Logs des sessions');
86f0a6af 349 }
350
f97f90f0 351 function handler_user(&$page, $login = false)
352 {
86f0a6af 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')) {
5c5554b7 363 $login = get_user_forlife(Env::i('user_id'));
f97f90f0 364 if (empty($login)) {
365 $login = Env::i('user_id');
366 }
86f0a6af 367 } elseif (Env::has('login')) {
5c5554b7 368 $login = get_user_forlife(Env::v('login'));
86f0a6af 369 }
370
371 if(Env::has('logs_button') && $login) {
24b5c84d 372 pl_redirect("admin/logger?loguser=$login&year=".date('Y')."&month=".date('m'));
86f0a6af 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) {
f97f90f0 390 if (is_numeric($login)) {
1517a52d 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
f97f90f0 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 {
1517a52d 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
f97f90f0 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 }
86f0a6af 402 $mr = $r->fetchOneAssoc();
403
f97f90f0 404 if (!is_numeric($login)) { //user has a forlife
405 $redirect = new Redirect($mr['user_id']);
406 }
86f0a6af 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)) {
f97f90f0 429 XDB::execute("DELETE FROM aliases
430 WHERE id={?} AND alias={?}
431 AND type!='a_vie' AND type!='homonyme'", $mr['user_id'], $val);
d91e720f 432 XDB::execute("UPDATE emails
433 SET rewrite = ''
434 WHERE uid = {?} AND rewrite LIKE CONCAT({?}, '@%')",
435 $mr['user_id'], $val);
86f0a6af 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');
34ffe99a 470 $deces = Env::v('decesN');
86f0a6af 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',
34ffe99a 480 deces = '$deces',
86f0a6af 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
1e33266a 492 $mailer = new PlMailer();
86f0a6af 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']) {
86f0a6af 502 set_new_usage($mr['user_id'], Env::v('nomusageN'), make_username(Env::v('prenomN'), Env::v('nomusageN')));
503 }
c53b5964 504 if (Env::v('decesN') != $mr['deces']) {
505 user_clear_all_subs($mr['user_id'], false);
506 }
f97f90f0 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']);
86f0a6af 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 !");
1e33266a 518 $mailer = new PlMailer();
86f0a6af 519 $mailer->setFrom("webmaster@polytechnique.org");
520 $mailer->addTo("web@polytechnique.org");
521 $mailer->setSubject("INTERVENTION de ".S::v('forlife'));
16cd99fb 522 $mailer->setTxtBody("\nUtilisateur $login désinscrit");
86f0a6af 523 $mailer->send();
524 break;
525 }
526 }
527
b7d19878 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']);
86f0a6af 533 list($lastlogin,$host) = $res->fetchOneRow();
534 $page->assign('lastlogin', $lastlogin);
535 $page->assign('host', $host);
536
5c5554b7 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
86f0a6af 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"]));
f97f90f0 550 if ($mr['perms'] != 'pending') {
551 $page->assign('emails',$redirect->emails);
552 }
86f0a6af 553
554 $page->assign('mr',$mr);
555 }
556 }
1f53925a 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
86f0a6af 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");
74c55fd6 610
86f0a6af 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 }
74c55fd6 621
86f0a6af 622 $page->assign('op',$op);
623 $page->assign('target',$target);
74c55fd6 624
86f0a6af 625 // on a un $target valide, on prepare les mails
626 if ($target) {
74c55fd6 627
86f0a6af 628 // on examine l'op a effectuer
629 switch ($op) {
630 case 'mail':
b7d19878 631 send_warning_homonyme($prenom, $nom, $forlife, $loginbis);
632 switch_bestalias($target, $loginbis);
86f0a6af 633 $op = 'list';
634 break;
635 case 'correct':
b7d19878 636 switch_bestalias($target, $loginbis);
86f0a6af 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);
b7d19878 639 send_robot_homonyme($prenom, $nom, $forlife, $loginbis);
86f0a6af 640 $op = 'list';
641 break;
642 }
643 }
74c55fd6 644
86f0a6af 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 }
74c55fd6 664
86f0a6af 665 function handler_ax_xorg(&$page) {
666 $page->changeTpl('admin/ax-xorg.tpl');
667 $page->assign('xorg_title','Polytechnique.org - Administration - AX/X.org');
74c55fd6 668
86f0a6af 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());
74c55fd6 679
86f0a6af 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());
74c55fd6 687
86f0a6af 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 }
74c55fd6 692
86f0a6af 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');
74c55fd6 696
86f0a6af 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;
74c55fd6 703
86f0a6af 704 $page->assign('promo',$promo);
74c55fd6 705
86f0a6af 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);
b7d19878 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 }
86f0a6af 720 }
721 $page->assign('new_deces',$new_deces);
722 }
74c55fd6 723
86f0a6af 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 }
74c55fd6 727
86f0a6af 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');
74c55fd6 731
86f0a6af 732 require_once('synchro_ax.inc.php');
74c55fd6 733
86f0a6af 734 if (is_ax_key_missing()) {
735 $page->assign('no_private_key', true);
736 $page->run();
737 }
74c55fd6 738
86f0a6af 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 }
74c55fd6 750
86f0a6af 751 if (Env::has('mat')) {
752 $res = XDB::query(
74c55fd6 753 "SELECT alias
86f0a6af 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 }
74c55fd6 759
86f0a6af 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');
74c55fd6 769
86f0a6af 770 $page->assign('x', $user);
771 $page->assign('diff', $diff);
772 }
773 }
74c55fd6 774
ed5b9703 775 function handler_validate(&$page, $action = 'list', $id = null) {
86f0a6af 776 $page->changeTpl('admin/valider.tpl');
777 $page->assign('xorg_title','Polytechnique.org - Administration - Valider une demande');
9fc2d0d2 778 $page->addCssLink('nl.css');
779 require_once("validations.inc.php");
74c55fd6 780
ed5b9703 781 if ($action == 'edit' and !is_null($id)) {
782 $page->assign('preview_id', $id);
783 }
784
86f0a6af 785 if(Env::has('uid') && Env::has('type') && Env::has('stamp')) {
20d7932b 786 $req = Validate::get_typed_request(Env::v('uid'), Env::v('type'), Env::v('stamp'));
86f0a6af 787 if($req) { $req->handle_formu(); }
788 }
74c55fd6 789
cfb96867 790 $r = XDB::iterator('SHOW COLUMNS FROM requests_answers');
791 while (($a = $r->next()) && $a['Field'] != 'category');
792 $page->assign('categories', $categories = explode(',', str_replace("'", '', substr($a['Type'], 5, -1))));
74c55fd6 793
cfb96867 794 $hidden = array();
795 if (Post::has('hide')) {
74c55fd6 796 $hide = array();
797 foreach ($categories as $cat)
cfb96867 798 if (!Post::v($cat)) {
799 $hidden[$cat] = 1;
800 $hide[] = $cat;
801 }
802 setcookie('hide_requests', join(',',$hide), time()+(count($hide)?25920000:(-3600)), '/', '', 0);
803 } elseif (Env::has('hide_requests')) {
804 foreach (explode(',',Env::v('hide_requests')) as $hide_type)
805 $hidden[$hide_type] = true;
806 }
807 $page->assign('hide_requests', $hidden);
74c55fd6 808
86f0a6af 809 $page->assign('vit', new ValidateIterator());
810 }
e18888f4 811 function handler_validate_answers(&$page, $action = 'list', $id = null) {
e18888f4 812 $page->assign('xorg_title','Polytechnique.org - Administration - Réponses automatiques de validation');
813 $page->assign('title', 'Gestion des réponses automatiques');
814 $table_editor = new PLTableEditor('admin/validate/answers','requests_answers','id');
815 $table_editor->describe('category','catégorie',true);
816 $table_editor->describe('title','titre',true);
817 $table_editor->describe('answer','texte',false);
818 $table_editor->apply($page, $action, $id);
819 }
e7ae7df9 820 function handler_skins(&$page, $action = 'list', $id = null) {
e7ae7df9 821 $page->assign('xorg_title','Polytechnique.org - Administration - Skins');
822 $page->assign('title', 'Gestion des skins');
823 $table_editor = new PLTableEditor('admin/skins','skins','id');
824 $table_editor->describe('name','nom',true);
825 $table_editor->describe('skin_tpl','nom du template',true);
826 $table_editor->describe('auteur','auteur',false);
827 $table_editor->describe('comment','commentaire',true);
828 $table_editor->describe('date','date',false);
829 $table_editor->describe('ext','extension du screenshot',false);
830 $table_editor->apply($page, $action, $id);
74c55fd6 831 }
e7ae7df9 832 function handler_postfix_blacklist(&$page, $action = 'list', $id = null) {
e7ae7df9 833 $page->assign('xorg_title','Polytechnique.org - Administration - Postfix : Blacklist');
834 $page->assign('title', 'Blacklist de postfix');
835 $table_editor = new PLTableEditor('admin/postfix/blacklist','postfix_blacklist','email', true);
836 $table_editor->describe('reject_text','Texte de rejet',true);
837 $table_editor->describe('email','email',true);
838 $table_editor->apply($page, $action, $id);
74c55fd6 839 }
e7ae7df9 840 function handler_postfix_whitelist(&$page, $action = 'list', $id = null) {
e7ae7df9 841 $page->assign('xorg_title','Polytechnique.org - Administration - Postfix : Whitelist');
842 $page->assign('title', 'Whitelist de postfix');
843 $table_editor = new PLTableEditor('admin/postfix/whitelist','postfix_whitelist','email', true);
844 $table_editor->describe('email','email',true);
845 $table_editor->apply($page, $action, $id);
74c55fd6 846 }
ccdbc270 847 function handler_mx_broken(&$page, $action = 'list', $id = null) {
848 $page->assign('xorg_title', 'Polytechnique.org - Administration - MX Défaillants');
849 $page->assign('title', 'MX Défaillant');
850 $table_editor = new PLTableEditor('admin/mx/broken', 'mx_watch', 'host', true);
851 $table_editor->describe('host', 'Masque', true);
852 $table_editor->describe('state', 'Niveau', true);
853 $table_editor->describe('text', 'Description du problème', false);
854 $table_editor->apply($page, $action, $id);
855 }
e7ae7df9 856 function handler_logger_actions(&$page, $action = 'list', $id = null) {
e7ae7df9 857 $page->assign('xorg_title','Polytechnique.org - Administration - Actions');
858 $page->assign('title', 'Gestion des actions de logger');
859 $table_editor = new PLTableEditor('admin/logger/actions','logger.actions','id');
860 $table_editor->describe('text','intitulé',true);
861 $table_editor->describe('description','description',true);
862 $table_editor->apply($page, $action, $id);
74c55fd6 863 }
e7ae7df9 864 function handler_downtime(&$page, $action = 'list', $id = null) {
e7ae7df9 865 $page->assign('xorg_title','Polytechnique.org - Administration - Coupures');
866 $page->assign('title', 'Gestion des coupures');
867 $table_editor = new PLTableEditor('admin/downtime','coupures','id');
868 $table_editor->describe('debut','date',true);
869 $table_editor->describe('duree','durée',false);
870 $table_editor->describe('resume','résumé',true);
871 $table_editor->describe('services','services affectés',true);
872 $table_editor->describe('description','description',false);
873 $table_editor->apply($page, $action, $id);
74c55fd6 874 }
bc0903c7 875
876 function handler_wiki(&$page, $action='list')
877 {
3aec1c21 878 require_once 'wiki.inc.php';
74c55fd6 879
3aec1c21 880 // update wiki perms
881 if ($action == 'update') {
882 $perms_read = Post::v('read');
883 $perms_edot = Post::v('edit');
884 if ($perms_read || $perms_edit) {
885 foreach ($_POST as $wiki_page => $val) if ($val == 'on') {
886 $wiki_page = str_replace('_', '/', $wiki_page);
887 if (!$perms_read || !$perms_edit)
74c55fd6 888 list($perms0, $perms1) = wiki_get_perms($wiki_page);
3aec1c21 889 if ($perms_read)
890 $perms0 = $perms_read;
891 if ($perms_edit)
892 $perms1 = $perms_edit;
893 wiki_set_perms($wiki_page, $perms0, $perms1);
894 }
895 }
896 }
74c55fd6 897
3aec1c21 898 $perms = wiki_perms_options();
74c55fd6 899
3aec1c21 900 // list wiki pages and their perms
901 $wiki_pages = array();
902 $dir = wiki_work_dir();
903 if (is_dir($dir)) {
904 if ($dh = opendir($dir)) {
905 while (($file = readdir($dh)) !== false) if (substr($file,0,1) >= 'A' && substr($file,0,1) <= 'Z') {
906 list($read,$edit) = wiki_get_perms($file);
907 $wiki_pages[$file] = array('read' => $perms[$read], 'edit' => $perms[$edit]);
4694ce89 908 if (is_file($dir . '/cache_' . wiki_filename($file) . '.tpl')) {
909 $wiki_pages[$file]['cached'] = true;
910 }
3aec1c21 911 }
912 closedir($dh);
913 }
914 }
915 ksort($wiki_pages);
bc0903c7 916 $wiki_tree = array();
917 foreach ($wiki_pages as $file => $desc) {
918 list($cat, $name) = explode('.', $file);
919 if (!isset($wiki_tree[$cat])) {
920 $wiki_tree[$cat] = array();
921 }
922 $wiki_tree[$cat][$name] = $desc;
923 }
924
925
74c55fd6 926
3aec1c21 927 $page->changeTpl('admin/wiki.tpl');
bc0903c7 928 $page->assign('wiki_pages', $wiki_tree);
3aec1c21 929 $page->assign('perms_opts', $perms);
930 }
5480a216 931
932 function handler_ipwatch(&$page, $action = 'list', $ip = null)
933 {
934 $page->changeTpl('admin/ipwatcher.tpl');
935
936 $states = array('safe' => 'Ne pas surveiller',
937 'unsafe' => 'Surveiller les inscription',
938 'dangerous' => 'Surveiller tous les accès',
939 'ban' => 'Bannir cette adresse');
940 $page->assign('states', $states);
941
942 switch (Post::v('action')) {
943 case 'create':
944 if (trim(Post::v('ipN')) != '') {
945 Xdb::execute('INSERT IGNORE INTO ip_watch (ip, state, detection, last, uid, description)
946 VALUES ({?}, {?}, CURDATE(), NOW(), {?}, {?})',
947 trim(Post::v('ipN')), Post::v('stateN'), S::i('uid'), Post::v('descriptionN'));
948 };
949 break;
950
951 case 'edit':
952 Xdb::execute('UPDATE ip_watch
953 SET state = {?}, last = NOW(), uid = {?}, description = {?}
954 WHERE ip = {?}', Post::v('stateN'), S::i('uid'), Post::v('descriptionN'), Post::v('ipN'));
955 break;
956
957 default:
958 if ($action == 'delete' && !is_null($ip)) {
959 Xdb::execute('DELETE FROM emails_watch WHERE ip = {?}', $ip);
960 }
961 }
962 if ($action != 'create' && $action != 'edit') {
963 $action = 'list';
964 }
965 $page->assign('action', $action);
966
967 if ($action == 'list') {
e76421d8 968 $sql = "SELECT w.ip, IF(w.ip = s.ip, s.host, s.forward_host), w.detection, w.state, a.alias AS forlife
5480a216 969 FROM ip_watch AS w
e76421d8 970 LEFT JOIN logger.sessions AS s ON (s.ip = w.ip OR s.forward_ip = w.ip)
5480a216 971 LEFT JOIN aliases AS a ON (a.id = s.uid AND a.type = 'a_vie')
972 GROUP BY w.ip, a.alias
973 ORDER BY w.state, w.ip, a.alias";
974 $it = Xdb::iterRow($sql);
975
976 $table = array();
977 $props = array();
978 while (list($ip, $host, $date, $state, $forlife) = $it->next()) {
979 if (count($props) == 0 || $props['ip'] != $ip) {
980 if (count($props) > 0) {
981 $table[] = $props;
982 }
983 $props = array('ip' => $ip,
984 'host' => $host,
985 'detection' => $date,
986 'state' => $state,
987 'users' => array($forlife));
988 } else {
989 $props['users'][] = $forlife;
990 }
991 }
992 if (count($props) > 0) {
993 $table[] = $props;
994 }
995 $page->assign('table', $table);
996 } elseif ($action == 'edit') {
997 $sql = "SELECT w.detection, w.state, w.last, w.description,
998 a1.alias AS edit, a2.alias AS forlife, s.host
999 FROM ip_watch AS w
1000 LEFT JOIN aliases AS a1 ON (a1.id = w.uid AND a1.type = 'a_vie')
1001 LEFT JOIN logger.sessions AS s ON (w.ip = s.ip)
1002 LEFT JOIN aliases AS a2 ON (a2.id = s.uid AND a2.type = 'a_vie')
1003 WHERE w.ip = {?}
1004 GROUP BY a2.alias
1005 ORDER BY a2.alias";
1006 $it = Xdb::iterRow($sql, $ip);
1007
1008 $props = array();
1009 while (list($detection, $state, $last, $description, $edit, $forlife, $host) = $it->next()) {
1010 if (count($props) == 0) {
1011 $props = array('ip' => $ip,
1012 'host' => $host,
1013 'detection' => $detection,
1014 'state' => $state,
1015 'last' => $last,
1016 'description' => $description,
1017 'edit' => $edit,
1018 'users' => array($forlife));
1019 } else {
1020 $props['users'][] = $forlife;
1021 }
1022 }
1023 $page->assign('ip', $props);
1024 }
1025 }
86f0a6af 1026}
1027
1028?>