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