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