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