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