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