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