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