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