Removes dead people from user count statistics.
[platal.git] / modules / admin.php
CommitLineData
86f0a6af 1<?php
2/***************************************************************************
179afa7f 3 * Copyright (C) 2003-2008 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'),
f141945d 48 'admin/icons' => $this->make_hook('icons', AUTH_MDP, 'admin'),
86f0a6af 49 );
50 }
51
5f9a40b4 52 function handler_phpinfo(&$page)
53 {
54 phpinfo();
55 exit;
56 }
57
86f0a6af 58 function handler_default(&$page)
59 {
60 $page->changeTpl('admin/index.tpl');
61 $page->assign('xorg_title','Polytechnique.org - Administration');
62 }
63
64 function handler_postfix_delayed(&$page)
65 {
66 $page->changeTpl('admin/postfix_delayed.tpl');
a7de4ef7 67 $page->assign('xorg_title','Polytechnique.org - Administration - Postfix : Retardés');
86f0a6af 68
69 if (Env::has('del')) {
70 $crc = Env::v('crc');
71 XDB::execute("UPDATE postfix_mailseen SET release = 'del' WHERE crc = {?}", $crc);
a7de4ef7 72 $page->trig($crc." verra tous ses mails supprimés !");
86f0a6af 73 } elseif (Env::has('ok')) {
74 $crc = Env::v('crc');
75 XDB::execute("UPDATE postfix_mailseen SET release = 'ok' WHERE crc = {?}", $crc);
76 $page->trig($crc." a le droit de passer !");
77 }
78
79 $sql = XDB::iterator(
80 "SELECT crc, nb, update_time, create_time,
81 FIND_IN_SET('del', release) AS del,
82 FIND_IN_SET('ok', release) AS ok
83 FROM postfix_mailseen
84 WHERE nb >= 30
85 ORDER BY release != ''");
86
87 $page->assign_by_ref('mails', $sql);
88 }
89
90 function handler_postfix_regexpsbounces(&$page, $new = null) {
91 $page->changeTpl('admin/emails_bounces_re.tpl');
92 $page->assign('xorg_title','Polytechnique.org - Administration - Postfix : Regexps Bounces');
93 $page->assign('new', $new);
94
95 if (Post::has('submit')) {
96 foreach (Env::v('lvl') as $id=>$val) {
97 XDB::query(
98 "REPLACE INTO emails_bounces_re (id,pos,lvl,re,text) VALUES ({?}, {?}, {?}, {?}, {?})",
99 $id, $_POST['pos'][$id], $_POST['lvl'][$id], $_POST['re'][$id], $_POST['text'][$id]
100 );
101 }
102 }
103
104 $page->assign('bre', XDB::iterator("SELECT * FROM emails_bounces_re ORDER BY pos"));
105 }
106
441e9e98 107 // {{{ logger view
86f0a6af 108
441e9e98 109 /** Retrieves the available days for a given year and month.
110 * Obtain a list of days of the given month in the given year
111 * that are within the range of dates that we have log entries for.
112 *
113 * @param integer year
114 * @param integer month
115 * @return array days in that month we have log entries covering.
116 * @private
117 */
118 function _getDays($year, $month)
119 {
120 // give a 'no filter' option
121 $months[0] = "----";
122
123 if ($year && $month) {
124 $day_max = Array(-1, 31, checkdate(2, 29, $year) ? 29 : 28 , 31,
125 30, 31, 30, 31, 31, 30, 31, 30, 31);
126 $res = XDB::query("SELECT YEAR (MAX(start)), YEAR (MIN(start)),
127 MONTH(MAX(start)), MONTH(MIN(start)),
128 DAYOFMONTH(MAX(start)),
129 DAYOFMONTH(MIN(start))
130 FROM logger.sessions");
131 list($ymax, $ymin, $mmax, $mmin, $dmax, $dmin) = $res->fetchOneRow();
132
133 if (($year < $ymin) || ($year == $ymin && $month < $mmin)) {
134 return array();
135 }
136
137 if (($year > $ymax) || ($year == $ymax && $month > $mmax)) {
138 return array();
139 }
140
141 $min = ($year==$ymin && $month==$mmin) ? intval($dmin) : 1;
142 $max = ($year==$ymax && $month==$mmax) ? intval($dmax) : $day_max[$month];
143
144 for($i = $min; $i<=$max; $i++) {
145 $days[$i] = $i;
146 }
147 }
148 return $days;
149 }
150
151
152 /** Retrieves the available months for a given year.
153 * Obtains a list of month numbers that are within the timeframe that
154 * we have log entries for.
155 *
156 * @param integer year
157 * @return array List of month numbers we have log info for.
158 * @private
159 */
160 function _getMonths($year)
161 {
162 // give a 'no filter' option
163 $months[0] = "----";
164
165 if ($year) {
166 $res = XDB::query("SELECT YEAR (MAX(start)), YEAR (MIN(start)),
167 MONTH(MAX(start)), MONTH(MIN(start))
168 FROM logger.sessions");
169 list($ymax, $ymin, $mmax, $mmin) = $res->fetchOneRow();
170
171 if (($year < $ymin) || ($year > $ymax)) {
172 return array();
173 }
174
175 $min = $year == $ymin ? intval($mmin) : 1;
176 $max = $year == $ymax ? intval($mmax) : 12;
177
178 for($i = $min; $i<=$max; $i++) {
179 $months[$i] = $i;
180 }
181 }
182 return $months;
183 }
184
185
186 /** Retrieves the available years.
187 * Obtains a list of years that we have log entries covering.
188 *
189 * @return array years we have log entries for.
190 * @private
191 */
192 function _getYears()
193 {
194 // give a 'no filter' option
195 $years[0] = "----";
196
197 // retrieve available years
198 $res = XDB::query("select YEAR(MAX(start)), YEAR(MIN(start)) FROM logger.sessions");
199 list($max, $min) = $res->fetchOneRow();
200
201 for($i = intval($min); $i<=$max; $i++) {
202 $years[$i] = $i;
203 }
204 return $years;
205 }
206
207
208 /** Make a where clause to get a user's sessions.
209 * Prepare the where clause request that will retrieve the sessions.
210 *
211 * @param $year INTEGER Only get log entries made during the given year.
212 * @param $month INTEGER Only get log entries made during the given month.
213 * @param $day INTEGER Only get log entries made during the given day.
214 * @param $uid INTEGER Only get log entries referring to the given user ID.
215 *
216 * @return STRING the WHERE clause of a query, including the 'WHERE' keyword
217 * @private
218 */
219 function _makeWhere($year, $month, $day, $uid)
220 {
221 // start constructing the "where" clause
222 $where = array();
223
224 if ($uid)
225 array_push($where, "uid='$uid'");
226
227 // we were given at least a year
228 if ($year) {
229 if ($day) {
230 $dmin = mktime(0, 0, 0, $month, $day, $year);
231 $dmax = mktime(0, 0, 0, $month, $day+1, $year);
232 } elseif ($month) {
233 $dmin = mktime(0, 0, 0, $month, 1, $year);
234 $dmax = mktime(0, 0, 0, $month+1, 1, $year);
235 } else {
236 $dmin = mktime(0, 0, 0, 1, 1, $year);
237 $dmax = mktime(0, 0, 0, 1, 1, $year+1);
238 }
239 $where[] = "start >= " . date("Ymd000000", $dmin);
240 $where[] = "start < " . date("Ymd000000", $dmax);
241 }
242
243 if (!empty($where)) {
244 return ' WHERE ' . implode($where, " AND ");
245 } else {
246 return '';
247 }
248 // WE know it's totally reversed, so better use array_reverse than a SORT BY start DESC
249 }
250
251 // }}}
252
253 function handler_logger(&$page, $action = null, $arg = null) {
254 if ($action == 'session') {
255
256 // we are viewing a session
257 $res = XDB::query("SELECT ls.*, a.alias AS username, sa.alias AS suer
258 FROM logger.sessions AS ls
259 LEFT JOIN aliases AS a ON (a.id = ls.uid AND a.type='a_vie')
260 LEFT JOIN aliases AS sa ON (sa.id = ls.suid AND sa.type='a_vie')
261 WHERE ls.id = {?}", $arg);
262
263 $page->assign('session', $a = $res->fetchOneAssoc());
264
504ccd57 265 $res = XDB::iterator('SELECT a.text, e.data, e.stamp
441e9e98 266 FROM logger.events AS e
267 LEFT JOIN logger.actions AS a ON e.action=a.id
268 WHERE e.session={?}', $arg);
269 while ($myarr = $res->next()) {
270 $page->append('events', $myarr);
271 }
272
273 } else {
274 $loguser = $action == 'user' ? $arg : Env::v('loguser');
275
276 $res = XDB::query('SELECT id FROM aliases WHERE alias={?}',
277 $loguser);
278 $loguid = $res->fetchOneCell();
279
280 if ($loguid) {
281 $year = Env::i('year');
282 $month = Env::i('month');
283 $day = Env::i('day');
284 } else {
285 $year = Env::i('year', intval(date('Y')));
286 $month = Env::i('month', intval(date('m')));
287 $day = Env::i('day', intval(date('d')));
288 }
289
290 if (!$year)
291 $month = 0;
292 if (!$month)
293 $day = 0;
294
295 // smarty assignments
296 // retrieve available years
297 $page->assign('years', $this->_getYears());
298 $page->assign('year', $year);
299
300 // retrieve available months for the current year
301 $page->assign('months', $this->_getMonths($year));
302 $page->assign('month', $month);
303
304 // retrieve available days for the current year and month
305 $page->assign('days', $this->_getDays($year, $month));
306 $page->assign('day', $day);
307
308 $page->assign('loguser', $loguser);
309 // smarty assignments
310
311 if ($loguid || $year) {
312
313 // get the requested sessions
314 $where = $this->_makeWhere($year, $month, $day, $loguid);
504ccd57 315 $select = "SELECT s.id, s.start, s.uid,
441e9e98 316 a.alias as username
317 FROM logger.sessions AS s
318 LEFT JOIN aliases AS a ON (a.id = s.uid AND a.type='a_vie')
319 $where
320 ORDER BY start DESC";
321 $res = XDB::iterator($select);
322
323 $sessions = array();
324 while ($mysess = $res->next()) {
325 $mysess['events'] = array();
326 $sessions[$mysess['id']] = $mysess;
327 }
328 array_reverse($sessions);
329
330 // attach events
331 $sql = "SELECT s.id, a.text
332 FROM logger.sessions AS s
333 LEFT JOIN logger.events AS e ON(e.session=s.id)
334 INNER JOIN logger.actions AS a ON(a.id=e.action)
335 $where";
336
337 $res = XDB::iterator($sql);
338 while ($event = $res->next()) {
339 array_push($sessions[$event['id']]['events'], $event['text']);
340 }
341 $page->assign_by_ref('sessions', $sessions);
342 } else {
a7de4ef7 343 $page->assign('msg_nofilters', "Sélectionner une annuée et/ou un utilisateur");
441e9e98 344 }
86f0a6af 345 }
346
8b1f8e12 347 $page->changeTpl('admin/logger-view.tpl');
86f0a6af 348
c4271d38 349 $page->assign('xorg_title','Polytechnique.org - Administration - Logs des sessions');
86f0a6af 350 }
351
f97f90f0 352 function handler_user(&$page, $login = false)
353 {
84270653 354 global $globals;
86f0a6af 355 $page->changeTpl('admin/utilisateurs.tpl');
356 $page->assign('xorg_title','Polytechnique.org - Administration - Edit/Su/Log');
357 require_once("emails.inc.php");
358 require_once("user.func.inc.php");
359
360 if (S::has('suid')) {
7cbf5d4b 361 $page->kill("Déjà en SUID !!!");
86f0a6af 362 }
363
364 if (Env::has('user_id')) {
5c5554b7 365 $login = get_user_forlife(Env::i('user_id'));
f97f90f0 366 if (empty($login)) {
367 $login = Env::i('user_id');
368 }
86f0a6af 369 } elseif (Env::has('login')) {
5c5554b7 370 $login = get_user_forlife(Env::v('login'));
86f0a6af 371 }
372
373 if(Env::has('logs_button') && $login) {
24b5c84d 374 pl_redirect("admin/logger?loguser=$login&year=".date('Y')."&month=".date('m'));
86f0a6af 375 }
376
377 if (Env::has('ax_button') && $login) {
378 pl_redirect("admin/synchro_ax/$login");
379 }
380
381 if(Env::has('suid_button') && $login) {
382 $_SESSION['log']->log("suid_start", "login by ".S::v('forlife'));
383 $_SESSION['suid'] = $_SESSION;
384 $r = XDB::query("SELECT id FROM aliases WHERE alias={?}", $login);
385 if($uid = $r->fetchOneCell()) {
b0964579 386 start_connexion($uid, true);
86f0a6af 387 pl_redirect("");
388 }
389 }
390
391 if ($login) {
f97f90f0 392 if (is_numeric($login)) {
0be07aa6 393 $r = XDB::query("SELECT *, a.alias AS forlife,
394 FIND_IN_SET('watch', u.flags) AS watch, FIND_IN_SET('femme', u.flags) AS sexe,
1517a52d 395 (year(naissance) > promo - 15 or year(naissance) < promo - 25) AS naiss_err
f97f90f0 396 FROM auth_user_md5 AS u
397 LEFT JOIN aliases AS a ON (a.id = u.user_id AND type= 'a_vie')
398 WHERE u.user_id = {?}", $login);
399 } else {
eaf30d86 400 $r = XDB::query("SELECT *, a.alias AS forlife,
0be07aa6 401 FIND_IN_SET('watch', u.flags) AS watch, FIND_IN_SET('femme', u.flags) AS sexe,
1517a52d 402 (year(naissance) > promo - 15 or year(naissance) < promo - 25) AS naiss_err
f97f90f0 403 FROM auth_user_md5 AS u
404 INNER JOIN aliases AS a ON ( a.id = u.user_id AND a.alias={?} AND type!='homonyme' )", $login);
eaf30d86 405 }
86f0a6af 406 $mr = $r->fetchOneAssoc();
407
f97f90f0 408 if (!is_numeric($login)) { //user has a forlife
409 $redirect = new Redirect($mr['user_id']);
410 }
86f0a6af 411
412 // Check if there was a submission
413 foreach($_POST as $key => $val) {
414 switch ($key) {
415 case "add_fwd":
416 $email = trim(Env::v('email'));
417 if (!isvalid_email_redirection($email)) {
418 $page->trig("invalid email $email");
419 } else {
420 $redirect->add_email($email);
a7de4ef7 421 $page->trig("Ajout de $email effectué");
86f0a6af 422 }
423 break;
424
425 case "del_fwd":
426 if (!empty($val)) {
427 $redirect->delete_email($val);
428 }
429 break;
430
431 case "del_alias":
432 if (!empty($val)) {
f97f90f0 433 XDB::execute("DELETE FROM aliases
434 WHERE id={?} AND alias={?}
435 AND type!='a_vie' AND type!='homonyme'", $mr['user_id'], $val);
d91e720f 436 XDB::execute("UPDATE emails
437 SET rewrite = ''
438 WHERE uid = {?} AND rewrite LIKE CONCAT({?}, '@%')",
eaf30d86 439 $mr['user_id'], $val);
86f0a6af 440 fix_bestalias($mr['user_id']);
a7de4ef7 441 $page->trig($val." a été supprimé");
86f0a6af 442 }
443 break;
441c2451 444 case "activate_fwd":
445 if (!empty($val)) {
446 $redirect->modify_one_email($val, true);
447 }
448 break;
449 case "deactivate_fwd":
450 if (!empty($val)) {
451 $redirect->modify_one_email($val, false);
452 }
453 break;
454 case "disable_fwd":
455 $redirect->disable();
456 break;
457 case "enable_fwd":
458 $redirect->enable();
459 break;
460 case "clean_fwd":
461 if (!empty($val)) {
462 $redirect->cleanErrors($val);
463 }
464 break;
86f0a6af 465 case "add_alias":
bd5e1f3d 466 global $globals;
467 $alias = trim(Env::v('email'));
468 if (strpos($alias, '@') !== false) {
469 list($alias, $domain) = explode('@', $alias);
470 } else {
471 $domain = $globals->mail->domain;
472 }
473 if (!preg_match('/[-a-z0-9\.]+/s', $alias)) {
474 $page->trig("'$alias' n'est pas un alias valide");
475 }
476 if ($domain == $globals->mail->alias_dom || $domain == $globals->mail->alias_dom2) {
477 $req = new AliasReq($mr['user_id'], $alias, 'Admin request', false);
478 if ($req->commit()) {
479 $page->trig("Nouvel alias '$alias@$domain' attribué");
480 } else {
481 $page->trig("Impossible d'ajouter l'alias '$alias@$domain', il est probablement déjà attribué");
482 }
483 } elseif ($domain == $globals->mail->domain || $domain == $globals->mail->domain2) {
484 if (XDB::execute("INSERT INTO aliases (id,alias,type) VALUES ({?}, {?}, 'alias')",
485 $mr['user_id'], $alias)) {
486 $page->trig("Nouvel alias '$alias' ajouté");
487 } else {
488 $page->trig("Impossible d'ajouter l'alias '$alias', il est probablement déjà attribué");
489 }
490 } else {
491 $page->trig("Le domaine '$domain' n'est pas valide");
492 }
86f0a6af 493 break;
494
495 case "best":
496 // 'bestalias' is the first bit of the set : 1
497 // 255 is the max for flags (8 sets max)
498 XDB::execute("UPDATE aliases SET flags= flags & (255 - 1) WHERE id={?}", $mr['user_id']);
499 XDB::execute("UPDATE aliases
500 SET flags= flags | 1
501 WHERE id={?} AND alias={?}", $mr['user_id'], $val);
502 break;
503
504
505 // Editer un profil
506 case "u_edit":
441c2451 507 require_once('secure_hash.inc.php');
508 $pass_encrypted = Env::v('newpass_clair') != "********" ? hash_encrypt(Env::v('newpass_clair')) : Env::v('passw');
509 $naiss = Env::v('naissanceN');
510 $deces = Env::v('decesN');
511 $perms = Env::v('permsN');
512 $prenm = Env::v('prenomN');
513 $nom = Env::v('nomN');
514 $promo = Env::i('promoN');
515 $sexe = Env::v('sexeN');
516 $comm = trim(Env::v('commentN'));
517 $watch = Env::v('watchN');
518 $flags = '';
519 if ($sexe) {
520 $flags = 'femme';
521 }
522 if ($watch) {
523 if ($flags) {
524 $flags .= ',';
525 }
526 $flags .= 'watch';
0be07aa6 527 }
0be07aa6 528
441c2451 529 if ($watch && !$comm) {
530 $page->trig("Il est nécessaire de mettre un commentaire pour surveiller un compte");
531 break;
532 }
86f0a6af 533
7cbf5d4b 534 $watch = 'SELECT naissance, deces, password, perms,
535 prenom, nom, flags, promo, comment
536 FROM auth_user_md5
537 WHERE user_id = ' . $mr['user_id'];
538 $res = XDB::query($watch);
539 $old_fields = $res->fetchOneAssoc();
441c2451 540 $query = "UPDATE auth_user_md5 SET
541 naissance = '$naiss',
542 deces = '$deces',
543 password = '$pass_encrypted',
544 perms = '$perms',
545 prenom = '".addslashes($prenm)."',
546 nom = '".addslashes($nom)."',
547 flags = '$flags',
548 promo = $promo,
549 comment = '".addslashes($comm)."'
550 WHERE user_id = '{$mr['user_id']}'";
551 if (XDB::execute($query)) {
86f0a6af 552 user_reindex($mr['user_id']);
553
7cbf5d4b 554 $res = XDB::query($watch);
555 $new_fields = $res->fetchOneAssoc();
eaf30d86 556
b71f7275 557 $mailer = new PlMailer("admin/useredit.mail.tpl");
d588654c 558 $mailer->assign("user", S::v('forlife'));
7cbf5d4b 559 $mailer->assign('old', $old_fields);
560 $mailer->assign('new', $new_fields);
86f0a6af 561 $mailer->send();
328d2791
PC
562
563 // update number of subscribers (perms or deceased may have changed)
564 update_NbIns();
86f0a6af 565
a7de4ef7 566 $page->trig("updaté correctement.");
86f0a6af 567 }
568 if (Env::v('nomusageN') != $mr['nom_usage']) {
a11b5424 569 require_once "xorg.misc.inc.php";
86f0a6af 570 set_new_usage($mr['user_id'], Env::v('nomusageN'), make_username(Env::v('prenomN'), Env::v('nomusageN')));
571 }
c53b5964 572 if (Env::v('decesN') != $mr['deces']) {
3ebe4a0a
FB
573 require_once 'notifs.inc.php';
574 register_watch_op($mr['user_id'], WATCH_DEATH, $mr['deces']);
c53b5964 575 user_clear_all_subs($mr['user_id'], false);
576 }
0be07aa6 577 $r = XDB::query("SELECT *, a.alias AS forlife,
578 FIND_IN_SET('watch', u.flags) AS watch, FIND_IN_SET('femme', u.flags) AS sexe
f97f90f0 579 FROM auth_user_md5 AS u
580 LEFT JOIN aliases AS a ON (a.id = u.user_id AND type= 'a_vie')
581 WHERE u.user_id = {?}", $mr['user_id']);
86f0a6af 582 $mr = $r->fetchOneAssoc();
84270653
VZ
583
584 // If GoogleApps is enabled, the user did choose to use synchronized passwords,
585 // and the password was changed, updates the Google Apps password as well.
586 if ($globals->mailstorage->googleapps_domain && Env::v('newpass_clair') != "********") {
587 require_once 'googleapps.inc.php';
588 $account = new GoogleAppsAccount($mr['user_id'], $mr['forlife']);
589 if ($account->g_status == 'active' && $account->sync_password) {
590 $account->set_password($pass_encrypted);
591 }
592 }
593
594 // If GoogleApps is enabled, and the user is now disabled, disables the Google Apps account as well.
595 if ($globals->mailstorage->googleapps_domain &&
596 $new_fields['perms'] == 'disabled' &&
597 $new_fields['perms'] != $old_fields['perms']) {
598 require_once 'googleapps.inc.php';
599 $account = new GoogleAppsAccount($mr['user_id'], $mr['forlife']);
600 $account->suspend();
601 }
86f0a6af 602 break;
603
604 // DELETE FROM auth_user_md5
605 case "u_kill":
606 user_clear_all_subs($mr['user_id']);
328d2791
PC
607 // update number of subscribers (perms or deceased may have changed)
608 update_NbIns();
a7de4ef7 609 $page->trig("'{$mr['user_id']}' a été désinscrit !");
b71f7275 610 $mailer = new PlMailer("admin/useredit.mail.tpl");
d588654c 611 $mailer->assign("user", S::v('forlife'));
9565d77a 612 $mailer->assign("deletion", true);
86f0a6af 613 $mailer->send();
614 break;
669cb0e0 615
616 case "b_edit":
617 XDB::execute("DELETE FROM forums.innd WHERE uid = {?}", $mr['user_id']);
618 if (Env::v('write_perm') != "" || Env::v('read_perm') != "" || Env::v('commentaire') != "" ) {
619 XDB::execute("INSERT INTO forums.innd
620 SET ipmin = '0',
621 ipmax = '4294967295',
622 write_perm = {?},
623 read_perm = {?},
624 comment = {?},
625 priority = '200',
626 uid = {?}",
627 Env::v('write_perm'), Env::v('read_perm'), Env::v('comment'), $mr['user_id']);
628 }
629 break;
86f0a6af 630 }
631 }
632
b7d19878 633 $res = XDB::query("SELECT start, host
634 FROM logger.sessions
635 WHERE uid={?} AND suid=0
636 ORDER BY start DESC
637 LIMIT 1", $mr['user_id']);
86f0a6af 638 list($lastlogin,$host) = $res->fetchOneRow();
639 $page->assign('lastlogin', $lastlogin);
640 $page->assign('host', $host);
641
441c2451 642 $res = XDB::iterator("SELECT alias
643 FROM virtual
644 INNER JOIN virtual_redirect USING(vid)
bd5e1f3d 645 WHERE type = 'user' AND redirect LIKE '" . $mr['forlife'] . "@%'");
441c2451 646 $page->assign('virtuals', $res);
5c5554b7 647
86f0a6af 648 $page->assign('aliases', XDB::iterator(
649 "SELECT alias, type='a_vie' AS for_life,FIND_IN_SET('bestalias',flags) AS best,expire
650 FROM aliases
651 WHERE id = {?} AND type!='homonyme'
652 ORDER BY type!= 'a_vie'", $mr["user_id"]));
bd5e1f3d 653 if ($mr['perms'] != 'pending' && isset($redirect)) {
654 $page->assign('emails', $redirect->emails);
f97f90f0 655 }
86f0a6af 656
657 $page->assign('mr',$mr);
669cb0e0 658
659 // Bans forums
660 $res = XDB::query("SELECT write_perm, read_perm, comment
661 FROM forums.innd
662 WHERE uid = {?}", $mr['user_id']);
663 $bans = $res->fetchOneAssoc();
664 $page->assign('bans', $bans);
86f0a6af 665 }
666 }
1f53925a 667
668 function getMatricule($line, $key)
669 {
670 $mat = $line['matricule'];
671 $year = intval(substr($mat, 0, 3));
672 $rang = intval(substr($mat, 3, 3));
673 if ($year > 200) { $year /= 10; };
674 if ($year < 96) {
675 return null;
676 } else {
677 return sprintf('%04u%04u', 1900+$year, $rang);
678 }
679 }
680
681 function handler_promo(&$page, $action = null, $promo = null)
682 {
683 if (Env::has('promo')) {
684 if(Env::i('promo') > 1900 && Env::i('promo') < 2050) {
eaf30d86 685 $action = Env::v('valid_promo') == 'Ajouter des membres' ? 'add' : 'ax';
1f53925a 686 pl_redirect('admin/promo/' . $action . '/' . Env::i('promo'));
687 } else {
688 $page->trig('Promo non valide');
689 }
690 }
691
692 $page->changeTpl('admin/promo.tpl');
693 if ($promo > 1900 && $promo < 2050 && ($action == 'add' || $action == 'ax')) {
694 $page->assign('promo', $promo);
695 } else {
696 return;
697 }
698
699 $importer = new CSVImporter('auth_user_md5', 'matricule');
700 $importer->registerFunction('matricule', 'matricle Ecole vers X.org', array($this, 'getMatricule'));
701 switch ($action) {
702 case 'add':
440b63df 703 $fields = array('nom', 'nom_ini', 'prenom', 'naissance_ini',
1f53925a 704 'prenom_ini', 'promo', 'promo_sortie', 'flags',
705 'matricule', 'matricule_ax', 'perms');
706 $importer->forceValue('promo', $promo);
707 $importer->forceValue('promo_sortie', $promo + 3);
708 break;
709 case 'ax':
710 $fields = array('matricule', 'matricule_ax');
711 break;
712 }
713 $importer->apply($page, "admin/promo/$action/$promo", $fields);
714 }
715
86f0a6af 716 function handler_homonyms(&$page, $op = 'list', $target = null) {
717 $page->changeTpl('admin/homonymes.tpl');
718 $page->assign('xorg_title','Polytechnique.org - Administration - Homonymes');
719 require_once("homonymes.inc.php");
74c55fd6 720
86f0a6af 721 if ($target) {
722 if (! list($prenom,$nom,$forlife,$loginbis) = select_if_homonyme($target)) {
723 $target=0;
724 } else {
725 $page->assign('nom',$nom);
726 $page->assign('prenom',$prenom);
727 $page->assign('forlife',$forlife);
728 $page->assign('loginbis',$loginbis);
729 }
730 }
74c55fd6 731
86f0a6af 732 $page->assign('op',$op);
733 $page->assign('target',$target);
74c55fd6 734
86f0a6af 735 // on a un $target valide, on prepare les mails
736 if ($target) {
74c55fd6 737
86f0a6af 738 // on examine l'op a effectuer
739 switch ($op) {
740 case 'mail':
b7d19878 741 send_warning_homonyme($prenom, $nom, $forlife, $loginbis);
742 switch_bestalias($target, $loginbis);
86f0a6af 743 $op = 'list';
744 break;
745 case 'correct':
b7d19878 746 switch_bestalias($target, $loginbis);
86f0a6af 747 XDB::execute("UPDATE aliases SET type='homonyme',expire=NOW() WHERE alias={?}", $loginbis);
748 XDB::execute("REPLACE INTO homonymes (homonyme_id,user_id) VALUES({?},{?})", $target, $target);
b7d19878 749 send_robot_homonyme($prenom, $nom, $forlife, $loginbis);
86f0a6af 750 $op = 'list';
751 break;
752 }
753 }
74c55fd6 754
86f0a6af 755 if ($op == 'list') {
756 $res = XDB::iterator(
757 "SELECT a.alias AS homonyme,s.id AS user_id,s.alias AS forlife,
758 promo,prenom,nom,
759 IF(h.homonyme_id=s.id, a.expire, NULL) AS expire,
760 IF(h.homonyme_id=s.id, a.type, NULL) AS type
761 FROM aliases AS a
762 LEFT JOIN homonymes AS h ON (h.homonyme_id = a.id)
763 INNER JOIN aliases AS s ON (s.id = h.user_id AND s.type='a_vie')
764 INNER JOIN auth_user_md5 AS u ON (s.id=u.user_id)
765 WHERE a.type='homonyme' OR a.expire!=''
766 ORDER BY a.alias,promo");
767 $hnymes = Array();
768 while ($tab = $res->next()) {
769 $hnymes[$tab['homonyme']][] = $tab;
770 }
771 $page->assign_by_ref('hnymes',$hnymes);
772 }
773 }
74c55fd6 774
86f0a6af 775 function handler_ax_xorg(&$page) {
776 $page->changeTpl('admin/ax-xorg.tpl');
777 $page->assign('xorg_title','Polytechnique.org - Administration - AX/X.org');
74c55fd6 778
a7de4ef7 779 // liste des différences
86f0a6af 780 $res = XDB::query(
781 '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
782 FROM auth_user_md5 AS u
783 INNER JOIN identification_ax AS ia ON u.matricule_ax = ia.matricule_ax
784 WHERE (SOUNDEX(u.nom) != SOUNDEX(ia.nom) AND SOUNDEX(CONCAT(ia.particule,u.nom)) != SOUNDEX(ia.nom)
785 AND SOUNDEX(u.nom) != SOUNDEX(ia.nom_patro) AND SOUNDEX(CONCAT(ia.particule,u.nom)) != SOUNDEX(ia.nom_patro))
786 OR u.prenom != ia.prenom OR (u.promo != ia.promo AND u.promo != ia.promo+1 AND u.promo != ia.promo-1)
787 ORDER BY u.promo,u.nom,u.prenom');
788 $page->assign('diffs', $res->fetchAllAssoc());
74c55fd6 789
7cbf5d4b 790 // gens à l'ax mais pas chez nous
86f0a6af 791 $res = XDB::query(
792 'SELECT ia.promo,ia.nom,ia.nom_patro,ia.prenom
793 FROM identification_ax as ia
794 LEFT JOIN auth_user_md5 AS u ON u.matricule_ax = ia.matricule_ax
795 WHERE u.nom IS NULL');
796 $page->assign('mank', $res->fetchAllAssoc());
74c55fd6 797
7cbf5d4b 798 // gens chez nous et pas à l'ax
86f0a6af 799 $res = XDB::query('SELECT promo,nom,prenom FROM auth_user_md5 WHERE matricule_ax IS NULL');
800 $page->assign('plus', $res->fetchAllAssoc());
801 }
74c55fd6 802
86f0a6af 803 function handler_deaths(&$page, $promo = 0, $validate = false) {
804 $page->changeTpl('admin/deces_promo.tpl');
805 $page->assign('xorg_title','Polytechnique.org - Administration - Deces');
74c55fd6 806
86f0a6af 807 if (!$promo)
808 $promo = Env::i('promo');
809 if (Env::has('sub10')) $promo -= 10;
810 if (Env::has('sub01')) $promo -= 1;
811 if (Env::has('add01')) $promo += 1;
812 if (Env::has('add10')) $promo += 10;
74c55fd6 813
86f0a6af 814 $page->assign('promo',$promo);
74c55fd6 815
86f0a6af 816 if ($validate) {
817 $new_deces = array();
818 $res = XDB::iterRow("SELECT user_id,matricule,nom,prenom,deces FROM auth_user_md5 WHERE promo = {?}", $promo);
819 while (list($uid,$mat,$nom,$prenom,$deces) = $res->next()) {
820 $val = Env::v($mat);
b7d19878 821 if($val == $deces || empty($val)) continue;
822 XDB::execute('UPDATE auth_user_md5 SET deces={?} WHERE matricule = {?}', $val, $mat);
823 $new_deces[] = array('name' => "$prenom $nom", 'date' => "$val");
824 if($deces=='0000-00-00' or empty($deces)) {
825 require_once('notifs.inc.php');
826 register_watch_op($uid, WATCH_DEATH, $val);
827 require_once('user.func.inc.php');
828 user_clear_all_subs($uid, false); // by default, dead ppl do not loose their email
829 }
86f0a6af 830 }
831 $page->assign('new_deces',$new_deces);
832 }
74c55fd6 833
86f0a6af 834 $res = XDB::iterator('SELECT matricule, nom, prenom, deces FROM auth_user_md5 WHERE promo = {?} ORDER BY nom,prenom', $promo);
835 $page->assign('decedes', $res);
836 }
74c55fd6 837
86f0a6af 838 function handler_synchro_ax(&$page, $user = null, $action = null) {
839 $page->changeTpl('admin/synchro_ax.tpl');
840 $page->assign('xorg_title','Polytechnique.org - Administration - Synchro AX');
74c55fd6 841
86f0a6af 842 require_once('synchro_ax.inc.php');
74c55fd6 843
86f0a6af 844 if (is_ax_key_missing()) {
845 $page->assign('no_private_key', true);
846 $page->run();
847 }
74c55fd6 848
86f0a6af 849 require_once('user.func.inc.php');
850
851 if ($user)
852 $login = get_user_forlife($user);
853
854 if (Env::has('user')) {
855 $login = get_user_forlife(Env::v('user'));
856 if ($login === false) {
857 return;
858 }
859 }
74c55fd6 860
86f0a6af 861 if (Env::has('mat')) {
862 $res = XDB::query(
74c55fd6 863 "SELECT alias
86f0a6af 864 FROM aliases AS a
865 INNER JOIN auth_user_md5 AS u ON (a.id=u.user_id AND a.type='a_vie')
866 WHERE matricule={?}", Env::i('mat'));
867 $login = $res->fetchOneCell();
868 }
74c55fd6 869
86f0a6af 870 if ($login) {
871 if ($action == 'import') {
872 ax_synchronize($login, S::v('uid'));
873 }
874 // get details from user, but looking only info that can be seen by ax
875 $user = get_user_details($login, S::v('uid'), 'ax');
876 $userax= get_user_ax($user['matricule_ax']);
877 require_once 'profil.func.inc.php';
878 $diff = diff_user_details($userax, $user, 'ax');
74c55fd6 879
86f0a6af 880 $page->assign('x', $user);
881 $page->assign('diff', $diff);
882 }
883 }
74c55fd6 884
e654517d 885 function handler_validate(&$page, $action = 'list', $id = null)
886 {
86f0a6af 887 $page->changeTpl('admin/valider.tpl');
888 $page->assign('xorg_title','Polytechnique.org - Administration - Valider une demande');
441c2451 889 $page->addCssLink('nl.css');
3ad44e08 890 $page->addJsLink('ajax.js');
e654517d 891 require_once("validations.inc.php");
892
74c55fd6 893
ed5b9703 894 if ($action == 'edit' and !is_null($id)) {
895 $page->assign('preview_id', $id);
896 }
897
86f0a6af 898 if(Env::has('uid') && Env::has('type') && Env::has('stamp')) {
20d7932b 899 $req = Validate::get_typed_request(Env::v('uid'), Env::v('type'), Env::v('stamp'));
86f0a6af 900 if($req) { $req->handle_formu(); }
901 }
74c55fd6 902
cfb96867 903 $r = XDB::iterator('SHOW COLUMNS FROM requests_answers');
904 while (($a = $r->next()) && $a['Field'] != 'category');
905 $page->assign('categories', $categories = explode(',', str_replace("'", '', substr($a['Type'], 5, -1))));
74c55fd6 906
cfb96867 907 $hidden = array();
908 if (Post::has('hide')) {
74c55fd6 909 $hide = array();
910 foreach ($categories as $cat)
cfb96867 911 if (!Post::v($cat)) {
912 $hidden[$cat] = 1;
913 $hide[] = $cat;
914 }
915 setcookie('hide_requests', join(',',$hide), time()+(count($hide)?25920000:(-3600)), '/', '', 0);
916 } elseif (Env::has('hide_requests')) {
917 foreach (explode(',',Env::v('hide_requests')) as $hide_type)
918 $hidden[$hide_type] = true;
919 }
920 $page->assign('hide_requests', $hidden);
74c55fd6 921
86f0a6af 922 $page->assign('vit', new ValidateIterator());
923 }
e654517d 924
e18888f4 925 function handler_validate_answers(&$page, $action = 'list', $id = null) {
a7de4ef7 926 $page->assign('xorg_title','Polytechnique.org - Administration - Réponses automatiques de validation');
927 $page->assign('title', 'Gestion des réponses automatiques');
e18888f4 928 $table_editor = new PLTableEditor('admin/validate/answers','requests_answers','id');
a7de4ef7 929 $table_editor->describe('category','catégorie',true);
e18888f4 930 $table_editor->describe('title','titre',true);
931 $table_editor->describe('answer','texte',false);
932 $table_editor->apply($page, $action, $id);
933 }
e7ae7df9 934 function handler_skins(&$page, $action = 'list', $id = null) {
e7ae7df9 935 $page->assign('xorg_title','Polytechnique.org - Administration - Skins');
936 $page->assign('title', 'Gestion des skins');
937 $table_editor = new PLTableEditor('admin/skins','skins','id');
938 $table_editor->describe('name','nom',true);
939 $table_editor->describe('skin_tpl','nom du template',true);
940 $table_editor->describe('auteur','auteur',false);
941 $table_editor->describe('comment','commentaire',true);
942 $table_editor->describe('date','date',false);
943 $table_editor->describe('ext','extension du screenshot',false);
944 $table_editor->apply($page, $action, $id);
74c55fd6 945 }
669cb0e0 946
e7ae7df9 947 function handler_postfix_blacklist(&$page, $action = 'list', $id = null) {
e7ae7df9 948 $page->assign('xorg_title','Polytechnique.org - Administration - Postfix : Blacklist');
949 $page->assign('title', 'Blacklist de postfix');
950 $table_editor = new PLTableEditor('admin/postfix/blacklist','postfix_blacklist','email', true);
951 $table_editor->describe('reject_text','Texte de rejet',true);
952 $table_editor->describe('email','email',true);
953 $table_editor->apply($page, $action, $id);
74c55fd6 954 }
e7ae7df9 955 function handler_postfix_whitelist(&$page, $action = 'list', $id = null) {
e7ae7df9 956 $page->assign('xorg_title','Polytechnique.org - Administration - Postfix : Whitelist');
957 $page->assign('title', 'Whitelist de postfix');
958 $table_editor = new PLTableEditor('admin/postfix/whitelist','postfix_whitelist','email', true);
959 $table_editor->describe('email','email',true);
960 $table_editor->apply($page, $action, $id);
74c55fd6 961 }
ccdbc270 962 function handler_mx_broken(&$page, $action = 'list', $id = null) {
a7de4ef7 963 $page->assign('xorg_title', 'Polytechnique.org - Administration - MX Défaillants');
964 $page->assign('title', 'MX Défaillant');
ccdbc270 965 $table_editor = new PLTableEditor('admin/mx/broken', 'mx_watch', 'host', true);
966 $table_editor->describe('host', 'Masque', true);
967 $table_editor->describe('state', 'Niveau', true);
a7de4ef7 968 $table_editor->describe('text', 'Description du problème', false);
ccdbc270 969 $table_editor->apply($page, $action, $id);
970 }
e7ae7df9 971 function handler_logger_actions(&$page, $action = 'list', $id = null) {
e7ae7df9 972 $page->assign('xorg_title','Polytechnique.org - Administration - Actions');
973 $page->assign('title', 'Gestion des actions de logger');
974 $table_editor = new PLTableEditor('admin/logger/actions','logger.actions','id');
a7de4ef7 975 $table_editor->describe('text','intitulé',true);
e7ae7df9 976 $table_editor->describe('description','description',true);
977 $table_editor->apply($page, $action, $id);
74c55fd6 978 }
e7ae7df9 979 function handler_downtime(&$page, $action = 'list', $id = null) {
e7ae7df9 980 $page->assign('xorg_title','Polytechnique.org - Administration - Coupures');
981 $page->assign('title', 'Gestion des coupures');
982 $table_editor = new PLTableEditor('admin/downtime','coupures','id');
983 $table_editor->describe('debut','date',true);
a7de4ef7 984 $table_editor->describe('duree','durée',false);
985 $table_editor->describe('resume','résumé',true);
986 $table_editor->describe('services','services affectés',true);
e7ae7df9 987 $table_editor->describe('description','description',false);
988 $table_editor->apply($page, $action, $id);
74c55fd6 989 }
bc0903c7 990
9162f4ed 991 function handler_wiki(&$page, $action='list', $wikipage='', $wikipage2='')
bc0903c7 992 {
3aec1c21 993 require_once 'wiki.inc.php';
74c55fd6 994
a2b461ce 995 if (S::v('core_rss_hash')) {
996 $page->setRssLink('Changement Récents',
997 '/Site/AllRecentChanges?action=rss&user=' . S::v('forlife') . '&hash=' . S::v('core_rss_hash'));
998 }
3aec1c21 999 // update wiki perms
1000 if ($action == 'update') {
1001 $perms_read = Post::v('read');
1002 $perms_edot = Post::v('edit');
1003 if ($perms_read || $perms_edit) {
1004 foreach ($_POST as $wiki_page => $val) if ($val == 'on') {
1005 $wiki_page = str_replace('_', '/', $wiki_page);
1006 if (!$perms_read || !$perms_edit)
74c55fd6 1007 list($perms0, $perms1) = wiki_get_perms($wiki_page);
3aec1c21 1008 if ($perms_read)
1009 $perms0 = $perms_read;
1010 if ($perms_edit)
1011 $perms1 = $perms_edit;
1012 wiki_set_perms($wiki_page, $perms0, $perms1);
1013 }
1014 }
1015 }
eaf30d86 1016
9162f4ed 1017 if ($action == 'delete' && $wikipage != '') {
1018 if (wiki_delete_page($wikipage)) {
1019 $page->trig("La page ".$wikipage." a été supprimée.");
1020 } else {
1021 $page->trig("Impossible de supprimer la page ".$wikipage.".");
1022 }
1023 }
eaf30d86 1024
9162f4ed 1025 if ($action == 'rename' && $wikipage != '' && $wikipage2 != '' && $wikipage != $wikipage2) {
1026 if ($changedLinks = wiki_rename_page($wikipage, $wikipage2)) {
1027 $s = 'La page <em>'.$wikipage.'</em> a été déplacée en <em>'.$wikipage2.'</em>.';
1028 if (is_numeric($changedLinks)) {
1029 $s .= $changedLinks.' lien'.(($changedLinks>1)?'s ont été modifiés.':' a été modifié.');
1030 }
1031 $page->trig($s);
1032 } else {
1033 $page->trig("Impossible de déplacer la page ".$wikipage);
1034 }
1035 }
74c55fd6 1036
3aec1c21 1037 $perms = wiki_perms_options();
74c55fd6 1038
3aec1c21 1039 // list wiki pages and their perms
1040 $wiki_pages = array();
1041 $dir = wiki_work_dir();
1042 if (is_dir($dir)) {
1043 if ($dh = opendir($dir)) {
1044 while (($file = readdir($dh)) !== false) if (substr($file,0,1) >= 'A' && substr($file,0,1) <= 'Z') {
1045 list($read,$edit) = wiki_get_perms($file);
1046 $wiki_pages[$file] = array('read' => $perms[$read], 'edit' => $perms[$edit]);
4694ce89 1047 if (is_file($dir . '/cache_' . wiki_filename($file) . '.tpl')) {
1048 $wiki_pages[$file]['cached'] = true;
1049 }
3aec1c21 1050 }
1051 closedir($dh);
1052 }
1053 }
1054 ksort($wiki_pages);
bc0903c7 1055 $wiki_tree = array();
1056 foreach ($wiki_pages as $file => $desc) {
1057 list($cat, $name) = explode('.', $file);
1058 if (!isset($wiki_tree[$cat])) {
1059 $wiki_tree[$cat] = array();
1060 }
1061 $wiki_tree[$cat][$name] = $desc;
1062 }
1063
3aec1c21 1064 $page->changeTpl('admin/wiki.tpl');
e923a0ce 1065 $page->addJsLink('jquery.js');
bc0903c7 1066 $page->assign('wiki_pages', $wiki_tree);
3aec1c21 1067 $page->assign('perms_opts', $perms);
1068 }
5480a216 1069
1070 function handler_ipwatch(&$page, $action = 'list', $ip = null)
eaf30d86 1071 {
5480a216 1072 $page->changeTpl('admin/ipwatcher.tpl');
eaf30d86 1073
5480a216 1074 $states = array('safe' => 'Ne pas surveiller',
c339246f 1075 'unsafe' => 'Surveiller les inscriptions',
a7de4ef7 1076 'dangerous' => 'Surveiller tous les accès',
5480a216 1077 'ban' => 'Bannir cette adresse');
1078 $page->assign('states', $states);
1079
1080 switch (Post::v('action')) {
1081 case 'create':
1082 if (trim(Post::v('ipN')) != '') {
1083 Xdb::execute('INSERT IGNORE INTO ip_watch (ip, state, detection, last, uid, description)
1084 VALUES ({?}, {?}, CURDATE(), NOW(), {?}, {?})',
9797734d 1085 ip_to_uint(trim(Post::v('ipN'))), Post::v('stateN'), S::i('uid'), Post::v('descriptionN'));
eaf30d86
PH
1086 };
1087 break;
1088
1089 case 'edit':
1090 Xdb::execute('UPDATE ip_watch
5480a216 1091 SET state = {?}, last = NOW(), uid = {?}, description = {?}
9797734d
FB
1092 WHERE ip = {?}', Post::v('stateN'), S::i('uid'), Post::v('descriptionN'),
1093 ip_to_uint(Post::v('ipN')));
5480a216 1094 break;
eaf30d86 1095
5480a216 1096 default:
1097 if ($action == 'delete' && !is_null($ip)) {
9797734d 1098 Xdb::execute('DELETE FROM ip_watch WHERE ip = {?}', ip_to_uint($ip));
5480a216 1099 }
1100 }
1101 if ($action != 'create' && $action != 'edit') {
1102 $action = 'list';
1103 }
1104 $page->assign('action', $action);
1105
1106 if ($action == 'list') {
9797734d
FB
1107 $sql = "SELECT w.ip, IF(s.ip IS NULL,
1108 IF(w.ip = s2.ip, s2.host, s2.forward_host),
1109 IF(w.ip = s.ip, s.host, s.forward_host)),
1110 w.detection, w.state, a.alias AS forlife
5480a216 1111 FROM ip_watch AS w
9797734d
FB
1112 LEFT JOIN logger.sessions AS s ON (s.ip = w.ip)
1113 LEFT JOIN logger.sessions AS s2 ON (s2.forward_ip = w.ip)
1114 LEFT JOIN aliases AS a ON (a.id = s.uid AND a.type = 'a_vie')
5480a216 1115 GROUP BY w.ip, a.alias
1116 ORDER BY w.state, w.ip, a.alias";
1117 $it = Xdb::iterRow($sql);
1118
1119 $table = array();
1120 $props = array();
1121 while (list($ip, $host, $date, $state, $forlife) = $it->next()) {
9797734d 1122 $ip = uint_to_ip($ip);
5480a216 1123 if (count($props) == 0 || $props['ip'] != $ip) {
1124 if (count($props) > 0) {
1125 $table[] = $props;
1126 }
1127 $props = array('ip' => $ip,
1128 'host' => $host,
1129 'detection' => $date,
1130 'state' => $state,
1131 'users' => array($forlife));
1132 } else {
1133 $props['users'][] = $forlife;
1134 }
1135 }
1136 if (count($props) > 0) {
1137 $table[] = $props;
1138 }
1139 $page->assign('table', $table);
1140 } elseif ($action == 'edit') {
1141 $sql = "SELECT w.detection, w.state, w.last, w.description,
1142 a1.alias AS edit, a2.alias AS forlife, s.host
1143 FROM ip_watch AS w
eaf30d86 1144 LEFT JOIN aliases AS a1 ON (a1.id = w.uid AND a1.type = 'a_vie')
5480a216 1145 LEFT JOIN logger.sessions AS s ON (w.ip = s.ip)
1146 LEFT JOIN aliases AS a2 ON (a2.id = s.uid AND a2.type = 'a_vie')
1147 WHERE w.ip = {?}
1148 GROUP BY a2.alias
1149 ORDER BY a2.alias";
9797734d 1150 $it = Xdb::iterRow($sql, ip_to_uint($ip));
5480a216 1151
1152 $props = array();
1153 while (list($detection, $state, $last, $description, $edit, $forlife, $host) = $it->next()) {
1154 if (count($props) == 0) {
1155 $props = array('ip' => $ip,
1156 'host' => $host,
1157 'detection' => $detection,
1158 'state' => $state,
1159 'last' => $last,
1160 'description' => $description,
1161 'edit' => $edit,
1162 'users' => array($forlife));
1163 } else {
1164 $props['users'][] = $forlife;
1165 }
1166 }
1167 $page->assign('ip', $props);
1168 }
1169 }
eaf30d86 1170
04148a2c 1171 function handler_icons(&$page)
f141945d 1172 {
1173 $page->changeTpl('admin/icons.tpl');
1174 $dh = opendir('../htdocs/images/icons');
1175 if (!$dh) {
1176 $page->trig('Dossier des icones introuvables.');
1177 }
1178 $icons = array();
1179 while (($file = readdir($dh)) !== false) {
1180 if (strlen($file) > 4 && substr($file,-4) == '.gif') {
1181 array_push($icons, substr($file, 0, -4));
1182 }
1183 }
1184 sort($icons);
1185 $page->assign('icons', $icons);
04148a2c 1186 }
86f0a6af 1187}
1188
a7de4ef7 1189// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
86f0a6af 1190?>