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