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