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