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