Migrates to hruid a few pages (axletter admin, ipwatch, search).
[platal.git] / modules / profile.php
CommitLineData
7d8b17cb 1<?php
2/***************************************************************************
179afa7f 3 * Copyright (C) 2003-2008 Polytechnique.org *
7d8b17cb 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 ProfileModule extends PLModule
23{
24 function handlers()
25 {
26 return array(
28e16d4d 27 'photo' => $this->make_hook('photo', AUTH_PUBLIC),
28 'photo/change' => $this->make_hook('photo_change', AUTH_MDP),
e49018a7 29
e8599c21 30 'fiche.php' => $this->make_hook('fiche', AUTH_PUBLIC),
31 'profile' => $this->make_hook('profile', AUTH_PUBLIC),
9643d877 32 'profile/private' => $this->make_hook('profile', AUTH_COOKIE),
5122b820 33 'profile/ax' => $this->make_hook('ax', AUTH_COOKIE, 'admin'),
2f678da1 34 'profile/edit' => $this->make_hook('p_edit', AUTH_MDP),
85cc366b 35 'profile/ajax/address' => $this->make_hook('ajax_address', AUTH_COOKIE, 'user', NO_AUTH),
2dcac0f5
FB
36 'profile/ajax/tel' => $this->make_hook('ajax_tel', AUTH_COOKIE, 'user', NO_AUTH),
37 'profile/ajax/medal' => $this->make_hook('ajax_medal', AUTH_COOKIE, 'user', NO_AUTH),
38 'profile/ajax/job' => $this->make_hook('ajax_job', AUTH_COOKIE, 'user', NO_AUTH),
39 'profile/ajax/secteur' => $this->make_hook('ajax_secteur', AUTH_COOKIE, 'user', NO_AUTH),
f25e1a56 40 'profile/ajax/skill' => $this->make_hook('ajax_skill', AUTH_COOKIE, 'user', NO_AUTH),
46ae38a9
FB
41 'javascript/applis.js' => $this->make_hook('applis_js', AUTH_COOKIE),
42 'javascript/grades.js' => $this->make_hook('grades_js', AUTH_COOKIE),
85cc366b 43 'profile/medal' => $this->make_hook('medal', AUTH_PUBLIC),
28e16d4d 44 'profile/orange' => $this->make_hook('p_orange', AUTH_MDP),
28e16d4d 45 'profile/usage' => $this->make_hook('p_usage', AUTH_MDP),
e49018a7 46
2f678da1 47 'referent' => $this->make_hook('referent', AUTH_COOKIE),
f5c5b741 48 'emploi' => $this->make_hook('ref_search', AUTH_COOKIE),
2f678da1 49 'referent/search' => $this->make_hook('ref_search', AUTH_COOKIE),
ff3eb9b7 50 'referent/ssect' => $this->make_hook('ref_sect', AUTH_COOKIE, 'user', NO_AUTH),
51 'referent/country' => $this->make_hook('ref_country', AUTH_COOKIE, 'user', NO_AUTH),
2f678da1 52
a1d79217 53 'groupes-x' => $this->make_hook('xnet', AUTH_COOKIE),
926f16d7 54
8fc4efa3 55 'vcard' => $this->make_hook('vcard', AUTH_COOKIE, 'user', NO_HTTPS),
92423144 56 'admin/binets' => $this->make_hook('admin_binets', AUTH_MDP, 'admin'),
57 'admin/medals' => $this->make_hook('admin_medals', AUTH_MDP, 'admin'),
58 'admin/formations' => $this->make_hook('admin_formations', AUTH_MDP, 'admin'),
b09690be 59 'admin/sections' => $this->make_hook('admin_sections', AUTH_MDP, 'admin'),
60 'admin/secteurs' => $this->make_hook('admin_secteurs', AUTH_MDP, 'admin'),
92423144 61 'admin/trombino' => $this->make_hook('admin_trombino', AUTH_MDP, 'admin'),
a20aab02
SJ
62 'admin/ss_secteurs' => $this->make_hook('admin_ss_secteurs', AUTH_MDP, 'admin'),
63 'admin/fonctions' => $this->make_hook('admin_fonctions', AUTH_MDP, 'admin'),
92423144 64
7d8b17cb 65 );
66 }
67
e8599c21 68 /* XXX COMPAT */
69 function handler_fiche(&$page)
70 {
5e2307dc 71 return $this->handler_profile($page, Env::v('user'));
e8599c21 72 }
73
adbdf493 74 function handler_photo(&$page, $x = null, $req = null)
75 {
954cfb01 76 if (!$x || !($user = User::getSilent($x))) {
adbdf493 77 return PL_NOT_FOUND;
78 }
79
954cfb01
VZ
80 // Retrieve the photo and its mime type.
81 $photo_data = null;
82 $photo_type = null;
adbdf493 83
cab08090 84 if ($req && S::logged()) {
adbdf493 85 include 'validations.inc.php';
954cfb01
VZ
86 $myphoto = PhotoReq::get_request($user->id());
87 if ($myphoto) {
88 $photo_data = $myphoto->data;
89 $photo_type = $myphoto->mimetype;
90 }
adbdf493 91 } else {
08cce2ff 92 $res = XDB::query(
954cfb01 93 "SELECT attachmime, attach, pub
adbdf493 94 FROM photo
954cfb01
VZ
95 WHERE uid = {?}", $user->id());
96 list($photo_type, $photo_data, $photo_pub) = $res->fetchOneRow();
97 if ($photo_pub != 'public' && !S::logged()) {
98 $photo_type = $photo_data = null;
adbdf493 99 }
100 }
954cfb01
VZ
101
102 // Display the photo, or a default one when not available.
103 if ($photo_type && $photo_data != null) {
104 header('Content-type: image/' . $photo_type);
105 echo $photo_data;
106 } else {
107 header('Content-type: image/png');
108 echo file_get_contents(dirname(__FILE__).'/../htdocs/images/none.png');
109 }
adbdf493 110 exit;
111 }
112
85cc366b
FB
113 function handler_medal(&$page, $mid)
114 {
bd6a5fe3
VZ
115 $thumb = ($mid == 'thumb');
116 $mid = $thumb ? @func_get_arg(2) : $mid;
117
85cc366b
FB
118 $res = XDB::query("SELECT img
119 FROM profile_medals
120 WHERE id = {?}",
121 $mid);
bd6a5fe3
VZ
122 $img = $thumb ?
123 dirname(__FILE__).'/../htdocs/images/medals/thumb/' . $res->fetchOneCell() :
124 dirname(__FILE__).'/../htdocs/images/medals/' . $res->fetchOneCell();
85cc366b
FB
125 $type = mime_content_type($img);
126 header("Content-Type: $type");
127 echo file_get_contents($img);
128 exit;
129 }
130
fb9a56cb 131 function handler_photo_change(&$page)
132 {
ebfdf077 133 global $globals;
8b1f8e12 134 $page->changeTpl('profile/trombino.tpl');
fb9a56cb 135
136 require_once('validations.inc.php');
137
54cabe90 138 $trombi_x = '/home/web/trombino/photos' . S::v('promo') . '/' . S::user()->login() . '.jpg';
fb9a56cb 139 if (Env::has('upload')) {
8827fc52
VZ
140 S::assert_xsrf_token();
141
954cfb01 142 $upload = new PlUpload(S::user()->login(), 'photo');
abe7e055 143 if (!$upload->upload($_FILES['userfile']) && !$upload->download(Env::v('photo'))) {
a7d35093 144 $page->trigError('Une erreur est survenue lors du téléchargement du fichier');
abe7e055 145 } else {
5daf68f6 146 $myphoto = new PhotoReq(S::user(), $upload);
abe7e055 147 if ($myphoto->isValid()) {
148 $myphoto->submit();
fb9a56cb 149 }
fb9a56cb 150 }
151 } elseif (Env::has('trombi')) {
8827fc52
VZ
152 S::assert_xsrf_token();
153
954cfb01 154 $upload = new PlUpload(S::user()->login(), 'photo');
abe7e055 155 if ($upload->copyFrom($trombi_x)) {
5daf68f6 156 $myphoto = new PhotoReq(S::user(), $upload);
abe7e055 157 if ($myphoto->isValid()) {
158 $myphoto->commit();
159 $myphoto->clean();
160 }
fb9a56cb 161 }
5e2307dc 162 } elseif (Env::v('suppr')) {
8827fc52
VZ
163 S::assert_xsrf_token();
164
84868ee9
FB
165 XDB::execute('DELETE FROM photo
166 WHERE uid = {?}',
167 S::v('uid'));
168 XDB::execute('DELETE FROM requests
169 WHERE user_id = {?} AND type="photo"',
170 S::v('uid'));
ebfdf077 171 $globals->updateNbValid();
5e2307dc 172 } elseif (Env::v('cancel')) {
8827fc52
VZ
173 S::assert_xsrf_token();
174
84868ee9
FB
175 $sql = XDB::query('DELETE FROM requests
176 WHERE user_id={?} AND type="photo"',
177 S::v('uid'));
ebfdf077 178 $globals->updateNbValid();
fb9a56cb 179 }
180
84868ee9
FB
181 $sql = XDB::query('SELECT COUNT(*)
182 FROM requests
183 WHERE user_id={?} AND type="photo"',
abe7e055 184 S::v('uid'));
fb9a56cb 185 $page->assign('submited', $sql->fetchOneCell());
186 $page->assign('has_trombi_x', file_exists($trombi_x));
fb9a56cb 187 }
188
e8599c21 189 function handler_profile(&$page, $x = null)
190 {
54cabe90
VZ
191 // TODO/note for upcoming developers:
192 // We currently maintain both $user and $login; $user is the old way of
193 // obtaining information, and eventually everything will be loaded
194 // through $login. That is the reason why in the template $user is named
195 // $x, and $login $user (sorry for the confusion).
196
197 // Determines which user to display the profile of, and retrieves basic
198 // information on this user.
e8599c21 199 if (is_null($x)) {
200 return PL_NOT_FOUND;
201 }
202
344234db
VZ
203 $login = S::logged() ? User::get($x) : User::getSilent($x);
204 if (!$login) {
205 return PL_NOT_FOUND;
e8599c21 206 }
207
54cabe90
VZ
208 // Now that we know this is the profile of an existing user, we can
209 // switch to the appropriate template.
210 $page->changeTpl('profile/profile.tpl', SIMPLE);
211 require_once 'user.func.inc.php';
212
213 // Determines the access level at which the profile will be displayed.
214 if (!S::logged() || Env::v('view') == 'public') {
215 $view = 'public';
216 } else if (S::logged() && Env::v('view') == 'ax') {
217 $view = 'ax';
218 } else {
219 $view = 'private';
220 }
221
222 // Determines is the user is registered, and fetches the user infos in
223 // the appropriate way.
344234db
VZ
224 $res = XDB::query("SELECT perms IN ('admin','user','disabled')
225 FROM auth_user_md5
226 WHERE user_id = {?}", $login->id());
54cabe90
VZ
227 if ($res->fetchOneCell()) {
228 $new = Env::v('modif') == 'new';
229 $user = get_user_details($login->login(), S::v('uid'), $view);
230 } else {
231 $new = false;
232 $user = array();
ba25f663 233 if (S::logged()) {
54cabe90 234 pl_redirect('marketing/public/' . $login->login());
ba25f663 235 }
e8599c21 236 }
ba25f663 237
54cabe90 238 // Profile view are logged.
e31c1c3e 239 if (S::logged()) {
b8971a3e 240 S::logger()->log('view_profile', $login->login());
e31c1c3e 241 }
e8599c21 242
54cabe90
VZ
243 // Sets the title of the html page.
244 $page->setTitle($login->fullName());
e8599c21 245
54cabe90
VZ
246 // Prepares the display of the user's mugshot.
247 $photo = 'photo/' . $login->login() . ($new ? '/req' : '');
248 if (!isset($user['photo_pub']) || !has_user_right($user['photo_pub'], $view)) {
249 $photo = "";
250 }
251 $page->assign('photo_url', $photo);
e8599c21 252
2f678da1 253 if (!isset($user['y']) and !isset($user['x'])) {
e8599c21 254 list($user['x'], $user['y']) = getimagesize("images/none.png");
255 }
2f678da1 256 if (!isset($user['y']) or $user['y'] < 1) $user['y']=1;
257 if (!isset($user['x']) or $user['x'] < 1) $user['x']=1;
258 if ($user['x'] > 240) {
e8599c21 259 $user['y'] = (integer)($user['y']*240/$user['x']);
260 $user['x'] = 240;
261 }
2f678da1 262 if ($user['y'] > 300) {
e8599c21 263 $user['x'] = (integer)($user['x']*300/$user['y']);
264 $user['y'] = 300;
265 }
2f678da1 266 if ($user['x'] < 160) {
e8599c21 267 $user['y'] = (integer)($user['y']*160/$user['x']);
268 $user['x'] = 160;
269 }
270
54cabe90
VZ
271 // Determines and displays the virtual alias.
272 global $globals;
08cce2ff 273 $res = XDB::query(
54cabe90
VZ
274 "SELECT alias
275 FROM virtual
276 INNER JOIN virtual_redirect USING (vid)
277 INNER JOIN auth_user_quick ON (user_id = {?} AND emails_alias_pub = 'public')
278 WHERE (redirect={?} OR redirect={?})
279 AND alias LIKE '%@{$globals->mail->alias_dom}'",
280 $login->id(),
281 $login->forlifeEmail(),
282 // TODO(vzanotti): get ride of all @m4x.org addresses in the
283 // virtual redirect base, and remove this über-ugly hack.
284 $login->login() . '@' . $globals->mail->domain2);
e8599c21 285 $page->assign('virtualalias', $res->fetchOneCell());
54cabe90
VZ
286
287 // Adds miscellaneous properties to the display.
288 // Adds the global user property array to the display.
289 $page->assign_by_ref('x', $user);
290 $page->assign_by_ref('user', $login);
291 $page->assign('logged', has_user_right('private', $view));
24f4c06a 292 $page->assign('view', $view);
e8599c21 293
c99ef281 294 $page->addJsLink('close_on_esc.js');
54cabe90
VZ
295 if (isset($user['date'])) {
296 header('Last-Modified: ' . date('r', strtotime($user['date'])));
297 }
e8599c21 298 }
299
5122b820 300 function handler_ax(&$page, $user = null)
301 {
34ca2048 302 $user = User::get($user);
5122b820 303 if (!$user) {
304 return PL_NOT_FOUND;
305 }
34ca2048
VZ
306
307 $res = XDB::query("SELECT matricule_ax
308 FROM auth_user_md5
309 WHERE user_id = {?}", $user->id());
5122b820 310 $mat = $res->fetchOneCell();
311 if (!intval($mat)) {
34ca2048 312 $page->kill("Le matricule AX de {$user->login()} est inconnu");
5122b820 313 }
314 http_redirect("http://www.polytechniciens.com/?page=AX_FICHE_ANCIEN&anc_id=$mat");
315 }
316
46ae38a9 317 function handler_p_edit(&$page, $opened_tab = null, $mode = null)
2f678da1 318 {
319 global $globals;
320
e1635d16
FB
321 // AX Synchronization
322 require_once 'synchro_ax.inc.php';
2f678da1 323 if (is_ax_key_missing()) {
324 $page->assign('no_private_key', true);
325 }
5e2307dc 326 if (Env::v('synchro_ax') == 'confirm' && !is_ax_key_missing()) {
cab08090 327 ax_synchronize(S::v('bestalias'), S::v('uid'));
a7d35093 328 $page->trigSuccess('Ton profil a été synchronisé avec celui du site polytechniciens.com');
2f678da1 329 }
330
7bff4cb0 331 // Build the page
c6a7beb2 332 $page->addJsLink('ajax.js');
46ae38a9
FB
333 $page->addJsLink('applis.js');
334 $page->addJsLink('grades.js');
16594a1a 335 $page->addJsLink('profile.js');
4b4b4b67 336 $page->addJsLink('jquery.autocomplete.js');
6d20fb1d 337 $wiz = new PlWizard('Profil', PlPage::getCoreTpl('plwizard.tpl'), true, true);
460d8f55 338 $this->load('page.inc.php');
e1635d16 339 $wiz->addPage('ProfileGeneral', 'Général', 'general');
0b14f91d 340 $wiz->addPage('ProfileAddresses', 'Adresses personnelles', 'adresses');
e1635d16 341 $wiz->addPage('ProfileGroups', 'Groupes X - Binets', 'poly');
a7c28fff 342 $wiz->addPage('ProfileDecos', 'Décorations - Medailles', 'deco');
3950bc21 343 $wiz->addPage('ProfileJobs', 'Informations professionnelles', 'emploi');
e1635d16
FB
344 $wiz->addPage('ProfileSkills', 'Compétences diverses', 'skill');
345 $wiz->addPage('ProfileMentor', 'Mentoring', 'mentor');
46ae38a9 346 $wiz->apply($page, 'profile/edit', $opened_tab, $mode);
35aedff2 347
7bff4cb0
FB
348 // Misc checks
349 $res = XDB::query("SELECT user_id
350 FROM auth_user_md5
351 WHERE user_id = {?} AND naissance = '0000-00-00'", S::i('uid'));
352 if ($res->numRows()) {
a7d35093 353 $page->trigWarning("Ta date de naissance n'est pas renseignée, ce qui t'empêcheras de réaliser"
7bff4cb0
FB
354 . " la procédure de récupération de mot de passe si un jour tu le perdais");
355 }
356
46f272fe 357 $page->setTitle('Mon Profil');
2f678da1 358 }
359
46ae38a9
FB
360 function handler_applis_js(&$page)
361 {
362 header('Content-Type: text/javascript; charset=utf-8');
363 header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
364 header('Last-Modified:' . gmdate('D, d M Y H:i:s') . ' GMT');
365 header('Cache-Control: no-cache, must-revalidate');
366 header('Pragma: no-cache');
367 $page->changeTpl('profile/applis.js.tpl', NO_SKIN);
368 require_once "applis.func.inc.php";
369 }
370
371 function handler_grades_js(&$page)
372 {
373 header('Content-Type: text/javascript; charset=utf-8');
374 header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
375 header('Last-Modified:' . gmdate('D, d M Y H:i:s') . ' GMT');
376 header('Cache-Control: no-cache, must-revalidate');
377 header('Pragma: no-cache');
378 $page->changeTpl('profile/grades.js.tpl', NO_SKIN);
379 $res = XDB::iterator("SELECT *
380 FROM profile_medals_grades
381 ORDER BY mid, pos");
382 $grades = array();
383 while ($tmp = $res->next()) {
384 $grades[$tmp['mid']][] = $tmp;
385 }
386 $page->assign('grades', $grades);
387
388 $res = XDB::iterator("SELECT *, FIND_IN_SET('validation', flags) AS validate
389 FROM profile_medals
390 ORDER BY type, text");
391 $mlist = array();
392 while ($tmp = $res->next()) {
393 $mlist[$tmp['type']][] = $tmp;
394 }
395 $page->assign('medal_list', $mlist);
396 }
397
c6a7beb2
FB
398 function handler_ajax_address(&$page, $adid)
399 {
46ae38a9 400 header('Content-Type: text/html; charset=utf-8');
c6a7beb2
FB
401 $page->changeTpl('profile/adresses.address.tpl', NO_SKIN);
402 $page->assign('i', $adid);
403 $page->assign('adr', array());
c6a7beb2
FB
404 }
405
406 function handler_ajax_tel(&$page, $adid, $telid)
407 {
46ae38a9 408 header('Content-Type: text/html; charset=utf-8');
c6a7beb2
FB
409 $page->changeTpl('profile/adresses.tel.tpl', NO_SKIN);
410 $page->assign('i', $adid);
411 $page->assign('adid', "addresses_$adid");
412 $page->assign('adpref', "addresses[$adid]");
413 $page->assign('t', $telid);
414 $page->assign('tel', array());
c6a7beb2
FB
415 }
416
85cc366b
FB
417 function handler_ajax_medal(&$page, $id)
418 {
46ae38a9 419 header('Content-Type: text/html; charset=utf-8');
85cc366b
FB
420 $page->changeTpl('profile/deco.medal.tpl', NO_SKIN);
421 $page->assign('id', $id);
422 $page->assign('medal', array('valid' => 0, 'grade' => 0));
85cc366b
FB
423 }
424
2dcac0f5
FB
425 function handler_ajax_job(&$page, $id)
426 {
46ae38a9 427 header('Content-Type: text/html; charset=utf-8');
2dcac0f5
FB
428 $page->changeTpl('profile/jobs.job.tpl', NO_SKIN);
429 $page->assign('i', $id);
430 $page->assign('job', array());
2dcac0f5 431 $page->assign('new', true);
1879c7b2
FB
432 $page->assign('secteurs', XDB::iterator("SELECT id, label
433 FROM emploi_secteur"));
434 $page->assign('fonctions', XDB::iterator("SELECT id, fonction_fr, FIND_IN_SET('titre', flags) AS title
435 FROM fonctions_def
436 ORDER BY id"));
2dcac0f5
FB
437 }
438
439 function handler_ajax_secteur(&$page, $id, $sect, $ssect = -1)
440 {
46ae38a9 441 header('Content-Type: text/html; charset=utf-8');
2dcac0f5
FB
442 $res = XDB::iterator("SELECT id, label
443 FROM emploi_ss_secteur
444 WHERE secteur = {?}", $sect);
445 $page->changeTpl('profile/jobs.secteur.tpl', NO_SKIN);
446 $page->assign('id', $id);
447 $page->assign('ssecteurs', $res);
448 $page->assign('sel', $ssect);
449 }
450
f25e1a56
FB
451 function handler_ajax_skill(&$page, $cat, $id)
452 {
46ae38a9 453 header('Content-Type: text/html; charset=utf-8');
f25e1a56 454 $page->changeTpl('profile/skill.skill.tpl', NO_SKIN);
f25e1a56
FB
455 $page->assign('cat', $cat);
456 $page->assign('id', $id);
457 if ($cat == 'competences') {
458 $page->assign('levels', array('initié' => 'initié',
459 'bonne connaissance' => 'bonne connaissance',
460 'expert' => 'expert'));
461 } else {
462 $page->assign('levels', array(1 => 'connaissance basique',
463 2 => 'maîtrise des bases',
464 3 => 'maîtrise limitée',
465 4 => 'maîtrise générale',
466 5 => 'bonne maîtrise',
467 6 => 'maîtrise complète'));
468 }
469 }
470
9b0fa329 471 function handler_p_orange(&$page)
472 {
8b1f8e12 473 $page->changeTpl('profile/orange.tpl');
9b0fa329 474
475 require_once 'validations.inc.php';
9b0fa329 476
08cce2ff 477 $res = XDB::query(
2f678da1 478 "SELECT u.promo, u.promo_sortie
9b0fa329 479 FROM auth_user_md5 AS u
cab08090 480 WHERE user_id={?}", S::v('uid'));
9b0fa329 481
2f678da1 482 list($promo, $promo_sortie_old) = $res->fetchOneRow();
9b0fa329 483 $page->assign('promo_sortie_old', $promo_sortie_old);
484 $page->assign('promo', $promo);
485
486 if (!Env::has('promo_sortie')) {
fd8f77de 487 return;
8827fc52
VZ
488 } else {
489 S::assert_xsrf_token();
9b0fa329 490 }
491
5e2307dc 492 $promo_sortie = Env::i('promo_sortie');
9b0fa329 493
494 if ($promo_sortie < 1000 || $promo_sortie > 9999) {
a7d35093 495 $page->trigError('L\'année de sortie doit être un nombre de quatre chiffres');
9b0fa329 496 }
497 elseif ($promo_sortie < $promo + 3) {
a7d35093 498 $page->trigError('Trop tôt');
9b0fa329 499 }
500 elseif ($promo_sortie == $promo_sortie_old) {
a7d35093 501 $page->trigWarning('Tu appartiens déjà à la promotion correspondante à cette année de sortie.');
9b0fa329 502 }
503 elseif ($promo_sortie == $promo + 3) {
08cce2ff 504 XDB::execute(
e1635d16 505 "UPDATE auth_user_md5 set promo_sortie={?}
cab08090 506 WHERE user_id={?}", $promo_sortie, S::v('uid'));
a7d35093 507 $page->trigSuccess('Ton statut "orange" a été supprimé.');
9b0fa329 508 $page->assign('promo_sortie_old', $promo_sortie);
509 }
510 else {
511 $page->assign('promo_sortie', $promo_sortie);
512
513 if (Env::has('submit')) {
5daf68f6 514 $myorange = new OrangeReq(S::user(), $promo_sortie);
9b0fa329 515 $myorange->submit();
516 $page->assign('myorange', $myorange);
517 }
518 }
9b0fa329 519 }
520
2f678da1 521 function handler_referent(&$page, $x = null)
28e16d4d 522 {
28e16d4d 523 require_once 'user.func.inc.php';
524
525 if (is_null($x)) {
526 return PL_NOT_FOUND;
527 }
528
8b1f8e12 529 $page->changeTpl('profile/fiche_referent.tpl', SIMPLE);
28e16d4d 530
08cce2ff 531 $res = XDB::query(
28e16d4d 532 "SELECT prenom, nom, user_id, promo, cv, a.alias AS bestalias
533 FROM auth_user_md5 AS u
2f678da1 534 INNER JOIN aliases AS a ON (u.user_id=a.id
535 AND FIND_IN_SET('bestalias', a.flags))
28e16d4d 536 INNER JOIN aliases AS a1 ON (u.user_id=a1.id
537 AND a1.alias = {?}
538 AND a1.type!='homonyme')", $x);
539
540 if ($res->numRows() != 1) {
541 return PL_NOT_FOUND;
542 }
543
544 list($prenom, $nom, $user_id, $promo, $cv, $bestalias) = $res->fetchOneRow();
545
546 $page->assign('prenom', $prenom);
547 $page->assign('nom', $nom);
548 $page->assign('promo', $promo);
37633309 549 $page->assign('cv', MiniWiki::WikiToHTML($cv, true));
28e16d4d 550 $page->assign('bestalias', $bestalias);
551 $page->assign('adr_pro', get_user_details_pro($user_id));
552
553 ///// recuperations infos referent
554
555 //expertise
08cce2ff 556 $res = XDB::query("SELECT expertise FROM mentor WHERE uid = {?}", $user_id);
28e16d4d 557 $page->assign('expertise', $res->fetchOneCell());
558
559 //secteurs
560 $secteurs = $ss_secteurs = Array();
08cce2ff 561 $res = XDB::iterRow(
28e16d4d 562 "SELECT s.label, ss.label
563 FROM mentor_secteurs AS m
564 LEFT JOIN emploi_secteur AS s ON(m.secteur = s.id)
565 LEFT JOIN emploi_ss_secteur AS ss ON(m.secteur = ss.secteur AND m.ss_secteur = ss.id)
566 WHERE uid = {?}", $user_id);
567 while (list($sec, $ssec) = $res->next()) {
568 $secteurs[] = $sec;
569 $ss_secteurs[] = $ssec;
570 }
571 $page->assign_by_ref('secteurs', $secteurs);
572 $page->assign_by_ref('ss_secteurs', $ss_secteurs);
573
574 //pays
08cce2ff 575 $res = XDB::query(
28e16d4d 576 "SELECT gp.pays
577 FROM mentor_pays AS m
578 LEFT JOIN geoloc_pays AS gp ON(m.pid = gp.a2)
579 WHERE uid = {?}", $user_id);
580 $page->assign('pays', $res->fetchColumn());
581
c99ef281 582 $page->addJsLink('close_on_esc.js');
28e16d4d 583 }
584
ff3eb9b7 585 function handler_ref_search(&$page, $action = null, $subaction = null)
2f678da1 586 {
8f201b69
FB
587 $wp = new PlWikiPage('Docs.Emploi');
588 $wp->buildCache();
589
46f272fe 590 $page->setTitle('Conseil Pro');
2f678da1 591
2f678da1 592 //recuperation des noms de secteurs
08cce2ff 593 $res = XDB::iterRow("SELECT id, label FROM emploi_secteur");
2f678da1 594 $secteurs[''] = '';
595 while (list($tmp_id, $tmp_label) = $res->next()) {
596 $secteurs[$tmp_id] = $tmp_label;
597 }
598 $page->assign_by_ref('secteurs', $secteurs);
599
2f678da1 600 // nb de mentors
08cce2ff 601 $res = XDB::query("SELECT count(*) FROM mentor");
2f678da1 602 $page->assign('mentors_number', $res->fetchOneCell());
603
2f678da1 604 // On vient d'un formulaire
ff3eb9b7 605 $where = array();
606 $pays_sel = XDB::escape(Env::v('pays_sel'));
607 $secteur_sel = XDB::escape(Env::v('secteur'));
608 $ss_secteur_sel = XDB::escape(Env::v('ss_secteur'));
609 $expertise_champ = XDB::escape(Env::v('expertise'));
610
611 if ($pays_sel != "''") {
612 $where[] = "mp.pid = $pays_sel";
613 }
614 if ($secteur_sel != "''") {
615 $where[] = "ms.secteur = $secteur_sel";
616 if ($ss_secteur_sel != "''") {
617 $where[] = "ms.ss_secteur = $ss_secteur_sel";
2f678da1 618 }
619 }
ff3eb9b7 620 if ($expertise_champ != "''") {
621 $where[] = "MATCH(m.expertise) AGAINST($expertise_champ)";
2f678da1 622 }
623
624 if ($where) {
625 $where = join(' AND ', $where);
626
e1635d16
FB
627 $set = new UserSet("INNER JOIN mentor AS m ON (m.uid = u.user_id)
628 LEFT JOIN mentor_pays AS mp ON (mp.uid = m.uid)
ff3eb9b7 629 LEFT JOIN mentor_secteurs AS ms ON (ms.uid = m.uid)",
630 $where);
631 $set->addMod('mentor', 'Référents');
632 $set->apply('referent/search', $page, $action, $subaction);
633 if ($set->count() > 100) {
e1635d16 634 $page->assign('recherche_trop_large', true);
2f678da1 635 }
ff3eb9b7 636 }
e1635d16 637 $page->changeTpl('profile/referent.tpl');
ff3eb9b7 638 }
2f678da1 639
e1635d16 640 function handler_ref_sect(&$page, $sect)
ff3eb9b7 641 {
642 header('Content-Type: text/html; charset=utf-8');
05cb05c0 643 $page->changeTpl('include/field.select.tpl', NO_SKIN);
ff3eb9b7 644 $page->assign('onchange', 'setSSecteurs()');
645 $page->assign('id', 'ssect_field');
646 $page->assign('name', 'ss_secteur');
647 $it = XDB::iterator("SELECT id,label AS field
e1635d16 648 FROM emploi_ss_secteur
ff3eb9b7 649 WHERE secteur = {?}", $sect);
650 $page->assign('list', $it);
651 }
2f678da1 652
ff3eb9b7 653 function handler_ref_country(&$page, $sect, $ssect = '')
654 {
655 header('Content-Type: text/html; charset=utf-8');
05cb05c0 656 $page->changeTpl('include/field.select.tpl', NO_SKIN);
ff3eb9b7 657 $page->assign('name', 'pays_sel');
658 $where = ($ssect ? ' AND ms.ss_secteur = {?}' : '');
659 $it = XDB::iterator("SELECT a2 AS id, pays AS field
660 FROM geoloc_pays AS g
661 INNER JOIN mentor_pays AS mp ON (mp.pid = g.a2)
662 INNER JOIN mentor_secteurs AS ms ON (ms.uid = mp.uid)
663 WHERE ms.secteur = {?} $where
664 GROUP BY a2
665 ORDER BY pays", $sect, $ssect);
666 $page->assign('list', $it);
2f678da1 667 }
668
926f16d7 669 function handler_p_usage(&$page)
670 {
8b1f8e12 671 $page->changeTpl('profile/nomusage.tpl');
926f16d7 672
673 require_once 'validations.inc.php';
926f16d7 674
08cce2ff 675 $res = XDB::query(
2f678da1 676 "SELECT u.nom, u.nom_usage, u.flags, e.alias
926f16d7 677 FROM auth_user_md5 AS u
2f678da1 678 LEFT JOIN aliases AS e ON(u.user_id = e.id
679 AND FIND_IN_SET('usage', e.flags))
cab08090 680 WHERE user_id={?}", S::v('uid'));
926f16d7 681
2f678da1 682 list($nom, $usage_old, $flags, $alias_old) = $res->fetchOneRow();
113f6de8 683 $flags = new PlFlagSet($flags);
926f16d7 684 $page->assign('usage_old', $usage_old);
685 $page->assign('alias_old', $alias_old);
686
e1635d16 687 $nom_usage = replace_accent(trim(Env::v('nom_usage')));
926f16d7 688 $nom_usage = strtoupper($nom_usage);
689 $page->assign('usage_req', $nom_usage);
690
691 if (Env::has('submit') && ($nom_usage != $usage_old)) {
8827fc52
VZ
692 S::assert_xsrf_token();
693
926f16d7 694 // on vient de recevoir une requete, differente de l'ancien nom d'usage
695 if ($nom_usage == $nom) {
44b071c2
SJ
696 $page->trigWarning('Le nom d\'usage que tu demandes est identique à ton nom à l\'X, '
697 . 'aucune modification n\'a donc été effectuée.');
926f16d7 698 $page->assign('same', true);
a7de4ef7 699 } else { // le nom de mariage est distinct du nom à l'X
926f16d7 700 // on calcule l'alias pour l'afficher
5e2307dc 701 $reason = Env::v('reason');
926f16d7 702 if ($reason == 'other') {
5e2307dc 703 $reason = Env::v('other_reason');
926f16d7 704 }
5daf68f6 705 $myusage = new UsageReq(S::user(), $nom_usage, $reason);
926f16d7 706 $myusage->submit();
707 $page->assign('myusage', $myusage);
708 }
709 }
926f16d7 710 }
711
a1d79217 712 function handler_xnet(&$page)
713 {
8b1f8e12 714 $page->changeTpl('profile/groupesx.tpl');
46f272fe 715 $page->setTitle('Promo, Groupes X, Binets');
e1635d16 716
a1d79217 717 $req = XDB::query('
e1635d16 718 SELECT m.asso_id, a.nom, diminutif, a.logo IS NOT NULL AS has_logo,
46e1d3ba 719 COUNT(e.eid) AS events, mail_domain AS lists
e1635d16 720 FROM groupex.membres AS m
46e1d3ba 721 INNER JOIN groupex.asso AS a ON(m.asso_id = a.id)
722 LEFT JOIN groupex.evenements AS e ON(e.asso_id = m.asso_id AND e.archive = 0)
723 WHERE uid = {?} GROUP BY m.asso_id ORDER BY a.nom', S::i('uid'));
a1d79217 724 $page->assign('assos', $req->fetchAllAssoc());
725 }
e1635d16 726
e49018a7 727 function handler_vcard(&$page, $x = null)
728 {
729 if (is_null($x)) {
730 return PL_NOT_FOUND;
731 }
732
733 global $globals;
734
735 if (substr($x, -4) == '.vcf') {
736 $x = substr($x, 0, strlen($x) - 4);
737 }
738
5d42c993
FB
739 $vcard = new VCard();
740 $vcard->addUser($x);
741 $vcard->show();
e49018a7 742 }
92423144 743
54cabe90 744 function handler_admin_trombino(&$page, $login = null, $action = null) {
8b1f8e12 745 $page->changeTpl('profile/admin_trombino.tpl');
46f272fe 746 $page->setTitle('Administration - Trombino');
e1635d16 747
54cabe90
VZ
748 if (!$login || !($user = User::get($login))) {
749 return PL_NOT_FOUND;
750 } else {
751 $page->assign_by_ref('user', $user);
752 }
e1635d16 753
92423144 754 switch ($action) {
92423144 755 case "original":
756 header("Content-type: image/jpeg");
54cabe90 757 readfile("/home/web/trombino/photos" . $user->promo() . "/" . $user->login() . ".jpg");
92423144 758 exit;
759 break;
e1635d16 760
92423144 761 case "new":
8827fc52
VZ
762 S::assert_xsrf_token();
763
92423144 764 $data = file_get_contents($_FILES['userfile']['tmp_name']);
765 list($x, $y) = getimagesize($_FILES['userfile']['tmp_name']);
766 $mimetype = substr($_FILES['userfile']['type'], 6);
767 unlink($_FILES['userfile']['tmp_name']);
768 XDB::execute(
769 "REPLACE INTO photo SET uid={?}, attachmime = {?}, attach={?}, x={?}, y={?}",
54cabe90 770 $user->id(), $mimetype, $data, $x, $y);
92423144 771 break;
e1635d16 772
92423144 773 case "delete":
8827fc52
VZ
774 S::assert_xsrf_token();
775
54cabe90 776 XDB::execute('DELETE FROM photo WHERE uid = {?}', $user->id());
92423144 777 break;
778 }
92423144 779 }
780 function handler_admin_binets(&$page, $action = 'list', $id = null) {
46f272fe 781 $page->setTitle('Administration - Binets');
92423144 782 $page->assign('title', 'Gestion des binets');
783 $table_editor = new PLTableEditor('admin/binets', 'binets_def', 'id');
784 $table_editor->add_join_table('binets_ins','binet_id',true);
a7de4ef7 785 $table_editor->describe('text','intitulé',true);
92423144 786 $table_editor->apply($page, $action, $id);
787 }
788 function handler_admin_formations(&$page, $action = 'list', $id = null) {
46f272fe 789 $page->setTitle('Administration - Formations');
92423144 790 $page->assign('title', 'Gestion des formations');
791 $table_editor = new PLTableEditor('admin/formations','applis_def','id');
e1635d16 792 $table_editor->add_join_table('applis_ins','aid',true);
a7de4ef7 793 $table_editor->describe('text','intitulé',true);
92423144 794 $table_editor->describe('url','site web',false);
795 $table_editor->apply($page, $action, $id);
e1635d16 796 }
b09690be 797 function handler_admin_sections(&$page, $action = 'list', $id = null) {
46f272fe 798 $page->setTitle('Administration - Sections');
a20aab02 799 $page->assign('title', 'Gestion des sections');
b09690be 800 $table_editor = new PLTableEditor('admin/sections','sections','id');
801 $table_editor->describe('text','intitulé',true);
802 $table_editor->apply($page, $action, $id);
e1635d16 803 }
a20aab02 804 function handler_admin_ss_secteurs(&$page, $action = 'list', $id = null) {
46f272fe 805 $page->setTitle('Administration - Sous-secteurs');
a20aab02
SJ
806 $page->assign('title', 'Gestion des sous-secteurs');
807 $table_editor = new PLTableEditor('admin/ss_secteurs', 'emploi_ss_secteur', 'id', true);
808 $table_editor->describe('label', 'intitulé', true);
809 $table_editor->apply($page, $action, $id);
810 }
811 function handler_admin_fonctions(&$page, $action = 'list', $id = null) {
46f272fe 812 $page->setTitle('Administration - Fonctions');
a20aab02
SJ
813 $page->assign('title', 'Gestion des fonctions');
814 $table_editor = new PLTableEditor('admin/fonctions', 'fonctions_def', 'id', true);
815 $table_editor->describe('fonction_fr', 'intitulé', true);
816 $table_editor->describe('fonction_en', 'intitulé (ang)', true);
817 $table_editor->describe('flags', 'titre', true);
818 $table_editor->apply($page, $action, $id);
819 }
b09690be 820 function handler_admin_secteurs(&$page, $action = 'list', $id = null) {
46f272fe 821 $page->setTitle('Administration - Secteurs');
a20aab02
SJ
822 $page->assign('title', 'Gestion des secteurs');
823 $table_editor = new PLTableEditor('admin/secteurs', 'emploi_secteur', 'id', true);
824 $table_editor->describe('label', 'intitulé', true);
b09690be 825 $table_editor->apply($page, $action, $id);
e1635d16 826 }
92423144 827 function handler_admin_medals(&$page, $action = 'list', $id = null) {
46f272fe 828 $page->setTitle('Administration - Distinctions');
92423144 829 $page->assign('title', 'Gestion des Distinctions');
830 $table_editor = new PLTableEditor('admin/medals','profile_medals','id');
a7de4ef7 831 $table_editor->describe('text', 'intitulé', true);
92423144 832 $table_editor->describe('img', 'nom de l\'image', false);
d02b8359 833 $table_editor->describe('flags', 'valider', true);
92423144 834 $table_editor->apply($page, $action, $id);
835 if ($id && $action == 'edit') {
8b1f8e12 836 $page->changeTpl('profile/admin_decos.tpl');
e1635d16 837
92423144 838 $mid = $id;
e1635d16 839
92423144 840 if (Post::v('act') == 'del') {
75a17710
FB
841 XDB::execute('DELETE FROM profile_medals_grades
842 WHERE mid={?} AND gid={?}', $mid, Post::i('gid'));
92423144 843 } else {
844 foreach (Post::v('grades', array()) as $gid=>$text) {
154ee23a
OLF
845 if ($gid === 0) {
846 if (!empty($text)) {
847 $res = XDB::query('SELECT MAX(gid)
848 FROM profile_medals_grades
849 WHERE mid = {?}', $mid);
850 $gid = $res->fetchOneCell() + 1;
851
852 XDB::execute('INSERT INTO profile_medals_grades (mid, gid, text, pos)
853 VALUES ({?}, {?}, {?}, {?})',
854 $mid, $gid, $text, $_POST['pos']['0']);
855 }
856 } else {
857 XDB::execute('UPDATE profile_medals_grades
858 SET pos={?}, text={?}
859 WHERE gid={?} AND mid={?}', $_POST['pos'][$gid], $text, $gid, $mid);
860 }
92423144 861 }
862 }
863 $res = XDB::iterator('SELECT gid, text, pos FROM profile_medals_grades WHERE mid={?} ORDER BY pos', $mid);
864 $page->assign('grades', $res);
865 }
e1635d16 866 }
7d8b17cb 867}
868
a7de4ef7 869// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
7d8b17cb 870?>