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