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