Job page should work
[platal.git] / modules / profile.php
CommitLineData
7d8b17cb 1<?php
2/***************************************************************************
5ddeb07c 3 * Copyright (C) 2003-2007 Polytechnique.org *
7d8b17cb 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
22class ProfileModule extends PLModule
23{
24 function handlers()
25 {
26 return array(
28e16d4d 27 'photo' => $this->make_hook('photo', AUTH_PUBLIC),
28 'photo/change' => $this->make_hook('photo_change', AUTH_MDP),
e49018a7 29
e8599c21 30 'fiche.php' => $this->make_hook('fiche', AUTH_PUBLIC),
31 'profile' => $this->make_hook('profile', AUTH_PUBLIC),
9643d877 32 'profile/private' => $this->make_hook('profile', AUTH_COOKIE),
5122b820 33 'profile/ax' => $this->make_hook('ax', AUTH_COOKIE, 'admin'),
2f678da1 34 'profile/edit' => $this->make_hook('p_edit', AUTH_MDP),
85cc366b 35 'profile/ajax/address' => $this->make_hook('ajax_address', AUTH_COOKIE, 'user', NO_AUTH),
2dcac0f5
FB
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),
85cc366b 40 'profile/medal' => $this->make_hook('medal', AUTH_PUBLIC),
28e16d4d 41 'profile/orange' => $this->make_hook('p_orange', AUTH_MDP),
28e16d4d 42 'profile/usage' => $this->make_hook('p_usage', AUTH_MDP),
e49018a7 43
2f678da1 44 'referent' => $this->make_hook('referent', AUTH_COOKIE),
f5c5b741 45 'emploi' => $this->make_hook('ref_search', AUTH_COOKIE),
2f678da1 46 'referent/search' => $this->make_hook('ref_search', AUTH_COOKIE),
ff3eb9b7 47 'referent/ssect' => $this->make_hook('ref_sect', AUTH_COOKIE, 'user', NO_AUTH),
48 'referent/country' => $this->make_hook('ref_country', AUTH_COOKIE, 'user', NO_AUTH),
2f678da1 49
a1d79217 50 'groupes-x' => $this->make_hook('xnet', AUTH_COOKIE),
926f16d7 51
8fc4efa3 52 'vcard' => $this->make_hook('vcard', AUTH_COOKIE, 'user', NO_HTTPS),
92423144 53 'admin/binets' => $this->make_hook('admin_binets', AUTH_MDP, 'admin'),
54 'admin/medals' => $this->make_hook('admin_medals', AUTH_MDP, 'admin'),
55 'admin/formations' => $this->make_hook('admin_formations', AUTH_MDP, 'admin'),
56 'admin/groupes-x' => $this->make_hook('admin_groupesx', AUTH_MDP, 'admin'),
b09690be 57 'admin/sections' => $this->make_hook('admin_sections', AUTH_MDP, 'admin'),
58 'admin/secteurs' => $this->make_hook('admin_secteurs', AUTH_MDP, 'admin'),
92423144 59 'admin/trombino' => $this->make_hook('admin_trombino', AUTH_MDP, 'admin'),
60
7d8b17cb 61 );
62 }
63
e8599c21 64 /* XXX COMPAT */
65 function handler_fiche(&$page)
66 {
5e2307dc 67 return $this->handler_profile($page, Env::v('user'));
e8599c21 68 }
69
adbdf493 70 function handler_photo(&$page, $x = null, $req = null)
71 {
72 if (is_null($x)) {
73 return PL_NOT_FOUND;
74 }
75
08cce2ff 76 $res = XDB::query("SELECT id, pub FROM aliases
adbdf493 77 LEFT JOIN photo ON(id = uid)
78 WHERE alias = {?}", $x);
79 list($uid, $photo_pub) = $res->fetchOneRow();
80
cab08090 81 if ($req && S::logged()) {
adbdf493 82 include 'validations.inc.php';
83 $myphoto = PhotoReq::get_request($uid);
84 Header('Content-type: image/'.$myphoto->mimetype);
85 echo $myphoto->data;
86 } else {
08cce2ff 87 $res = XDB::query(
adbdf493 88 "SELECT attachmime, attach
89 FROM photo
90 WHERE uid={?}", $uid);
91
2f678da1 92 if ((list($type, $data) = $res->fetchOneRow())
cab08090 93 && ($photo_pub == 'public' || S::logged())) {
adbdf493 94 Header("Content-type: image/$type");
95 echo $data;
96 } else {
97 Header('Content-type: image/png');
fb9a56cb 98 echo file_get_contents(dirname(__FILE__).'/../htdocs/images/none.png');
adbdf493 99 }
100 }
101 exit;
102 }
103
85cc366b
FB
104 function handler_medal(&$page, $mid)
105 {
106 $res = XDB::query("SELECT img
107 FROM profile_medals
108 WHERE id = {?}",
109 $mid);
110 $img = dirname(__FILE__).'/../htdocs/images/medals/' . $res->fetchOneCell();
111 $type = mime_content_type($img);
112 header("Content-Type: $type");
113 echo file_get_contents($img);
114 exit;
115 }
116
fb9a56cb 117 function handler_photo_change(&$page)
118 {
8b1f8e12 119 $page->changeTpl('profile/trombino.tpl');
fb9a56cb 120
121 require_once('validations.inc.php');
122
cab08090 123 $trombi_x = '/home/web/trombino/photos'.S::v('promo')
124 .'/'.S::v('forlife').'.jpg';
fb9a56cb 125
126 if (Env::has('upload')) {
abe7e055 127 $upload = new PlUpload(S::v('forlife'), 'photo');
128 if (!$upload->upload($_FILES['userfile']) && !$upload->download(Env::v('photo'))) {
129 $page->trig('Une erreur est survenue lors du téléchargement du fichier');
130 } else {
131 $myphoto = new PhotoReq(S::v('uid'), $upload);
132 if ($myphoto->isValid()) {
133 $myphoto->submit();
fb9a56cb 134 }
fb9a56cb 135 }
136 } elseif (Env::has('trombi')) {
abe7e055 137 $upload = new PlUpload(S::v('forlife'), 'photo');
138 if ($upload->copyFrom($trombi_x)) {
139 $myphoto = new PhotoReq(S::v('uid'), $upload);
140 if ($myphoto->isValid()) {
141 $myphoto->commit();
142 $myphoto->clean();
143 }
fb9a56cb 144 }
5e2307dc 145 } elseif (Env::v('suppr')) {
08cce2ff 146 XDB::execute('DELETE FROM photo WHERE uid = {?}',
cab08090 147 S::v('uid'));
08cce2ff 148 XDB::execute('DELETE FROM requests
fb9a56cb 149 WHERE user_id = {?} AND type="photo"',
cab08090 150 S::v('uid'));
5e2307dc 151 } elseif (Env::v('cancel')) {
e1635d16 152 $sql = XDB::query('DELETE FROM requests
fb9a56cb 153 WHERE user_id={?} AND type="photo"',
cab08090 154 S::v('uid'));
fb9a56cb 155 }
156
08cce2ff 157 $sql = XDB::query('SELECT COUNT(*) FROM requests
abe7e055 158 WHERE user_id={?} AND type="photo"',
159 S::v('uid'));
fb9a56cb 160 $page->assign('submited', $sql->fetchOneCell());
161 $page->assign('has_trombi_x', file_exists($trombi_x));
fb9a56cb 162 }
163
e8599c21 164 function handler_profile(&$page, $x = null)
165 {
166 if (is_null($x)) {
167 return PL_NOT_FOUND;
168 }
169
170 global $globals;
171 require_once 'user.func.inc.php';
172
b13048df 173 $page->changeTpl('profile/profile.tpl', SIMPLE);
e8599c21 174
175 $view = 'private';
5e2307dc 176 if (!S::logged() || Env::v('view') == 'public') $view = 'public';
177 if (S::logged() && Env::v('view') == 'ax') $view = 'ax';
e8599c21 178
179 if (is_numeric($x)) {
08cce2ff 180 $res = XDB::query(
e1635d16 181 "SELECT alias
e8599c21 182 FROM aliases AS a
183 INNER JOIN auth_user_md5 AS u ON (a.id=u.user_id AND a.type='a_vie')
184 WHERE matricule={?}", $x);
185 $login = $res->fetchOneCell();
186 } else {
187 $login = get_user_forlife($x);
188 }
189
190 if (empty($login)) {
924b4ba7 191 if (preg_match('/([-a-z]+)\.([-a-z]+)\.([0-9]{4})/i', $x, $matches)) {
192 $matches = str_replace('-', '_', $matches);
193 $res = XDB::query("SELECT user_id
194 FROM auth_user_md5
195 WHERE prenom LIKE {?} AND nom LIKE {?} AND promo = {?}
196 AND perms = 'pending'",
197 $matches[1], $matches[2], $matches[3]);
198 if ($res->numRows() == 1) {
199 $uid = $res->fetchOneCell();
200 pl_redirect('marketing/public/' . $uid);
201 }
202 }
e8599c21 203 return PL_NOT_FOUND;
204 }
205
5e2307dc 206 $new = Env::v('modif') == 'new';
cab08090 207 $user = get_user_details($login, S::v('uid'), $view);
3c85da85 208 $user['freetext'] = MiniWiki::WikiToHTML($user['freetext']);
37633309 209 $user['cv'] = MiniWiki::WikiToHTML($user['cv'], true);
f45b6a99 210 $title = $user['prenom'] . ' ' . ( empty($user['nom_usage']) ? $user['nom'] : $user['nom_usage'] );
e8599c21 211 $page->assign('xorg_title', $title);
212
213 // photo
214
7da8ef90 215 $photo = 'photo/'.$user['forlife'].($new ? '/req' : '');
e8599c21 216
2f678da1 217 if (!isset($user['y']) and !isset($user['x'])) {
e8599c21 218 list($user['x'], $user['y']) = getimagesize("images/none.png");
219 }
2f678da1 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) {
e8599c21 223 $user['y'] = (integer)($user['y']*240/$user['x']);
224 $user['x'] = 240;
225 }
2f678da1 226 if ($user['y'] > 300) {
e8599c21 227 $user['x'] = (integer)($user['x']*300/$user['y']);
228 $user['y'] = 300;
229 }
2f678da1 230 if ($user['x'] < 160) {
e8599c21 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
08cce2ff 243 $res = XDB::query(
e8599c21 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}'",
cab08090 250 S::v('uid'),
e8599c21 251 $user['forlife'].'@'.$globals->mail->domain,
252 $user['forlife'].'@'.$globals->mail->domain2);
253 $page->assign('virtualalias', $res->fetchOneCell());
254
c99ef281 255 $page->addJsLink('close_on_esc.js');
6ce5dee4 256 header('Last-Modified: ' . date('r', strtotime($user['date'])));
e8599c21 257 }
258
5122b820 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
e1635d16 277 function handler_p_edit(&$page, $opened_tab = null)
2f678da1 278 {
279 global $globals;
280
e1635d16 281 // Finish registration procedure
3845b131 282 if (Post::v('register_from_ax_question')) {
283 XDB::execute('UPDATE auth_user_quick
2f678da1 284 SET profile_from_ax = 1
285 WHERE user_id = {?}',
cab08090 286 S::v('uid'));
2f678da1 287 }
3845b131 288 if (Post::v('add_to_nl')) {
289 require_once 'newsletter.inc.php';
714bc242 290 NewsLetter::subscribe();
291 }
292 if (Post::v('add_to_ax')) {
293 require_once dirname(__FILE__) . '/axletter/axletter.inc.php';
294 AXLetter::subscribe();
3845b131 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);
9bb8bf21 303 $mmlist = new MMList(S::v('uid'), S::v('password'));
304 $mmlist->subscribe("promo".S::v('promo'));
3845b131 305 }
0baf0741 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 }
2f678da1 318
e1635d16
FB
319 // AX Synchronization
320 require_once 'synchro_ax.inc.php';
2f678da1 321 if (is_ax_key_missing()) {
322 $page->assign('no_private_key', true);
323 }
5e2307dc 324 if (Env::v('synchro_ax') == 'confirm' && !is_ax_key_missing()) {
cab08090 325 ax_synchronize(S::v('bestalias'), S::v('uid'));
a7de4ef7 326 $page->trig('Ton profil a été synchronisé avec celui du site polytechniciens.com');
2f678da1 327 }
328
e1635d16
FB
329 // Misc checks
330 // TODO: Block if birth date is missing ?
35aedff2 331
c6a7beb2
FB
332 $page->addJsLink('ajax.js');
333 $page->addJsLink('jquery.js');
e1635d16
FB
334 $wiz = new PlWizard('Profil', 'core/plwizard.tpl', true);
335 require_once dirname(__FILE__) . '/profile/page.inc.php';
336 $wiz->addPage('ProfileGeneral', 'Général', 'general');
0b14f91d 337 $wiz->addPage('ProfileAddresses', 'Adresses personnelles', 'adresses');
e1635d16 338 $wiz->addPage('ProfileGroups', 'Groupes X - Binets', 'poly');
a7c28fff 339 $wiz->addPage('ProfileDecos', 'Décorations - Medailles', 'deco');
3950bc21 340 $wiz->addPage('ProfileJobs', 'Informations professionnelles', 'emploi');
e1635d16
FB
341 $wiz->addPage('ProfileSkills', 'Compétences diverses', 'skill');
342 $wiz->addPage('ProfileMentor', 'Mentoring', 'mentor');
343 $wiz->apply($page, 'profile/edit', $opened_tab);
35aedff2 344
e1635d16
FB
345 $page->addCssLink('profil.css');
346 $page->assign('xorg_title', 'Polytechnique.org - Mon Profil');
2f678da1 347 }
348
c6a7beb2
FB
349 function handler_ajax_address(&$page, $adid)
350 {
351 $page->changeTpl('profile/adresses.address.tpl', NO_SKIN);
352 $page->assign('i', $adid);
353 $page->assign('adr', array());
354 $page->assign('ajaxadr', true);
355 }
356
357 function handler_ajax_tel(&$page, $adid, $telid)
358 {
359 $page->changeTpl('profile/adresses.tel.tpl', NO_SKIN);
360 $page->assign('i', $adid);
361 $page->assign('adid', "addresses_$adid");
362 $page->assign('adpref', "addresses[$adid]");
363 $page->assign('t', $telid);
364 $page->assign('tel', array());
365 $page->assign('ajaxtel', true);
366 }
367
85cc366b
FB
368 function handler_ajax_medal(&$page, $id)
369 {
370 $page->changeTpl('profile/deco.medal.tpl', NO_SKIN);
371 $page->assign('id', $id);
372 $page->assign('medal', array('valid' => 0, 'grade' => 0));
373 $page->assign('ajaxdeco', true);
374 }
375
2dcac0f5
FB
376 function handler_ajax_job(&$page, $id)
377 {
378 $page->changeTpl('profile/jobs.job.tpl', NO_SKIN);
379 $page->assign('i', $id);
380 $page->assign('job', array());
381 $page->assign('ajaxjob', true);
382 $page->assign('new', true);
383 }
384
385 function handler_ajax_secteur(&$page, $id, $sect, $ssect = -1)
386 {
387 $res = XDB::iterator("SELECT id, label
388 FROM emploi_ss_secteur
389 WHERE secteur = {?}", $sect);
390 $page->changeTpl('profile/jobs.secteur.tpl', NO_SKIN);
391 $page->assign('id', $id);
392 $page->assign('ssecteurs', $res);
393 $page->assign('sel', $ssect);
394 }
395
9b0fa329 396 function handler_p_orange(&$page)
397 {
8b1f8e12 398 $page->changeTpl('profile/orange.tpl');
9b0fa329 399
400 require_once 'validations.inc.php';
401 require_once 'xorg.misc.inc.php';
402
08cce2ff 403 $res = XDB::query(
2f678da1 404 "SELECT u.promo, u.promo_sortie
9b0fa329 405 FROM auth_user_md5 AS u
cab08090 406 WHERE user_id={?}", S::v('uid'));
9b0fa329 407
2f678da1 408 list($promo, $promo_sortie_old) = $res->fetchOneRow();
9b0fa329 409 $page->assign('promo_sortie_old', $promo_sortie_old);
410 $page->assign('promo', $promo);
411
412 if (!Env::has('promo_sortie')) {
fd8f77de 413 return;
9b0fa329 414 }
415
5e2307dc 416 $promo_sortie = Env::i('promo_sortie');
9b0fa329 417
418 if ($promo_sortie < 1000 || $promo_sortie > 9999) {
a7de4ef7 419 $page->trig('L\'année de sortie doit être un nombre de quatre chiffres');
9b0fa329 420 }
421 elseif ($promo_sortie < $promo + 3) {
a7de4ef7 422 $page->trig('Trop tôt');
9b0fa329 423 }
424 elseif ($promo_sortie == $promo_sortie_old) {
a7de4ef7 425 $page->trig('Tu appartiens déjà à la promotion correspondante à cette année de sortie.');
9b0fa329 426 }
427 elseif ($promo_sortie == $promo + 3) {
08cce2ff 428 XDB::execute(
e1635d16 429 "UPDATE auth_user_md5 set promo_sortie={?}
cab08090 430 WHERE user_id={?}", $promo_sortie, S::v('uid'));
a7de4ef7 431 $page->trig('Ton statut "orange" a été supprimé.');
9b0fa329 432 $page->assign('promo_sortie_old', $promo_sortie);
433 }
434 else {
435 $page->assign('promo_sortie', $promo_sortie);
436
437 if (Env::has('submit')) {
cab08090 438 $myorange = new OrangeReq(S::v('uid'),
9b0fa329 439 $promo_sortie);
440 $myorange->submit();
441 $page->assign('myorange', $myorange);
442 }
443 }
9b0fa329 444 }
445
2f678da1 446 function handler_referent(&$page, $x = null)
28e16d4d 447 {
28e16d4d 448 require_once 'user.func.inc.php';
449
450 if (is_null($x)) {
451 return PL_NOT_FOUND;
452 }
453
8b1f8e12 454 $page->changeTpl('profile/fiche_referent.tpl', SIMPLE);
28e16d4d 455
08cce2ff 456 $res = XDB::query(
28e16d4d 457 "SELECT prenom, nom, user_id, promo, cv, a.alias AS bestalias
458 FROM auth_user_md5 AS u
2f678da1 459 INNER JOIN aliases AS a ON (u.user_id=a.id
460 AND FIND_IN_SET('bestalias', a.flags))
28e16d4d 461 INNER JOIN aliases AS a1 ON (u.user_id=a1.id
462 AND a1.alias = {?}
463 AND a1.type!='homonyme')", $x);
464
465 if ($res->numRows() != 1) {
466 return PL_NOT_FOUND;
467 }
468
469 list($prenom, $nom, $user_id, $promo, $cv, $bestalias) = $res->fetchOneRow();
470
471 $page->assign('prenom', $prenom);
472 $page->assign('nom', $nom);
473 $page->assign('promo', $promo);
37633309 474 $page->assign('cv', MiniWiki::WikiToHTML($cv, true));
28e16d4d 475 $page->assign('bestalias', $bestalias);
476 $page->assign('adr_pro', get_user_details_pro($user_id));
477
478 ///// recuperations infos referent
479
480 //expertise
08cce2ff 481 $res = XDB::query("SELECT expertise FROM mentor WHERE uid = {?}", $user_id);
28e16d4d 482 $page->assign('expertise', $res->fetchOneCell());
483
484 //secteurs
485 $secteurs = $ss_secteurs = Array();
08cce2ff 486 $res = XDB::iterRow(
28e16d4d 487 "SELECT s.label, ss.label
488 FROM mentor_secteurs AS m
489 LEFT JOIN emploi_secteur AS s ON(m.secteur = s.id)
490 LEFT JOIN emploi_ss_secteur AS ss ON(m.secteur = ss.secteur AND m.ss_secteur = ss.id)
491 WHERE uid = {?}", $user_id);
492 while (list($sec, $ssec) = $res->next()) {
493 $secteurs[] = $sec;
494 $ss_secteurs[] = $ssec;
495 }
496 $page->assign_by_ref('secteurs', $secteurs);
497 $page->assign_by_ref('ss_secteurs', $ss_secteurs);
498
499 //pays
08cce2ff 500 $res = XDB::query(
28e16d4d 501 "SELECT gp.pays
502 FROM mentor_pays AS m
503 LEFT JOIN geoloc_pays AS gp ON(m.pid = gp.a2)
504 WHERE uid = {?}", $user_id);
505 $page->assign('pays', $res->fetchColumn());
506
c99ef281 507 $page->addJsLink('close_on_esc.js');
28e16d4d 508 }
509
ff3eb9b7 510 function handler_ref_search(&$page, $action = null, $subaction = null)
2f678da1 511 {
f5c5b741 512 require_once 'wiki.inc.php';
513 wiki_require_page('Docs.Emploi');
2f678da1 514 $page->assign('xorg_title', 'Polytechnique.org - Conseil Pro');
515
2f678da1 516 //recuperation des noms de secteurs
08cce2ff 517 $res = XDB::iterRow("SELECT id, label FROM emploi_secteur");
2f678da1 518 $secteurs[''] = '';
519 while (list($tmp_id, $tmp_label) = $res->next()) {
520 $secteurs[$tmp_id] = $tmp_label;
521 }
522 $page->assign_by_ref('secteurs', $secteurs);
523
2f678da1 524 // nb de mentors
08cce2ff 525 $res = XDB::query("SELECT count(*) FROM mentor");
2f678da1 526 $page->assign('mentors_number', $res->fetchOneCell());
527
2f678da1 528 // On vient d'un formulaire
ff3eb9b7 529 $where = array();
530 $pays_sel = XDB::escape(Env::v('pays_sel'));
531 $secteur_sel = XDB::escape(Env::v('secteur'));
532 $ss_secteur_sel = XDB::escape(Env::v('ss_secteur'));
533 $expertise_champ = XDB::escape(Env::v('expertise'));
534
535 if ($pays_sel != "''") {
536 $where[] = "mp.pid = $pays_sel";
537 }
538 if ($secteur_sel != "''") {
539 $where[] = "ms.secteur = $secteur_sel";
540 if ($ss_secteur_sel != "''") {
541 $where[] = "ms.ss_secteur = $ss_secteur_sel";
2f678da1 542 }
543 }
ff3eb9b7 544 if ($expertise_champ != "''") {
545 $where[] = "MATCH(m.expertise) AGAINST($expertise_champ)";
2f678da1 546 }
547
548 if ($where) {
549 $where = join(' AND ', $where);
550
e1635d16
FB
551 $set = new UserSet("INNER JOIN mentor AS m ON (m.uid = u.user_id)
552 LEFT JOIN mentor_pays AS mp ON (mp.uid = m.uid)
ff3eb9b7 553 LEFT JOIN mentor_secteurs AS ms ON (ms.uid = m.uid)",
554 $where);
555 $set->addMod('mentor', 'Référents');
556 $set->apply('referent/search', $page, $action, $subaction);
557 if ($set->count() > 100) {
e1635d16 558 $page->assign('recherche_trop_large', true);
2f678da1 559 }
ff3eb9b7 560 }
e1635d16 561 $page->changeTpl('profile/referent.tpl');
ff3eb9b7 562 }
2f678da1 563
e1635d16 564 function handler_ref_sect(&$page, $sect)
ff3eb9b7 565 {
566 header('Content-Type: text/html; charset=utf-8');
05cb05c0 567 $page->changeTpl('include/field.select.tpl', NO_SKIN);
ff3eb9b7 568 $page->assign('onchange', 'setSSecteurs()');
569 $page->assign('id', 'ssect_field');
570 $page->assign('name', 'ss_secteur');
571 $it = XDB::iterator("SELECT id,label AS field
e1635d16 572 FROM emploi_ss_secteur
ff3eb9b7 573 WHERE secteur = {?}", $sect);
574 $page->assign('list', $it);
575 }
2f678da1 576
ff3eb9b7 577 function handler_ref_country(&$page, $sect, $ssect = '')
578 {
579 header('Content-Type: text/html; charset=utf-8');
05cb05c0 580 $page->changeTpl('include/field.select.tpl', NO_SKIN);
ff3eb9b7 581 $page->assign('name', 'pays_sel');
582 $where = ($ssect ? ' AND ms.ss_secteur = {?}' : '');
583 $it = XDB::iterator("SELECT a2 AS id, pays AS field
584 FROM geoloc_pays AS g
585 INNER JOIN mentor_pays AS mp ON (mp.pid = g.a2)
586 INNER JOIN mentor_secteurs AS ms ON (ms.uid = mp.uid)
587 WHERE ms.secteur = {?} $where
588 GROUP BY a2
589 ORDER BY pays", $sect, $ssect);
590 $page->assign('list', $it);
2f678da1 591 }
592
926f16d7 593 function handler_p_usage(&$page)
594 {
8b1f8e12 595 $page->changeTpl('profile/nomusage.tpl');
926f16d7 596
597 require_once 'validations.inc.php';
598 require_once 'xorg.misc.inc.php';
599
08cce2ff 600 $res = XDB::query(
2f678da1 601 "SELECT u.nom, u.nom_usage, u.flags, e.alias
926f16d7 602 FROM auth_user_md5 AS u
2f678da1 603 LEFT JOIN aliases AS e ON(u.user_id = e.id
604 AND FIND_IN_SET('usage', e.flags))
cab08090 605 WHERE user_id={?}", S::v('uid'));
926f16d7 606
2f678da1 607 list($nom, $usage_old, $flags, $alias_old) = $res->fetchOneRow();
926f16d7 608 $flags = new flagset($flags);
609 $page->assign('usage_old', $usage_old);
610 $page->assign('alias_old', $alias_old);
611
e1635d16 612 $nom_usage = replace_accent(trim(Env::v('nom_usage')));
926f16d7 613 $nom_usage = strtoupper($nom_usage);
614 $page->assign('usage_req', $nom_usage);
615
616 if (Env::has('submit') && ($nom_usage != $usage_old)) {
617 // on vient de recevoir une requete, differente de l'ancien nom d'usage
618 if ($nom_usage == $nom) {
619 $page->assign('same', true);
a7de4ef7 620 } else { // le nom de mariage est distinct du nom à l'X
926f16d7 621 // on calcule l'alias pour l'afficher
5e2307dc 622 $reason = Env::v('reason');
926f16d7 623 if ($reason == 'other') {
5e2307dc 624 $reason = Env::v('other_reason');
926f16d7 625 }
cab08090 626 $myusage = new UsageReq(S::v('uid'), $nom_usage, $reason);
926f16d7 627 $myusage->submit();
628 $page->assign('myusage', $myusage);
629 }
630 }
926f16d7 631 }
632
a1d79217 633 function handler_xnet(&$page)
634 {
8b1f8e12 635 $page->changeTpl('profile/groupesx.tpl');
a1d79217 636 $page->assign('xorg_title', 'Polytechnique.org - Promo, Groupes X, Binets');
e1635d16 637
a1d79217 638 $req = XDB::query('
e1635d16 639 SELECT m.asso_id, a.nom, diminutif, a.logo IS NOT NULL AS has_logo,
46e1d3ba 640 COUNT(e.eid) AS events, mail_domain AS lists
e1635d16 641 FROM groupex.membres AS m
46e1d3ba 642 INNER JOIN groupex.asso AS a ON(m.asso_id = a.id)
643 LEFT JOIN groupex.evenements AS e ON(e.asso_id = m.asso_id AND e.archive = 0)
644 WHERE uid = {?} GROUP BY m.asso_id ORDER BY a.nom', S::i('uid'));
a1d79217 645 $page->assign('assos', $req->fetchAllAssoc());
646 }
e1635d16 647
e49018a7 648 function handler_vcard(&$page, $x = null)
649 {
650 if (is_null($x)) {
651 return PL_NOT_FOUND;
652 }
653
654 global $globals;
655
656 if (substr($x, -4) == '.vcf') {
657 $x = substr($x, 0, strlen($x) - 4);
658 }
659
5e193297 660 $vcard = new VCard($x);
661 $vcard->do_page($page);
e49018a7 662 }
92423144 663
664 function handler_admin_trombino(&$page, $uid = null, $action = null) {
8b1f8e12 665 $page->changeTpl('profile/admin_trombino.tpl');
92423144 666 $page->assign('xorg_title','Polytechnique.org - Administration - Trombino');
667 $page->assign('uid', $uid);
e1635d16 668
92423144 669 $q = XDB::query(
670 "SELECT a.alias,promo
671 FROM auth_user_md5 AS u
672 INNER JOIN aliases AS a ON ( u.user_id = a.id AND type='a_vie' )
673 WHERE user_id = {?}", $uid);
674 list($forlife, $promo) = $q->fetchOneRow();
e1635d16 675
92423144 676 switch ($action) {
e1635d16 677
92423144 678 case "original":
679 header("Content-type: image/jpeg");
680 readfile("/home/web/trombino/photos".$promo."/".$forlife.".jpg");
681 exit;
682 break;
e1635d16 683
92423144 684 case "new":
685 $data = file_get_contents($_FILES['userfile']['tmp_name']);
686 list($x, $y) = getimagesize($_FILES['userfile']['tmp_name']);
687 $mimetype = substr($_FILES['userfile']['type'], 6);
688 unlink($_FILES['userfile']['tmp_name']);
689 XDB::execute(
690 "REPLACE INTO photo SET uid={?}, attachmime = {?}, attach={?}, x={?}, y={?}",
691 $uid, $mimetype, $data, $x, $y);
692 break;
e1635d16 693
92423144 694 case "delete":
695 XDB::execute('DELETE FROM photo WHERE uid = {?}', $uid);
696 break;
697 }
e1635d16 698
92423144 699 $page->assign('forlife', $forlife);
700 }
701 function handler_admin_binets(&$page, $action = 'list', $id = null) {
92423144 702 $page->assign('xorg_title','Polytechnique.org - Administration - Binets');
703 $page->assign('title', 'Gestion des binets');
704 $table_editor = new PLTableEditor('admin/binets', 'binets_def', 'id');
705 $table_editor->add_join_table('binets_ins','binet_id',true);
a7de4ef7 706 $table_editor->describe('text','intitulé',true);
92423144 707 $table_editor->apply($page, $action, $id);
708 }
709 function handler_admin_formations(&$page, $action = 'list', $id = null) {
92423144 710 $page->assign('xorg_title','Polytechnique.org - Administration - Formations');
711 $page->assign('title', 'Gestion des formations');
712 $table_editor = new PLTableEditor('admin/formations','applis_def','id');
e1635d16 713 $table_editor->add_join_table('applis_ins','aid',true);
a7de4ef7 714 $table_editor->describe('text','intitulé',true);
92423144 715 $table_editor->describe('url','site web',false);
716 $table_editor->apply($page, $action, $id);
e1635d16 717 }
92423144 718 function handler_admin_groupesx(&$page, $action = 'list', $id = null) {
92423144 719 $page->assign('xorg_title','Polytechnique.org - Administration - Groupes X');
720 $page->assign('title', 'Gestion des Groupes X');
721 $table_editor = new PLTableEditor('admin/groupes-x','groupesx_def','id');
e1635d16 722 $table_editor->add_join_table('groupesx_ins','gid',true);
a7de4ef7 723 $table_editor->describe('text','intitulé',true);
92423144 724 $table_editor->describe('url','site web',false);
725 $table_editor->apply($page, $action, $id);
e1635d16 726 }
b09690be 727 function handler_admin_sections(&$page, $action = 'list', $id = null) {
728 $page->assign('xorg_title','Polytechnique.org - Administration - Sections');
729 $page->assign('title', 'Gestion des Sections');
730 $table_editor = new PLTableEditor('admin/sections','sections','id');
731 $table_editor->describe('text','intitulé',true);
732 $table_editor->apply($page, $action, $id);
e1635d16 733 }
b09690be 734 function handler_admin_secteurs(&$page, $action = 'list', $id = null) {
735 $page->assign('xorg_title','Polytechnique.org - Administration - Secteurs');
736 $page->assign('title', 'Gestion des Secteurs');
737 $table_editor = new PLTableEditor('admin/secteurs','emploi_secteur','id');
738 $table_editor->describe('label','intitulé',true);
739 $table_editor->apply($page, $action, $id);
e1635d16 740 }
92423144 741 function handler_admin_medals(&$page, $action = 'list', $id = null) {
92423144 742 $page->assign('xorg_title','Polytechnique.org - Administration - Distinctions');
743 $page->assign('title', 'Gestion des Distinctions');
744 $table_editor = new PLTableEditor('admin/medals','profile_medals','id');
a7de4ef7 745 $table_editor->describe('text', 'intitulé', true);
92423144 746 $table_editor->describe('img', 'nom de l\'image', false);
d02b8359 747 $table_editor->describe('flags', 'valider', true);
92423144 748 $table_editor->apply($page, $action, $id);
749 if ($id && $action == 'edit') {
8b1f8e12 750 $page->changeTpl('profile/admin_decos.tpl');
e1635d16 751
92423144 752 $mid = $id;
e1635d16 753
92423144 754 if (Post::v('act') == 'del') {
755 XDB::execute('DELETE FROM profile_medals_grades WHERE mid={?} AND gid={?}', $mid, Post::i('gid'));
756 } elseif (Post::v('act') == 'new') {
757 XDB::execute('INSERT INTO profile_medals_grades (mid,gid) VALUES({?},{?})',
758 $mid, max(array_keys(Post::v('grades', array(0))))+1);
759 } else {
760 foreach (Post::v('grades', array()) as $gid=>$text) {
761 XDB::execute('UPDATE profile_medals_grades SET pos={?}, text={?} WHERE gid={?}', $_POST['pos'][$gid], $text, $gid);
762 }
763 }
764 $res = XDB::iterator('SELECT gid, text, pos FROM profile_medals_grades WHERE mid={?} ORDER BY pos', $mid);
765 $page->assign('grades', $res);
766 }
e1635d16 767 }
7d8b17cb 768}
769
a7de4ef7 770// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
7d8b17cb 771?>