f5ec9423f984b0aa9f7945777d99f4500d407894
[platal.git] / modules / admin.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2010 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(
27 'phpinfo' => $this->make_hook('phpinfo', AUTH_MDP, 'admin'),
28 'get_rights' => $this->make_hook('get_rights', AUTH_MDP, 'admin'),
29 'admin' => $this->make_hook('default', AUTH_MDP, 'admin'),
30 'admin/ax-xorg' => $this->make_hook('ax_xorg', AUTH_MDP, 'admin'),
31 'admin/dead-but-active' => $this->make_hook('dead_but_active', AUTH_MDP, 'admin'),
32 'admin/deaths' => $this->make_hook('deaths', AUTH_MDP, 'admin'),
33 'admin/downtime' => $this->make_hook('downtime', AUTH_MDP, 'admin'),
34 'admin/homonyms' => $this->make_hook('homonyms', AUTH_MDP, 'admin'),
35 'admin/logger' => $this->make_hook('logger', AUTH_MDP, 'admin'),
36 'admin/logger/actions' => $this->make_hook('logger_actions', AUTH_MDP, 'admin'),
37 'admin/postfix/blacklist' => $this->make_hook('postfix_blacklist', AUTH_MDP, 'admin'),
38 'admin/postfix/delayed' => $this->make_hook('postfix_delayed', AUTH_MDP, 'admin'),
39 'admin/postfix/regexp_bounces' => $this->make_hook('postfix_regexpsbounces', AUTH_MDP, 'admin'),
40 'admin/postfix/whitelist' => $this->make_hook('postfix_whitelist', AUTH_MDP, 'admin'),
41 'admin/mx/broken' => $this->make_hook('mx_broken', AUTH_MDP, 'admin'),
42 'admin/skins' => $this->make_hook('skins', AUTH_MDP, 'admin'),
43 'admin/synchro_ax' => $this->make_hook('synchro_ax', AUTH_MDP, 'admin'),
44 'admin/user' => $this->make_hook('user', AUTH_MDP, 'admin'),
45 'admin/add_accounts' => $this->make_hook('add_accounts', AUTH_MDP, 'admin'),
46 'admin/validate' => $this->make_hook('validate', AUTH_MDP, 'admin'),
47 'admin/validate/answers' => $this->make_hook('validate_answers', AUTH_MDP, 'admin'),
48 'admin/wiki' => $this->make_hook('wiki', AUTH_MDP, 'admin'),
49 'admin/ipwatch' => $this->make_hook('ipwatch', AUTH_MDP, 'admin'),
50 'admin/icons' => $this->make_hook('icons', AUTH_MDP, 'admin'),
51 'admin/accounts' => $this->make_hook('accounts', AUTH_MDP, 'admin'),
52 'admin/account/types' => $this->make_hook('account_types', AUTH_MDP, 'admin'),
53 'admin/jobs' => $this->make_hook('jobs', AUTH_MDP, 'admin'),
54 );
55 }
56
57 function handler_phpinfo(&$page)
58 {
59 phpinfo();
60 exit;
61 }
62
63 function handler_get_rights(&$page, $level)
64 {
65 if (S::suid()) {
66 $page->kill('Déjà en SUID');
67 }
68 $user =& S::user();
69 Platal::session()->startSUID($user, $level);
70
71 pl_redirect('/');
72 }
73
74 function handler_default(&$page)
75 {
76 $page->changeTpl('admin/index.tpl');
77 $page->setTitle('Administration');
78 }
79
80 function handler_postfix_delayed(&$page)
81 {
82 $page->changeTpl('admin/postfix_delayed.tpl');
83 $page->setTitle('Administration - Postfix : Retardés');
84
85 if (Env::has('del')) {
86 $crc = Env::v('crc');
87 XDB::execute("UPDATE postfix_mailseen SET release = 'del' WHERE crc = {?}", $crc);
88 $page->trigSuccess($crc . " verra tous ses emails supprimés&nbsp;!");
89 } elseif (Env::has('ok')) {
90 $crc = Env::v('crc');
91 XDB::execute("UPDATE postfix_mailseen SET release = 'ok' WHERE crc = {?}", $crc);
92 $page->trigSuccess($crc . " a le droit de passer&nbsp;!");
93 }
94
95 $sql = XDB::iterator(
96 "SELECT crc, nb, update_time, create_time,
97 FIND_IN_SET('del', p.release) AS del,
98 FIND_IN_SET('ok', p.release) AS ok
99 FROM postfix_mailseen AS p
100 WHERE nb >= 30
101 ORDER BY p.release != ''");
102
103 $page->assign_by_ref('mails', $sql);
104 }
105
106 function handler_postfix_regexpsbounces(&$page, $new = null) {
107 $page->changeTpl('admin/emails_bounces_re.tpl');
108 $page->setTitle('Administration - Postfix : Regexps Bounces');
109 $page->assign('new', $new);
110
111 if (Post::has('submit')) {
112 foreach (Env::v('lvl') as $id=>$val) {
113 XDB::query(
114 "REPLACE INTO emails_bounces_re (id,pos,lvl,re,text) VALUES ({?}, {?}, {?}, {?}, {?})",
115 $id, $_POST['pos'][$id], $_POST['lvl'][$id], $_POST['re'][$id], $_POST['text'][$id]
116 );
117 }
118 }
119
120 $page->assign('bre', XDB::iterator("SELECT * FROM emails_bounces_re ORDER BY pos"));
121 }
122
123 // {{{ logger view
124
125 /** Retrieves the available days for a given year and month.
126 * Obtain a list of days of the given month in the given year
127 * that are within the range of dates that we have log entries for.
128 *
129 * @param integer year
130 * @param integer month
131 * @return array days in that month we have log entries covering.
132 * @private
133 */
134 function _getDays($year, $month)
135 {
136 // give a 'no filter' option
137 $months[0] = "----";
138
139 if ($year && $month) {
140 $day_max = Array(-1, 31, checkdate(2, 29, $year) ? 29 : 28 , 31,
141 30, 31, 30, 31, 31, 30, 31, 30, 31);
142 $res = XDB::query("SELECT YEAR (MAX(start)), YEAR (MIN(start)),
143 MONTH(MAX(start)), MONTH(MIN(start)),
144 DAYOFMONTH(MAX(start)),
145 DAYOFMONTH(MIN(start))
146 FROM log_sessions");
147 list($ymax, $ymin, $mmax, $mmin, $dmax, $dmin) = $res->fetchOneRow();
148
149 if (($year < $ymin) || ($year == $ymin && $month < $mmin)) {
150 return array();
151 }
152
153 if (($year > $ymax) || ($year == $ymax && $month > $mmax)) {
154 return array();
155 }
156
157 $min = ($year==$ymin && $month==$mmin) ? intval($dmin) : 1;
158 $max = ($year==$ymax && $month==$mmax) ? intval($dmax) : $day_max[$month];
159
160 for($i = $min; $i<=$max; $i++) {
161 $days[$i] = $i;
162 }
163 }
164 return $days;
165 }
166
167
168 /** Retrieves the available months for a given year.
169 * Obtains a list of month numbers that are within the timeframe that
170 * we have log entries for.
171 *
172 * @param integer year
173 * @return array List of month numbers we have log info for.
174 * @private
175 */
176 function _getMonths($year)
177 {
178 // give a 'no filter' option
179 $months[0] = "----";
180
181 if ($year) {
182 $res = XDB::query("SELECT YEAR (MAX(start)), YEAR (MIN(start)),
183 MONTH(MAX(start)), MONTH(MIN(start))
184 FROM log_sessions");
185 list($ymax, $ymin, $mmax, $mmin) = $res->fetchOneRow();
186
187 if (($year < $ymin) || ($year > $ymax)) {
188 return array();
189 }
190
191 $min = $year == $ymin ? intval($mmin) : 1;
192 $max = $year == $ymax ? intval($mmax) : 12;
193
194 for($i = $min; $i<=$max; $i++) {
195 $months[$i] = $i;
196 }
197 }
198 return $months;
199 }
200
201
202 /** Retrieves the available years.
203 * Obtains a list of years that we have log entries covering.
204 *
205 * @return array years we have log entries for.
206 * @private
207 */
208 function _getYears()
209 {
210 // give a 'no filter' option
211 $years[0] = "----";
212
213 // retrieve available years
214 $res = XDB::query("select YEAR(MAX(start)), YEAR(MIN(start)) FROM log_sessions");
215 list($max, $min) = $res->fetchOneRow();
216
217 for($i = intval($min); $i<=$max; $i++) {
218 $years[$i] = $i;
219 }
220 return $years;
221 }
222
223
224 /** Make a where clause to get a user's sessions.
225 * Prepare the where clause request that will retrieve the sessions.
226 *
227 * @param $year INTEGER Only get log entries made during the given year.
228 * @param $month INTEGER Only get log entries made during the given month.
229 * @param $day INTEGER Only get log entries made during the given day.
230 * @param $uid INTEGER Only get log entries referring to the given user ID.
231 *
232 * @return STRING the WHERE clause of a query, including the 'WHERE' keyword
233 * @private
234 */
235 function _makeWhere($year, $month, $day, $uid)
236 {
237 // start constructing the "where" clause
238 $where = array();
239
240 if ($uid)
241 array_push($where, "uid='$uid'");
242
243 // we were given at least a year
244 if ($year) {
245 if ($day) {
246 $dmin = mktime(0, 0, 0, $month, $day, $year);
247 $dmax = mktime(0, 0, 0, $month, $day+1, $year);
248 } elseif ($month) {
249 $dmin = mktime(0, 0, 0, $month, 1, $year);
250 $dmax = mktime(0, 0, 0, $month+1, 1, $year);
251 } else {
252 $dmin = mktime(0, 0, 0, 1, 1, $year);
253 $dmax = mktime(0, 0, 0, 1, 1, $year+1);
254 }
255 $where[] = "start >= " . date("Ymd000000", $dmin);
256 $where[] = "start < " . date("Ymd000000", $dmax);
257 }
258
259 if (!empty($where)) {
260 return ' WHERE ' . implode($where, " AND ");
261 } else {
262 return '';
263 }
264 // WE know it's totally reversed, so better use array_reverse than a SORT BY start DESC
265 }
266
267 // }}}
268
269 function handler_logger(&$page, $action = null, $arg = null) {
270 if ($action == 'session') {
271
272 // we are viewing a session
273 $res = XDB::query("SELECT ls.*, a.alias AS username, sa.alias AS suer
274 FROM log_sessions AS ls
275 LEFT JOIN #x4dat#.aliases AS a ON (a.id = ls.uid AND a.type='a_vie')
276 LEFT JOIN #x4dat#.aliases AS sa ON (sa.id = ls.suid AND sa.type='a_vie')
277 WHERE ls.id = {?}", $arg);
278
279 $page->assign('session', $a = $res->fetchOneAssoc());
280
281 $res = XDB::iterator('SELECT a.text, e.data, e.stamp
282 FROM log_events AS e
283 LEFT JOIN log_actions AS a ON e.action=a.id
284 WHERE e.session={?}', $arg);
285 while ($myarr = $res->next()) {
286 $page->append('events', $myarr);
287 }
288
289 } else {
290 $loguser = $action == 'user' ? $arg : Env::v('loguser');
291
292 $res = XDB::query('SELECT id FROM aliases WHERE alias={?}',
293 $loguser);
294 $loguid = $res->fetchOneCell();
295
296 if ($loguid) {
297 $year = Env::i('year');
298 $month = Env::i('month');
299 $day = Env::i('day');
300 } else {
301 $year = Env::i('year', intval(date('Y')));
302 $month = Env::i('month', intval(date('m')));
303 $day = Env::i('day', intval(date('d')));
304 }
305
306 if (!$year)
307 $month = 0;
308 if (!$month)
309 $day = 0;
310
311 // smarty assignments
312 // retrieve available years
313 $page->assign('years', $this->_getYears());
314 $page->assign('year', $year);
315
316 // retrieve available months for the current year
317 $page->assign('months', $this->_getMonths($year));
318 $page->assign('month', $month);
319
320 // retrieve available days for the current year and month
321 $page->assign('days', $this->_getDays($year, $month));
322 $page->assign('day', $day);
323
324 $page->assign('loguser', $loguser);
325 // smarty assignments
326
327 if ($loguid || $year) {
328
329 // get the requested sessions
330 $where = $this->_makeWhere($year, $month, $day, $loguid);
331 $select = "SELECT s.id, s.start, s.uid,
332 a.alias as username
333 FROM log_sessions AS s
334 LEFT JOIN #x4dat#.aliases AS a ON (a.id = s.uid AND a.type='a_vie')
335 $where
336 ORDER BY start DESC";
337 $res = XDB::iterator($select);
338
339 $sessions = array();
340 while ($mysess = $res->next()) {
341 $mysess['events'] = array();
342 $sessions[$mysess['id']] = $mysess;
343 }
344 array_reverse($sessions);
345
346 // attach events
347 $sql = "SELECT s.id, a.text
348 FROM log_sessions AS s
349 LEFT JOIN log_events AS e ON(e.session=s.id)
350 INNER JOIN log_actions AS a ON(a.id=e.action)
351 $where";
352
353 $res = XDB::iterator($sql);
354 while ($event = $res->next()) {
355 array_push($sessions[$event['id']]['events'], $event['text']);
356 }
357 $page->assign_by_ref('sessions', $sessions);
358 } else {
359 $page->assign('msg_nofilters', "Sélectionner une annuée et/ou un utilisateur");
360 }
361 }
362
363 $page->changeTpl('admin/logger-view.tpl');
364
365 $page->setTitle('Administration - Logs des sessions');
366 }
367
368 function handler_user(&$page, $login = false)
369 {
370 global $globals;
371 $page->changeTpl('admin/user.tpl');
372 $page->setTitle('Administration - Compte');
373
374 if (S::suid()) {
375 $page->kill("Déjà en SUID&nbsp;!!!");
376 }
377
378 // Loads the user identity using the environment.
379 $user = User::get($login);
380 if (!$user) {
381 return;
382 }
383
384 $login = $user->login();
385 $registered = ($user->state != 'pending');
386
387 // Form processing
388 if (!empty($_POST)) {
389 S::assert_xsrf_token();
390 if (Post::has('uid') && Post::i('uid') != $user->id()) {
391 $page->kill('Une erreur s\'est produite');
392 }
393 }
394
395 // Handles specific requests (AX sync, su, ...).
396 if(Post::has('logs_account')) {
397 pl_redirect("admin/logger?loguser=$login&year=".date('Y')."&month=".date('m'));
398 }
399
400 if(Post::has('su_button') && $registered) {
401 if (!Platal::session()->startSUID($user)) {
402 $page->trigError('Impossible d\'effectuer un SUID sur ' . $user->login());
403 } else {
404 pl_redirect("");
405 }
406 }
407
408 // Account Form {{{
409 $to_update = array();
410 if (Post::has('disable_weak_access')) {
411 $to_update['weak_password'] = null;
412 } else if (Post::has('update_account')) {
413 if (Post::s('full_name') != $user->fullName()) {
414 // XXX: Update profile if a profile is associated
415 $to_update['full_name'] = Post::s('full_name');
416 }
417 if (Post::s('display_name') != $user->displayName()) {
418 // XXX: Update profile if a profile is associated
419 $to_update['display_name'] = Post::s('display_name');
420 }
421 if (Post::s('sex') != ($user->isFemale() ? 'female' : 'male')) {
422 $to_update['sex'] = Post::s('sex');
423 }
424 if (!Post::blank('hashpass')) {
425 $to_update['password'] = Post::s('hashpass');
426 // TODO: Propagate the password update to GoogleApps, when required. Eg:
427 // $account = new GoogleAppsAccount($user);
428 // if ($account->active() && $account->sync_password) {
429 // $account->set_password($pass_encrypted);
430 // }
431 }
432 if (!Post::blank('weak_password')) {
433 $to_update['weak_password'] = Post::s('weak_password');
434 }
435 if (Post::i('token_access', 0) != ($user->token_access ? 1 : 0)) {
436 $to_update['token'] = Post::i('token_access') ? rand_url_id(16) : null;
437 }
438 if (Post::i('skin', 0) != $user->skin) {
439 $to_update['skin'] = Post::i('skin', 0);
440 if ($to_update['skin'] == 0) {
441 $to_update['skin'] = null;
442 }
443 }
444 if (Post::s('state') != $user->state) {
445 $to_update['state'] = Post::s('state');
446 }
447 if (Post::i('is_admin', 0) != ($user->is_admin ? 1 : 0)) {
448 $to_update['is_admin'] = Post::b('is_admin');
449 }
450 if (Post::s('type') != $user->type) {
451 $to_update['type'] = Post::s('type');
452 }
453 if (Post::i('watch', 0) != ($user->watch ? 1 : 0)) {
454 $to_update['flags'] = new PlFlagset();
455 $to_update['flags']->addFlag('watch', Post::i('watch'));
456 }
457 if (Post::t('comment') != $user->comment) {
458 $to_update['comment'] = Post::blank('comment') ? null : Post::t('comment');
459 }
460 }
461 if (!empty($to_update)) {
462 // TODO: fetch the initial values of the fields, and eventually send
463 // a summary of the changes to an admin.
464 $set = array();
465 foreach ($to_update as $k => $value) {
466 $set[] = XDB::format($k . ' = {?}', $value);
467 }
468 XDB::execute('UPDATE accounts
469 SET ' . implode(', ', $set) . '
470 WHERE uid = ' . XDB::format('{?}', $user->id()));
471 $page->trigSuccess('Données du compte mise à jour avec succès');
472 $user = User::getWithUID($user->id());
473 }
474 // }}}
475
476 // Profile form {{{
477 if (Post::has('add_profile') || Post::has('del_profile') || Post::has('owner')) {
478 if (Post::i('del_profile', 0) != 0) {
479 XDB::execute('DELETE FROM account_profiles
480 WHERE uid = {?} AND pid = {?}',
481 $user->id(), Post::i('del_profile'));
482 } else if (!Post::blank('new_profile')) {
483 $profile = Profile::get(Post::t('new_profile'));
484 if (!$profile) {
485 $page->trigError('Le profil ' . Post::t('new_profile') . ' n\'existe pas');
486 } else {
487 XDB::execute('INSERT IGNORE INTO account_profiles (uid, pid)
488 VALUES ({?}, {?})',
489 $user->id(), $profile->id());
490 }
491 }
492 XDB::execute('UPDATE account_profiles
493 SET perms = IF(pid = {?}, CONCAT(perms, \',owner\'), REPLACE(perms, \'owner\', \'\'))
494 WHERE uid = {?}',
495 Post::i('owner'), $user->id());
496 }
497 // }}}
498
499 // Email forwards form {{{
500 require_once("emails.inc.php");
501 $redirect = ($registered ? new Redirect($user) : null);
502 if (Post::has('add_fwd')) {
503 $email = Post::t('email');
504 if (!isvalid_email_redirection($email)) {
505 $page->trigError("Email non valide: $email");
506 } else {
507 $redirect->add_email($email);
508 $page->trigSuccess("Ajout de $email effectué");
509 }
510 } else if (!Post::blank('del_fwd')) {
511 $redirect->delete_email(Post::t('del_fwd'));
512 } else if (!Post::blank('activate_fwd')) {
513 $redirect->modify_one_email(Post::t('activate_fwd', true));
514 } else if (!Post::blank('deactivate_fwd')) {
515 $redirect->modify_one_email(Post::t('deactivate_fwd', false));
516 } else if (Post::has('disable_fwd')) {
517 $redirect->disable();
518 } else if (Post::has('enable_fwd')) {
519 $redirect->enable();
520 } else if (!Post::blank('clean_fwd')) {
521 $redirect->clean_errors(Post::t('clean_fwd'));
522 }
523 // }}}
524
525 // Email alias form {{{
526 if (Post::has('add_alias')) {
527 // Splits new alias in user and fqdn.
528 $alias = Env::t('email');
529 if (strpos($alias, '@') !== false) {
530 list($alias, $domain) = explode('@', $alias);
531 } else {
532 $domain = $globals->mail->domain;
533 }
534
535 // Checks for alias' user validity.
536 if (!preg_match('/[-a-z0-9\.]+/s', $alias)) {
537 $page->trigError("'$alias' n'est pas un alias valide");
538 }
539
540 // Eventually adds the alias to the right domain.
541 if ($domain == $globals->mail->alias_dom || $domain == $globals->mail->alias_dom2) {
542 $req = new AliasReq($user, $alias, 'Admin request', false);
543 if ($req->commit()) {
544 $page->trigSuccess("Nouvel alias '$alias@$domain' attribué");
545 } else {
546 $page->trigError("Impossible d'ajouter l'alias '$alias@$domain', il est probablement déjà attribué");
547 }
548 } elseif ($domain == $globals->mail->domain || $domain == $globals->mail->domain2) {
549 $res = XDB::execute("INSERT INTO aliases (id, alias, type)
550 VALUES ({?}, {?}, 'alias')",
551 $user->id(), $alias);
552 $page->trigSuccess("Nouvel alias '$alias' ajouté");
553 } else {
554 $page->trigError("Le domaine '$domain' n'est pas valide");
555 }
556 } else if (!Post::blank('del_alias')) {
557 XDB::execute("DELETE FROM aliases
558 WHERE id = {?} AND alias = {?} AND
559 type NOT IN ('a_vie', 'homonyme')",
560 $user->id(), $val);
561 XDB::execute("UPDATE emails
562 SET rewrite = ''
563 WHERE uid = {?} AND rewrite LIKE CONCAT({?}, '@%')",
564 $user->id(), $val);
565 fix_bestalias($user);
566 $page->trigSuccess("L'alias '$val' a été supprimé");
567 } else if (!Post::blank('best')) {
568 XDB::execute("UPDATE aliases
569 SET flags = TRIM(BOTH ',' FROM REPLACE(CONCAT(',', flags, ','), ',bestalias,', ','))
570 WHERE id = {?}", $user->id());
571 XDB::execute("UPDATE aliases
572 SET flags = CONCAT_WS(',', IF(flags = '', NULL, flags), 'bestalias')
573 WHERE id = {?} AND alias = {?}", $user->id(), $val);
574 // As having a non-null bestalias value is critical in
575 // plat/al's code, we do an a posteriori check on the
576 // validity of the bestalias.
577 fix_bestalias($user);
578 }
579 // }}}
580
581 // OpenId form {{{
582 if (Post::has('del_openid')) {
583 XDB::execute('DELETE FROM openid_trusted
584 WHERE id = {?}', Post::i('del_openid'));
585 }
586 // }}}
587
588 // Forum form {{{
589 if (Post::has('b_edit')) {
590 XDB::execute("DELETE FROM forum_innd
591 WHERE uid = {?}", $user->id());
592 if (Env::v('write_perm') != "" || Env::v('read_perm') != "" || Env::v('commentaire') != "" ) {
593 XDB::execute("INSERT INTO forum_innd
594 SET ipmin = '0', ipmax = '4294967295',
595 write_perm = {?}, read_perm = {?},
596 comment = {?}, priority = '200', uid = {?}",
597 Env::v('write_perm'), Env::v('read_perm'), Env::v('comment'), $user->id());
598 }
599 }
600 // }}}
601
602
603 $page->addJsLink('ui.core.js');
604 $page->addJsLink('ui.tabs.js');
605
606 // Displays last login and last host information.
607 $res = XDB::query("SELECT start, host
608 FROM log_sessions
609 WHERE uid = {?} AND suid = 0
610 ORDER BY start DESC
611 LIMIT 1", $user->id());
612 list($lastlogin,$host) = $res->fetchOneRow();
613 $page->assign('lastlogin', $lastlogin);
614 $page->assign('host', $host);
615
616 // Display active aliases.
617 $page->assign('virtuals', $user->emailAliases());
618 $page->assign('aliases', XDB::iterator("SELECT alias, type='a_vie' AS for_life,
619 FIND_IN_SET('bestalias',flags) AS best, expire
620 FROM aliases
621 WHERE id = {?} AND type != 'homonyme'
622 ORDER BY type != 'a_vie'", $user->id()));
623 $page->assign('account_types', XDB::iterator('SELECT * FROM account_types ORDER BY type'));
624 $page->assign('skins', XDB::iterator('SELECT id, name FROM skins ORDER BY name'));
625 $page->assign('profiles', XDB::iterator('SELECT p.pid, p.hrpid, FIND_IN_SET(\'owner\', ap.perms) AS owner
626 FROM account_profiles AS ap
627 INNER JOIN profiles AS p ON (ap.pid = p.pid)
628 WHERE ap.uid = {?}', $user->id()));
629 $page->assign('openid', XDB::iterator('SELECT id, url
630 FROM openid_trusted
631 WHERE user_id = {?}', $user->id()));
632
633 // Displays email redirection and the general profile.
634 if ($registered && $redirect) {
635 $page->assign('emails', $redirect->emails);
636 }
637
638 $page->assign('user', $user);
639
640 // Displays forum bans.
641 $res = XDB::query("SELECT write_perm, read_perm, comment
642 FROM forum_innd
643 WHERE uid = {?}", $user->id());
644 $bans = $res->fetchOneAssoc();
645 $page->assign('bans', $bans);
646 }
647
648 private static function getHrid($firstname, $lastname, $promo)
649 {
650 if ($firstname != null && $lastname != null && $promo != null) {
651 return User::makeForlife($firstname, $lastname, $promo);
652 }
653 return null;
654 }
655
656 private static function getMatricule($mat)
657 {
658 $year = intval(substr($mat, 0, 3));
659 $rang = intval(substr($mat, 3, 3));
660 if ($year > 200) { $year /= 10; };
661 if ($year < 96) {
662 return null;
663 } else {
664 return sprintf('%04u%04u', 1900+$year, $rang);
665 }
666 }
667
668 private static function formatNewUser($infosLine, $separator, $promo, $size)
669 {
670 $infos = explode($separator, $infosLine);
671 if (sizeof($infos) != $size) {
672 return false;
673 }
674
675 array_map('trim', $infos);
676 $hrid = self::getHrid($infos[1], $infos[0], $promo);
677 $res1 = XDB::query('SELECT COUNT(*)
678 FROM accounts
679 WHERE hruid = {?}', $hrid);
680 $res2 = XDB::query('SELECT COUNT(*)
681 FROM profiles
682 WHERE hrpid = {?}', $hrid);
683 if (is_null($hrid) || $res1->fetchOneCell() > 0 || $res2->fetchOneCell() > 0) {
684 $page->trigError("La ligne $line n'a pas été ajoutée.");
685 return false;
686 }
687 $infos['hrid'] = $hrid;
688 return $infos;
689 }
690
691 private static function formatSex(&$page, $sex, $line)
692 {
693 switch ($sex) {
694 case 'F':
695 return PlUser::GENDER_FEMALE;
696 case 'M':
697 return PlUser::GENDER_MALE;
698 default:
699 $page->trigError("La ligne $line n'a pas été ajoutée car le sexe $sex n'est pas pris en compte.");
700 return null;
701 }
702 }
703
704 private static function formatBirthDate($birthDate)
705 {
706 return date("Y-m-d", strtotime($birthDate));
707 }
708
709 function handler_add_accounts(&$page, $action = null, $promo = null)
710 {
711 $page->changeTpl('admin/add_accounts.tpl');
712
713 if (Env::has('add_type') && Env::has('people')) {
714 require_once 'directory.enums.inc.php';
715 $lines = explode("\n", Env::t('people'));
716 $separator = Env::t('separator');
717 $promotion = Env::i('promotion');
718 $nameTypes = DirEnum::getOptionsArray(DirEnum::NAMETYPES);
719 $nameTypes = array_flip($nameTypes);
720
721 if (Env::t('add_type') == 'promo') {
722 $type = 'x';
723 $eduSchools = DirEnum::getOptionsArray(DirEnum::EDUSCHOOLS);
724 $eduSchools = array_flip($eduSchools);
725 $eduDegrees = DirEnum::getOptionsArray(DirEnum::EDUDEGREES);
726 $eduDegrees = array_flip($eduDegrees);
727 var_dump($eduDegrees);
728 switch (Env::t('edu_type')) {
729 case 'X':
730 $degreeid = $eduDegrees[Profile::DEGREE_X];
731 $entry_year = $promotion;
732 $grad_year = $promotion + 3;
733 $promo = 'X' . $promotion;
734 break;
735 case 'M':
736 $degreeid = $eduDegrees[Profile::DEGREE_M];
737 $grad_year = $promotion;
738 $entry_year = $promotion - 2;
739 $promo = 'M' . $promotion;
740 break;
741 case 'D':
742 $degreeid = $eduDegrees[Profile::DEGREE_D];
743 $grad_year = $promotion;
744 $entry_year = $promotion - 3;
745 $promo = 'D' . $promotion;
746 break;
747 default:
748 $page->killError("La formation n'est pas reconnue:" . Env::t('edu_type') . '.');
749 }
750
751 foreach ($lines as $line) {
752 if (($infos = self::formatNewUser($line, $separator, $promotion, 6))
753 && ($sex = self::formatSex($page, $infos[3], $line))) {
754 $name = $infos[1] . ' ' . $infos[0];
755 $birthDate = self::formatBirthDate($infos[2]);
756 $xorgId = self::getMatricule($infos[4]);
757
758 XDB::execute('INSERT INTO profiles (hrpid, xorg_id, ax_id, birthdate_ref, sex)
759 VALUES ({?}, {?}, {?}, {?})',
760 $infos['hrid'], $xorgId, $infos[5], $birthDate, $sex);
761 $pid = XDB::insertId();
762 XDB::execute('INSERT INTO profile_name (pid, name, typeid)
763 VALUES ({?}, {?}, {?})',
764 $pid, $infos[0], $nameTypes['name_ini']);
765 XDB::execute('INSERT INTO profile_name (pid, name, typeid)
766 VALUES ({?}, {?}, {?})',
767 $pid, $infos[1], $nameTypes['firstname_ini']);
768 XDB::execute('INSERT INTO profile_display (pid, yourself, public_name, private_name,
769 directory_name, short_name, sort_name, promo)
770 VALUES ({?}, {?}, {?}, {?}, {?}, {?}, {?}, {?})',
771 $pid, $infos[1], $name, $name, $name, $name, $infos[0] . ' ' . $infos[1], $promo);
772 XDB::execute('INSERT INTO profile_education (pid, eduid, degreeid, entry_year, grad_year, flags)
773 VALUES ({?}, {?}, {?}, {?}, {?}, {?})',
774 $pid, $eduSchools[Profile::EDU_X], $degreeid, $entry_year, $grad_year, 'primary');
775 XDB::execute('INSERT INTO accounts (hruid, type, is_admin, state, full_name, display_name, sex)
776 VALUES ({?}, {?}, {?}, {?}, {?}, {?}, {?})',
777 $infos['hrid'], $type, 0, 'active', $name, $infos[1], $sex);
778 $uid = XDB::insertId();
779 XDB::execute('INSERT INTO account_profiles (uid, pid, perms)
780 VALUES ({?}, {?}, {?})',
781 $uid, $pid, 'owner');
782 }
783 }
784 } else if (Env::t('add_type') == 'account') {
785 $type = Env::t('type');
786 foreach ($lines as $line) {
787 if (($infos = self::formatNewUser($line, $separator, $type, 4))
788 && ($sex = self::formatSex(&$page, $infos[3], $line))) {
789 XDB::execute('INSERT INTO accounts (hruid, type, is_admin, state, email, full_name, display_name, sex)
790 VALUES ({?}, {?}, {?}, {?}, {?}, {?}, {?}, {?})',
791 $infos['hrid'], $type, 0, 'active', $infos[2], $infos[1] . ' ' . $infos[0], $infos[1], $sex);
792 }
793 }
794 } else if (Env::t('add_type') == 'ax_id') {
795 $type = 'x';
796 foreach ($lines as $line) {
797 if ($infos = self::formatNewUser($line, $separator, $promotion, 3)) {
798 XDB::execute('UPDATE profiles
799 SET ax_id = {?}
800 WHERE hrpid = {?}',
801 $infos[2], $infos['hrid']);
802 }
803 }
804 }
805
806 if ($page->nb_errs == 0) {
807 $page->trigSuccess("L'opération a été effectuée avec succès.");
808 } else {
809 $page->trigSuccess("L'opération a été effectuée avec succès, sauf pour les "
810 . $page->nb_errs . 'erreurs signalées ci-dessus.');
811 }
812 } else if (Env::has('add_type')) {
813 $res = XDB::query('SELECT type
814 FROM account_types');
815 $page->assign('account_types', $res->fetchColumn());
816 $page->assign('add_type', Env::s('add_type'));
817 }
818 }
819
820 function handler_homonyms(&$page, $op = 'list', $target = null)
821 {
822 $page->changeTpl('admin/homonymes.tpl');
823 $page->setTitle('Administration - Homonymes');
824 $this->load("homonyms.inc.php");
825
826 if ($target) {
827 $user = User::getSilent($target);
828 if (!$user || !($loginbis = select_if_homonyme($user))) {
829 $target = 0;
830 } else {
831 $page->assign('user', $user);
832 $page->assign('loginbis',$loginbis);
833 }
834 }
835
836 $page->assign('op', $op);
837 $page->assign('target', $target);
838
839 // on a un $target valide, on prepare les mails
840 if ($target) {
841 // on examine l'op a effectuer
842 switch ($op) {
843 case 'mail':
844 S::assert_xsrf_token();
845
846 send_warning_homonyme($user, $loginbis);
847 switch_bestalias($user, $loginbis);
848 $op = 'list';
849 $page->trigSuccess('Email envoyé à ' . $user->forlifeEmail() . '.');
850 break;
851
852 case 'correct':
853 S::assert_xsrf_token();
854
855 switch_bestalias($user, $loginbis);
856 XDB::execute("UPDATE aliases
857 SET type = 'homonyme', expire=NOW()
858 WHERE alias = {?}", $loginbis);
859 XDB::execute("REPLACE INTO homonymes (homonyme_id,user_id)
860 VALUES ({?}, {?})", $target, $target);
861 send_robot_homonyme($user, $loginbis);
862 $op = 'list';
863 $page->trigSuccess('Email envoyé à ' . $user->forlifeEmail() . ', alias supprimé.');
864 break;
865 }
866 }
867
868 if ($op == 'list') {
869 $res = XDB::iterator(
870 "SELECT a.alias AS homonyme, s.alias AS forlife,
871 IF(h.homonyme_id = s.id, a.expire, NULL) AS expire,
872 IF(h.homonyme_id = s.id, a.type, NULL) AS type,
873 ac.uid AS user_id
874 FROM aliases AS a
875 LEFT JOIN homonymes AS h ON (h.homonyme_id = a.id)
876 INNER JOIN aliases AS s ON (s.id = h.user_id AND s.type='a_vie')
877 INNER JOIN accounts AS ac ON (ac.uid = a.id)
878 WHERE a.type = 'homonyme' OR a.expire != ''
879 ORDER BY a.alias, forlife");
880 $hnymes = Array();
881 while ($tab = $res->next()) {
882 $hnymes[$tab['homonyme']][] = $tab;
883 }
884 $page->assign_by_ref('hnymes',$hnymes);
885 }
886 }
887
888 function handler_deaths(&$page, $promo = 0, $validate = false)
889 {
890 $page->changeTpl('admin/deces_promo.tpl');
891 $page->setTitle('Administration - Deces');
892
893 if (!$promo) {
894 $promo = Env::t('promo', 'X1923');
895 }
896 $page->assign('promo', $promo);
897 if (!$promo) {
898 return;
899 }
900
901 if ($validate) {
902 S::assert_xsrf_token();
903
904 $res = XDB::iterRow('SELECT p.hrpid, pd.directory_name, p.deathdate
905 FROM profiles AS p
906 INNER JOIN profile_display AS pd ON (p.pid = pd.pid)
907 WHERE pd.promo = {?}', $promo);
908 while (list($pid, $name, $death) = $res->next()) {
909 $val = Env::v($pid);
910 if($val == $deces || empty($val)) {
911 continue;
912 }
913
914 XDB::execute('UPDATE profiles
915 SET deathdate = {?}, deathdate_rec = NOW()
916 WHERE hrpid = {?}', $val, $pid);
917 $page->trigSuccess('Ajout du décès de ' . $name . ' le ' . $val . '.');
918 if($death == '0000-00-00' || empty($death)) {
919 // TODO: FIX THIS DEPRECATED CALL
920 require_once('user.func.inc.php');
921 user_clear_all_subs($uid, false); // by default, dead ppl do not loose their email
922 }
923 }
924 }
925
926 $res = XDB::iterator('SELECT p.hrpid, pd.directory_name, p.deathdate
927 FROM profiles AS p
928 INNER JOIN profile_display AS pd ON (p.pid = pd.pid)
929 WHERE pd.promo = {?}
930 ORDER BY pd.sort_name', $promo);
931 $page->assign('decedes', $res);
932 }
933
934 function handler_dead_but_active(&$page)
935 {
936 $page->changeTpl('admin/dead_but_active.tpl');
937 $page->setTitle('Administration - Décédés');
938
939 $res = XDB::iterator(
940 "SELECT a.hruid, pd.promo, p.ax_id, pd.directory_name, p.deathdate, DATE(MAX(s.start)) AS last
941 FROM #x4dat#.accounts AS a
942 INNER JOIN #x4dat#.account_profiles AS ap ON (ap.uid = a.uid AND FIND_IN_SET('owner', ap.perms))
943 INNER JOIN #x4dat#.profiles AS p ON (p.pid = ap.pid)
944 INNER JOIN #x4dat#.profile_display AS pd ON (pd.pid = p.pid)
945 LEFT JOIN log_sessions AS s ON (s.uid = a.uid AND suid = 0)
946 WHERE a.state = 'active' AND p.deathdate IS NOT NULL
947 GROUP BY a.uid
948 ORDER BY pd.promo, pd.sort_name");
949 $page->assign('dead', $res);
950 }
951
952 function handler_validate(&$page, $action = 'list', $id = null)
953 {
954 $page->changeTpl('admin/valider.tpl');
955 $page->setTitle('Administration - Valider une demande');
956 $page->addCssLink('nl.css');
957 $page->addJsLink('ajax.js');
958 require_once("validations.inc.php");
959
960
961 if ($action == 'edit' and !is_null($id)) {
962 $page->assign('preview_id', $id);
963 }
964
965 if(Env::has('uid') && Env::has('type') && Env::has('stamp')) {
966 S::assert_xsrf_token();
967
968 $req = Validate::get_typed_request(Env::v('uid'), Env::v('type'), Env::v('stamp'));
969 if ($req) {
970 $req->handle_formu();
971 } else {
972 $page->trigWarning('La validation a déjà été effectuée.');
973 }
974 }
975
976 $r = XDB::iterator('SHOW COLUMNS FROM requests_answers');
977 while (($a = $r->next()) && $a['Field'] != 'category');
978 $page->assign('categories', $categories = explode(',', str_replace("'", '', substr($a['Type'], 5, -1))));
979
980 $hidden = array();
981 $res = XDB::query('SELECT hidden_requests FROM requests_hidden WHERE user_id = {?}', S::v('uid'));
982 $hide_requests = $res->fetchOneCell();
983 if (Post::has('hide')) {
984 $hide = array();
985 foreach ($categories as $cat)
986 if (!Post::v($cat)) {
987 $hidden[$cat] = 1;
988 $hide[] = $cat;
989 }
990 $hide_requests = join(',', $hide);
991 XDB::query('REPLACE INTO requests_hidden (user_id, hidden_requests) VALUES({?}, {?})',
992 S::v('uid'), $hide_requests);
993 } elseif ($hide_requests) {
994 foreach (explode(',', $hide_requests) as $hide_type)
995 $hidden[$hide_type] = true;
996 }
997 $page->assign('hide_requests', $hidden);
998
999 // Update the count of item to validate here... useful in development configuration
1000 // where several copies of the site use the same DB, but not the same "dynamic configuration"
1001 global $globals;
1002 $globals->updateNbValid();
1003 $page->assign('vit', new ValidateIterator());
1004 }
1005
1006 function handler_validate_answers(&$page, $action = 'list', $id = null)
1007 {
1008 $page->setTitle('Administration - Réponses automatiques de validation');
1009 $page->assign('title', 'Gestion des réponses automatiques');
1010 $table_editor = new PLTableEditor('admin/validate/answers','requests_answers','id');
1011 $table_editor->describe('category','catégorie',true);
1012 $table_editor->describe('title','titre',true);
1013 $table_editor->describe('answer','texte',false);
1014 $table_editor->apply($page, $action, $id);
1015 }
1016
1017 function handler_skins(&$page, $action = 'list', $id = null)
1018 {
1019 $page->setTitle('Administration - Skins');
1020 $page->assign('title', 'Gestion des skins');
1021 $table_editor = new PLTableEditor('admin/skins','skins','id');
1022 $table_editor->describe('name','nom',true);
1023 $table_editor->describe('skin_tpl','nom du template',true);
1024 $table_editor->describe('auteur','auteur',false);
1025 $table_editor->describe('comment','commentaire',true);
1026 $table_editor->describe('date','date',false);
1027 $table_editor->describe('ext','extension du screenshot',false);
1028 $table_editor->apply($page, $action, $id);
1029 }
1030
1031 function handler_postfix_blacklist(&$page, $action = 'list', $id = null)
1032 {
1033 $page->setTitle('Administration - Postfix : Blacklist');
1034 $page->assign('title', 'Blacklist de postfix');
1035 $table_editor = new PLTableEditor('admin/postfix/blacklist','postfix_blacklist','email', true);
1036 $table_editor->describe('reject_text','Texte de rejet',true);
1037 $table_editor->describe('email','email',true);
1038 $table_editor->apply($page, $action, $id);
1039 }
1040
1041 function handler_postfix_whitelist(&$page, $action = 'list', $id = null)
1042 {
1043 $page->setTitle('Administration - Postfix : Whitelist');
1044 $page->assign('title', 'Whitelist de postfix');
1045 $table_editor = new PLTableEditor('admin/postfix/whitelist','postfix_whitelist','email', true);
1046 $table_editor->describe('email','email',true);
1047 $table_editor->apply($page, $action, $id);
1048 }
1049
1050 function handler_mx_broken(&$page, $action = 'list', $id = null)
1051 {
1052 $page->setTitle('Administration - MX Défaillants');
1053 $page->assign('title', 'MX Défaillant');
1054 $table_editor = new PLTableEditor('admin/mx/broken', 'mx_watch', 'host', true);
1055 $table_editor->describe('host', 'Masque', true);
1056 $table_editor->describe('state', 'Niveau', true);
1057 $table_editor->describe('text', 'Description du problème', false);
1058 $table_editor->apply($page, $action, $id);
1059 }
1060
1061 function handler_logger_actions(&$page, $action = 'list', $id = null)
1062 {
1063 $page->setTitle('Administration - Actions');
1064 $page->assign('title', 'Gestion des actions de logger');
1065 $table_editor = new PLTableEditor('admin/logger/actions','log_actions','id');
1066 $table_editor->describe('text','intitulé',true);
1067 $table_editor->describe('description','description',true);
1068 $table_editor->apply($page, $action, $id);
1069 }
1070
1071 function handler_downtime(&$page, $action = 'list', $id = null)
1072 {
1073 $page->setTitle('Administration - Coupures');
1074 $page->assign('title', 'Gestion des coupures');
1075 $table_editor = new PLTableEditor('admin/downtime','coupures','id');
1076 $table_editor->describe('debut','date',true);
1077 $table_editor->describe('duree','durée',false);
1078 $table_editor->describe('resume','résumé',true);
1079 $table_editor->describe('services','services affectés',true);
1080 $table_editor->describe('description','description',false);
1081 $table_editor->apply($page, $action, $id);
1082 }
1083
1084 function handler_account_types(&$page, $action = 'list', $id = null)
1085 {
1086 $page->setTitle('Administration - Types de comptes');
1087 $page->assign('title', 'Gestion des types de comptes');
1088 $table_editor = new PLTableEditor('admin/account/types', 'account_types', 'type', true);
1089 $table_editor->describe('type', 'Catégorie', true);
1090 $table_editor->describe('perms', 'Permissions associées', true);
1091 $table_editor->apply($page, $action, $id);
1092 }
1093
1094 function handler_wiki(&$page, $action = 'list', $wikipage = null, $wikipage2 = null)
1095 {
1096 if (S::hasAuthToken()) {
1097 $page->setRssLink('Changement Récents',
1098 '/Site/AllRecentChanges?action=rss&user=' . S::v('hruid') . '&hash=' . S::v('token'));
1099 }
1100
1101 // update wiki perms
1102 if ($action == 'update') {
1103 S::assert_xsrf_token();
1104
1105 $perms_read = Post::v('read');
1106 $perms_edit = Post::v('edit');
1107 if ($perms_read || $perms_edit) {
1108 foreach ($_POST as $wiki_page => $val) {
1109 if ($val == 'on') {
1110 $wp = new PlWikiPage(str_replace(array('_', '/'), '.', $wiki_page));
1111 if ($wp->setPerms($perms_read ? $perms_read : $wp->readPerms(),
1112 $perms_edit ? $perms_edit : $wp->writePerms())) {
1113 $page->trigSuccess("Permission de la page $wiki_page mises à jour");
1114 } else {
1115 $page->trigError("Impossible de mettre les permissions de la page $wiki_page à jour");
1116 }
1117 }
1118 }
1119 }
1120 } else if ($action != 'list' && !empty($wikipage)) {
1121 $wp = new PlWikiPage($wikipage);
1122 S::assert_xsrf_token();
1123
1124 if ($action == 'delete') {
1125 if ($wp->delete()) {
1126 $page->trigSuccess("La page ".$wikipage." a été supprimée.");
1127 } else {
1128 $page->trigError("Impossible de supprimer la page ".$wikipage.".");
1129 }
1130 } else if ($action == 'rename' && !empty($wikipage2) && $wikipage != $wikipage2) {
1131 if ($changedLinks = $wp->rename($wikipage2)) {
1132 $s = 'La page <em>'.$wikipage.'</em> a été déplacée en <em>'.$wikipage2.'</em>.';
1133 if (is_numeric($changedLinks)) {
1134 $s .= $changedLinks.' lien'.(($changedLinks>1)?'s ont été modifiés.':' a été modifié.');
1135 }
1136 $page->trigSuccess($s);
1137 } else {
1138 $page->trigError("Impossible de déplacer la page ".$wikipage);
1139 }
1140 }
1141 }
1142
1143 $perms = PlWikiPage::permOptions();
1144
1145 // list wiki pages and their perms
1146 $wiki_pages = PlWikiPage::listPages();
1147 ksort($wiki_pages);
1148 $wiki_tree = array();
1149 foreach ($wiki_pages as $file => $desc) {
1150 list($cat, $name) = explode('.', $file);
1151 if (!isset($wiki_tree[$cat])) {
1152 $wiki_tree[$cat] = array();
1153 }
1154 $wiki_tree[$cat][$name] = $desc;
1155 }
1156
1157 $page->changeTpl('admin/wiki.tpl');
1158 $page->assign('wiki_pages', $wiki_tree);
1159 $page->assign('perms_opts', $perms);
1160 }
1161
1162 function handler_ipwatch(&$page, $action = 'list', $ip = null)
1163 {
1164 $page->changeTpl('admin/ipwatcher.tpl');
1165
1166 $states = array('safe' => 'Ne pas surveiller',
1167 'unsafe' => 'Surveiller les inscriptions',
1168 'dangerous' => 'Surveiller tous les accès',
1169 'ban' => 'Bannir cette adresse');
1170 $page->assign('states', $states);
1171
1172 switch (Post::v('action')) {
1173 case 'create':
1174 if (trim(Post::v('ipN')) != '') {
1175 S::assert_xsrf_token();
1176 Xdb::execute('INSERT IGNORE INTO ip_watch (ip, mask, state, detection, last, uid, description)
1177 VALUES ({?}, {?}, {?}, CURDATE(), NOW(), {?}, {?})',
1178 ip_to_uint(trim(Post::v('ipN'))), ip_to_uint(trim(Post::v('maskN'))),
1179 Post::v('stateN'), S::i('uid'), Post::v('descriptionN'));
1180 };
1181 break;
1182
1183 case 'edit':
1184 S::assert_xsrf_token();
1185 Xdb::execute('UPDATE ip_watch
1186 SET state = {?}, last = NOW(), uid = {?}, description = {?}, mask = {?}
1187 WHERE ip = {?}', Post::v('stateN'), S::i('uid'), Post::v('descriptionN'),
1188 ip_to_uint(Post::v('maskN')), ip_to_uint(Post::v('ipN')));
1189 break;
1190
1191 default:
1192 if ($action == 'delete' && !is_null($ip)) {
1193 S::assert_xsrf_token();
1194 Xdb::execute('DELETE FROM ip_watch WHERE ip = {?}', ip_to_uint($ip));
1195 }
1196 }
1197 if ($action != 'create' && $action != 'edit') {
1198 $action = 'list';
1199 }
1200 $page->assign('action', $action);
1201
1202 if ($action == 'list') {
1203 $sql = "SELECT w.ip, IF(s.ip IS NULL,
1204 IF(w.ip = s2.ip, s2.host, s2.forward_host),
1205 IF(w.ip = s.ip, s.host, s.forward_host)),
1206 w.mask, w.detection, w.state, a.hruid
1207 FROM #x4dat#.ip_watch AS w
1208 LEFT JOIN log_sessions AS s ON (s.ip = w.ip)
1209 LEFT JOIN log_sessions AS s2 ON (s2.forward_ip = w.ip)
1210 LEFT JOIN #x4dat#.accounts AS a ON (a.uid = s.uid)
1211 GROUP BY w.ip, a.hruid
1212 ORDER BY w.state, w.ip, a.hruid";
1213 $it = Xdb::iterRow($sql);
1214
1215 $table = array();
1216 $props = array();
1217 while (list($ip, $host, $mask, $date, $state, $hruid) = $it->next()) {
1218 $ip = uint_to_ip($ip);
1219 $mask = uint_to_ip($mask);
1220 if (count($props) == 0 || $props['ip'] != $ip) {
1221 if (count($props) > 0) {
1222 $table[] = $props;
1223 }
1224 $props = array('ip' => $ip,
1225 'mask' => $mask,
1226 'host' => $host,
1227 'detection' => $date,
1228 'state' => $state,
1229 'users' => array($hruid));
1230 } else {
1231 $props['users'][] = $hruid;
1232 }
1233 }
1234 if (count($props) > 0) {
1235 $table[] = $props;
1236 }
1237 $page->assign('table', $table);
1238 } elseif ($action == 'edit') {
1239 $sql = "SELECT w.detection, w.state, w.last, w.description, w.mask,
1240 a1.hruid AS edit, a2.hruid AS hruid, s.host
1241 FROM #x4dat#.ip_watch AS w
1242 LEFT JOIN #x4dat#.accounts AS a1 ON (a1.uid = w.uid)
1243 LEFT JOIN log_sessions AS s ON (w.ip = s.ip)
1244 LEFT JOIN #x4dat#.accounts AS a2 ON (a2.uid = s.uid)
1245 WHERE w.ip = {?}
1246 GROUP BY a2.hruid
1247 ORDER BY a2.hruid";
1248 $it = Xdb::iterRow($sql, ip_to_uint($ip));
1249
1250 $props = array();
1251 while (list($detection, $state, $last, $description, $mask, $edit, $hruid, $host) = $it->next()) {
1252 if (count($props) == 0) {
1253 $props = array('ip' => $ip,
1254 'mask' => uint_to_ip($mask),
1255 'host' => $host,
1256 'detection' => $detection,
1257 'state' => $state,
1258 'last' => $last,
1259 'description' => $description,
1260 'edit' => $edit,
1261 'users' => array($hruid));
1262 } else {
1263 $props['users'][] = $hruid;
1264 }
1265 }
1266 $page->assign('ip', $props);
1267 }
1268 }
1269
1270 function handler_icons(&$page)
1271 {
1272 $page->changeTpl('admin/icons.tpl');
1273 $dh = opendir('../htdocs/images/icons');
1274 if (!$dh) {
1275 $page->trigError('Dossier des icones introuvables.');
1276 }
1277 $icons = array();
1278 while (($file = readdir($dh)) !== false) {
1279 if (strlen($file) > 4 && substr($file,-4) == '.gif') {
1280 array_push($icons, substr($file, 0, -4));
1281 }
1282 }
1283 sort($icons);
1284 $page->assign('icons', $icons);
1285 }
1286
1287 function handler_accounts(&$page)
1288 {
1289 $page->changeTpl('admin/accounts.tpl');
1290 $page->assign('disabled', XDB::iterator('SELECT a.hruid, FIND_IN_SET(\'watch\', a.flags) AS watch,
1291 a.state = \'disabled\' AS disabled, a.comment
1292 FROM accounts AS a
1293 WHERE a.state = \'disabled\' OR FIND_IN_SET(\'watch\', a.flags)
1294 ORDER BY a.hruid'));
1295 $page->assign('admins', XDB::iterator('SELECT a.hruid
1296 FROM accounts AS a
1297 WHERE a.is_admin
1298 ORDER BY a.hruid'));
1299 }
1300
1301 function handler_jobs(&$page, $id = -1)
1302 {
1303 $page->changeTpl('admin/jobs.tpl');
1304
1305 if (Env::has('search')) {
1306 $res = XDB::query("SELECT e.id, e.name, e.acronym
1307 FROM profile_job_enum AS e
1308 WHERE e.name LIKE CONCAT('% ', {?}, '%') OR e.acronym LIKE CONCAT('% ', {?}, '%')",
1309 Env::t('job'), Env::t('job'));
1310
1311 if ($res->numRows() <= 20) {
1312 $page->assign('jobs', $res->fetchAllAssoc());
1313 } else {
1314 $page->trigError("Il y a trop d'entreprises correspondant à ton choix. Affine-le !");
1315 }
1316
1317 $page->assign('askedJob', Env::v('job'));
1318 return;
1319 }
1320
1321 if (Env::has('edit')) {
1322 // TODO: use address and phone classes to update profile_job_enum and profile_phones once they are done.
1323
1324 S::assert_xsrf_token();
1325 $selectedJob = Env::has('selectedJob');
1326
1327 XDB::execute("DELETE FROM profile_phones
1328 WHERE uid = {?} AND link_type = 'hq'",
1329 $id);
1330 XDB::execute("DELETE FROM profile_addresses
1331 WHERE jobid = {?} AND type = 'hq'",
1332 $id);
1333 XDB::execute('DELETE FROM profile_job_enum
1334 WHERE id = {?}',
1335 $id);
1336
1337 if (Env::has('change')) {
1338 XDB::execute('UPDATE profile_job
1339 SET jobid = {?}
1340 WHERE jobid = {?}',
1341 Env::i('newJobId'), $id);
1342
1343 $page->trigSuccess("L'entreprise a bien été remplacée.");
1344 } else {
1345 require_once 'profil.func.inc.php';
1346 require_once 'geocoding.inc.php';
1347
1348 $display_tel = format_display_number(Env::v('tel'), $error_tel);
1349 $display_fax = format_display_number(Env::v('fax'), $error_fax);
1350 $gmapsGeocoder = new GMapsGeocoder();
1351 $address = array('text' => Env::t('address'));
1352 $address = $gmapsGeocoder->getGeocodedAddress($address);
1353 Geocoder::getAreaId($address, 'administrativeArea');
1354 Geocoder::getAreaId($address, 'subAdministrativeArea');
1355 Geocoder::getAreaId($address, 'locality');
1356
1357 XDB::execute('UPDATE profile_job_enum
1358 SET name = {?}, acronym = {?}, url = {?}, email = {?},
1359 NAF_code = {?}, AX_code = {?}, holdingid = {?}
1360 WHERE id = {?}',
1361 Env::t('name'), Env::t('acronym'), Env::t('url'), Env::t('email'),
1362 Env::t('NAF_code'), Env::i('AX_code'), Env::i('holdingId'), $id);
1363
1364 XDB::execute("INSERT INTO profile_phones (uid, link_type, link_id, tel_id, tel_type,
1365 search_tel, display_tel, pub)
1366 VALUES ({?}, 'hq', 0, 0, 'fixed', {?}, {?}, 'public'),
1367 ({?}, 'hq', 0, 1, 'fax', {?}, {?}, 'public')",
1368 $id, format_phone_number(Env::v('tel')), $display_tel,
1369 $id, format_phone_number(Env::v('fax')), $display_fax);
1370
1371 XDB::execute("INSERT INTO profile_addresses (jobid, type, id, accuracy,
1372 text, postalText, postalCode, localityId,
1373 subAdministrativeAreaId, administrativeAreaId,
1374 countryId, latitude, longitude, updateTime,
1375 north, south, east, west)
1376 VALUES ({?}, 'hq', 0, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?},
1377 {?}, {?}, FROM_UNIXTIME({?}), {?}, {?}, {?}, {?})",
1378 $id, $address['accuracy'], $address['text'], $address['postalText'],
1379 $address['postalCode'], $address['localityId'],
1380 $address['subAdministrativeAreaId'], $address['administrativeAreaId'],
1381 $address['countryId'], $address['latitude'], $address['longitude'],
1382 $address['updateTime'], $address['north'], $address['south'],
1383 $address['east'], $address['west']);
1384
1385 $page->trigSuccess("L'entreprise a bien été mise à jour.");
1386 }
1387 }
1388
1389 if (!Env::has('change') && $id != -1) {
1390 $res = XDB::query("SELECT e.id, e.name, e.acronym, e.url, e.email, e.NAF_code, e.AX_code,
1391 h.id AS holdingId, h.name AS holdingName, h.acronym AS holdingAcronym,
1392 t.display_tel AS tel, f.display_tel AS fax, a.text AS address
1393 FROM profile_job_enum AS e
1394 LEFT JOIN profile_job_enum AS h ON (e.holdingid = h.id)
1395 LEFT JOIN profile_phones AS t ON (t.uid = e.id AND link_type = 'hq' AND tel_id = 0)
1396 LEFT JOIN profile_phones AS f ON (f.uid = e.id AND link_type = 'hq' AND tel_id = 1)
1397 LEFT JOIN profile_addresses AS a ON (a.jobid = e.id AND a.type = 'hq')
1398 WHERE e.id = {?}",
1399 $id);
1400
1401 if ($res->numRows() == 0) {
1402 $page->trigError('Auncune entreprise ne correspond à cet identifiant.');
1403 } else {
1404 $page->assign('selectedJob', $res->fetchOneAssoc());
1405 }
1406 }
1407 }
1408 }
1409
1410 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
1411 ?>