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