New evolutive marketing engine
[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');
a7de4ef7 66 $page->assign('xorg_title','Polytechnique.org - Administration - Postfix : Retardés');
86f0a6af 67
68 if (Env::has('del')) {
69 $crc = Env::v('crc');
70 XDB::execute("UPDATE postfix_mailseen SET release = 'del' WHERE crc = {?}", $crc);
a7de4ef7 71 $page->trig($crc." verra tous ses mails supprimés !");
86f0a6af 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 {
a7de4ef7 342 $page->assign('msg_nofilters', "Sélectionner une annuée et/ou un utilisateur");
441e9e98 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')) {
a7de4ef7 359 $page->kill("déjà en SUID !!!");
86f0a6af 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)) {
0be07aa6 391 $r = XDB::query("SELECT *, a.alias AS forlife,
392 FIND_IN_SET('watch', u.flags) AS watch, FIND_IN_SET('femme', u.flags) AS sexe,
1517a52d 393 (year(naissance) > promo - 15 or year(naissance) < promo - 25) AS naiss_err
f97f90f0 394 FROM auth_user_md5 AS u
395 LEFT JOIN aliases AS a ON (a.id = u.user_id AND type= 'a_vie')
396 WHERE u.user_id = {?}", $login);
397 } else {
0be07aa6 398 $r = XDB::query("SELECT *, a.alias AS forlife,
399 FIND_IN_SET('watch', u.flags) AS watch, FIND_IN_SET('femme', u.flags) AS sexe,
1517a52d 400 (year(naissance) > promo - 15 or year(naissance) < promo - 25) AS naiss_err
f97f90f0 401 FROM auth_user_md5 AS u
402 INNER JOIN aliases AS a ON ( a.id = u.user_id AND a.alias={?} AND type!='homonyme' )", $login);
403 }
86f0a6af 404 $mr = $r->fetchOneAssoc();
405
f97f90f0 406 if (!is_numeric($login)) { //user has a forlife
407 $redirect = new Redirect($mr['user_id']);
408 }
86f0a6af 409
410 // Check if there was a submission
411 foreach($_POST as $key => $val) {
412 switch ($key) {
413 case "add_fwd":
414 $email = trim(Env::v('email'));
415 if (!isvalid_email_redirection($email)) {
416 $page->trig("invalid email $email");
417 } else {
418 $redirect->add_email($email);
a7de4ef7 419 $page->trig("Ajout de $email effectué");
86f0a6af 420 }
421 break;
422
423 case "del_fwd":
424 if (!empty($val)) {
425 $redirect->delete_email($val);
426 }
427 break;
428
429 case "del_alias":
430 if (!empty($val)) {
f97f90f0 431 XDB::execute("DELETE FROM aliases
432 WHERE id={?} AND alias={?}
433 AND type!='a_vie' AND type!='homonyme'", $mr['user_id'], $val);
d91e720f 434 XDB::execute("UPDATE emails
435 SET rewrite = ''
436 WHERE uid = {?} AND rewrite LIKE CONCAT({?}, '@%')",
437 $mr['user_id'], $val);
86f0a6af 438 fix_bestalias($mr['user_id']);
a7de4ef7 439 $page->trig($val." a été supprimé");
86f0a6af 440 }
441 break;
442 case "activate_fwd":
443 if (!empty($val)) {
444 $redirect->modify_one_email($val, true);
445 }
446 break;
447 case "deactivate_fwd":
448 if (!empty($val)) {
449 $redirect->modify_one_email($val, false);
450 }
451 break;
452 case "add_alias":
453 XDB::execute("INSERT INTO aliases (id,alias,type) VALUES ({?}, {?}, 'alias')",
454 $mr['user_id'], Env::v('email'));
455 break;
456
457 case "best":
458 // 'bestalias' is the first bit of the set : 1
459 // 255 is the max for flags (8 sets max)
460 XDB::execute("UPDATE aliases SET flags= flags & (255 - 1) WHERE id={?}", $mr['user_id']);
461 XDB::execute("UPDATE aliases
462 SET flags= flags | 1
463 WHERE id={?} AND alias={?}", $mr['user_id'], $val);
464 break;
465
466
467 // Editer un profil
468 case "u_edit":
469 require_once('secure_hash.inc.php');
470 $pass_encrypted = Env::v('newpass_clair') != "********" ? hash_encrypt(Env::v('newpass_clair')) : Env::v('passw');
471 $naiss = Env::v('naissanceN');
34ffe99a 472 $deces = Env::v('decesN');
86f0a6af 473 $perms = Env::v('permsN');
474 $prenm = Env::v('prenomN');
475 $nom = Env::v('nomN');
476 $promo = Env::i('promoN');
477 $sexe = Env::v('sexeN');
0be07aa6 478 $comm = trim(Env::v('commentN'));
479 $watch = Env::v('watchN');
480 $flags = '';
481 if ($sexe) {
482 $flags = 'femme';
483 }
484 if ($watch) {
485 if ($flags) {
486 $flags .= ',';
487 }
488 $flags .= 'watch';
489 }
490
491 if ($watch && !$comm) {
492 $page->trig("Il est nécessaire de mettre un commentaire pour surveiller un compte");
493 break;
494 }
86f0a6af 495
496 $query = "UPDATE auth_user_md5 SET
497 naissance = '$naiss',
34ffe99a 498 deces = '$deces',
86f0a6af 499 password = '$pass_encrypted',
500 perms = '$perms',
501 prenom = '".addslashes($prenm)."',
502 nom = '".addslashes($nom)."',
0be07aa6 503 flags = '$flags',
86f0a6af 504 promo = $promo,
505 comment = '".addslashes($comm)."'
506 WHERE user_id = '{$mr['user_id']}'";
507 if (XDB::execute($query)) {
508 user_reindex($mr['user_id']);
509
d588654c 510 $mailer = new PlMailer("admin/mail_intervention.tpl");
511 $mailer->assign("user", S::v('forlife'));
512 $mailer->assign("query", $query);
86f0a6af 513 $mailer->send();
514
a7de4ef7 515 $page->trig("updaté correctement.");
86f0a6af 516 }
517 if (Env::v('nomusageN') != $mr['nom_usage']) {
a11b5424 518 require_once "xorg.misc.inc.php";
86f0a6af 519 set_new_usage($mr['user_id'], Env::v('nomusageN'), make_username(Env::v('prenomN'), Env::v('nomusageN')));
520 }
c53b5964 521 if (Env::v('decesN') != $mr['deces']) {
522 user_clear_all_subs($mr['user_id'], false);
523 }
0be07aa6 524 $r = XDB::query("SELECT *, a.alias AS forlife,
525 FIND_IN_SET('watch', u.flags) AS watch, FIND_IN_SET('femme', u.flags) AS sexe
f97f90f0 526 FROM auth_user_md5 AS u
527 LEFT JOIN aliases AS a ON (a.id = u.user_id AND type= 'a_vie')
528 WHERE u.user_id = {?}", $mr['user_id']);
86f0a6af 529 $mr = $r->fetchOneAssoc();
530 break;
531
532 // DELETE FROM auth_user_md5
533 case "u_kill":
534 user_clear_all_subs($mr['user_id']);
a7de4ef7 535 $page->trig("'{$mr['user_id']}' a été désinscrit !");
d588654c 536 $mailer = new PlMailer("admin/mail_intervention.tpl");
537 $mailer->assign("user", S::v('forlife'));
538 $mailer->assign("query", "\nUtilisateur $login désinscrit");
86f0a6af 539 $mailer->send();
540 break;
541 }
542 }
543
b7d19878 544 $res = XDB::query("SELECT start, host
545 FROM logger.sessions
546 WHERE uid={?} AND suid=0
547 ORDER BY start DESC
548 LIMIT 1", $mr['user_id']);
86f0a6af 549 list($lastlogin,$host) = $res->fetchOneRow();
550 $page->assign('lastlogin', $lastlogin);
551 $page->assign('host', $host);
552
5c5554b7 553 $res = XDB::query("SELECT alias
554 FROM virtual
555 INNER JOIN virtual_redirect USING(vid)
556 WHERE type = 'user' AND redirect LIKE '" . $login . "@%'");
557 if ($res->numRows()) {
558 $page->assign('virtual', $res->fetchOneCell());
559 }
560
86f0a6af 561 $page->assign('aliases', XDB::iterator(
562 "SELECT alias, type='a_vie' AS for_life,FIND_IN_SET('bestalias',flags) AS best,expire
563 FROM aliases
564 WHERE id = {?} AND type!='homonyme'
565 ORDER BY type!= 'a_vie'", $mr["user_id"]));
f97f90f0 566 if ($mr['perms'] != 'pending') {
567 $page->assign('emails',$redirect->emails);
568 }
86f0a6af 569
570 $page->assign('mr',$mr);
571 }
572 }
1f53925a 573
574 function getMatricule($line, $key)
575 {
576 $mat = $line['matricule'];
577 $year = intval(substr($mat, 0, 3));
578 $rang = intval(substr($mat, 3, 3));
579 if ($year > 200) { $year /= 10; };
580 if ($year < 96) {
581 return null;
582 } else {
583 return sprintf('%04u%04u', 1900+$year, $rang);
584 }
585 }
586
587 function handler_promo(&$page, $action = null, $promo = null)
588 {
589 if (Env::has('promo')) {
590 if(Env::i('promo') > 1900 && Env::i('promo') < 2050) {
591 $action = Env::v('valid_promo') == 'Ajouter des membres' ? 'add' : 'ax';
592 pl_redirect('admin/promo/' . $action . '/' . Env::i('promo'));
593 } else {
594 $page->trig('Promo non valide');
595 }
596 }
597
598 $page->changeTpl('admin/promo.tpl');
599 if ($promo > 1900 && $promo < 2050 && ($action == 'add' || $action == 'ax')) {
600 $page->assign('promo', $promo);
601 } else {
602 return;
603 }
604
605 $importer = new CSVImporter('auth_user_md5', 'matricule');
606 $importer->registerFunction('matricule', 'matricle Ecole vers X.org', array($this, 'getMatricule'));
607 switch ($action) {
608 case 'add':
609 $fields = array('nom', 'nom_ini', 'prenom',
610 'prenom_ini', 'promo', 'promo_sortie', 'flags',
611 'matricule', 'matricule_ax', 'perms');
612 $importer->forceValue('promo', $promo);
613 $importer->forceValue('promo_sortie', $promo + 3);
614 break;
615 case 'ax':
616 $fields = array('matricule', 'matricule_ax');
617 break;
618 }
619 $importer->apply($page, "admin/promo/$action/$promo", $fields);
620 }
621
86f0a6af 622 function handler_homonyms(&$page, $op = 'list', $target = null) {
623 $page->changeTpl('admin/homonymes.tpl');
624 $page->assign('xorg_title','Polytechnique.org - Administration - Homonymes');
625 require_once("homonymes.inc.php");
74c55fd6 626
86f0a6af 627 if ($target) {
628 if (! list($prenom,$nom,$forlife,$loginbis) = select_if_homonyme($target)) {
629 $target=0;
630 } else {
631 $page->assign('nom',$nom);
632 $page->assign('prenom',$prenom);
633 $page->assign('forlife',$forlife);
634 $page->assign('loginbis',$loginbis);
635 }
636 }
74c55fd6 637
86f0a6af 638 $page->assign('op',$op);
639 $page->assign('target',$target);
74c55fd6 640
86f0a6af 641 // on a un $target valide, on prepare les mails
642 if ($target) {
74c55fd6 643
86f0a6af 644 // on examine l'op a effectuer
645 switch ($op) {
646 case 'mail':
b7d19878 647 send_warning_homonyme($prenom, $nom, $forlife, $loginbis);
648 switch_bestalias($target, $loginbis);
86f0a6af 649 $op = 'list';
650 break;
651 case 'correct':
b7d19878 652 switch_bestalias($target, $loginbis);
86f0a6af 653 XDB::execute("UPDATE aliases SET type='homonyme',expire=NOW() WHERE alias={?}", $loginbis);
654 XDB::execute("REPLACE INTO homonymes (homonyme_id,user_id) VALUES({?},{?})", $target, $target);
b7d19878 655 send_robot_homonyme($prenom, $nom, $forlife, $loginbis);
86f0a6af 656 $op = 'list';
657 break;
658 }
659 }
74c55fd6 660
86f0a6af 661 if ($op == 'list') {
662 $res = XDB::iterator(
663 "SELECT a.alias AS homonyme,s.id AS user_id,s.alias AS forlife,
664 promo,prenom,nom,
665 IF(h.homonyme_id=s.id, a.expire, NULL) AS expire,
666 IF(h.homonyme_id=s.id, a.type, NULL) AS type
667 FROM aliases AS a
668 LEFT JOIN homonymes AS h ON (h.homonyme_id = a.id)
669 INNER JOIN aliases AS s ON (s.id = h.user_id AND s.type='a_vie')
670 INNER JOIN auth_user_md5 AS u ON (s.id=u.user_id)
671 WHERE a.type='homonyme' OR a.expire!=''
672 ORDER BY a.alias,promo");
673 $hnymes = Array();
674 while ($tab = $res->next()) {
675 $hnymes[$tab['homonyme']][] = $tab;
676 }
677 $page->assign_by_ref('hnymes',$hnymes);
678 }
679 }
74c55fd6 680
86f0a6af 681 function handler_ax_xorg(&$page) {
682 $page->changeTpl('admin/ax-xorg.tpl');
683 $page->assign('xorg_title','Polytechnique.org - Administration - AX/X.org');
74c55fd6 684
a7de4ef7 685 // liste des différences
86f0a6af 686 $res = XDB::query(
687 '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
688 FROM auth_user_md5 AS u
689 INNER JOIN identification_ax AS ia ON u.matricule_ax = ia.matricule_ax
690 WHERE (SOUNDEX(u.nom) != SOUNDEX(ia.nom) AND SOUNDEX(CONCAT(ia.particule,u.nom)) != SOUNDEX(ia.nom)
691 AND SOUNDEX(u.nom) != SOUNDEX(ia.nom_patro) AND SOUNDEX(CONCAT(ia.particule,u.nom)) != SOUNDEX(ia.nom_patro))
692 OR u.prenom != ia.prenom OR (u.promo != ia.promo AND u.promo != ia.promo+1 AND u.promo != ia.promo-1)
693 ORDER BY u.promo,u.nom,u.prenom');
694 $page->assign('diffs', $res->fetchAllAssoc());
74c55fd6 695
a7de4ef7 696 // gens à l'ax mais pas chez nous
86f0a6af 697 $res = XDB::query(
698 'SELECT ia.promo,ia.nom,ia.nom_patro,ia.prenom
699 FROM identification_ax as ia
700 LEFT JOIN auth_user_md5 AS u ON u.matricule_ax = ia.matricule_ax
701 WHERE u.nom IS NULL');
702 $page->assign('mank', $res->fetchAllAssoc());
74c55fd6 703
a7de4ef7 704 // gens chez nous et pas à l'ax
86f0a6af 705 $res = XDB::query('SELECT promo,nom,prenom FROM auth_user_md5 WHERE matricule_ax IS NULL');
706 $page->assign('plus', $res->fetchAllAssoc());
707 }
74c55fd6 708
86f0a6af 709 function handler_deaths(&$page, $promo = 0, $validate = false) {
710 $page->changeTpl('admin/deces_promo.tpl');
711 $page->assign('xorg_title','Polytechnique.org - Administration - Deces');
74c55fd6 712
86f0a6af 713 if (!$promo)
714 $promo = Env::i('promo');
715 if (Env::has('sub10')) $promo -= 10;
716 if (Env::has('sub01')) $promo -= 1;
717 if (Env::has('add01')) $promo += 1;
718 if (Env::has('add10')) $promo += 10;
74c55fd6 719
86f0a6af 720 $page->assign('promo',$promo);
74c55fd6 721
86f0a6af 722 if ($validate) {
723 $new_deces = array();
724 $res = XDB::iterRow("SELECT user_id,matricule,nom,prenom,deces FROM auth_user_md5 WHERE promo = {?}", $promo);
725 while (list($uid,$mat,$nom,$prenom,$deces) = $res->next()) {
726 $val = Env::v($mat);
b7d19878 727 if($val == $deces || empty($val)) continue;
728 XDB::execute('UPDATE auth_user_md5 SET deces={?} WHERE matricule = {?}', $val, $mat);
729 $new_deces[] = array('name' => "$prenom $nom", 'date' => "$val");
730 if($deces=='0000-00-00' or empty($deces)) {
731 require_once('notifs.inc.php');
732 register_watch_op($uid, WATCH_DEATH, $val);
733 require_once('user.func.inc.php');
734 user_clear_all_subs($uid, false); // by default, dead ppl do not loose their email
735 }
86f0a6af 736 }
737 $page->assign('new_deces',$new_deces);
738 }
74c55fd6 739
86f0a6af 740 $res = XDB::iterator('SELECT matricule, nom, prenom, deces FROM auth_user_md5 WHERE promo = {?} ORDER BY nom,prenom', $promo);
741 $page->assign('decedes', $res);
742 }
74c55fd6 743
86f0a6af 744 function handler_synchro_ax(&$page, $user = null, $action = null) {
745 $page->changeTpl('admin/synchro_ax.tpl');
746 $page->assign('xorg_title','Polytechnique.org - Administration - Synchro AX');
74c55fd6 747
86f0a6af 748 require_once('synchro_ax.inc.php');
74c55fd6 749
86f0a6af 750 if (is_ax_key_missing()) {
751 $page->assign('no_private_key', true);
752 $page->run();
753 }
74c55fd6 754
86f0a6af 755 require_once('user.func.inc.php');
756
757 if ($user)
758 $login = get_user_forlife($user);
759
760 if (Env::has('user')) {
761 $login = get_user_forlife(Env::v('user'));
762 if ($login === false) {
763 return;
764 }
765 }
74c55fd6 766
86f0a6af 767 if (Env::has('mat')) {
768 $res = XDB::query(
74c55fd6 769 "SELECT alias
86f0a6af 770 FROM aliases AS a
771 INNER JOIN auth_user_md5 AS u ON (a.id=u.user_id AND a.type='a_vie')
772 WHERE matricule={?}", Env::i('mat'));
773 $login = $res->fetchOneCell();
774 }
74c55fd6 775
86f0a6af 776 if ($login) {
777 if ($action == 'import') {
778 ax_synchronize($login, S::v('uid'));
779 }
780 // get details from user, but looking only info that can be seen by ax
781 $user = get_user_details($login, S::v('uid'), 'ax');
782 $userax= get_user_ax($user['matricule_ax']);
783 require_once 'profil.func.inc.php';
784 $diff = diff_user_details($userax, $user, 'ax');
74c55fd6 785
86f0a6af 786 $page->assign('x', $user);
787 $page->assign('diff', $diff);
788 }
789 }
74c55fd6 790
e654517d 791 function handler_validate(&$page, $action = 'list', $id = null)
792 {
86f0a6af 793 $page->changeTpl('admin/valider.tpl');
794 $page->assign('xorg_title','Polytechnique.org - Administration - Valider une demande');
9fc2d0d2 795 $page->addCssLink('nl.css');
e654517d 796 require_once("validations.inc.php");
797
74c55fd6 798
ed5b9703 799 if ($action == 'edit' and !is_null($id)) {
800 $page->assign('preview_id', $id);
801 }
802
86f0a6af 803 if(Env::has('uid') && Env::has('type') && Env::has('stamp')) {
20d7932b 804 $req = Validate::get_typed_request(Env::v('uid'), Env::v('type'), Env::v('stamp'));
86f0a6af 805 if($req) { $req->handle_formu(); }
806 }
74c55fd6 807
cfb96867 808 $r = XDB::iterator('SHOW COLUMNS FROM requests_answers');
809 while (($a = $r->next()) && $a['Field'] != 'category');
810 $page->assign('categories', $categories = explode(',', str_replace("'", '', substr($a['Type'], 5, -1))));
74c55fd6 811
cfb96867 812 $hidden = array();
813 if (Post::has('hide')) {
74c55fd6 814 $hide = array();
815 foreach ($categories as $cat)
cfb96867 816 if (!Post::v($cat)) {
817 $hidden[$cat] = 1;
818 $hide[] = $cat;
819 }
820 setcookie('hide_requests', join(',',$hide), time()+(count($hide)?25920000:(-3600)), '/', '', 0);
821 } elseif (Env::has('hide_requests')) {
822 foreach (explode(',',Env::v('hide_requests')) as $hide_type)
823 $hidden[$hide_type] = true;
824 }
825 $page->assign('hide_requests', $hidden);
74c55fd6 826
86f0a6af 827 $page->assign('vit', new ValidateIterator());
828 }
e654517d 829
e18888f4 830 function handler_validate_answers(&$page, $action = 'list', $id = null) {
a7de4ef7 831 $page->assign('xorg_title','Polytechnique.org - Administration - Réponses automatiques de validation');
832 $page->assign('title', 'Gestion des réponses automatiques');
e18888f4 833 $table_editor = new PLTableEditor('admin/validate/answers','requests_answers','id');
a7de4ef7 834 $table_editor->describe('category','catégorie',true);
e18888f4 835 $table_editor->describe('title','titre',true);
836 $table_editor->describe('answer','texte',false);
837 $table_editor->apply($page, $action, $id);
838 }
e7ae7df9 839 function handler_skins(&$page, $action = 'list', $id = null) {
e7ae7df9 840 $page->assign('xorg_title','Polytechnique.org - Administration - Skins');
841 $page->assign('title', 'Gestion des skins');
842 $table_editor = new PLTableEditor('admin/skins','skins','id');
843 $table_editor->describe('name','nom',true);
844 $table_editor->describe('skin_tpl','nom du template',true);
845 $table_editor->describe('auteur','auteur',false);
846 $table_editor->describe('comment','commentaire',true);
847 $table_editor->describe('date','date',false);
848 $table_editor->describe('ext','extension du screenshot',false);
849 $table_editor->apply($page, $action, $id);
74c55fd6 850 }
e7ae7df9 851 function handler_postfix_blacklist(&$page, $action = 'list', $id = null) {
e7ae7df9 852 $page->assign('xorg_title','Polytechnique.org - Administration - Postfix : Blacklist');
853 $page->assign('title', 'Blacklist de postfix');
854 $table_editor = new PLTableEditor('admin/postfix/blacklist','postfix_blacklist','email', true);
855 $table_editor->describe('reject_text','Texte de rejet',true);
856 $table_editor->describe('email','email',true);
857 $table_editor->apply($page, $action, $id);
74c55fd6 858 }
e7ae7df9 859 function handler_postfix_whitelist(&$page, $action = 'list', $id = null) {
e7ae7df9 860 $page->assign('xorg_title','Polytechnique.org - Administration - Postfix : Whitelist');
861 $page->assign('title', 'Whitelist de postfix');
862 $table_editor = new PLTableEditor('admin/postfix/whitelist','postfix_whitelist','email', true);
863 $table_editor->describe('email','email',true);
864 $table_editor->apply($page, $action, $id);
74c55fd6 865 }
ccdbc270 866 function handler_mx_broken(&$page, $action = 'list', $id = null) {
a7de4ef7 867 $page->assign('xorg_title', 'Polytechnique.org - Administration - MX Défaillants');
868 $page->assign('title', 'MX Défaillant');
ccdbc270 869 $table_editor = new PLTableEditor('admin/mx/broken', 'mx_watch', 'host', true);
870 $table_editor->describe('host', 'Masque', true);
871 $table_editor->describe('state', 'Niveau', true);
a7de4ef7 872 $table_editor->describe('text', 'Description du problème', false);
ccdbc270 873 $table_editor->apply($page, $action, $id);
874 }
e7ae7df9 875 function handler_logger_actions(&$page, $action = 'list', $id = null) {
e7ae7df9 876 $page->assign('xorg_title','Polytechnique.org - Administration - Actions');
877 $page->assign('title', 'Gestion des actions de logger');
878 $table_editor = new PLTableEditor('admin/logger/actions','logger.actions','id');
a7de4ef7 879 $table_editor->describe('text','intitulé',true);
e7ae7df9 880 $table_editor->describe('description','description',true);
881 $table_editor->apply($page, $action, $id);
74c55fd6 882 }
e7ae7df9 883 function handler_downtime(&$page, $action = 'list', $id = null) {
e7ae7df9 884 $page->assign('xorg_title','Polytechnique.org - Administration - Coupures');
885 $page->assign('title', 'Gestion des coupures');
886 $table_editor = new PLTableEditor('admin/downtime','coupures','id');
887 $table_editor->describe('debut','date',true);
a7de4ef7 888 $table_editor->describe('duree','durée',false);
889 $table_editor->describe('resume','résumé',true);
890 $table_editor->describe('services','services affectés',true);
e7ae7df9 891 $table_editor->describe('description','description',false);
892 $table_editor->apply($page, $action, $id);
74c55fd6 893 }
bc0903c7 894
895 function handler_wiki(&$page, $action='list')
896 {
3aec1c21 897 require_once 'wiki.inc.php';
74c55fd6 898
3aec1c21 899 // update wiki perms
900 if ($action == 'update') {
901 $perms_read = Post::v('read');
902 $perms_edot = Post::v('edit');
903 if ($perms_read || $perms_edit) {
904 foreach ($_POST as $wiki_page => $val) if ($val == 'on') {
905 $wiki_page = str_replace('_', '/', $wiki_page);
906 if (!$perms_read || !$perms_edit)
74c55fd6 907 list($perms0, $perms1) = wiki_get_perms($wiki_page);
3aec1c21 908 if ($perms_read)
909 $perms0 = $perms_read;
910 if ($perms_edit)
911 $perms1 = $perms_edit;
912 wiki_set_perms($wiki_page, $perms0, $perms1);
913 }
914 }
915 }
74c55fd6 916
3aec1c21 917 $perms = wiki_perms_options();
74c55fd6 918
3aec1c21 919 // list wiki pages and their perms
920 $wiki_pages = array();
921 $dir = wiki_work_dir();
922 if (is_dir($dir)) {
923 if ($dh = opendir($dir)) {
924 while (($file = readdir($dh)) !== false) if (substr($file,0,1) >= 'A' && substr($file,0,1) <= 'Z') {
925 list($read,$edit) = wiki_get_perms($file);
926 $wiki_pages[$file] = array('read' => $perms[$read], 'edit' => $perms[$edit]);
4694ce89 927 if (is_file($dir . '/cache_' . wiki_filename($file) . '.tpl')) {
928 $wiki_pages[$file]['cached'] = true;
929 }
3aec1c21 930 }
931 closedir($dh);
932 }
933 }
934 ksort($wiki_pages);
bc0903c7 935 $wiki_tree = array();
936 foreach ($wiki_pages as $file => $desc) {
937 list($cat, $name) = explode('.', $file);
938 if (!isset($wiki_tree[$cat])) {
939 $wiki_tree[$cat] = array();
940 }
941 $wiki_tree[$cat][$name] = $desc;
942 }
943
944
74c55fd6 945
3aec1c21 946 $page->changeTpl('admin/wiki.tpl');
bc0903c7 947 $page->assign('wiki_pages', $wiki_tree);
3aec1c21 948 $page->assign('perms_opts', $perms);
949 }
5480a216 950
951 function handler_ipwatch(&$page, $action = 'list', $ip = null)
952 {
953 $page->changeTpl('admin/ipwatcher.tpl');
954
955 $states = array('safe' => 'Ne pas surveiller',
c339246f 956 'unsafe' => 'Surveiller les inscriptions',
a7de4ef7 957 'dangerous' => 'Surveiller tous les accès',
5480a216 958 'ban' => 'Bannir cette adresse');
959 $page->assign('states', $states);
960
961 switch (Post::v('action')) {
962 case 'create':
963 if (trim(Post::v('ipN')) != '') {
964 Xdb::execute('INSERT IGNORE INTO ip_watch (ip, state, detection, last, uid, description)
965 VALUES ({?}, {?}, CURDATE(), NOW(), {?}, {?})',
966 trim(Post::v('ipN')), Post::v('stateN'), S::i('uid'), Post::v('descriptionN'));
967 };
968 break;
969
970 case 'edit':
971 Xdb::execute('UPDATE ip_watch
972 SET state = {?}, last = NOW(), uid = {?}, description = {?}
973 WHERE ip = {?}', Post::v('stateN'), S::i('uid'), Post::v('descriptionN'), Post::v('ipN'));
974 break;
975
976 default:
977 if ($action == 'delete' && !is_null($ip)) {
978 Xdb::execute('DELETE FROM emails_watch WHERE ip = {?}', $ip);
979 }
980 }
981 if ($action != 'create' && $action != 'edit') {
982 $action = 'list';
983 }
984 $page->assign('action', $action);
985
986 if ($action == 'list') {
e76421d8 987 $sql = "SELECT w.ip, IF(w.ip = s.ip, s.host, s.forward_host), w.detection, w.state, a.alias AS forlife
5480a216 988 FROM ip_watch AS w
e76421d8 989 LEFT JOIN logger.sessions AS s ON (s.ip = w.ip OR s.forward_ip = w.ip)
5480a216 990 LEFT JOIN aliases AS a ON (a.id = s.uid AND a.type = 'a_vie')
991 GROUP BY w.ip, a.alias
992 ORDER BY w.state, w.ip, a.alias";
993 $it = Xdb::iterRow($sql);
994
995 $table = array();
996 $props = array();
997 while (list($ip, $host, $date, $state, $forlife) = $it->next()) {
998 if (count($props) == 0 || $props['ip'] != $ip) {
999 if (count($props) > 0) {
1000 $table[] = $props;
1001 }
1002 $props = array('ip' => $ip,
1003 'host' => $host,
1004 'detection' => $date,
1005 'state' => $state,
1006 'users' => array($forlife));
1007 } else {
1008 $props['users'][] = $forlife;
1009 }
1010 }
1011 if (count($props) > 0) {
1012 $table[] = $props;
1013 }
1014 $page->assign('table', $table);
1015 } elseif ($action == 'edit') {
1016 $sql = "SELECT w.detection, w.state, w.last, w.description,
1017 a1.alias AS edit, a2.alias AS forlife, s.host
1018 FROM ip_watch AS w
1019 LEFT JOIN aliases AS a1 ON (a1.id = w.uid AND a1.type = 'a_vie')
1020 LEFT JOIN logger.sessions AS s ON (w.ip = s.ip)
1021 LEFT JOIN aliases AS a2 ON (a2.id = s.uid AND a2.type = 'a_vie')
1022 WHERE w.ip = {?}
1023 GROUP BY a2.alias
1024 ORDER BY a2.alias";
1025 $it = Xdb::iterRow($sql, $ip);
1026
1027 $props = array();
1028 while (list($detection, $state, $last, $description, $edit, $forlife, $host) = $it->next()) {
1029 if (count($props) == 0) {
1030 $props = array('ip' => $ip,
1031 'host' => $host,
1032 'detection' => $detection,
1033 'state' => $state,
1034 'last' => $last,
1035 'description' => $description,
1036 'edit' => $edit,
1037 'users' => array($forlife));
1038 } else {
1039 $props['users'][] = $forlife;
1040 }
1041 }
1042 $page->assign('ip', $props);
1043 }
1044 }
86f0a6af 1045}
1046
a7de4ef7 1047// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
86f0a6af 1048?>