Fix adding AX IDs via admin/add_accounts when using hruid instead of name+promo
[platal.git] / modules / admin.php
CommitLineData
86f0a6af 1<?php
2/***************************************************************************
c441aabe 3 * Copyright (C) 2003-2014 Polytechnique.org *
86f0a6af 4 * http://opensource.polytechnique.org/ *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
21
22class AdminModule extends PLModule
23{
24 function handlers()
25 {
26 return array(
bfe9f4c7 27 'phpinfo' => $this->make_hook('phpinfo', AUTH_PASSWD, 'admin'),
93e38398 28 'get_rights' => $this->make_hook('get_rights', AUTH_COOKIE, 'admin'),
b47cc6f0 29 'set_skin' => $this->make_hook('set_skin', AUTH_COOKIE, 'admin'),
bfe9f4c7
SJ
30 'admin' => $this->make_hook('default', AUTH_PASSWD, 'admin'),
31 'admin/dead-but-active' => $this->make_hook('dead_but_active', AUTH_PASSWD, 'admin'),
32 'admin/deaths' => $this->make_hook('deaths', AUTH_PASSWD, 'admin'),
33 'admin/downtime' => $this->make_hook('downtime', AUTH_PASSWD, 'admin'),
34 'admin/homonyms' => $this->make_hook('homonyms', AUTH_PASSWD, 'admin'),
35 'admin/logger' => $this->make_hook('logger', AUTH_PASSWD, 'admin'),
36 'admin/logger/actions' => $this->make_hook('logger_actions', AUTH_PASSWD, 'admin'),
37 'admin/postfix/blacklist' => $this->make_hook('postfix_blacklist', AUTH_PASSWD, 'admin'),
38 'admin/postfix/delayed' => $this->make_hook('postfix_delayed', AUTH_PASSWD, 'admin'),
39 'admin/postfix/regexp_bounces' => $this->make_hook('postfix_regexpsbounces', AUTH_PASSWD, 'admin'),
40 'admin/postfix/whitelist' => $this->make_hook('postfix_whitelist', AUTH_PASSWD, 'admin'),
41 'admin/mx/broken' => $this->make_hook('mx_broken', AUTH_PASSWD, 'admin'),
42 'admin/skins' => $this->make_hook('skins', AUTH_PASSWD, 'admin'),
43 'admin/user' => $this->make_hook('user', AUTH_PASSWD, 'admin'),
44 'admin/add_accounts' => $this->make_hook('add_accounts', AUTH_PASSWD, 'admin'),
45 'admin/validate' => $this->make_hook('validate', AUTH_PASSWD, 'admin,edit_directory'),
46 'admin/validate/answers' => $this->make_hook('validate_answers', AUTH_PASSWD, 'admin'),
47 'admin/wiki' => $this->make_hook('wiki', AUTH_PASSWD, 'admin'),
48 'admin/ipwatch' => $this->make_hook('ipwatch', AUTH_PASSWD, 'admin'),
49 'admin/icons' => $this->make_hook('icons', AUTH_PASSWD, 'admin'),
50 'admin/geocoding' => $this->make_hook('geocoding', AUTH_PASSWD, 'admin'),
51 'admin/accounts' => $this->make_hook('accounts', AUTH_PASSWD, 'admin'),
52 'admin/account/watch' => $this->make_hook('account_watch', AUTH_PASSWD, 'admin'),
53 'admin/account/types' => $this->make_hook('account_types', AUTH_PASSWD, 'admin'),
54 'admin/xnet_without_group' => $this->make_hook('xnet_without_group', AUTH_PASSWD, 'admin'),
55 'admin/jobs' => $this->make_hook('jobs', AUTH_PASSWD, 'admin,edit_directory'),
56 'admin/profile' => $this->make_hook('profile', AUTH_PASSWD, 'admin,edit_directory'),
57 'admin/phd' => $this->make_hook('phd', AUTH_PASSWD, 'admin'),
40cc32f6 58 'admin/name' => $this->make_hook('admin_name', AUTH_PASSWD, 'admin'),
bfe9f4c7 59 'admin/add_secondary_edu' => $this->make_hook('add_secondary_edu', AUTH_PASSWD, 'admin')
86f0a6af 60 );
61 }
62
26ba053e 63 function handler_phpinfo($page)
5f9a40b4 64 {
65 phpinfo();
66 exit;
67 }
68
26ba053e 69 function handler_get_rights($page)
866bd535
FB
70 {
71 if (S::suid()) {
72 $page->kill('Déjà en SUID');
73 }
20b087ff
FB
74 S::assert_xsrf_token();
75 $level = Post::s('account_type');
76 if ($level != 'admin') {
77 $user = User::getSilentWithUID(S::user()->id());
78 $user->is_admin = false;
79 $types = DirEnum::getOptions(DirEnum::ACCOUNTTYPES);
80 if (!empty($types[$level])) {
81 $user->setPerms($types[$level]);
82 }
83 S::set('suid_startpage', $_SERVER['HTTP_REFERER']);
84 Platal::session()->startSUID($user);
85 }
86 if (!empty($_SERVER['HTTP_REFERER'])) {
87 http_redirect($_SERVER['HTTP_REFERER']);
88 } else {
89 pl_redirect('/');
90 }
866bd535
FB
91 }
92
26ba053e 93 function handler_set_skin($page)
b47cc6f0
FB
94 {
95 S::assert_xsrf_token();
96 S::set('skin', Post::s('change_skin'));
97 if (!empty($_SERVER['HTTP_REFERER'])) {
98 http_redirect($_SERVER['HTTP_REFERER']);
99 } else {
100 pl_redirect('/');
101 }
102 }
103
26ba053e 104 function handler_default($page)
86f0a6af 105 {
106 $page->changeTpl('admin/index.tpl');
46f272fe 107 $page->setTitle('Administration');
86f0a6af 108 }
109
26ba053e 110 function handler_postfix_delayed($page)
86f0a6af 111 {
112 $page->changeTpl('admin/postfix_delayed.tpl');
46f272fe 113 $page->setTitle('Administration - Postfix : Retardés');
86f0a6af 114
115 if (Env::has('del')) {
116 $crc = Env::v('crc');
117 XDB::execute("UPDATE postfix_mailseen SET release = 'del' WHERE crc = {?}", $crc);
6bb2f79a 118 $page->trigSuccess($crc . " verra tous ses emails supprimés&nbsp;!");
86f0a6af 119 } elseif (Env::has('ok')) {
120 $crc = Env::v('crc');
121 XDB::execute("UPDATE postfix_mailseen SET release = 'ok' WHERE crc = {?}", $crc);
6bb2f79a 122 $page->trigSuccess($crc . " a le droit de passer&nbsp;!");
86f0a6af 123 }
124
125 $sql = XDB::iterator(
126 "SELECT crc, nb, update_time, create_time,
77fcaa3f
SJ
127 FIND_IN_SET('del', p.release) AS del,
128 FIND_IN_SET('ok', p.release) AS ok
129 FROM postfix_mailseen AS p
86f0a6af 130 WHERE nb >= 30
77fcaa3f 131 ORDER BY p.release != ''");
86f0a6af 132
133 $page->assign_by_ref('mails', $sql);
134 }
86f0a6af 135
441e9e98 136 // {{{ logger view
86f0a6af 137
441e9e98 138 /** Retrieves the available days for a given year and month.
139 * Obtain a list of days of the given month in the given year
140 * that are within the range of dates that we have log entries for.
141 *
142 * @param integer year
143 * @param integer month
144 * @return array days in that month we have log entries covering.
145 * @private
146 */
147 function _getDays($year, $month)
148 {
149 // give a 'no filter' option
9bef113f
PC
150 $days = array();
151 $days[0] = "----";
441e9e98 152
153 if ($year && $month) {
154 $day_max = Array(-1, 31, checkdate(2, 29, $year) ? 29 : 28 , 31,
155 30, 31, 30, 31, 31, 30, 31, 30, 31);
156 $res = XDB::query("SELECT YEAR (MAX(start)), YEAR (MIN(start)),
157 MONTH(MAX(start)), MONTH(MIN(start)),
158 DAYOFMONTH(MAX(start)),
159 DAYOFMONTH(MIN(start))
6586a74f 160 FROM log_sessions");
441e9e98 161 list($ymax, $ymin, $mmax, $mmin, $dmax, $dmin) = $res->fetchOneRow();
162
163 if (($year < $ymin) || ($year == $ymin && $month < $mmin)) {
164 return array();
165 }
166
167 if (($year > $ymax) || ($year == $ymax && $month > $mmax)) {
168 return array();
169 }
170
171 $min = ($year==$ymin && $month==$mmin) ? intval($dmin) : 1;
172 $max = ($year==$ymax && $month==$mmax) ? intval($dmax) : $day_max[$month];
173
174 for($i = $min; $i<=$max; $i++) {
175 $days[$i] = $i;
176 }
177 }
178 return $days;
179 }
180
181
182 /** Retrieves the available months for a given year.
183 * Obtains a list of month numbers that are within the timeframe that
184 * we have log entries for.
185 *
186 * @param integer year
187 * @return array List of month numbers we have log info for.
188 * @private
189 */
190 function _getMonths($year)
191 {
192 // give a 'no filter' option
9bef113f 193 $months = array();
441e9e98 194 $months[0] = "----";
195
196 if ($year) {
197 $res = XDB::query("SELECT YEAR (MAX(start)), YEAR (MIN(start)),
198 MONTH(MAX(start)), MONTH(MIN(start))
6586a74f 199 FROM log_sessions");
441e9e98 200 list($ymax, $ymin, $mmax, $mmin) = $res->fetchOneRow();
201
202 if (($year < $ymin) || ($year > $ymax)) {
203 return array();
204 }
205
206 $min = $year == $ymin ? intval($mmin) : 1;
207 $max = $year == $ymax ? intval($mmax) : 12;
208
209 for($i = $min; $i<=$max; $i++) {
210 $months[$i] = $i;
211 }
212 }
213 return $months;
214 }
215
216
217 /** Retrieves the available years.
218 * Obtains a list of years that we have log entries covering.
219 *
220 * @return array years we have log entries for.
221 * @private
222 */
223 function _getYears()
224 {
225 // give a 'no filter' option
9bef113f 226 $years = array();
441e9e98 227 $years[0] = "----";
228
229 // retrieve available years
6586a74f 230 $res = XDB::query("select YEAR(MAX(start)), YEAR(MIN(start)) FROM log_sessions");
441e9e98 231 list($max, $min) = $res->fetchOneRow();
232
233 for($i = intval($min); $i<=$max; $i++) {
234 $years[$i] = $i;
235 }
236 return $years;
237 }
238
afe6e01c
SJ
239 private function _getActions()
240 {
241 $actions = XDB::fetchAllAssoc('id', 'SELECT id, description
242 FROM log_actions');
243 $actions[0] = '----';
244 ksort($actions);
245
246 return $actions;
247 }
441e9e98 248
249 /** Make a where clause to get a user's sessions.
250 * Prepare the where clause request that will retrieve the sessions.
251 *
252 * @param $year INTEGER Only get log entries made during the given year.
253 * @param $month INTEGER Only get log entries made during the given month.
254 * @param $day INTEGER Only get log entries made during the given day.
afe6e01c 255 * @param $action INTEGER Only get log entries corresponding to this action.
441e9e98 256 * @param $uid INTEGER Only get log entries referring to the given user ID.
257 *
258 * @return STRING the WHERE clause of a query, including the 'WHERE' keyword
259 * @private
260 */
afe6e01c 261 private function _makeWhere($year, $month, $day, $action, $uid)
441e9e98 262 {
263 // start constructing the "where" clause
264 $where = array();
265
afe6e01c
SJ
266 if ($uid) {
267 $where[] = XDB::format('ls.uid = {?}', $uid);
268 }
441e9e98 269
270 // we were given at least a year
271 if ($year) {
272 if ($day) {
273 $dmin = mktime(0, 0, 0, $month, $day, $year);
274 $dmax = mktime(0, 0, 0, $month, $day+1, $year);
275 } elseif ($month) {
276 $dmin = mktime(0, 0, 0, $month, 1, $year);
277 $dmax = mktime(0, 0, 0, $month+1, 1, $year);
278 } else {
279 $dmin = mktime(0, 0, 0, 1, 1, $year);
280 $dmax = mktime(0, 0, 0, 1, 1, $year+1);
281 }
afe6e01c
SJ
282 $where[] = "ls.start >= " . date("Ymd000000", $dmin);
283 $where[] = "ls.start < " . date("Ymd000000", $dmax);
284 }
285
286 if ($action != 0) {
287 $where[] = XDB::format('la.id = {?}', $action);
441e9e98 288 }
289
290 if (!empty($where)) {
afe6e01c 291 return 'WHERE ' . implode($where, ' AND ');
441e9e98 292 } else {
293 return '';
294 }
295 // WE know it's totally reversed, so better use array_reverse than a SORT BY start DESC
296 }
297
298 // }}}
299
26ba053e 300 function handler_logger($page, $action = null, $arg = null) {
441e9e98 301 if ($action == 'session') {
302
303 // we are viewing a session
bdbda592 304 $res = XDB::query("SELECT ls.*, a.hruid AS username, sa.hruid AS suer
6586a74f 305 FROM log_sessions AS ls
bdbda592
FB
306 INNER JOIN accounts AS a ON (a.uid = ls.uid)
307 LEFT JOIN accounts AS sa ON (sa.uid = ls.suid)
441e9e98 308 WHERE ls.id = {?}", $arg);
309
310 $page->assign('session', $a = $res->fetchOneAssoc());
311
504ccd57 312 $res = XDB::iterator('SELECT a.text, e.data, e.stamp
6586a74f
FB
313 FROM log_events AS e
314 LEFT JOIN log_actions AS a ON e.action=a.id
441e9e98 315 WHERE e.session={?}', $arg);
316 while ($myarr = $res->next()) {
317 $page->append('events', $myarr);
318 }
319
c8ab90e7 320 } else {
441e9e98 321 $loguser = $action == 'user' ? $arg : Env::v('loguser');
c8ab90e7
RB
322
323 if ($loguser) {
324 $user = User::get($loguser);
325 $loguid = $user->id();
326 } else {
327 $loguid = null;
328 }
441e9e98 329
330 if ($loguid) {
331 $year = Env::i('year');
332 $month = Env::i('month');
333 $day = Env::i('day');
334 } else {
335 $year = Env::i('year', intval(date('Y')));
336 $month = Env::i('month', intval(date('m')));
337 $day = Env::i('day', intval(date('d')));
338 }
afe6e01c 339 $action = Post::i('action');
441e9e98 340
341 if (!$year)
342 $month = 0;
343 if (!$month)
344 $day = 0;
345
346 // smarty assignments
347 // retrieve available years
348 $page->assign('years', $this->_getYears());
349 $page->assign('year', $year);
350
351 // retrieve available months for the current year
352 $page->assign('months', $this->_getMonths($year));
353 $page->assign('month', $month);
354
355 // retrieve available days for the current year and month
356 $page->assign('days', $this->_getDays($year, $month));
357 $page->assign('day', $day);
358
afe6e01c
SJ
359 // Retrieve available actions
360 $page->assign('actions', $this->_getActions());
361 $page->assign('action', $action);
362
441e9e98 363 $page->assign('loguser', $loguser);
364 // smarty assignments
365
366 if ($loguid || $year) {
367
368 // get the requested sessions
afe6e01c
SJ
369 $where = $this->_makeWhere($year, $month, $day, $action, $loguid);
370 if ($action != 0) {
371 $join = 'INNER JOIN log_events AS le ON (ls.id = le.session)
372 INNER JOIN log_actions AS la ON (le.action = la.id)';
373 } else {
374 $join = '';
375 }
376 $select = 'SELECT ls.id, ls.start, ls.uid, a.hruid as username
377 FROM log_sessions AS ls
378 INNER JOIN accounts AS a ON (a.uid = ls.uid)
379 ' . $join . '
380 ' . $where . '
381 GROUP BY ls.id
382 ORDER BY ls.start DESC';
441e9e98 383 $res = XDB::iterator($select);
384
385 $sessions = array();
386 while ($mysess = $res->next()) {
387 $mysess['events'] = array();
388 $sessions[$mysess['id']] = $mysess;
389 }
390 array_reverse($sessions);
391
392 // attach events
afe6e01c
SJ
393 $sql = 'SELECT ls.id, la.text
394 FROM log_sessions AS ls
395 LEFT JOIN log_events AS le ON (le.session = ls.id)
396 INNER JOIN log_actions AS la ON (la.id = le.action)
397 ' . $where;
441e9e98 398
399 $res = XDB::iterator($sql);
400 while ($event = $res->next()) {
401 array_push($sessions[$event['id']]['events'], $event['text']);
402 }
403 $page->assign_by_ref('sessions', $sessions);
404 } else {
c8ab90e7 405 $page->assign('msg_nofilters', "Sélectionner une année et/ou un utilisateur");
441e9e98 406 }
86f0a6af 407 }
408
8b1f8e12 409 $page->changeTpl('admin/logger-view.tpl');
86f0a6af 410
46f272fe 411 $page->setTitle('Administration - Logs des sessions');
86f0a6af 412 }
413
26ba053e 414 function handler_user($page, $login = false)
f97f90f0 415 {
84270653 416 global $globals;
1412adb2 417 $page->changeTpl('admin/user.tpl');
f9743cf1 418 $page->setTitle('Administration - Compte');
86f0a6af 419
0c02607e 420 if (S::suid()) {
6bb2f79a 421 $page->kill("Déjà en SUID&nbsp;!!!");
86f0a6af 422 }
423
d5fbeef6 424 // Loads the user identity using the environment.
1ac65dd4
PC
425 if ($login) {
426 $user = User::get($login);
427 }
428 if (empty($user)) {
8338711c 429 pl_redirect('admin/accounts');
2ff7e020
VZ
430 }
431
a8a11a70 432 $listClient = new MMList(S::user());
4f903ea6
FB
433 $login = $user->login();
434 $registered = ($user->state != 'pending');
86f0a6af 435
4f903ea6
FB
436 // Form processing
437 if (!empty($_POST)) {
438 S::assert_xsrf_token();
439 if (Post::has('uid') && Post::i('uid') != $user->id()) {
440 $page->kill('Une erreur s\'est produite');
441 }
86f0a6af 442 }
443
d5fbeef6 444 // Handles specific requests (AX sync, su, ...).
9bef113f 445 if(Post::has('log_account')) {
d5fbeef6 446 pl_redirect("admin/logger?loguser=$login&year=".date('Y')."&month=".date('m'));
86f0a6af 447 }
448
a19178e9 449 if(Post::has('su_account') && $registered) {
866bd535 450 if (!Platal::session()->startSUID($user)) {
83752d10 451 $page->trigError('Impossible d\'effectuer un SUID sur ' . $user->login());
f97f90f0 452 } else {
d5fbeef6 453 pl_redirect("");
eaf30d86 454 }
d5fbeef6 455 }
86f0a6af 456
40965e32
SJ
457 // Handles account deletion.
458 if (Post::has('account_deletion_confirmation')) {
459 $uid = $user->id();
460 $name = $user->fullName();
4cd83ff8 461 $profile = $user->profile();
879d38da 462 if ($profile && Post::b('clear_profile')) {
4cd83ff8
FB
463 $user->profile()->clear();
464 }
40965e32 465 $user->clear(true);
879d38da
FB
466 $page->trigSuccess("L'utilisateur $name ($uid) a bien été désinscrit.");
467 if (Post::b('erase_account')) {
468 XDB::execute('DELETE FROM accounts
469 WHERE uid = {?}',
470 $uid);
471 $page->trigSuccess("L'utilisateur $name ($uid) a été supprimé de la base de données");
472 }
40965e32
SJ
473 }
474
f9743cf1 475 // Account Form {{{
ca6980dc 476 require_once 'emails.inc.php';
83752d10 477 $to_update = array();
4f903ea6 478 if (Post::has('disable_weak_access')) {
83752d10 479 $to_update['weak_password'] = null;
4f903ea6 480 } else if (Post::has('update_account')) {
aef87266 481 if (!$user->hasProfile()) {
75e295ff 482 require_once 'name.func.inc.php';
b7753795 483 $name_update = false;
75e295ff
SJ
484 $lastname = capitalize_name(Post::t('lastname'));
485 $firstname = capitalize_name(Post::t('firstname'));
486 if ($lastname != $user->lastname) {
487 $to_update['lastname'] = $lastname;
b7753795
SJ
488 $name_update = true;
489 }
75e295ff
SJ
490 if (Post::s('type') != 'virtual' && $firstname != $user->firstname) {
491 $to_update['firstname'] = $firstname;
b7753795
SJ
492 $name_update = true;
493 }
494 if ($name_update) {
3ba2fdf6
SJ
495 if (Post::s('type') == 'virtual') {
496 $firstname = '';
b7753795 497 }
3ba2fdf6
SJ
498 $to_update['full_name'] = build_full_name($firstname, $lastname);
499 $to_update['directory_name'] = build_directory_name($firstname, $lastname);
b0788bf4 500 $to_update['sort_name'] = build_sort_name($firstname, $lastname);
aef87266
SJ
501 }
502 if (Post::s('display_name') != $user->displayName()) {
503 $to_update['display_name'] = Post::s('display_name');
504 }
d081acb2 505 }
4f903ea6
FB
506 if (Post::s('sex') != ($user->isFemale() ? 'female' : 'male')) {
507 $to_update['sex'] = Post::s('sex');
aef87266
SJ
508 if ($user->hasProfile()) {
509 XDB::execute('UPDATE profiles
510 SET sex = {?}
511 WHERE pid = {?}',
512 Post::s('sex'), $user->profile()->id());
513 }
83752d10 514 }
2477a631
SJ
515 if (!Post::blank('pwhash')) {
516 $to_update['password'] = Post::s('pwhash');
3168041b 517 require_once 'googleapps.inc.php';
1549059d
VZ
518 $account = new GoogleAppsAccount($user);
519 if ($account->active() && $account->sync_password) {
2477a631 520 $account->set_password(Post::s('pwhash'));
1549059d 521 }
83752d10 522 }
4f903ea6
FB
523 if (!Post::blank('weak_password')) {
524 $to_update['weak_password'] = Post::s('weak_password');
83752d10 525 }
4f903ea6
FB
526 if (Post::i('token_access', 0) != ($user->token_access ? 1 : 0)) {
527 $to_update['token'] = Post::i('token_access') ? rand_url_id(16) : null;
83752d10 528 }
fcdbb3bf
SJ
529 if (Post::i('skin') != $user->skin) {
530 $to_update['skin'] = Post::i('skin');
83752d10 531 if ($to_update['skin'] == 0) {
7cfaf494 532 $to_update['skin'] = null;
83752d10
FB
533 }
534 }
4f903ea6
FB
535 if (Post::s('state') != $user->state) {
536 $to_update['state'] = Post::s('state');
83752d10 537 }
4f903ea6
FB
538 if (Post::i('is_admin', 0) != ($user->is_admin ? 1 : 0)) {
539 $to_update['is_admin'] = Post::b('is_admin');
83752d10 540 }
4f903ea6
FB
541 if (Post::s('type') != $user->type) {
542 $to_update['type'] = Post::s('type');
83752d10 543 }
4f903ea6 544 if (Post::i('watch', 0) != ($user->watch ? 1 : 0)) {
83752d10 545 $to_update['flags'] = new PlFlagset();
4f903ea6 546 $to_update['flags']->addFlag('watch', Post::i('watch'));
83752d10 547 }
4f903ea6
FB
548 if (Post::t('comment') != $user->comment) {
549 $to_update['comment'] = Post::blank('comment') ? null : Post::t('comment');
83752d10 550 }
8a41e7f9
SJ
551 $new_email = strtolower(Post::t('email'));
552 if (require_email_update($user, $new_email)) {
553 $to_update['email'] = $new_email;
554 $listClient->change_user_email($user->forlifeEmail(), $new_email);
555 update_alias_user($user->forlifeEmail(), $new_email);
a8a11a70 556 }
83752d10
FB
557 }
558 if (!empty($to_update)) {
01f78cbb
SJ
559 $res = XDB::query('SELECT *
560 FROM accounts
561 WHERE uid = {?}', $user->id());
562 $oldValues = $res->fetchAllAssoc();
563 $oldValues = $oldValues[0];
564
83752d10 565 $set = array();
01f78cbb 566 $diff = array();
83752d10 567 foreach ($to_update as $k => $value) {
01f78cbb
SJ
568 $value = XDB::format('{?}', $value);
569 $set[] = $k . ' = ' . $value;
570 $diff[$k] = array($oldValues[$k], trim($value, "'"));
571 unset($oldValues[$k]);
83752d10 572 }
a8a11a70
FB
573 XDB::rawExecute('UPDATE accounts
574 SET ' . implode(', ', $set) . '
575 WHERE uid = ' . XDB::format('{?}', $user->id()));
83752d10
FB
576 $page->trigSuccess('Données du compte mise à jour avec succès');
577 $user = User::getWithUID($user->id());
01f78cbb
SJ
578
579 /* Formats the $diff and send it to the site administrators. The rules are the folowing:
580 * -formats: password, token, weak_password
581 */
582 foreach (array('password', 'token', 'weak_password') as $key) {
583 if (isset($diff[$key])) {
584 $diff[$key] = array('old value', 'new value');
585 } else {
586 $oldValues[$key] = 'old value';
587 }
588 }
589
590 $mail = new PlMailer('admin/useredit.mail.tpl');
591 $mail->assign('admin', S::user()->hruid);
592 $mail->assign('hruid', $user->hruid);
593 $mail->assign('diff', $diff);
594 $mail->assign('oldValues', $oldValues);
595 $mail->send();
83752d10 596 }
f9743cf1 597 // }}}
4f903ea6 598
f9743cf1 599 // Profile form {{{
4f903ea6
FB
600 if (Post::has('add_profile') || Post::has('del_profile') || Post::has('owner')) {
601 if (Post::i('del_profile', 0) != 0) {
f9743cf1
FB
602 XDB::execute('DELETE FROM account_profiles
603 WHERE uid = {?} AND pid = {?}',
ee3e477f
AL
604 $user->id(), Post::i('del_profile'));
605 XDB::execute('DELETE FROM profiles
606 WHERE pid = {?}',
607 Post::i('del_profile'));
4f903ea6
FB
608 } else if (!Post::blank('new_profile')) {
609 $profile = Profile::get(Post::t('new_profile'));
f9743cf1 610 if (!$profile) {
4f903ea6 611 $page->trigError('Le profil ' . Post::t('new_profile') . ' n\'existe pas');
f9743cf1
FB
612 } else {
613 XDB::execute('INSERT IGNORE INTO account_profiles (uid, pid)
614 VALUES ({?}, {?})',
615 $user->id(), $profile->id());
616 }
617 }
618 XDB::execute('UPDATE account_profiles
619 SET perms = IF(pid = {?}, CONCAT(perms, \',owner\'), REPLACE(perms, \'owner\', \'\'))
620 WHERE uid = {?}',
4f903ea6 621 Post::i('owner'), $user->id());
f9743cf1 622 }
f9743cf1
FB
623 // }}}
624
4f903ea6 625 // Email forwards form {{{
4f903ea6
FB
626 $redirect = ($registered ? new Redirect($user) : null);
627 if (Post::has('add_fwd')) {
628 $email = Post::t('email');
f4dda5fb 629 if (!isvalid_email_redirection($email, $user)) {
4f903ea6
FB
630 $page->trigError("Email non valide: $email");
631 } else {
632 $redirect->add_email($email);
633 $page->trigSuccess("Ajout de $email effectué");
634 }
635 } else if (!Post::blank('del_fwd')) {
636 $redirect->delete_email(Post::t('del_fwd'));
637 } else if (!Post::blank('activate_fwd')) {
afc337ee 638 $redirect->modify_one_email(Post::t('activate_fwd'), true);
4f903ea6 639 } else if (!Post::blank('deactivate_fwd')) {
afc337ee 640 $redirect->modify_one_email(Post::t('deactivate_fwd'), false);
4f903ea6
FB
641 } else if (Post::has('disable_fwd')) {
642 $redirect->disable();
643 } else if (Post::has('enable_fwd')) {
644 $redirect->enable();
645 } else if (!Post::blank('clean_fwd')) {
646 $redirect->clean_errors(Post::t('clean_fwd'));
647 }
648 // }}}
d5fbeef6 649
4f903ea6
FB
650 // Email alias form {{{
651 if (Post::has('add_alias')) {
652 // Splits new alias in user and fqdn.
653 $alias = Env::t('email');
654 if (strpos($alias, '@') !== false) {
655 list($alias, $domain) = explode('@', $alias);
656 } else {
f036c896 657 $domain = $user->mainEmailDomain();
4f903ea6 658 }
84270653 659
4f903ea6
FB
660 // Checks for alias' user validity.
661 if (!preg_match('/[-a-z0-9\.]+/s', $alias)) {
662 $page->trigError("'$alias' n'est pas un alias valide");
663 }
86f0a6af 664
4f903ea6
FB
665 // Eventually adds the alias to the right domain.
666 if ($domain == $globals->mail->alias_dom || $domain == $globals->mail->alias_dom2) {
667 $req = new AliasReq($user, $alias, 'Admin request', false);
668 if ($req->commit()) {
b284e2fa 669 $page->trigSuccess("Nouvel alias '$alias@$domain' attribué.");
4f903ea6 670 } else {
b284e2fa 671 $page->trigError("Impossible d'ajouter l'alias '$alias@$domain', il est probablement déjà attribué.");
4f903ea6 672 }
f036c896 673 } elseif ($domain == $user->mainEmailDomain()) {
b284e2fa 674 XDB::execute('INSERT INTO email_source_account (email, uid, domain, type, flags)
f036c896 675 SELECT {?}, {?}, id, \'alias\', \'\'
b284e2fa
SJ
676 FROM email_virtual_domains
677 WHERE name = {?}',
f036c896 678 $alias, $user->id(), $domain);
4f903ea6
FB
679 $page->trigSuccess("Nouvel alias '$alias' ajouté");
680 } else {
f036c896 681 $page->trigError("Le domaine '$domain' n'est pas valide pour cet utilisateur.");
4f903ea6
FB
682 }
683 } else if (!Post::blank('del_alias')) {
b284e2fa
SJ
684 $delete_alias = Post::t('del_alias');
685 list($email, $domain) = explode('@', $delete_alias);
686 XDB::execute('DELETE s
687 FROM email_source_account AS s
688 INNER JOIN email_virtual_domains AS m ON (s.domain = m.id)
689 INNER JOIN email_virtual_domains AS d ON (d.aliasing = m.id)
f036c896 690 WHERE s.email = {?} AND s.uid = {?} AND d.name = {?} AND type != \'forlife\'',
b284e2fa
SJ
691 $email, $user->id(), $domain);
692 XDB::execute('UPDATE email_redirect_account AS r
693 INNER JOIN email_virtual_domains AS m ON (m.name = {?})
694 INNER JOIN email_virtual_domains AS d ON (d.aliasing = m.id)
695 SET r.rewrite = \'\'
696 WHERE r.uid = {?} AND r.rewrite = CONCAT({?}, \'@\', d.name)',
697 $domain, $user->id(), $email);
4f903ea6 698 fix_bestalias($user);
b284e2fa 699 $page->trigSuccess("L'alias '$delete_alias' a été supprimé");
4f903ea6 700 } else if (!Post::blank('best')) {
b284e2fa
SJ
701 $best_alias = Post::t('best');
702 // First delete the bestalias flag from all this user's emails.
703 XDB::execute("UPDATE email_source_account
4f903ea6 704 SET flags = TRIM(BOTH ',' FROM REPLACE(CONCAT(',', flags, ','), ',bestalias,', ','))
fe13bc1d 705 WHERE uid = {?}", $user->id());
b284e2fa
SJ
706 // Then gives the bestalias flag to the given email.
707 list($email, $domain) = explode('@', $best_alias);
f067a3d6
SJ
708 XDB::execute("UPDATE email_source_account
709 SET flags = CONCAT_WS(',', IF(flags = '', NULL, flags), 'bestalias')
710 WHERE uid = {?} AND email = {?}", $user->id(), $email);
b284e2fa 711
4f903ea6
FB
712 // As having a non-null bestalias value is critical in
713 // plat/al's code, we do an a posteriori check on the
714 // validity of the bestalias.
715 fix_bestalias($user);
716 }
717 // }}}
669cb0e0 718
83353c71
FB
719 // OpenId form {{{
720 if (Post::has('del_openid')) {
864957c1 721 XDB::execute('DELETE FROM account_auth_openid
83353c71
FB
722 WHERE id = {?}', Post::i('del_openid'));
723 }
724 // }}}
725
4f903ea6
FB
726 // Forum form {{{
727 if (Post::has('b_edit')) {
728 XDB::execute("DELETE FROM forum_innd
729 WHERE uid = {?}", $user->id());
730 if (Env::v('write_perm') != "" || Env::v('read_perm') != "" || Env::v('commentaire') != "" ) {
731 XDB::execute("INSERT INTO forum_innd
732 SET ipmin = '0', ipmax = '4294967295',
733 write_perm = {?}, read_perm = {?},
734 comment = {?}, priority = '200', uid = {?}",
735 Env::v('write_perm'), Env::v('read_perm'), Env::v('comment'), $user->id());
736 }
737 }
738 // }}}
86f0a6af 739
86f0a6af 740
b7bad73e 741 $page->addJsLink('jquery.ui.xorg.js');
669cb0e0 742
d5fbeef6
VZ
743 // Displays last login and last host information.
744 $res = XDB::query("SELECT start, host
6586a74f 745 FROM log_sessions
4bd9c76e 746 WHERE uid = {?} AND suid IS NULL
d5fbeef6
VZ
747 ORDER BY start DESC
748 LIMIT 1", $user->id());
749 list($lastlogin,$host) = $res->fetchOneRow();
750 $page->assign('lastlogin', $lastlogin);
751 $page->assign('host', $host);
752
1d889ac4 753 // Display mailing lists
a8a11a70 754 $page->assign('mlists', $listClient->get_all_user_lists($user->forlifeEmail()));
1d889ac4 755
d5fbeef6 756 // Display active aliases.
06a548e5 757 $page->assign('virtuals', $user->emailGroupAliases());
b284e2fa
SJ
758 $aliases = XDB::iterator("SELECT CONCAT(s.email, '@', d.name) AS email, (s.type = 'forlife') AS forlife,
759 (s.email REGEXP '\\\\.[0-9]{2}$') AS hundred_year,
760 FIND_IN_SET('bestalias', s.flags) AS bestalias, s.expire,
08d33afc 761 (s.type = 'alias_aux') AS alias
b284e2fa
SJ
762 FROM email_source_account AS s
763 INNER JOIN email_virtual_domains AS d ON (s.domain = d.id)
764 WHERE s.uid = {?}
765 ORDER BY !alias, s.email",
08d33afc 766 $user->id());
b284e2fa 767 $page->assign('aliases', $aliases);
8f2104cb
FB
768 $page->assign('account_types', XDB::iterator('SELECT * FROM account_types ORDER BY type'));
769 $page->assign('skins', XDB::iterator('SELECT id, name FROM skins ORDER BY name'));
21aebdf6 770 $page->assign('profiles', XDB::iterator('SELECT p.pid, p.hrpid, FIND_IN_SET(\'owner\', ap.perms) AS owner, p.ax_id
f9743cf1
FB
771 FROM account_profiles AS ap
772 INNER JOIN profiles AS p ON (ap.pid = p.pid)
773 WHERE ap.uid = {?}', $user->id()));
83353c71 774 $page->assign('openid', XDB::iterator('SELECT id, url
864957c1
FB
775 FROM account_auth_openid
776 WHERE uid = {?}', $user->id()));
d5fbeef6
VZ
777
778 // Displays email redirection and the general profile.
779 if ($registered && $redirect) {
780 $page->assign('emails', $redirect->emails);
781 }
782
d5fbeef6 783 $page->assign('user', $user);
aef87266 784 $page->assign('hasProfile', $user->hasProfile());
d5fbeef6
VZ
785
786 // Displays forum bans.
787 $res = XDB::query("SELECT write_perm, read_perm, comment
7d15f750 788 FROM forum_innd
d5fbeef6
VZ
789 WHERE uid = {?}", $user->id());
790 $bans = $res->fetchOneAssoc();
791 $page->assign('bans', $bans);
86f0a6af 792 }
1f53925a 793
e02d9fbb 794 private static function getHrid($firstname, $lastname, $promo)
7c5200a5 795 {
e02d9fbb 796 if ($firstname != null && $lastname != null && $promo != null) {
69fc05dd 797 return User::makeHrid($firstname, $lastname, $promo);
7c5200a5 798 }
f6eacab0 799 return null;
7c5200a5
VZ
800 }
801
26ba053e 802 private static function formatNewUser($page, $infosLine, $separator, $promo, $size)
1f53925a 803 {
e02d9fbb 804 $infos = explode($separator, $infosLine);
cb0c8b1c
SJ
805 if (sizeof($infos) > $size || sizeof($infos) < 2) {
806 $page->trigError("La ligne $infosLine n'a pas été ajoutée.");
e02d9fbb 807 return false;
1f53925a 808 }
809
16714428 810 $infos = array_map('trim', $infos);
e02d9fbb
SJ
811 $hrid = self::getHrid($infos[1], $infos[0], $promo);
812 $res1 = XDB::query('SELECT COUNT(*)
813 FROM accounts
814 WHERE hruid = {?}', $hrid);
815 $res2 = XDB::query('SELECT COUNT(*)
816 FROM profiles
817 WHERE hrpid = {?}', $hrid);
818 if (is_null($hrid) || $res1->fetchOneCell() > 0 || $res2->fetchOneCell() > 0) {
981fce7b 819 $page->trigError("La ligne $infosLine n'a pas été ajoutée: une entrée similaire existe déjà");
e02d9fbb
SJ
820 return false;
821 }
822 $infos['hrid'] = $hrid;
823 return $infos;
824 }
825
26ba053e 826 private static function formatSex($page, $sex, $line)
e02d9fbb
SJ
827 {
828 switch ($sex) {
829 case 'F':
f0a52f1b 830 return 'female';
e02d9fbb 831 case 'M':
f0a52f1b 832 return 'male';
e02d9fbb
SJ
833 default:
834 $page->trigError("La ligne $line n'a pas été ajoutée car le sexe $sex n'est pas pris en compte.");
835 return null;
1f53925a 836 }
e02d9fbb 837 }
1f53925a 838
e02d9fbb
SJ
839 private static function formatBirthDate($birthDate)
840 {
16714428
RB
841 // strtotime believes dd/mm/yyyy to be an US date (i.e mm/dd/yyyy), and
842 // dd-mm-yyyy to be a normal date (i.e dd-mm-yyyy)...
843 return date("Y-m-d", strtotime(str_replace('/', '-', $birthDate)));
e02d9fbb
SJ
844 }
845
26ba053e 846 function handler_add_accounts($page, $action = null, $promo = null)
e02d9fbb 847 {
75e295ff 848 require_once 'name.func.inc.php';
e02d9fbb
SJ
849 $page->changeTpl('admin/add_accounts.tpl');
850
851 if (Env::has('add_type') && Env::has('people')) {
89aba52d 852 static $titles = array('male' => 'M', 'female' => 'MLLE');
e02d9fbb
SJ
853 $lines = explode("\n", Env::t('people'));
854 $separator = Env::t('separator');
855 $promotion = Env::i('promotion');
e02d9fbb
SJ
856
857 if (Env::t('add_type') == 'promo') {
94590511 858 $eduSchools = DirEnum::getOptions(DirEnum::EDUSCHOOLS);
e02d9fbb 859 $eduSchools = array_flip($eduSchools);
94590511 860 $eduDegrees = DirEnum::getOptions(DirEnum::EDUDEGREES);
e02d9fbb 861 $eduDegrees = array_flip($eduDegrees);
e02d9fbb
SJ
862 switch (Env::t('edu_type')) {
863 case 'X':
864 $degreeid = $eduDegrees[Profile::DEGREE_X];
865 $entry_year = $promotion;
866 $grad_year = $promotion + 3;
867 $promo = 'X' . $promotion;
d9e99995 868 $hrpromo = $promotion;
f0a52f1b 869 $type = 'x';
e02d9fbb
SJ
870 break;
871 case 'M':
872 $degreeid = $eduDegrees[Profile::DEGREE_M];
873 $grad_year = $promotion;
874 $entry_year = $promotion - 2;
875 $promo = 'M' . $promotion;
d9e99995
FB
876 $hrpromo = $promo;
877 $type = 'master';
e02d9fbb
SJ
878 break;
879 case 'D':
880 $degreeid = $eduDegrees[Profile::DEGREE_D];
881 $grad_year = $promotion;
882 $entry_year = $promotion - 3;
d60d2d1f 883 $promo = 'D (en cours)';
0768c6d7 884 $hrpromo = 'D' . $promotion;
d9e99995 885 $type = 'phd';
e02d9fbb
SJ
886 break;
887 default:
d60d2d1f 888 $page->killError("La formation n'est pas reconnue : " . Env::t('edu_type') . '.');
e02d9fbb 889 }
3a9876d8
SJ
890 $best_domain = XDB::fetchOneCell('SELECT id
891 FROM email_virtual_domains
892 WHERE name = {?}',
893 User::$sub_mail_domains[$type] . Platal::globals()->mail->domain);
e02d9fbb 894
7f55b0d6 895 XDB::startTransaction();
e02d9fbb 896 foreach ($lines as $line) {
d9e99995 897 if ($infos = self::formatNewUser($page, $line, $separator, $hrpromo, 6)) {
cb0c8b1c 898 $sex = self::formatSex($page, $infos[3], $line);
75e295ff
SJ
899 $lastname = capitalize_name($infos[0]);
900 $firstname = capitalize_name($infos[1]);
cb0c8b1c 901 if (!is_null($sex)) {
3ba2fdf6
SJ
902 $fullName = build_full_name($firstname, $lastname);
903 $directoryName = build_directory_name($firstname, $lastname);
b0788bf4 904 $sortName = build_sort_name($firstname, $lastname);
cb0c8b1c 905 $birthDate = self::formatBirthDate($infos[2]);
f0a52f1b
SJ
906 if ($type == 'x') {
907 $xorgId = Profile::getXorgId($infos[4]);
2209fb9c 908 } elseif (isset($infos[4])) {
f0a52f1b 909 $xorgId = trim($infos[4]);
2209fb9c
SJ
910 } else {
911 $xorgId = 0;
f0a52f1b 912 }
cb0c8b1c
SJ
913 if (is_null($xorgId)) {
914 $page->trigError("La ligne $line n'a pas été ajoutée car le matricule École est mal renseigné.");
915 continue;
916 }
917
89aba52d
SJ
918 XDB::execute('INSERT INTO profiles (hrpid, xorg_id, ax_id, birthdate_ref, sex, title)
919 VALUES ({?}, {?}, {?}, {?}, {?}, {?})',
920 $infos['hrid'], $xorgId, (isset($infos[5]) ? $infos[5] : null),
921 $birthDate, $sex, $titles[$sex]);
cb0c8b1c 922 $pid = XDB::insertId();
0e1dfbad
SJ
923 XDB::execute('INSERT INTO profile_public_names (pid, lastname_initial, lastname_main, firstname_initial, firstname_main)
924 VALUES ({?}, {?}, {?}, {?}, {?})',
75e295ff 925 $pid, $lastname, $lastname, $firstname, $firstname);
cb0c8b1c
SJ
926 XDB::execute('INSERT INTO profile_display (pid, yourself, public_name, private_name,
927 directory_name, short_name, sort_name, promo)
928 VALUES ({?}, {?}, {?}, {?}, {?}, {?}, {?}, {?})',
b0788bf4 929 $pid, $firstname, $fullName, $fullName, $directoryName, $fullName, $sortName, $promo);
7733ade1
SJ
930 XDB::execute('INSERT INTO profile_education (id, pid, eduid, degreeid, entry_year, grad_year, promo_year, flags)
931 VALUES (100, {?}, {?}, {?}, {?}, {?}, {?}, \'primary\')',
932 $pid, $eduSchools[Profile::EDU_X], $degreeid, $entry_year, $grad_year, $promotion);
6b6e4ff2 933 XDB::execute('INSERT INTO accounts (hruid, type, is_admin, state, full_name, directory_name,
072ce0fa 934 sort_name, display_name, lastname, firstname, sex, best_domain)
b0788bf4
SJ
935 VALUES ({?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?})',
936 $infos['hrid'], $type, 0, 'pending', $fullName, $directoryName, $sortName,
75e295ff 937 $firstname, $lastname, $firstname, $sex, $best_domain);
cb0c8b1c
SJ
938 $uid = XDB::insertId();
939 XDB::execute('INSERT INTO account_profiles (uid, pid, perms)
940 VALUES ({?}, {?}, {?})',
941 $uid, $pid, 'owner');
bedc4295 942 Profile::rebuildSearchTokens($pid, false);
cb0c8b1c 943 }
e02d9fbb
SJ
944 }
945 }
7f55b0d6 946 XDB::commit();
e02d9fbb
SJ
947 } else if (Env::t('add_type') == 'account') {
948 $type = Env::t('type');
4029afb0 949 $newAccounts = array();
e02d9fbb 950 foreach ($lines as $line) {
cb0c8b1c
SJ
951 if ($infos = self::formatNewUser($page, $line, $separator, $type, 4)) {
952 $sex = self::formatSex($page, $infos[3], $line);
953 if (!is_null($sex)) {
75e295ff
SJ
954 $lastname = capitalize_name($infos[0]);
955 $firstname = capitalize_name($infos[1]);
3ba2fdf6
SJ
956 $fullName = build_full_name($firstname, $lastname);
957 $directoryName = build_directory_name($firstname, $lastname);
b0788bf4 958 $sortName = build_sort_name($firstname, $lastname);
6b6e4ff2 959 XDB::execute('INSERT INTO accounts (hruid, type, is_admin, state, email, full_name, directory_name,
b0788bf4
SJ
960 sort_name, display_name, lastname, firstname, sex)
961 VALUES ({?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?})',
6b6e4ff2 962 $infos['hrid'], $type, 0, 'pending', $infos[2], $fullName, $directoryName,
b0788bf4 963 $sortName ,$firstname, $lastname, $firstname, $sex);
75e295ff 964 $newAccounts[$infos['hrid']] = $fullName;
cb0c8b1c 965 }
e02d9fbb
SJ
966 }
967 }
4029afb0
SJ
968 if (!empty($newAccounts)) {
969 $page->assign('newAccounts', $newAccounts);
970 }
e02d9fbb
SJ
971 } else if (Env::t('add_type') == 'ax_id') {
972 $type = 'x';
973 foreach ($lines as $line) {
411acc39
NI
974 $infos = explode($separator, $line);
975 if (sizeof($infos) > 3 || sizeof($infos) < 2) {
976 $page->trigError("La ligne $line n'a pas été ajoutée : mauvais nombre de champs.");
977 continue;
e02d9fbb 978 }
411acc39
NI
979 $infos = array_map('trim', $infos);
980 if (sizeof($infos) == 3) {
981 // Get human readable ID with first name and last name
982 $hrid = User::makeHrid($infos[1], $infos[0], $promotion);
983 $user = User::getSilent($hrid);
bb10e4dd 984 $axid = $infos[2];
411acc39
NI
985 } else {
986 // The first column is the hrid, possibly without the promotion
987 $user = User::getSilent($infos[0] . '.' . $promotion);
988 if (is_null($user)) {
989 $user = User::getSilent($infos[0]);
990 }
bb10e4dd
NI
991 $axid = $infos[1];
992 }
993 if (!$axid) {
994 $page->trigError("La ligne $line n'a pas été ajoutée : matricule AX vide.");
995 continue;
411acc39
NI
996 }
997 if (is_null($user)) {
998 $page->trigError("La ligne $line n'a pas été ajoutée : aucun compte trouvé.");
999 continue;
1000 }
1001 $profile = $user->profile();
1002 if ($profile->ax_id) {
1003 $page->trigError("Le profil " . $profile->hrpid . " a déjà l'ID AX " . $profile->ax_id);
1004 continue;
1005 }
1006 XDB::execute('UPDATE profiles
1007 SET ax_id = {?}
1008 WHERE pid = {?}',
bb10e4dd 1009 $axid, $profile->id());
411acc39 1010
e02d9fbb
SJ
1011 }
1012 }
1013
cb0c8b1c
SJ
1014 $errors = $page->nb_errs();
1015 if ($errors == 0) {
e02d9fbb
SJ
1016 $page->trigSuccess("L'opération a été effectuée avec succès.");
1017 } else {
cb0c8b1c
SJ
1018 $page->trigSuccess('L\'opération a été effectuée avec succès, sauf pour '
1019 . (($errors == 1) ? 'l\'erreur signalée' : "les $errors erreurs signalées") . ' ci-dessus.');
e02d9fbb
SJ
1020 }
1021 } else if (Env::has('add_type')) {
1022 $res = XDB::query('SELECT type
1023 FROM account_types');
1024 $page->assign('account_types', $res->fetchColumn());
1025 $page->assign('add_type', Env::s('add_type'));
1f53925a 1026 }
1f53925a 1027 }
1028
26ba053e 1029 function handler_homonyms($page, $op = 'list', $target = null)
7c5200a5 1030 {
86f0a6af 1031 $page->changeTpl('admin/homonymes.tpl');
46f272fe 1032 $page->setTitle('Administration - Homonymes');
191711d5 1033 $this->load("homonyms.inc.php");
74c55fd6 1034
86f0a6af 1035 if ($target) {
4371e993
SJ
1036 $user = User::getSilentWithUID($target);
1037 if (!$user || !($loginbis = select_if_homonym($user))) {
191711d5 1038 $target = 0;
86f0a6af 1039 } else {
191711d5 1040 $page->assign('user', $user);
86f0a6af 1041 $page->assign('loginbis',$loginbis);
1042 }
1043 }
74c55fd6 1044
839a80cf
VZ
1045 $page->assign('op', $op);
1046 $page->assign('target', $target);
74c55fd6 1047
4371e993 1048 // When we have a valid target, prepare emails.
86f0a6af 1049 if ($target) {
4371e993 1050 // Examine what operation needs to be performed.
86f0a6af 1051 switch ($op) {
1052 case 'mail':
40d428d8
VZ
1053 S::assert_xsrf_token();
1054
da2fff38 1055 send_warning_homonym($user, $loginbis);
86f0a6af 1056 $op = 'list';
191711d5 1057 $page->trigSuccess('Email envoyé à ' . $user->forlifeEmail() . '.');
86f0a6af 1058 break;
839a80cf 1059
86f0a6af 1060 case 'correct':
40d428d8
VZ
1061 S::assert_xsrf_token();
1062
da2fff38
SJ
1063 fix_homonym($user, $loginbis);
1064 send_robot_homonym($user, $loginbis);
86f0a6af 1065 $op = 'list';
191711d5 1066 $page->trigSuccess('Email envoyé à ' . $user->forlifeEmail() . ', alias supprimé.');
86f0a6af 1067 break;
1068 }
1069 }
74c55fd6 1070
86f0a6af 1071 if ($op == 'list') {
4371e993
SJ
1072 // Retrieves homonyms that are already been fixed.
1073 $res = XDB::iterator('SELECT o.email AS homonym, f.email AS forlife, o.expire, f.uid
1074 FROM email_source_other AS o
1075 INNER JOIN homonyms_list AS h ON (o.hrmid = h.hrmid)
1076 INNER JOIN email_source_account AS f ON (h.uid = f.uid AND f.type = \'forlife\')
f036c896
SJ
1077 WHERE o.expire IS NOT NULL
1078 ORDER BY homonym, forlife');
4371e993
SJ
1079 $homonyms = array();
1080 while ($item = $res->next()) {
1081 $homonyms[$item['homonym']][] = $item;
1082 }
1083 $page->assign_by_ref('homonyms', $homonyms);
1084
1085 // Retrieves homonyms that needs to be fixed.
1086 $res = XDB::iterator('SELECT e.email AS homonym, f.email AS forlife, e.expire, e.uid, (e.expire < NOW()) AS urgent
1087 FROM email_source_account AS e
1088 INNER JOIN homonyms_list AS l ON (e.uid = l.uid)
1089 INNER JOIN homonyms_list AS h ON (l.hrmid = h.hrmid)
1090 INNER JOIN email_source_account AS f ON (h.uid = f.uid AND f.type = \'forlife\')
f036c896
SJ
1091 WHERE e.expire IS NOT NULL
1092 ORDER BY homonym, forlife');
4371e993
SJ
1093 $homonyms_to_fix = array();
1094 while ($item = $res->next()) {
1095 $homonyms_to_fix[$item['homonym']][] = $item;
1096 }
1097 $page->assign_by_ref('homonyms_to_fix', $homonyms_to_fix);
86f0a6af 1098 }
da2fff38
SJ
1099
1100 if ($op == 'correct-conf') {
1101 $page->assign('robot_mail_text', get_robot_mail_text($user, $loginbis));
1102 }
1103
1104 if ($op == 'mail-conf') {
1105 $page->assign('warning_mail_text', get_warning_mail_text($user, $loginbis));
1106 }
86f0a6af 1107 }
74c55fd6 1108
26ba053e 1109 function handler_deaths($page, $promo = 0, $validate = false)
32b3ac78 1110 {
86f0a6af 1111 $page->changeTpl('admin/deces_promo.tpl');
46f272fe 1112 $page->setTitle('Administration - Deces');
74c55fd6 1113
dcefa8f7
FB
1114 if (!$promo) {
1115 $promo = Env::t('promo', 'X1923');
1116 }
1117 $page->assign('promo', $promo);
1118 if (!$promo) {
1119 return;
1120 }
74c55fd6 1121
40d428d8
VZ
1122 if ($validate) {
1123 S::assert_xsrf_token();
1124
f198bf30 1125 $res = XDB::iterRow('SELECT p.pid, pd.directory_name, p.deathdate
dcefa8f7
FB
1126 FROM profiles AS p
1127 INNER JOIN profile_display AS pd ON (p.pid = pd.pid)
1128 WHERE pd.promo = {?}', $promo);
1129 while (list($pid, $name, $death) = $res->next()) {
f198bf30 1130 $val = Env::v('death_' . $pid);
71497fb8 1131 if ($val == $death) {
e61326ed
VZ
1132 continue;
1133 }
1134
71497fb8
SJ
1135 if (empty($val)) {
1136 $val = null;
1137 }
dcefa8f7
FB
1138 XDB::execute('UPDATE profiles
1139 SET deathdate = {?}, deathdate_rec = NOW()
f198bf30 1140 WHERE pid = {?}', $val, $pid);
71497fb8
SJ
1141
1142 $page->trigSuccess('Édition du décès de ' . $name . ' (' . ($val ? $val : 'ressuscité') . ').');
1143 if ($val && ($death == '0000-00-00' || empty($death))) {
438b7a0c 1144 $profile = Profile::get($pid);
6150f591
SJ
1145 $profile->clear();
1146 $profile->owner()->clear(false);
e61326ed 1147 }
86f0a6af 1148 }
86f0a6af 1149 }
74c55fd6 1150
f198bf30 1151 $res = XDB::iterator('SELECT p.pid, pd.directory_name, p.deathdate
dcefa8f7
FB
1152 FROM profiles AS p
1153 INNER JOIN profile_display AS pd ON (p.pid = pd.pid)
1154 WHERE pd.promo = {?}
1155 ORDER BY pd.sort_name', $promo);
71497fb8 1156 $page->assign('profileList', $res);
86f0a6af 1157 }
74c55fd6 1158
26ba053e 1159 function handler_dead_but_active($page)
32b3ac78 1160 {
1c48c2a9 1161 $page->changeTpl('admin/dead_but_active.tpl');
46f272fe 1162 $page->setTitle('Administration - Décédés');
1c48c2a9
VZ
1163
1164 $res = XDB::iterator(
e46cf8c4 1165 "SELECT a.hruid, pd.promo, p.ax_id, pd.directory_name, p.deathdate, DATE(MAX(s.start)) AS last
fe13bc1d
FB
1166 FROM accounts AS a
1167 INNER JOIN account_profiles AS ap ON (ap.uid = a.uid AND FIND_IN_SET('owner', ap.perms))
1168 INNER JOIN profiles AS p ON (p.pid = ap.pid)
1169 INNER JOIN profile_display AS pd ON (pd.pid = p.pid)
6586a74f 1170 LEFT JOIN log_sessions AS s ON (s.uid = a.uid AND suid = 0)
e46cf8c4 1171 WHERE a.state = 'active' AND p.deathdate IS NOT NULL
dcefa8f7 1172 GROUP BY a.uid
e46cf8c4 1173 ORDER BY pd.promo, pd.sort_name");
1c48c2a9
VZ
1174 $page->assign('dead', $res);
1175 }
1176
26ba053e 1177 function handler_validate($page, $action = 'list', $id = null)
e654517d 1178 {
764b894d 1179 $page->changeTpl('admin/validation.tpl');
46f272fe 1180 $page->setTitle('Administration - Valider une demande');
84163d58 1181 $page->addCssLink('nl.Polytechnique.org.css');
e654517d 1182
5b8c317d 1183 if ($action == 'edit' && !is_null($id)) {
ed5b9703 1184 $page->assign('preview_id', $id);
5b8c317d
SJ
1185 } else {
1186 $page->assign('preview_id', null);
ed5b9703 1187 }
1188
86f0a6af 1189 if(Env::has('uid') && Env::has('type') && Env::has('stamp')) {
40d428d8
VZ
1190 S::assert_xsrf_token();
1191
20d7932b 1192 $req = Validate::get_typed_request(Env::v('uid'), Env::v('type'), Env::v('stamp'));
343e22c2
FB
1193 if ($req) {
1194 $req->handle_formu();
1195 } else {
1196 $page->trigWarning('La validation a déjà été effectuée.');
1197 }
86f0a6af 1198 }
74c55fd6 1199
cfb96867 1200 $r = XDB::iterator('SHOW COLUMNS FROM requests_answers');
1201 while (($a = $r->next()) && $a['Field'] != 'category');
a0328b34
NI
1202 $categories = explode(',', str_replace("'", '', substr($a['Type'], 5, -1)));
1203 sort($categories);
1204 $page->assign('categories', $categories);
74c55fd6 1205
cfb96867 1206 $hidden = array();
257ae408
SJ
1207 $res = XDB::query('SELECT hidden_requests
1208 FROM requests_hidden
1209 WHERE uid = {?}', S::v('uid'));
e0d7c076 1210 $hide_requests = $res->fetchOneCell();
cfb96867 1211 if (Post::has('hide')) {
74c55fd6 1212 $hide = array();
1213 foreach ($categories as $cat)
cfb96867 1214 if (!Post::v($cat)) {
1215 $hidden[$cat] = 1;
1216 $hide[] = $cat;
1217 }
e0d7c076 1218 $hide_requests = join(',', $hide);
00ba8a74
SJ
1219 XDB::query('INSERT INTO requests_hidden (uid, hidden_requests)
1220 VALUES ({?}, {?})
1221 ON DUPLICATE KEY UPDATE hidden_requests = VALUES(hidden_requests)',
e0d7c076
SJ
1222 S::v('uid'), $hide_requests);
1223 } elseif ($hide_requests) {
1224 foreach (explode(',', $hide_requests) as $hide_type)
cfb96867 1225 $hidden[$hide_type] = true;
1226 }
1227 $page->assign('hide_requests', $hidden);
74c55fd6 1228
90df2530
FB
1229 // Update the count of item to validate here... useful in development configuration
1230 // where several copies of the site use the same DB, but not the same "dynamic configuration"
ebfdf077
FB
1231 global $globals;
1232 $globals->updateNbValid();
7b094a73 1233 $page->assign('vit', Validate::iterate());
e33b29e5 1234 $page->assign('isAdmin', S::admin());
86f0a6af 1235 }
e654517d 1236
26ba053e 1237 function handler_validate_answers($page, $action = 'list', $id = null)
32b3ac78 1238 {
46f272fe 1239 $page->setTitle('Administration - Réponses automatiques de validation');
a7de4ef7 1240 $page->assign('title', 'Gestion des réponses automatiques');
e18888f4 1241 $table_editor = new PLTableEditor('admin/validate/answers','requests_answers','id');
a7de4ef7 1242 $table_editor->describe('category','catégorie',true);
e18888f4 1243 $table_editor->describe('title','titre',true);
47f51789 1244 $table_editor->describe('answer','texte',false, true);
e18888f4 1245 $table_editor->apply($page, $action, $id);
1246 }
32b3ac78 1247
26ba053e 1248 function handler_skins($page, $action = 'list', $id = null)
32b3ac78 1249 {
46f272fe 1250 $page->setTitle('Administration - Skins');
e7ae7df9 1251 $page->assign('title', 'Gestion des skins');
1252 $table_editor = new PLTableEditor('admin/skins','skins','id');
1253 $table_editor->describe('name','nom',true);
1254 $table_editor->describe('skin_tpl','nom du template',true);
47f51789 1255 $table_editor->describe('auteur','auteur',false, true);
e7ae7df9 1256 $table_editor->describe('comment','commentaire',true);
47f51789
RB
1257 $table_editor->describe('date','date',false, true);
1258 $table_editor->describe('ext','extension du screenshot',false, true);
e7ae7df9 1259 $table_editor->apply($page, $action, $id);
74c55fd6 1260 }
669cb0e0 1261
26ba053e 1262 function handler_postfix_blacklist($page, $action = 'list', $id = null)
32b3ac78 1263 {
46f272fe 1264 $page->setTitle('Administration - Postfix : Blacklist');
e7ae7df9 1265 $page->assign('title', 'Blacklist de postfix');
1266 $table_editor = new PLTableEditor('admin/postfix/blacklist','postfix_blacklist','email', true);
1267 $table_editor->describe('reject_text','Texte de rejet',true);
1268 $table_editor->describe('email','email',true);
1269 $table_editor->apply($page, $action, $id);
74c55fd6 1270 }
32b3ac78 1271
26ba053e 1272 function handler_postfix_whitelist($page, $action = 'list', $id = null)
32b3ac78 1273 {
46f272fe 1274 $page->setTitle('Administration - Postfix : Whitelist');
e7ae7df9 1275 $page->assign('title', 'Whitelist de postfix');
1276 $table_editor = new PLTableEditor('admin/postfix/whitelist','postfix_whitelist','email', true);
1277 $table_editor->describe('email','email',true);
1278 $table_editor->apply($page, $action, $id);
74c55fd6 1279 }
32b3ac78 1280
26ba053e 1281 function handler_mx_broken($page, $action = 'list', $id = null)
32b3ac78 1282 {
46f272fe 1283 $page->setTitle('Administration - MX Défaillants');
a7de4ef7 1284 $page->assign('title', 'MX Défaillant');
ccdbc270 1285 $table_editor = new PLTableEditor('admin/mx/broken', 'mx_watch', 'host', true);
1286 $table_editor->describe('host', 'Masque', true);
1287 $table_editor->describe('state', 'Niveau', true);
47f51789 1288 $table_editor->describe('text', 'Description du problème', false, true);
ccdbc270 1289 $table_editor->apply($page, $action, $id);
1290 }
32b3ac78 1291
26ba053e 1292 function handler_logger_actions($page, $action = 'list', $id = null)
32b3ac78 1293 {
46f272fe 1294 $page->setTitle('Administration - Actions');
e7ae7df9 1295 $page->assign('title', 'Gestion des actions de logger');
6586a74f 1296 $table_editor = new PLTableEditor('admin/logger/actions','log_actions','id');
a7de4ef7 1297 $table_editor->describe('text','intitulé',true);
e7ae7df9 1298 $table_editor->describe('description','description',true);
1299 $table_editor->apply($page, $action, $id);
74c55fd6 1300 }
32b3ac78 1301
26ba053e 1302 function handler_downtime($page, $action = 'list', $id = null)
8f2104cb 1303 {
46f272fe 1304 $page->setTitle('Administration - Coupures');
e7ae7df9 1305 $page->assign('title', 'Gestion des coupures');
06f4daf9 1306 $table_editor = new PLTableEditor('admin/downtime','downtimes','id');
e7ae7df9 1307 $table_editor->describe('debut','date',true);
47f51789 1308 $table_editor->describe('duree','durée',false, true);
a7de4ef7 1309 $table_editor->describe('resume','résumé',true);
1310 $table_editor->describe('services','services affectés',true);
47f51789 1311 $table_editor->describe('description','description',false, true);
e7ae7df9 1312 $table_editor->apply($page, $action, $id);
74c55fd6 1313 }
bc0903c7 1314
a7fada4f
SJ
1315 private static function isCountryIncomplete(array &$item)
1316 {
1317 $warning = false;
1318 foreach (array('worldRegion', 'country', 'capital', 'phonePrefix', 'licensePlate', 'countryPlain') as $field) {
1319 if ($item[$field] == '') {
1320 $item[$field . '_warning'] = true;
1321 $warning = true;
1322 }
1323 }
1324 if (is_null($item['belongsTo'])) {
1325 foreach (array('nationality', 'nationalityEn') as $field) {
1326 if ($item[$field] == '') {
1327 $item[$field . '_warning'] = true;
1328 $warning = true;
1329 }
1330 }
1331 }
1332 return $warning;
1333 }
1334
846bfc83
SJ
1335 private static function updateCountry(array $item)
1336 {
1337 XDB::execute('UPDATE geoloc_countries
1338 SET countryPlain = {?}
1339 WHERE iso_3166_1_a2 = {?}',
1340 mb_strtoupper(replace_accent($item['country'])), $item['iso_3166_1_a2']);
1341 }
1342
a7fada4f
SJ
1343 private static function isLanguageIncomplete(array &$item)
1344 {
1345 if ($item['language'] == '') {
1346 $item['language_warning'] = true;
1347 return true;
1348 }
1349 return false;
1350 }
1351
846bfc83
SJ
1352 private static function updateLanguage(array $item) {}
1353
2a1cd4ab 1354 function handler_geocoding($page, $category = null, $action = null, $id = null)
a7fada4f
SJ
1355 {
1356 // Warning, this handler requires the following packages:
1357 // * pkg-isocodes
1358 // * isoquery
1359
1360 static $properties = array(
1361 'country' => array(
1362 'name' => 'pays',
1363 'isocode' => '3166',
1364 'table' => 'geoloc_countries',
1365 'id' => 'iso_3166_1_a2',
1366 'main_fields' => array('iso_3166_1_a3', 'iso_3166_1_num', 'countryEn'),
1367 'other_fields' => array('worldRegion', 'country', 'capital', 'nationality', 'nationalityEn',
846bfc83 1368 'phonePrefix', 'phoneFormat', 'licensePlate', 'belongsTo')
a7fada4f
SJ
1369 ),
1370 'language' => array(
1371 'name' => 'langages',
1372 'isocode' => '639',
1373 'table' => 'profile_langskill_enum',
1374 'id' => 'iso_639_2b',
1375 'main_fields' => array('iso_639_2t', 'iso_639_1', 'language_en'),
1376 'other_fields' => array('language')
1377
1378 )
1379 );
a7fada4f 1380
846bfc83 1381 if (is_null($category) || !array_key_exists($category, $properties)) {
a7fada4f
SJ
1382 pl_redirect('admin');
1383 }
1384
846bfc83
SJ
1385 $data = $properties[$category];
1386
1387 if ($action == 'edit' || $action == 'add') {
1388 $main_fields = array_merge(array($data['id']), $data['main_fields']);
1389 $all_fields = array_merge($main_fields, $data['other_fields']);
1390
1391 if (is_null($id)) {
1392 if (Post::has('new_id')) {
1393 $id = Post::v('new_id');
1394 } else {
1395 pl_redirect('admin/geocoding/' . $category);
1396 }
1397 }
1398
1399 $list = array();
1400 exec('isoquery --iso=' . $data['isocode'] . ' ' . $id, $list);
1401 if (count($list) == 1) {
1402 $array = explode("\t", $list[0]);
1403 foreach ($main_fields as $i => $field) {
1404 $iso[$field] = $array[$i];
1405 }
1406 } else {
1407 $iso = array();
1408 }
1409
1410 if ($action == 'add') {
1411 if (Post::has('new_id')) {
1412 S::assert_xsrf_token();
1413 }
1414
1415 if (count($iso)) {
1416 $item = $iso;
1417 } else {
1418 $item = array($data['id'] => $id);
1419 }
1420 XDB::execute('INSERT INTO ' . $data['table'] . '(' . implode(', ', array_keys($item)) . ')
1421 VALUES ' . XDB::formatArray($item));
1422 $page->trigSuccess($id . ' a bien été ajouté à la base.');
1423 } elseif ($action == 'edit') {
1424 if (Post::has('edit')) {
1425 S::assert_xsrf_token();
1426
1427 $item = array();
1428 $set = array();
1429 foreach ($all_fields as $field) {
1430 $item[$field] = Post::t($field);
1431 $set[] = $field . XDB::format(' = {?}', ($item[$field] ? $item[$field] : null));
1432 }
1433 XDB::execute('UPDATE ' . $data['table'] . '
1434 SET ' . implode(', ', $set) . '
1435 WHERE ' . $data['id'] . ' = {?}',
1436 $id);
1437 call_user_func_array(array('self', 'update' . ucfirst($category)), array($item));
1438 $page->trigSuccess($id . ' a bien été mis à jour.');
1439 } elseif (Post::has('del')) {
1440 S::assert_xsrf_token();
1441
1442 XDB::execute('DELETE FROM ' . $data['table'] . '
1443 WHERE ' . $data['id'] . ' = {?}',
1444 $id);
1445 $page->trigSuccessRedirect($id . ' a bien été supprimé.', 'admin/geocoding/' . $category);
1446 } else {
1447 $item = XDB::fetchOneAssoc('SELECT *
1448 FROM ' . $data['table'] . '
1449 WHERE ' . $data['id'] . ' = {?}',
1450 $id);
1451 }
1452 }
1453
1454 $page->changeTpl('admin/geocoding_edit.tpl');
1455 $page->setTitle('Administration - ' . ucfirst($data['name']));
1456 $page->assign('category', $category);
1457 $page->assign('name', $data['name']);
1458 $page->assign('all_fields', $all_fields);
1459 $page->assign('id', $id);
1460 $page->assign('iso', $iso);
1461 $page->assign('item', $item);
1462 return;
1463 }
a7fada4f
SJ
1464
1465 $page->changeTpl('admin/geocoding.tpl');
1466 $page->setTitle('Administration - ' . ucfirst($data['name']));
846bfc83 1467 $page->assign('category', $category);
a7fada4f
SJ
1468 $page->assign('name', $data['name']);
1469 $page->assign('id', $data['id']);
1470 $page->assign('main_fields', $data['main_fields']);
1471 $page->assign('all_fields', array_merge($data['main_fields'], $data['other_fields']));
1472
1473 // First build the list provided by the iso codes.
1474 $list = array();
1475 exec('isoquery --iso=' . $data['isocode'], $list);
1476
1477 foreach ($list as $key => $item) {
1478 $array = explode("\t", $item);
1479 unset($list[$key]);
1480 $list[$array[0]] = array();
1481 foreach ($data['main_fields'] as $i => $field) {
1482 $list[$array[0]][$field] = $array[$i + 1];
1483 }
1484 }
1485 ksort($list);
1486
1487 // Retrieve all data from the database.
1488 $db_list = XDB::rawFetchAllAssoc('SELECT *
1489 FROM ' . $data['table'] . '
1490 ORDER BY ' . $data['id'],
1491 $data['id']);
1492
1493 // Sort both iso and database data into 5 categories:
1494 // $missing: data from the iso list not in the database,
1495 // $non_existing: data from the database not in the iso list,
1496 // $erroneous: data that differ on main fields,
1497 // $incomplete: data with empty fields in the data base,
1498 // $remaining: remaining correct and complete data from the database.
1499
1500 $missing = $non_existing = $erroneous = $incomplete = $remaining = array();
1501 foreach (array_keys($list) as $id) {
1502 if (!array_key_exists($id, $db_list)) {
1503 $missing[$id] = $list[$id];
1504 }
1505 }
1506
1507 foreach ($db_list as $id => $item) {
1508 if (!array_key_exists($id, $list)) {
1509 $non_existing[$id] = $item;
1510 } else {
1511 $error = false;
1512 foreach ($data['main_fields'] as $field) {
1513 if ($item[$field] != $list[$id][$field]) {
1514 $item[$field . '_error'] = true;
1515 $error = true;
1516 }
1517 }
1518 if ($error == true) {
1519 $erroneous[$id] = $item;
846bfc83 1520 } elseif (call_user_func_array(array('self', 'is' . ucfirst($category) . 'Incomplete'), array(&$item))) {
a7fada4f
SJ
1521 $incomplete[$id] = $item;
1522 } else {
1523 $remaining[$id] = $item;
1524 }
1525 }
1526 }
1527
1528 $page->assign('lists', array(
1529 'manquant' => $missing,
1530 'disparu' => $non_existing,
1531 'erroné' => $erroneous,
1532 'incomplet' => $incomplete,
1533 'restant' => $remaining
1534 ));
1535 }
1536
8338711c
FB
1537 function handler_accounts(PlPage $page)
1538 {
1539 $page->changeTpl('admin/accounts.tpl');
1540 $page->setTitle('Administration - Comptes');
8338711c
FB
1541
1542 if (Post::has('create_account')) {
1543 S::assert_xsrf_token();
1544 $firstname = Post::t('firstname');
6b6e4ff2 1545 $lastname = mb_strtoupper(Post::t('lastname'));
e8c61abe 1546 $sex = Post::s('sex');
8338711c 1547 $email = Post::t('email');
67cff520 1548 $type = Post::s('type');
de04c29a
NI
1549 if (!$type) {
1550 $page->trigError("Empty account type");
1551 } elseif (!isvalid_email($email)) {
8338711c 1552 $page->trigError("Invalid email address: $email");
de04c29a 1553 } elseif (strlen(Post::s('pwhash')) != 40) {
8338711c
FB
1554 $page->trigError("Invalid password hash");
1555 } else {
de04c29a 1556 $login = PlUser::makeHrid($firstname, $lastname, $type);
8338711c
FB
1557 $full_name = $firstname . ' ' . $lastname;
1558 $directory_name = $lastname . ' ' . $firstname;
1559 XDB::execute("INSERT INTO accounts (hruid, type, state, password,
1560 registration_date, email, full_name,
6b6e4ff2
SJ
1561 display_name, sex, directory_name,
1562 lastname, firstname)
1563 VALUES ({?}, {?}, 'active', {?}, NOW(), {?}, {?}, {?}, {?}, {?}, {?}, {?})",
67cff520 1564 $login, $type, Post::s('pwhash'), $email, $full_name, $full_name, $sex,
6b6e4ff2 1565 $directory_name, $lastname, $firstname);
8338711c
FB
1566 }
1567 }
1568
67cff520
FB
1569 $uf = new UserFilter(new UFC_AccountType('ax', 'school', 'fx'));
1570 $page->assign('users', $uf->iterUsers());
8338711c
FB
1571
1572 }
1573
26ba053e 1574 function handler_account_types($page, $action = 'list', $id = null)
8f2104cb
FB
1575 {
1576 $page->setTitle('Administration - Types de comptes');
1577 $page->assign('title', 'Gestion des types de comptes');
1578 $table_editor = new PLTableEditor('admin/account/types', 'account_types', 'type', true);
1579 $table_editor->describe('type', 'Catégorie', true);
1580 $table_editor->describe('perms', 'Permissions associées', true);
1581 $table_editor->apply($page, $action, $id);
a8885c7e
NI
1582
1583 $page->trigWarning(
1584 'Le niveau de visibilité "ax", utilisé par la permission "directory_ax", ' .
1585 'correspond à la visibilité dans l\'annuaire papier.');
8f2104cb
FB
1586 }
1587
26ba053e 1588 function handler_wiki($page, $action = 'list', $wikipage = null, $wikipage2 = null)
bc0903c7 1589 {
84fc72ff 1590 if (S::hasAuthToken()) {
a2b461ce 1591 $page->setRssLink('Changement Récents',
2ab3486b 1592 '/Site/AllRecentChanges?action=rss&user=' . S::v('hruid') . '&hash=' . S::user()->token);
a2b461ce 1593 }
e61326ed 1594
3aec1c21 1595 // update wiki perms
40d428d8
VZ
1596 if ($action == 'update') {
1597 S::assert_xsrf_token();
1598
3aec1c21 1599 $perms_read = Post::v('read');
8f201b69 1600 $perms_edit = Post::v('edit');
3aec1c21 1601 if ($perms_read || $perms_edit) {
8f201b69
FB
1602 foreach ($_POST as $wiki_page => $val) {
1603 if ($val == 'on') {
1604 $wp = new PlWikiPage(str_replace(array('_', '/'), '.', $wiki_page));
1605 if ($wp->setPerms($perms_read ? $perms_read : $wp->readPerms(),
1606 $perms_edit ? $perms_edit : $wp->writePerms())) {
1607 $page->trigSuccess("Permission de la page $wiki_page mises à jour");
1608 } else {
1609 $page->trigError("Impossible de mettre les permissions de la page $wiki_page à jour");
1610 }
1611 }
3aec1c21 1612 }
1613 }
8f201b69
FB
1614 } else if ($action != 'list' && !empty($wikipage)) {
1615 $wp = new PlWikiPage($wikipage);
40d428d8
VZ
1616 S::assert_xsrf_token();
1617
8f201b69
FB
1618 if ($action == 'delete') {
1619 if ($wp->delete()) {
1620 $page->trigSuccess("La page ".$wikipage." a été supprimée.");
1621 } else {
1622 $page->trigError("Impossible de supprimer la page ".$wikipage.".");
1623 }
1624 } else if ($action == 'rename' && !empty($wikipage2) && $wikipage != $wikipage2) {
1625 if ($changedLinks = $wp->rename($wikipage2)) {
1626 $s = 'La page <em>'.$wikipage.'</em> a été déplacée en <em>'.$wikipage2.'</em>.';
1627 if (is_numeric($changedLinks)) {
1628 $s .= $changedLinks.' lien'.(($changedLinks>1)?'s ont été modifiés.':' a été modifié.');
1629 }
1630 $page->trigSuccess($s);
1631 } else {
1632 $page->trigError("Impossible de déplacer la page ".$wikipage);
9162f4ed 1633 }
9162f4ed 1634 }
1635 }
74c55fd6 1636
8f201b69 1637 $perms = PlWikiPage::permOptions();
74c55fd6 1638
3aec1c21 1639 // list wiki pages and their perms
8f201b69 1640 $wiki_pages = PlWikiPage::listPages();
3aec1c21 1641 ksort($wiki_pages);
bc0903c7 1642 $wiki_tree = array();
1643 foreach ($wiki_pages as $file => $desc) {
1644 list($cat, $name) = explode('.', $file);
1645 if (!isset($wiki_tree[$cat])) {
1646 $wiki_tree[$cat] = array();
1647 }
1648 $wiki_tree[$cat][$name] = $desc;
1649 }
1650
3aec1c21 1651 $page->changeTpl('admin/wiki.tpl');
bc0903c7 1652 $page->assign('wiki_pages', $wiki_tree);
3aec1c21 1653 $page->assign('perms_opts', $perms);
1654 }
5480a216 1655
26ba053e 1656 function handler_ipwatch($page, $action = 'list', $ip = null)
eaf30d86 1657 {
5480a216 1658 $page->changeTpl('admin/ipwatcher.tpl');
eaf30d86 1659
5480a216 1660 $states = array('safe' => 'Ne pas surveiller',
c339246f 1661 'unsafe' => 'Surveiller les inscriptions',
a7de4ef7 1662 'dangerous' => 'Surveiller tous les accès',
5480a216 1663 'ban' => 'Bannir cette adresse');
1664 $page->assign('states', $states);
1665
1666 switch (Post::v('action')) {
e61326ed 1667 case 'create':
5480a216 1668 if (trim(Post::v('ipN')) != '') {
40d428d8 1669 S::assert_xsrf_token();
61c98f4b
FB
1670 Xdb::execute('INSERT IGNORE INTO ip_watch (ip, mask, state, detection, last, uid, description)
1671 VALUES ({?}, {?}, {?}, CURDATE(), NOW(), {?}, {?})',
1672 ip_to_uint(trim(Post::v('ipN'))), ip_to_uint(trim(Post::v('maskN'))),
1673 Post::v('stateN'), S::i('uid'), Post::v('descriptionN'));
eaf30d86
PH
1674 };
1675 break;
1676
e61326ed 1677 case 'edit':
40d428d8 1678 S::assert_xsrf_token();
eaf30d86 1679 Xdb::execute('UPDATE ip_watch
61c98f4b 1680 SET state = {?}, last = NOW(), uid = {?}, description = {?}, mask = {?}
9797734d 1681 WHERE ip = {?}', Post::v('stateN'), S::i('uid'), Post::v('descriptionN'),
61c98f4b 1682 ip_to_uint(Post::v('maskN')), ip_to_uint(Post::v('ipN')));
5480a216 1683 break;
eaf30d86 1684
e61326ed 1685 default:
5480a216 1686 if ($action == 'delete' && !is_null($ip)) {
40d428d8
VZ
1687 S::assert_xsrf_token();
1688 Xdb::execute('DELETE FROM ip_watch WHERE ip = {?}', ip_to_uint($ip));
5480a216 1689 }
1690 }
1691 if ($action != 'create' && $action != 'edit') {
1692 $action = 'list';
1693 }
1694 $page->assign('action', $action);
1695
1696 if ($action == 'list') {
9797734d
FB
1697 $sql = "SELECT w.ip, IF(s.ip IS NULL,
1698 IF(w.ip = s2.ip, s2.host, s2.forward_host),
1699 IF(w.ip = s.ip, s.host, s.forward_host)),
32b3ac78 1700 w.mask, w.detection, w.state, a.hruid
fe13bc1d 1701 FROM ip_watch AS w
6586a74f
FB
1702 LEFT JOIN log_sessions AS s ON (s.ip = w.ip)
1703 LEFT JOIN log_sessions AS s2 ON (s2.forward_ip = w.ip)
fe13bc1d 1704 LEFT JOIN accounts AS a ON (a.uid = s.uid)
32b3ac78
FB
1705 GROUP BY w.ip, a.hruid
1706 ORDER BY w.state, w.ip, a.hruid";
5480a216 1707 $it = Xdb::iterRow($sql);
1708
1709 $table = array();
1710 $props = array();
90c614cd 1711 while (list($ip, $host, $mask, $date, $state, $hruid) = $it->next()) {
9797734d 1712 $ip = uint_to_ip($ip);
61c98f4b 1713 $mask = uint_to_ip($mask);
5480a216 1714 if (count($props) == 0 || $props['ip'] != $ip) {
1715 if (count($props) > 0) {
1716 $table[] = $props;
1717 }
1718 $props = array('ip' => $ip,
61c98f4b 1719 'mask' => $mask,
5480a216 1720 'host' => $host,
1721 'detection' => $date,
1722 'state' => $state,
90c614cd 1723 'users' => array($hruid));
5480a216 1724 } else {
90c614cd 1725 $props['users'][] = $hruid;
5480a216 1726 }
1727 }
1728 if (count($props) > 0) {
1729 $table[] = $props;
1730 }
1731 $page->assign('table', $table);
1732 } elseif ($action == 'edit') {
61c98f4b 1733 $sql = "SELECT w.detection, w.state, w.last, w.description, w.mask,
32b3ac78 1734 a1.hruid AS edit, a2.hruid AS hruid, s.host
fe13bc1d
FB
1735 FROM ip_watch AS w
1736 LEFT JOIN accounts AS a1 ON (a1.uid = w.uid)
6586a74f 1737 LEFT JOIN log_sessions AS s ON (w.ip = s.ip)
fe13bc1d 1738 LEFT JOIN accounts AS a2 ON (a2.uid = s.uid)
5480a216 1739 WHERE w.ip = {?}
32b3ac78
FB
1740 GROUP BY a2.hruid
1741 ORDER BY a2.hruid";
9797734d 1742 $it = Xdb::iterRow($sql, ip_to_uint($ip));
5480a216 1743
1744 $props = array();
90c614cd 1745 while (list($detection, $state, $last, $description, $mask, $edit, $hruid, $host) = $it->next()) {
5480a216 1746 if (count($props) == 0) {
1747 $props = array('ip' => $ip,
61c98f4b 1748 'mask' => uint_to_ip($mask),
5480a216 1749 'host' => $host,
1750 'detection' => $detection,
1751 'state' => $state,
1752 'last' => $last,
1753 'description' => $description,
1754 'edit' => $edit,
90c614cd 1755 'users' => array($hruid));
5480a216 1756 } else {
90c614cd 1757 $props['users'][] = $hruid;
5480a216 1758 }
1759 }
1760 $page->assign('ip', $props);
1761 }
1762 }
eaf30d86 1763
26ba053e 1764 function handler_icons($page)
f141945d 1765 {
1766 $page->changeTpl('admin/icons.tpl');
1767 $dh = opendir('../htdocs/images/icons');
1768 if (!$dh) {
a7d35093 1769 $page->trigError('Dossier des icones introuvables.');
f141945d 1770 }
1771 $icons = array();
1772 while (($file = readdir($dh)) !== false) {
1773 if (strlen($file) > 4 && substr($file,-4) == '.gif') {
1774 array_push($icons, substr($file, 0, -4));
1775 }
1776 }
1777 sort($icons);
1778 $page->assign('icons', $icons);
04148a2c 1779 }
fd1ce8c5 1780
26ba053e 1781 function handler_account_watch($page)
fd1ce8c5
FB
1782 {
1783 $page->changeTpl('admin/accounts.tpl');
32b3ac78
FB
1784 $page->assign('disabled', XDB::iterator('SELECT a.hruid, FIND_IN_SET(\'watch\', a.flags) AS watch,
1785 a.state = \'disabled\' AS disabled, a.comment
1786 FROM accounts AS a
1787 WHERE a.state = \'disabled\' OR FIND_IN_SET(\'watch\', a.flags)
1788 ORDER BY a.hruid'));
1789 $page->assign('admins', XDB::iterator('SELECT a.hruid
1790 FROM accounts AS a
1791 WHERE a.is_admin
1792 ORDER BY a.hruid'));
fd1ce8c5 1793 }
4d336f59 1794
d6efb578
SJ
1795 function handler_xnet_without_group($page)
1796 {
1797 $page->changeTpl('admin/xnet_without_group.tpl');
1798 $page->assign('accounts', XDB::iterator('SELECT a.hruid, a.state
1799 FROM accounts AS a
1800 LEFT JOIN group_members AS m ON (a.uid = m.uid)
1801 WHERE a.type = \'xnet\' AND m.uid IS NULL
1802 ORDER BY a.state, a.hruid'));
1803 }
1804
26ba053e 1805 function handler_jobs($page, $id = -1)
4d336f59
SJ
1806 {
1807 $page->changeTpl('admin/jobs.tpl');
1808
1809 if (Env::has('search')) {
308bbdb0
SJ
1810 $res = XDB::query("SELECT id, name, acronym
1811 FROM profile_job_enum
1812 WHERE name LIKE CONCAT('%', {?}, '%') OR acronym LIKE CONCAT('%', {?}, '%')",
4d336f59
SJ
1813 Env::t('job'), Env::t('job'));
1814
1815 if ($res->numRows() <= 20) {
1816 $page->assign('jobs', $res->fetchAllAssoc());
1817 } else {
1818 $page->trigError("Il y a trop d'entreprises correspondant à ton choix. Affine-le !");
1819 }
1820
1821 $page->assign('askedJob', Env::v('job'));
1822 return;
1823 }
1824
1825 if (Env::has('edit')) {
1826 S::assert_xsrf_token();
1827 $selectedJob = Env::has('selectedJob');
1828
0b6c8b36 1829 Phone::deletePhones(0, Phone::LINK_COMPANY, $id);
781a24bc 1830 Address::deleteAddresses(null, Address::LINK_COMPANY, $id);
4d336f59 1831 if (Env::has('change')) {
e954a945
SJ
1832 if (Env::has('newJobId') && Env::i('newJobId') > 0) {
1833 XDB::execute('UPDATE profile_job
1834 SET jobid = {?}
1835 WHERE jobid = {?}',
1836 Env::i('newJobId'), $id);
1837 XDB::execute('DELETE FROM profile_job_enum
1838 WHERE id = {?}',
1839 $id);
1840
1841 $page->trigSuccess("L'entreprise a bien été remplacée.");
1842 } else {
1843 $page->trigError("L'entreprise n'a pas été remplacée car l'identifiant fourni n'est pas valide.");
1844 }
4d336f59
SJ
1845 } else {
1846 XDB::execute('UPDATE profile_job_enum
1847 SET name = {?}, acronym = {?}, url = {?}, email = {?},
a6dcf7ed 1848 SIREN_code = {?}, NAF_code = {?}, AX_code = {?}, holdingid = {?}
4d336f59
SJ
1849 WHERE id = {?}',
1850 Env::t('name'), Env::t('acronym'), Env::t('url'), Env::t('email'),
a6dcf7ed 1851 (Env::t('SIREN') == 0 ? null : Env::t('SIREN')),
e4fb72eb
SJ
1852 (Env::t('NAF_code') == 0 ? null : Env::t('NAF_code')),
1853 (Env::i('AX_code') == 0 ? null : Env::t('AX_code')),
1854 (Env::i('holdingId') == 0 ? null : Env::t('holdingId')), $id);
4d336f59 1855
0b6c8b36
SJ
1856 $phone = new Phone(array('display' => Env::v('tel'), 'link_id' => $id, 'id' => 0, 'type' => 'fixed',
1857 'link_type' => Phone::LINK_COMPANY, 'pub' => 'public'));
1858 $fax = new Phone(array('display' => Env::v('fax'), 'link_id' => $id, 'id' => 1, 'type' => 'fax',
1859 'link_type' => Phone::LINK_COMPANY, 'pub' => 'public'));
c32bed90 1860 $address = new Address(array('jobid' => $id, 'type' => Address::LINK_COMPANY, 'text' => Env::t('address')));
0b6c8b36
SJ
1861 $phone->save();
1862 $fax->save();
a710dfd7 1863 $address->save();
63596a65 1864
4d336f59
SJ
1865 $page->trigSuccess("L'entreprise a bien été mise à jour.");
1866 }
1867 }
1868
1869 if (!Env::has('change') && $id != -1) {
a6dcf7ed 1870 $res = XDB::query("SELECT e.id, e.name, e.acronym, e.url, e.email, e.SIREN_code AS SIREN, e.NAF_code, e.AX_code,
63596a65
SJ
1871 h.id AS holdingId, h.name AS holdingName, h.acronym AS holdingAcronym,
1872 t.display_tel AS tel, f.display_tel AS fax, a.text AS address
1873 FROM profile_job_enum AS e
1874 LEFT JOIN profile_job_enum AS h ON (e.holdingid = h.id)
9483a7c7
SJ
1875 LEFT JOIN profile_phones AS t ON (t.pid = e.id AND t.link_type = 'hq' AND t.tel_id = 0)
1876 LEFT JOIN profile_phones AS f ON (f.pid = e.id AND f.link_type = 'hq' AND f.tel_id = 1)
63596a65
SJ
1877 LEFT JOIN profile_addresses AS a ON (a.jobid = e.id AND a.type = 'hq')
1878 WHERE e.id = {?}",
4d336f59
SJ
1879 $id);
1880
1881 if ($res->numRows() == 0) {
1882 $page->trigError('Auncune entreprise ne correspond à cet identifiant.');
1883 } else {
1884 $page->assign('selectedJob', $res->fetchOneAssoc());
1885 }
1886 }
1887 }
4d5946ac 1888
26ba053e 1889 function handler_profile($page)
4d5946ac
SJ
1890 {
1891 $page->changeTpl('admin/profile.tpl');
1892
1893 if (Post::has('checked')) {
1894 S::assert_xsrf_token();
1895 $res = XDB::iterator('SELECT DISTINCT(pm.pid), pd.public_name
1896 FROM profile_modifications AS pm
1897 INNER JOIN profile_display AS pd ON (pm.pid = pd.pid)
1898 WHERE pm.type = \'self\'');
1899
1900 while ($profile = $res->next()) {
1901 if (Post::has('checked_' . $profile['pid'])) {
1902 XDB::execute('DELETE FROM profile_modifications
1903 WHERE type = \'self\' AND pid = {?}', $profile['pid']);
1904
1905 $page->trigSuccess('Profil de ' . $profile['public_name'] . ' vérifié.');
1906 }
1907 }
1908 }
1909
1910 $res = XDB::iterator('SELECT p.hrpid, pm.pid, pd.directory_name, GROUP_CONCAT(pm.field SEPARATOR \', \') AS field
1911 FROM profile_modifications AS pm
1912 INNER JOIN profiles AS p ON (pm.pid = p.pid)
1913 INNER JOIN profile_display AS pd ON (pm.pid = pd.pid)
1914 WHERE pm.type = \'self\'
1915 GROUP BY pd.directory_name
1916 ORDER BY pd.directory_name');
1917 $page->assign('updates', $res);
1918 }
d60d2d1f
SJ
1919
1920 function handler_phd($page, $promo = null, $validate = false)
1921 {
1922 $page->changeTpl('admin/phd.tpl');
1923 $eduDegrees = DirEnum::getOptions(DirEnum::EDUDEGREES);
1924 $eduDegrees = array_flip($eduDegrees);
1925
1926 if (is_null($promo)) {
1927 $promo_list = XDB::fetchColumn('SELECT DISTINCT(grad_year)
1928 FROM profile_education
1929 WHERE FIND_IN_SET(\'primary\', flags) AND NOT FIND_IN_SET(\'completed\', flags) AND degreeid = {?}
1930 ORDER BY grad_year',
1931 $eduDegrees[Profile::DEGREE_D]);
1932 $page->assign('promo_list', $promo_list);
1933 $page->assign('nothing', count($promo_list) == 0);
1934 return;
1935 }
1936
1937 if ($validate) {
1938 S::assert_xsrf_token();
1939
1940 $list = XDB::iterator('SELECT pe.pid, pd.directory_name
1941 FROM profile_education AS pe
1942 INNER JOIN profile_display AS pd ON (pe.pid = pd.pid)
1943 WHERE FIND_IN_SET(\'primary\', pe.flags) AND NOT FIND_IN_SET(\'completed\', pe.flags)
1944 AND pe.degreeid = {?} AND pe.grad_year = {?}',
1945 $eduDegrees[Profile::DEGREE_D], $promo);
1946 while ($res = $list->next()) {
1947 $pid = $res['pid'];
1948 $name = $res['directory_name'];
1949 if (Post::b('completed_' . $pid)) {
1950 $grad_year = Post::t('grad_year_' . $pid);
1951 XDB::execute('UPDATE profile_education
1952 SET flags = \'primary,completed\', grad_year = {?}
1953 WHERE FIND_IN_SET(\'primary\', flags) AND pid = {?}',
1954 $grad_year, $pid);
1955 XDB::execute('UPDATE profile_display
1956 SET promo = {?}
1957 WHERE pid = {?}',
1958 'D' . $grad_year, $pid);
1959 $page->trigSuccess("Promotion de $name validée.");
1960 }
1961 }
1962 }
1963
1964 $list = XDB::iterator('SELECT pe.pid, pd.directory_name
1965 FROM profile_education AS pe
1966 INNER JOIN profile_display AS pd ON (pe.pid = pd.pid)
1967 WHERE FIND_IN_SET(\'primary\', pe.flags) AND NOT FIND_IN_SET(\'completed\', pe.flags)
1968 AND pe.degreeid = {?} AND pe.grad_year = {?}
1969 ORDER BY pd.directory_name',
1970 $eduDegrees[Profile::DEGREE_D], $promo);
1971 $page->assign('list', $list);
1972 $page->assign('promo', $promo);
1973 }
edc03014
SJ
1974
1975 function handler_add_secondary_edu($page)
1976 {
1977 $page->changeTpl('admin/add_secondary_edu.tpl');
1978
1979 if (!(Post::has('verify') || Post::has('add'))) {
1980 return;
1981 } elseif (!Post::has('people')) {
1982 $page->trigWarning("Aucune information n'a été fournie.");
1983 return;
1984 }
1985
1986 require_once 'name.func.inc.php';
1987 $lines = explode("\n", Post::t('people'));
1988 $separator = Post::t('separator');
1989 $degree = Post::v('degree');
1990 $promotion = Post::i('promotion');
1991 $schoolsList = array_flip(DirEnum::getOptions(DirEnum::EDUSCHOOLS));
1992 $degreesList = array_flip(DirEnum::getOptions(DirEnum::EDUDEGREES));
1993 $edu_id = $schoolsList[Profile::EDU_X];
1994 $degree_id = $degreesList[$degree];
1995
1996 $res = array(
1997 'incomplete' => array(),
1998 'empty' => array(),
1999 'multiple' => array(),
2000 'already' => array(),
2001 'new' => array()
2002 );
2003 $old_pids = array();
2004 $new_pids = array();
2005 foreach ($lines as $line) {
2006 $line = trim($line);
2007 $line_array = explode($separator, $line);
2008 array_walk($line_array, 'trim');
2009 if (count($line_array) != 3) {
2010 $page->trigError("La ligne « $line » est incomplète.");
2011 $res['incomplete'][] = $line;
2012 continue;
2013 }
2014 $cond = new PFC_And(new UFC_NameTokens(split_name_for_search($line_array[0]), array(), false, false, Profile::LASTNAME));
2015 $cond->addChild(new UFC_NameTokens(split_name_for_search($line_array[1]), array(), false, false, Profile::FIRSTNAME));
2016 $cond->addChild(new UFC_Promo('=', UserFilter::DISPLAY, $line_array[2]));
2017 $uf = new UserFilter($cond);
2018 $pid = $uf->getPIDs();
2019 $count = count($pid);
2020 if ($count == 0) {
2021 $page->trigError("La ligne « $line » ne correspond à aucun profil existant.");
2022 $res['empty'][] = $line;
2023 continue;
2024 } elseif ($count > 1) {
2025 $page->trigError("La ligne « $line » correspond à plusieurs profils existant.");
2026 $res['multiple'][] = $line;
2027 continue;
2028 } else {
2029 $count = XDB::fetchOneCell('SELECT COUNT(*) AS count
2030 FROM profile_education
2031 WHERE pid = {?} AND eduid = {?} AND degreeid = {?}',
2032 $pid, $edu_id, $degree_id);
2033 if ($count == 1) {
2034 $res['already'][] = $line;
2035 $old_pids[] = $pid[0];
2036 } else {
2037 $res['new'][] = $line;
2038 $new_pids[] = $pid[0];
2039 }
2040 }
2041 }
2042
2043 $display = array();
2044 foreach ($res as $type => $res_type) {
2045 if (count($res_type) > 0) {
2046 $display = array_merge($display, array('--------------------' . $type . ':'), $res_type);
2047 }
2048 }
2049 $page->assign('people', implode("\n", $display));
2050 $page->assign('promotion', $promotion);
2051 $page->assign('degree', $degree);
2052
2053 if (Post::has('add')) {
2054 $entry_year = $promotion - Profile::educationDuration($degree);
2055
2056 if (Post::b('force_addition')) {
2057 $pids = array_unique(array_merge($old_pids, $new_pids));
2058 } else {
2059 $pids = array_unique($new_pids);
2060
2061 // Updates years.
24b02786
SJ
2062 if (count($old_pids)) {
2063 XDB::execute('UPDATE profile_education
2064 SET entry_year = {?}, grad_year = {?}, promo_year = {?}
2065 WHERE pid IN {?} AND eduid = {?} AND degreeid = {?}',
2066 $entry_year, $promotion, $promotion, $old_pids, $edu_id, $degree_id);
2067 }
edc03014
SJ
2068 }
2069
2070 // Precomputes values common to all users.
2071 $select = XDB::format('MAX(id) + 1, pid, {?}, {?}, {?}, {?}, {?}, \'secondary\'',
2072 $edu_id, $degree_id, $entry_year, $promotion, $promotion );
2073 XDB::startTransaction();
2074 foreach ($pids as $pid) {
2075 XDB::execute('INSERT INTO profile_education (id, pid, eduid, degreeid, entry_year, grad_year, promo_year, flags)
2076 SELECT ' . $select . '
2077 FROM profile_education
e26ac9a3
SJ
2078 WHERE pid = {?}
2079 GROUP BY pid',
edc03014
SJ
2080 $pid);
2081 }
2082 XDB::commit();
2083 }
2084
2085 }
40cc32f6
SJ
2086
2087 function handler_admin_name($page, $hruid = null)
2088 {
2089 $page->changeTpl('admin/admin_name.tpl');
2090
2091 if (Post::has('id')) {
2092 $user = User::get(Post::t('id'));
2093 if (is_null($user)) {
2094 $page->trigError("L'identifiant donné ne correspond à personne ou est ambigu.");
2095 exit();
2096 }
2097 pl_redirect('admin/name/' . $user->hruid);
2098 }
2099
2100 $user = User::getSilent($hruid);
2101 if (!is_null($user)) {
2102 require_once 'name.func.inc.php';
2103
2104 if ($user->hasProfile()) {
2105 $name_types = array(
2106 'lastname_main' => 'Nom patronymique',
2107 'lastname_marital' => 'Nom marital',
2108 'lastname_ordinary' => 'Nom usuel',
2109 'firstname_main' => 'Prénom',
2110 'firstname_ordinary' => 'Prénom usuel',
2111 'pseudonym' => 'Pseudonyme'
2112 );
2113 $names = XDB::fetchOneAssoc('SELECT lastname_main, lastname_marital, lastname_ordinary,
2114 firstname_main, firstname_ordinary, pseudonym
2115 FROM profile_public_names
2116 WHERE pid = {?}',
2117 $user->profile()->id());
2118 } else {
2119 $name_types = array(
2120 'lastname' => 'Nom',
2121 'firstname' => 'Prénom'
2122 );
2123 $names = XDB::fetchOneAssoc('SELECT lastname, firstname
2124 FROM accounts
2125 WHERE uid = {?}',
2126 $user->id());
2127 }
2128
2129 if (Post::has('correct')) {
2130 $new_names = array();
2131 $update = true;
2132 foreach ($name_types as $key => $fullname) {
2133 $new_names[$key] = Post::t($key);
2134 if (mb_strtolower($new_names[$key]) != mb_strtolower($names[$key])) {
2135 $update = false;
2136 }
2137 }
2138
2139 if ($update) {
2140 if ($user->hasProfile()) {
2141 update_public_names($user->profile()->id(), $new_names);
2142 update_display_names($user->profile(), $new_names);
2143 } else {
2144 $new_names['full_name'] = build_full_name($new_names['firstname'], $new_names['lastname']);
2145 $new_names['directory_name'] = build_directory_name($new_names['firstname'], $new_names['lastname']);
2146 $new_names['sort_name'] = build_sort_name($new_names['firstname'], $new_names['lastname']);
2147 XDB::execute('UPDATE accounts
2148 SET lastname = {?}, firstname = {?}, full_name = {?},
2149 directory_name = {?}, sort_name = {?}
2150 WHERE uid = {?}',
2151 $new_names['lastname'], $new_names['firstname'], $new_names['full_name'],
2152 $new_names['directory_name'], $new_names['sort_name'], $user->id());
2153 }
2154 $page->trigSuccess('Mise à jour réussie.');
2155 } else {
2156 $page->trigError('Seuls des changements de casse sont autorisés ici.');
2157 }
2158 }
2159
2160 if ($user->hasProfile()) {
2161 $names = XDB::fetchOneAssoc('SELECT lastname_main, lastname_marital, lastname_ordinary,
2162 firstname_main, firstname_ordinary, pseudonym
2163 FROM profile_public_names
2164 WHERE pid = {?}',
2165 $user->profile()->id());
2166 } else {
2167 $names = XDB::fetchOneAssoc('SELECT lastname, firstname
2168 FROM accounts
2169 WHERE uid = {?}',
2170 $user->id());
2171 }
2172
2173 foreach ($names as $key => $name) {
2174 $names[$key] = array(
2175 'value' => $name,
2176 'standard' => capitalize_name($name)
2177 );
2178 $names[$key]['different'] = ($names[$key]['value'] != $names[$key]['standard']);
2179 }
2180
2181 $page->assign('uid', $user->id());
2182 $page->assign('hruid', $user->hruid);
2183 $page->assign('names', $names);
2184 $page->assign('name_types', $name_types);
2185 }
2186 }
86f0a6af 2187}
2188
448c8cdc 2189// vim:set et sw=4 sts=4 sws=4 foldmethod=marker fenc=utf-8:
86f0a6af 2190?>