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