Table editor integrates CSVImporter and minor code cleaning
[platal.git] / modules / admin.php
CommitLineData
86f0a6af 1<?php
2/***************************************************************************
3 * Copyright (C) 2003-2006 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
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'),
39 'admin/skins' => $this->make_hook('skins', AUTH_MDP, 'admin'),
40 'admin/synchro_ax' => $this->make_hook('synchro_ax', AUTH_MDP, 'admin'),
e7ae7df9 41 'admin/user' => $this->make_hook('user', AUTH_MDP, 'admin'),
42 'admin/validate' => $this->make_hook('validate', AUTH_MDP, 'admin'),
e18888f4 43 'admin/validate/answers' => $this->make_hook('validate_answers', AUTH_MDP, 'admin'),
3aec1c21 44 'admin/wiki' => $this->make_hook('wiki', AUTH_MDP, 'admin'),
86f0a6af 45 );
46 }
47
5f9a40b4 48 function handler_phpinfo(&$page)
49 {
50 phpinfo();
51 exit;
52 }
53
86f0a6af 54 function handler_default(&$page)
55 {
56 $page->changeTpl('admin/index.tpl');
57 $page->assign('xorg_title','Polytechnique.org - Administration');
58 }
59
60 function handler_postfix_delayed(&$page)
61 {
62 $page->changeTpl('admin/postfix_delayed.tpl');
63 $page->assign('xorg_title','Polytechnique.org - Administration - Postfix : Retardés');
64
65 if (Env::has('del')) {
66 $crc = Env::v('crc');
67 XDB::execute("UPDATE postfix_mailseen SET release = 'del' WHERE crc = {?}", $crc);
68 $page->trig($crc." verra tous ses mails supprimés !");
69 } elseif (Env::has('ok')) {
70 $crc = Env::v('crc');
71 XDB::execute("UPDATE postfix_mailseen SET release = 'ok' WHERE crc = {?}", $crc);
72 $page->trig($crc." a le droit de passer !");
73 }
74
75 $sql = XDB::iterator(
76 "SELECT crc, nb, update_time, create_time,
77 FIND_IN_SET('del', release) AS del,
78 FIND_IN_SET('ok', release) AS ok
79 FROM postfix_mailseen
80 WHERE nb >= 30
81 ORDER BY release != ''");
82
83 $page->assign_by_ref('mails', $sql);
84 }
85
86 function handler_postfix_regexpsbounces(&$page, $new = null) {
87 $page->changeTpl('admin/emails_bounces_re.tpl');
88 $page->assign('xorg_title','Polytechnique.org - Administration - Postfix : Regexps Bounces');
89 $page->assign('new', $new);
90
91 if (Post::has('submit')) {
92 foreach (Env::v('lvl') as $id=>$val) {
93 XDB::query(
94 "REPLACE INTO emails_bounces_re (id,pos,lvl,re,text) VALUES ({?}, {?}, {?}, {?}, {?})",
95 $id, $_POST['pos'][$id], $_POST['lvl'][$id], $_POST['re'][$id], $_POST['text'][$id]
96 );
97 }
98 }
99
100 $page->assign('bre', XDB::iterator("SELECT * FROM emails_bounces_re ORDER BY pos"));
101 }
102
441e9e98 103 // {{{ logger view
86f0a6af 104
441e9e98 105 /** Retrieves the available days for a given year and month.
106 * Obtain a list of days of the given month in the given year
107 * that are within the range of dates that we have log entries for.
108 *
109 * @param integer year
110 * @param integer month
111 * @return array days in that month we have log entries covering.
112 * @private
113 */
114 function _getDays($year, $month)
115 {
116 // give a 'no filter' option
117 $months[0] = "----";
118
119 if ($year && $month) {
120 $day_max = Array(-1, 31, checkdate(2, 29, $year) ? 29 : 28 , 31,
121 30, 31, 30, 31, 31, 30, 31, 30, 31);
122 $res = XDB::query("SELECT YEAR (MAX(start)), YEAR (MIN(start)),
123 MONTH(MAX(start)), MONTH(MIN(start)),
124 DAYOFMONTH(MAX(start)),
125 DAYOFMONTH(MIN(start))
126 FROM logger.sessions");
127 list($ymax, $ymin, $mmax, $mmin, $dmax, $dmin) = $res->fetchOneRow();
128
129 if (($year < $ymin) || ($year == $ymin && $month < $mmin)) {
130 return array();
131 }
132
133 if (($year > $ymax) || ($year == $ymax && $month > $mmax)) {
134 return array();
135 }
136
137 $min = ($year==$ymin && $month==$mmin) ? intval($dmin) : 1;
138 $max = ($year==$ymax && $month==$mmax) ? intval($dmax) : $day_max[$month];
139
140 for($i = $min; $i<=$max; $i++) {
141 $days[$i] = $i;
142 }
143 }
144 return $days;
145 }
146
147
148 /** Retrieves the available months for a given year.
149 * Obtains a list of month numbers that are within the timeframe that
150 * we have log entries for.
151 *
152 * @param integer year
153 * @return array List of month numbers we have log info for.
154 * @private
155 */
156 function _getMonths($year)
157 {
158 // give a 'no filter' option
159 $months[0] = "----";
160
161 if ($year) {
162 $res = XDB::query("SELECT YEAR (MAX(start)), YEAR (MIN(start)),
163 MONTH(MAX(start)), MONTH(MIN(start))
164 FROM logger.sessions");
165 list($ymax, $ymin, $mmax, $mmin) = $res->fetchOneRow();
166
167 if (($year < $ymin) || ($year > $ymax)) {
168 return array();
169 }
170
171 $min = $year == $ymin ? intval($mmin) : 1;
172 $max = $year == $ymax ? intval($mmax) : 12;
173
174 for($i = $min; $i<=$max; $i++) {
175 $months[$i] = $i;
176 }
177 }
178 return $months;
179 }
180
181
182 /** Retrieves the available years.
183 * Obtains a list of years that we have log entries covering.
184 *
185 * @return array years we have log entries for.
186 * @private
187 */
188 function _getYears()
189 {
190 // give a 'no filter' option
191 $years[0] = "----";
192
193 // retrieve available years
194 $res = XDB::query("select YEAR(MAX(start)), YEAR(MIN(start)) FROM logger.sessions");
195 list($max, $min) = $res->fetchOneRow();
196
197 for($i = intval($min); $i<=$max; $i++) {
198 $years[$i] = $i;
199 }
200 return $years;
201 }
202
203
204 /** Make a where clause to get a user's sessions.
205 * Prepare the where clause request that will retrieve the sessions.
206 *
207 * @param $year INTEGER Only get log entries made during the given year.
208 * @param $month INTEGER Only get log entries made during the given month.
209 * @param $day INTEGER Only get log entries made during the given day.
210 * @param $uid INTEGER Only get log entries referring to the given user ID.
211 *
212 * @return STRING the WHERE clause of a query, including the 'WHERE' keyword
213 * @private
214 */
215 function _makeWhere($year, $month, $day, $uid)
216 {
217 // start constructing the "where" clause
218 $where = array();
219
220 if ($uid)
221 array_push($where, "uid='$uid'");
222
223 // we were given at least a year
224 if ($year) {
225 if ($day) {
226 $dmin = mktime(0, 0, 0, $month, $day, $year);
227 $dmax = mktime(0, 0, 0, $month, $day+1, $year);
228 } elseif ($month) {
229 $dmin = mktime(0, 0, 0, $month, 1, $year);
230 $dmax = mktime(0, 0, 0, $month+1, 1, $year);
231 } else {
232 $dmin = mktime(0, 0, 0, 1, 1, $year);
233 $dmax = mktime(0, 0, 0, 1, 1, $year+1);
234 }
235 $where[] = "start >= " . date("Ymd000000", $dmin);
236 $where[] = "start < " . date("Ymd000000", $dmax);
237 }
238
239 if (!empty($where)) {
240 return ' WHERE ' . implode($where, " AND ");
241 } else {
242 return '';
243 }
244 // WE know it's totally reversed, so better use array_reverse than a SORT BY start DESC
245 }
246
247 // }}}
248
249 function handler_logger(&$page, $action = null, $arg = null) {
250 if ($action == 'session') {
251
252 // we are viewing a session
253 $res = XDB::query("SELECT ls.*, a.alias AS username, sa.alias AS suer
254 FROM logger.sessions AS ls
255 LEFT JOIN aliases AS a ON (a.id = ls.uid AND a.type='a_vie')
256 LEFT JOIN aliases AS sa ON (sa.id = ls.suid AND sa.type='a_vie')
257 WHERE ls.id = {?}", $arg);
258
259 $page->assign('session', $a = $res->fetchOneAssoc());
260
504ccd57 261 $res = XDB::iterator('SELECT a.text, e.data, e.stamp
441e9e98 262 FROM logger.events AS e
263 LEFT JOIN logger.actions AS a ON e.action=a.id
264 WHERE e.session={?}', $arg);
265 while ($myarr = $res->next()) {
266 $page->append('events', $myarr);
267 }
268
269 } else {
270 $loguser = $action == 'user' ? $arg : Env::v('loguser');
271
272 $res = XDB::query('SELECT id FROM aliases WHERE alias={?}',
273 $loguser);
274 $loguid = $res->fetchOneCell();
275
276 if ($loguid) {
277 $year = Env::i('year');
278 $month = Env::i('month');
279 $day = Env::i('day');
280 } else {
281 $year = Env::i('year', intval(date('Y')));
282 $month = Env::i('month', intval(date('m')));
283 $day = Env::i('day', intval(date('d')));
284 }
285
286 if (!$year)
287 $month = 0;
288 if (!$month)
289 $day = 0;
290
291 // smarty assignments
292 // retrieve available years
293 $page->assign('years', $this->_getYears());
294 $page->assign('year', $year);
295
296 // retrieve available months for the current year
297 $page->assign('months', $this->_getMonths($year));
298 $page->assign('month', $month);
299
300 // retrieve available days for the current year and month
301 $page->assign('days', $this->_getDays($year, $month));
302 $page->assign('day', $day);
303
304 $page->assign('loguser', $loguser);
305 // smarty assignments
306
307 if ($loguid || $year) {
308
309 // get the requested sessions
310 $where = $this->_makeWhere($year, $month, $day, $loguid);
504ccd57 311 $select = "SELECT s.id, s.start, s.uid,
441e9e98 312 a.alias as username
313 FROM logger.sessions AS s
314 LEFT JOIN aliases AS a ON (a.id = s.uid AND a.type='a_vie')
315 $where
316 ORDER BY start DESC";
317 $res = XDB::iterator($select);
318
319 $sessions = array();
320 while ($mysess = $res->next()) {
321 $mysess['events'] = array();
322 $sessions[$mysess['id']] = $mysess;
323 }
324 array_reverse($sessions);
325
326 // attach events
327 $sql = "SELECT s.id, a.text
328 FROM logger.sessions AS s
329 LEFT JOIN logger.events AS e ON(e.session=s.id)
330 INNER JOIN logger.actions AS a ON(a.id=e.action)
331 $where";
332
333 $res = XDB::iterator($sql);
334 while ($event = $res->next()) {
335 array_push($sessions[$event['id']]['events'], $event['text']);
336 }
337 $page->assign_by_ref('sessions', $sessions);
338 } else {
339 $page->assign('msg_nofilters', "Sélectionner une annuée et/ou un utilisateur");
340 }
86f0a6af 341 }
342
441e9e98 343 $page->changeTpl('logger-view.tpl');
86f0a6af 344
c4271d38 345 $page->assign('xorg_title','Polytechnique.org - Administration - Logs des sessions');
86f0a6af 346 }
347
f97f90f0 348 function handler_user(&$page, $login = false)
349 {
86f0a6af 350 $page->changeTpl('admin/utilisateurs.tpl');
351 $page->assign('xorg_title','Polytechnique.org - Administration - Edit/Su/Log');
352 require_once("emails.inc.php");
353 require_once("user.func.inc.php");
354
355 if (S::has('suid')) {
356 $page->kill("déjà en SUID !!!");
357 }
358
359 if (Env::has('user_id')) {
5c5554b7 360 $login = get_user_forlife(Env::i('user_id'));
f97f90f0 361 if (empty($login)) {
362 $login = Env::i('user_id');
363 }
86f0a6af 364 } elseif (Env::has('login')) {
5c5554b7 365 $login = get_user_forlife(Env::v('login'));
86f0a6af 366 }
367
368 if(Env::has('logs_button') && $login) {
24b5c84d 369 pl_redirect("admin/logger?loguser=$login&year=".date('Y')."&month=".date('m'));
86f0a6af 370 }
371
372 if (Env::has('ax_button') && $login) {
373 pl_redirect("admin/synchro_ax/$login");
374 }
375
376 if(Env::has('suid_button') && $login) {
377 $_SESSION['log']->log("suid_start", "login by ".S::v('forlife'));
378 $_SESSION['suid'] = $_SESSION;
379 $r = XDB::query("SELECT id FROM aliases WHERE alias={?}", $login);
380 if($uid = $r->fetchOneCell()) {
381 start_connexion($uid,true);
382 pl_redirect("");
383 }
384 }
385
386 if ($login) {
f97f90f0 387 if (is_numeric($login)) {
1517a52d 388 $r = XDB::query("SELECT *, a.alias AS forlife, u.flags AS sexe,
389 (year(naissance) > promo - 15 or year(naissance) < promo - 25) AS naiss_err
f97f90f0 390 FROM auth_user_md5 AS u
391 LEFT JOIN aliases AS a ON (a.id = u.user_id AND type= 'a_vie')
392 WHERE u.user_id = {?}", $login);
393 } else {
1517a52d 394 $r = XDB::query("SELECT *, a.alias AS forlife, u.flags AS sexe,
395 (year(naissance) > promo - 15 or year(naissance) < promo - 25) AS naiss_err
f97f90f0 396 FROM auth_user_md5 AS u
397 INNER JOIN aliases AS a ON ( a.id = u.user_id AND a.alias={?} AND type!='homonyme' )", $login);
398 }
86f0a6af 399 $mr = $r->fetchOneAssoc();
400
f97f90f0 401 if (!is_numeric($login)) { //user has a forlife
402 $redirect = new Redirect($mr['user_id']);
403 }
86f0a6af 404
405 // Check if there was a submission
406 foreach($_POST as $key => $val) {
407 switch ($key) {
408 case "add_fwd":
409 $email = trim(Env::v('email'));
410 if (!isvalid_email_redirection($email)) {
411 $page->trig("invalid email $email");
412 } else {
413 $redirect->add_email($email);
414 $page->trig("Ajout de $email effectué");
415 }
416 break;
417
418 case "del_fwd":
419 if (!empty($val)) {
420 $redirect->delete_email($val);
421 }
422 break;
423
424 case "del_alias":
425 if (!empty($val)) {
f97f90f0 426 XDB::execute("DELETE FROM aliases
427 WHERE id={?} AND alias={?}
428 AND type!='a_vie' AND type!='homonyme'", $mr['user_id'], $val);
d91e720f 429 XDB::execute("UPDATE emails
430 SET rewrite = ''
431 WHERE uid = {?} AND rewrite LIKE CONCAT({?}, '@%')",
432 $mr['user_id'], $val);
86f0a6af 433 fix_bestalias($mr['user_id']);
434 $page->trig($val." a été supprimé");
435 }
436 break;
437 case "activate_fwd":
438 if (!empty($val)) {
439 $redirect->modify_one_email($val, true);
440 }
441 break;
442 case "deactivate_fwd":
443 if (!empty($val)) {
444 $redirect->modify_one_email($val, false);
445 }
446 break;
447 case "add_alias":
448 XDB::execute("INSERT INTO aliases (id,alias,type) VALUES ({?}, {?}, 'alias')",
449 $mr['user_id'], Env::v('email'));
450 break;
451
452 case "best":
453 // 'bestalias' is the first bit of the set : 1
454 // 255 is the max for flags (8 sets max)
455 XDB::execute("UPDATE aliases SET flags= flags & (255 - 1) WHERE id={?}", $mr['user_id']);
456 XDB::execute("UPDATE aliases
457 SET flags= flags | 1
458 WHERE id={?} AND alias={?}", $mr['user_id'], $val);
459 break;
460
461
462 // Editer un profil
463 case "u_edit":
464 require_once('secure_hash.inc.php');
465 $pass_encrypted = Env::v('newpass_clair') != "********" ? hash_encrypt(Env::v('newpass_clair')) : Env::v('passw');
466 $naiss = Env::v('naissanceN');
34ffe99a 467 $deces = Env::v('decesN');
86f0a6af 468 $perms = Env::v('permsN');
469 $prenm = Env::v('prenomN');
470 $nom = Env::v('nomN');
471 $promo = Env::i('promoN');
472 $sexe = Env::v('sexeN');
473 $comm = Env::v('commentN');
474
475 $query = "UPDATE auth_user_md5 SET
476 naissance = '$naiss',
34ffe99a 477 deces = '$deces',
86f0a6af 478 password = '$pass_encrypted',
479 perms = '$perms',
480 prenom = '".addslashes($prenm)."',
481 nom = '".addslashes($nom)."',
482 flags = '$sexe',
483 promo = $promo,
484 comment = '".addslashes($comm)."'
485 WHERE user_id = '{$mr['user_id']}'";
486 if (XDB::execute($query)) {
487 user_reindex($mr['user_id']);
488
1e33266a 489 $mailer = new PlMailer();
86f0a6af 490 $mailer->setFrom("webmaster@polytechnique.org");
491 $mailer->addTo("web@polytechnique.org");
492 $mailer->setSubject("INTERVENTION de ".S::v('forlife'));
493 $mailer->setTxtBody(preg_replace("/[ \t]+/", ' ', $query));
494 $mailer->send();
495
496 $page->trig("updaté correctement.");
497 }
498 if (Env::v('nomusageN') != $mr['nom_usage']) {
86f0a6af 499 set_new_usage($mr['user_id'], Env::v('nomusageN'), make_username(Env::v('prenomN'), Env::v('nomusageN')));
500 }
c53b5964 501 if (Env::v('decesN') != $mr['deces']) {
502 user_clear_all_subs($mr['user_id'], false);
503 }
f97f90f0 504 $r = XDB::query("SELECT *, a.alias AS forlife, u.flags AS sexe
505 FROM auth_user_md5 AS u
506 LEFT JOIN aliases AS a ON (a.id = u.user_id AND type= 'a_vie')
507 WHERE u.user_id = {?}", $mr['user_id']);
86f0a6af 508 $mr = $r->fetchOneAssoc();
509 break;
510
511 // DELETE FROM auth_user_md5
512 case "u_kill":
513 user_clear_all_subs($mr['user_id']);
514 $page->trig("'{$mr['user_id']}' a été désinscrit !");
1e33266a 515 $mailer = new PlMailer();
86f0a6af 516 $mailer->setFrom("webmaster@polytechnique.org");
517 $mailer->addTo("web@polytechnique.org");
518 $mailer->setSubject("INTERVENTION de ".S::v('forlife'));
519 $mailer->setTxtBody("\nUtilisateur $login effacé");
520 $mailer->send();
521 break;
522 }
523 }
524
b7d19878 525 $res = XDB::query("SELECT start, host
526 FROM logger.sessions
527 WHERE uid={?} AND suid=0
528 ORDER BY start DESC
529 LIMIT 1", $mr['user_id']);
86f0a6af 530 list($lastlogin,$host) = $res->fetchOneRow();
531 $page->assign('lastlogin', $lastlogin);
532 $page->assign('host', $host);
533
5c5554b7 534 $res = XDB::query("SELECT alias
535 FROM virtual
536 INNER JOIN virtual_redirect USING(vid)
537 WHERE type = 'user' AND redirect LIKE '" . $login . "@%'");
538 if ($res->numRows()) {
539 $page->assign('virtual', $res->fetchOneCell());
540 }
541
86f0a6af 542 $page->assign('aliases', XDB::iterator(
543 "SELECT alias, type='a_vie' AS for_life,FIND_IN_SET('bestalias',flags) AS best,expire
544 FROM aliases
545 WHERE id = {?} AND type!='homonyme'
546 ORDER BY type!= 'a_vie'", $mr["user_id"]));
f97f90f0 547 if ($mr['perms'] != 'pending') {
548 $page->assign('emails',$redirect->emails);
549 }
86f0a6af 550
551 $page->assign('mr',$mr);
552 }
553 }
554 function handler_homonyms(&$page, $op = 'list', $target = null) {
555 $page->changeTpl('admin/homonymes.tpl');
556 $page->assign('xorg_title','Polytechnique.org - Administration - Homonymes');
557 require_once("homonymes.inc.php");
74c55fd6 558
86f0a6af 559 if ($target) {
560 if (! list($prenom,$nom,$forlife,$loginbis) = select_if_homonyme($target)) {
561 $target=0;
562 } else {
563 $page->assign('nom',$nom);
564 $page->assign('prenom',$prenom);
565 $page->assign('forlife',$forlife);
566 $page->assign('loginbis',$loginbis);
567 }
568 }
74c55fd6 569
86f0a6af 570 $page->assign('op',$op);
571 $page->assign('target',$target);
74c55fd6 572
86f0a6af 573 // on a un $target valide, on prepare les mails
574 if ($target) {
74c55fd6 575
86f0a6af 576 // on examine l'op a effectuer
577 switch ($op) {
578 case 'mail':
b7d19878 579 send_warning_homonyme($prenom, $nom, $forlife, $loginbis);
580 switch_bestalias($target, $loginbis);
86f0a6af 581 $op = 'list';
582 break;
583 case 'correct':
b7d19878 584 switch_bestalias($target, $loginbis);
86f0a6af 585 XDB::execute("UPDATE aliases SET type='homonyme',expire=NOW() WHERE alias={?}", $loginbis);
586 XDB::execute("REPLACE INTO homonymes (homonyme_id,user_id) VALUES({?},{?})", $target, $target);
b7d19878 587 send_robot_homonyme($prenom, $nom, $forlife, $loginbis);
86f0a6af 588 $op = 'list';
589 break;
590 }
591 }
74c55fd6 592
86f0a6af 593 if ($op == 'list') {
594 $res = XDB::iterator(
595 "SELECT a.alias AS homonyme,s.id AS user_id,s.alias AS forlife,
596 promo,prenom,nom,
597 IF(h.homonyme_id=s.id, a.expire, NULL) AS expire,
598 IF(h.homonyme_id=s.id, a.type, NULL) AS type
599 FROM aliases AS a
600 LEFT JOIN homonymes AS h ON (h.homonyme_id = a.id)
601 INNER JOIN aliases AS s ON (s.id = h.user_id AND s.type='a_vie')
602 INNER JOIN auth_user_md5 AS u ON (s.id=u.user_id)
603 WHERE a.type='homonyme' OR a.expire!=''
604 ORDER BY a.alias,promo");
605 $hnymes = Array();
606 while ($tab = $res->next()) {
607 $hnymes[$tab['homonyme']][] = $tab;
608 }
609 $page->assign_by_ref('hnymes',$hnymes);
610 }
611 }
74c55fd6 612
86f0a6af 613 function handler_ax_xorg(&$page) {
614 $page->changeTpl('admin/ax-xorg.tpl');
615 $page->assign('xorg_title','Polytechnique.org - Administration - AX/X.org');
74c55fd6 616
86f0a6af 617 // liste des différences
618 $res = XDB::query(
619 '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
620 FROM auth_user_md5 AS u
621 INNER JOIN identification_ax AS ia ON u.matricule_ax = ia.matricule_ax
622 WHERE (SOUNDEX(u.nom) != SOUNDEX(ia.nom) AND SOUNDEX(CONCAT(ia.particule,u.nom)) != SOUNDEX(ia.nom)
623 AND SOUNDEX(u.nom) != SOUNDEX(ia.nom_patro) AND SOUNDEX(CONCAT(ia.particule,u.nom)) != SOUNDEX(ia.nom_patro))
624 OR u.prenom != ia.prenom OR (u.promo != ia.promo AND u.promo != ia.promo+1 AND u.promo != ia.promo-1)
625 ORDER BY u.promo,u.nom,u.prenom');
626 $page->assign('diffs', $res->fetchAllAssoc());
74c55fd6 627
86f0a6af 628 // gens à l'ax mais pas chez nous
629 $res = XDB::query(
630 'SELECT ia.promo,ia.nom,ia.nom_patro,ia.prenom
631 FROM identification_ax as ia
632 LEFT JOIN auth_user_md5 AS u ON u.matricule_ax = ia.matricule_ax
633 WHERE u.nom IS NULL');
634 $page->assign('mank', $res->fetchAllAssoc());
74c55fd6 635
86f0a6af 636 // gens chez nous et pas à l'ax
637 $res = XDB::query('SELECT promo,nom,prenom FROM auth_user_md5 WHERE matricule_ax IS NULL');
638 $page->assign('plus', $res->fetchAllAssoc());
639 }
74c55fd6 640
86f0a6af 641 function handler_deaths(&$page, $promo = 0, $validate = false) {
642 $page->changeTpl('admin/deces_promo.tpl');
643 $page->assign('xorg_title','Polytechnique.org - Administration - Deces');
74c55fd6 644
86f0a6af 645 if (!$promo)
646 $promo = Env::i('promo');
647 if (Env::has('sub10')) $promo -= 10;
648 if (Env::has('sub01')) $promo -= 1;
649 if (Env::has('add01')) $promo += 1;
650 if (Env::has('add10')) $promo += 10;
74c55fd6 651
86f0a6af 652 $page->assign('promo',$promo);
74c55fd6 653
86f0a6af 654 if ($validate) {
655 $new_deces = array();
656 $res = XDB::iterRow("SELECT user_id,matricule,nom,prenom,deces FROM auth_user_md5 WHERE promo = {?}", $promo);
657 while (list($uid,$mat,$nom,$prenom,$deces) = $res->next()) {
658 $val = Env::v($mat);
b7d19878 659 if($val == $deces || empty($val)) continue;
660 XDB::execute('UPDATE auth_user_md5 SET deces={?} WHERE matricule = {?}', $val, $mat);
661 $new_deces[] = array('name' => "$prenom $nom", 'date' => "$val");
662 if($deces=='0000-00-00' or empty($deces)) {
663 require_once('notifs.inc.php');
664 register_watch_op($uid, WATCH_DEATH, $val);
665 require_once('user.func.inc.php');
666 user_clear_all_subs($uid, false); // by default, dead ppl do not loose their email
667 }
86f0a6af 668 }
669 $page->assign('new_deces',$new_deces);
670 }
74c55fd6 671
86f0a6af 672 $res = XDB::iterator('SELECT matricule, nom, prenom, deces FROM auth_user_md5 WHERE promo = {?} ORDER BY nom,prenom', $promo);
673 $page->assign('decedes', $res);
674 }
74c55fd6 675
86f0a6af 676 function handler_synchro_ax(&$page, $user = null, $action = null) {
677 $page->changeTpl('admin/synchro_ax.tpl');
678 $page->assign('xorg_title','Polytechnique.org - Administration - Synchro AX');
74c55fd6 679
86f0a6af 680 require_once('synchro_ax.inc.php');
74c55fd6 681
86f0a6af 682 if (is_ax_key_missing()) {
683 $page->assign('no_private_key', true);
684 $page->run();
685 }
74c55fd6 686
86f0a6af 687 require_once('user.func.inc.php');
688
689 if ($user)
690 $login = get_user_forlife($user);
691
692 if (Env::has('user')) {
693 $login = get_user_forlife(Env::v('user'));
694 if ($login === false) {
695 return;
696 }
697 }
74c55fd6 698
86f0a6af 699 if (Env::has('mat')) {
700 $res = XDB::query(
74c55fd6 701 "SELECT alias
86f0a6af 702 FROM aliases AS a
703 INNER JOIN auth_user_md5 AS u ON (a.id=u.user_id AND a.type='a_vie')
704 WHERE matricule={?}", Env::i('mat'));
705 $login = $res->fetchOneCell();
706 }
74c55fd6 707
86f0a6af 708 if ($login) {
709 if ($action == 'import') {
710 ax_synchronize($login, S::v('uid'));
711 }
712 // get details from user, but looking only info that can be seen by ax
713 $user = get_user_details($login, S::v('uid'), 'ax');
714 $userax= get_user_ax($user['matricule_ax']);
715 require_once 'profil.func.inc.php';
716 $diff = diff_user_details($userax, $user, 'ax');
74c55fd6 717
86f0a6af 718 $page->assign('x', $user);
719 $page->assign('diff', $diff);
720 }
721 }
74c55fd6 722
ed5b9703 723 function handler_validate(&$page, $action = 'list', $id = null) {
86f0a6af 724 $page->changeTpl('admin/valider.tpl');
725 $page->assign('xorg_title','Polytechnique.org - Administration - Valider une demande');
726 require_once("validations.inc.php");
74c55fd6 727
ed5b9703 728 if ($action == 'edit' and !is_null($id)) {
729 $page->assign('preview_id', $id);
730 }
731
86f0a6af 732 if(Env::has('uid') && Env::has('type') && Env::has('stamp')) {
20d7932b 733 $req = Validate::get_typed_request(Env::v('uid'), Env::v('type'), Env::v('stamp'));
86f0a6af 734 if($req) { $req->handle_formu(); }
735 }
74c55fd6 736
cfb96867 737 $r = XDB::iterator('SHOW COLUMNS FROM requests_answers');
738 while (($a = $r->next()) && $a['Field'] != 'category');
739 $page->assign('categories', $categories = explode(',', str_replace("'", '', substr($a['Type'], 5, -1))));
74c55fd6 740
cfb96867 741 $hidden = array();
742 if (Post::has('hide')) {
74c55fd6 743 $hide = array();
744 foreach ($categories as $cat)
cfb96867 745 if (!Post::v($cat)) {
746 $hidden[$cat] = 1;
747 $hide[] = $cat;
748 }
749 setcookie('hide_requests', join(',',$hide), time()+(count($hide)?25920000:(-3600)), '/', '', 0);
750 } elseif (Env::has('hide_requests')) {
751 foreach (explode(',',Env::v('hide_requests')) as $hide_type)
752 $hidden[$hide_type] = true;
753 }
754 $page->assign('hide_requests', $hidden);
74c55fd6 755
86f0a6af 756 $page->assign('vit', new ValidateIterator());
757 }
e18888f4 758 function handler_validate_answers(&$page, $action = 'list', $id = null) {
e18888f4 759 $page->assign('xorg_title','Polytechnique.org - Administration - Réponses automatiques de validation');
760 $page->assign('title', 'Gestion des réponses automatiques');
761 $table_editor = new PLTableEditor('admin/validate/answers','requests_answers','id');
762 $table_editor->describe('category','catégorie',true);
763 $table_editor->describe('title','titre',true);
764 $table_editor->describe('answer','texte',false);
765 $table_editor->apply($page, $action, $id);
766 }
e7ae7df9 767 function handler_skins(&$page, $action = 'list', $id = null) {
e7ae7df9 768 $page->assign('xorg_title','Polytechnique.org - Administration - Skins');
769 $page->assign('title', 'Gestion des skins');
770 $table_editor = new PLTableEditor('admin/skins','skins','id');
771 $table_editor->describe('name','nom',true);
772 $table_editor->describe('skin_tpl','nom du template',true);
773 $table_editor->describe('auteur','auteur',false);
774 $table_editor->describe('comment','commentaire',true);
775 $table_editor->describe('date','date',false);
776 $table_editor->describe('ext','extension du screenshot',false);
777 $table_editor->apply($page, $action, $id);
74c55fd6 778 }
e7ae7df9 779 function handler_postfix_blacklist(&$page, $action = 'list', $id = null) {
e7ae7df9 780 $page->assign('xorg_title','Polytechnique.org - Administration - Postfix : Blacklist');
781 $page->assign('title', 'Blacklist de postfix');
782 $table_editor = new PLTableEditor('admin/postfix/blacklist','postfix_blacklist','email', true);
783 $table_editor->describe('reject_text','Texte de rejet',true);
784 $table_editor->describe('email','email',true);
785 $table_editor->apply($page, $action, $id);
74c55fd6 786 }
e7ae7df9 787 function handler_postfix_whitelist(&$page, $action = 'list', $id = null) {
e7ae7df9 788 $page->assign('xorg_title','Polytechnique.org - Administration - Postfix : Whitelist');
789 $page->assign('title', 'Whitelist de postfix');
790 $table_editor = new PLTableEditor('admin/postfix/whitelist','postfix_whitelist','email', true);
791 $table_editor->describe('email','email',true);
792 $table_editor->apply($page, $action, $id);
74c55fd6 793 }
e7ae7df9 794 function handler_logger_actions(&$page, $action = 'list', $id = null) {
e7ae7df9 795 $page->assign('xorg_title','Polytechnique.org - Administration - Actions');
796 $page->assign('title', 'Gestion des actions de logger');
797 $table_editor = new PLTableEditor('admin/logger/actions','logger.actions','id');
798 $table_editor->describe('text','intitulé',true);
799 $table_editor->describe('description','description',true);
800 $table_editor->apply($page, $action, $id);
74c55fd6 801 }
e7ae7df9 802 function handler_downtime(&$page, $action = 'list', $id = null) {
e7ae7df9 803 $page->assign('xorg_title','Polytechnique.org - Administration - Coupures');
804 $page->assign('title', 'Gestion des coupures');
805 $table_editor = new PLTableEditor('admin/downtime','coupures','id');
806 $table_editor->describe('debut','date',true);
807 $table_editor->describe('duree','durée',false);
808 $table_editor->describe('resume','résumé',true);
809 $table_editor->describe('services','services affectés',true);
810 $table_editor->describe('description','description',false);
811 $table_editor->apply($page, $action, $id);
74c55fd6 812 }
3aec1c21 813 function handler_wiki(&$page, $action='list') {
814 require_once 'wiki.inc.php';
74c55fd6 815
3aec1c21 816 // update wiki perms
817 if ($action == 'update') {
818 $perms_read = Post::v('read');
819 $perms_edot = Post::v('edit');
820 if ($perms_read || $perms_edit) {
821 foreach ($_POST as $wiki_page => $val) if ($val == 'on') {
822 $wiki_page = str_replace('_', '/', $wiki_page);
823 if (!$perms_read || !$perms_edit)
74c55fd6 824 list($perms0, $perms1) = wiki_get_perms($wiki_page);
3aec1c21 825 if ($perms_read)
826 $perms0 = $perms_read;
827 if ($perms_edit)
828 $perms1 = $perms_edit;
829 wiki_set_perms($wiki_page, $perms0, $perms1);
830 }
831 }
832 }
74c55fd6 833
3aec1c21 834 $perms = wiki_perms_options();
74c55fd6 835
3aec1c21 836 // list wiki pages and their perms
837 $wiki_pages = array();
838 $dir = wiki_work_dir();
839 if (is_dir($dir)) {
840 if ($dh = opendir($dir)) {
841 while (($file = readdir($dh)) !== false) if (substr($file,0,1) >= 'A' && substr($file,0,1) <= 'Z') {
842 list($read,$edit) = wiki_get_perms($file);
843 $wiki_pages[$file] = array('read' => $perms[$read], 'edit' => $perms[$edit]);
844 }
845 closedir($dh);
846 }
847 }
848 ksort($wiki_pages);
74c55fd6 849
3aec1c21 850 $page->changeTpl('admin/wiki.tpl');
74c55fd6 851 $page->assign('wiki_pages', $wiki_pages);
3aec1c21 852 $page->assign('perms_opts', $perms);
853 }
86f0a6af 854}
855
856?>