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