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