Reskin register/success page and add AXLetter subscription
[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),
2f678da1 33 'profile/edit' => $this->make_hook('p_edit', AUTH_MDP),
28e16d4d 34 'profile/orange' => $this->make_hook('p_orange', AUTH_MDP),
28e16d4d 35 'profile/usage' => $this->make_hook('p_usage', AUTH_MDP),
e49018a7 36
2f678da1 37 'referent' => $this->make_hook('referent', AUTH_COOKIE),
38 'referent/search' => $this->make_hook('ref_search', AUTH_COOKIE),
39
28e16d4d 40 'trombi' => $this->make_hook('trombi', AUTH_COOKIE),
a1d79217 41 'groupes-x' => $this->make_hook('xnet', AUTH_COOKIE),
926f16d7 42
28e16d4d 43 'vcard' => $this->make_hook('vcard', AUTH_COOKIE),
92423144 44 'admin/binets' => $this->make_hook('admin_binets', AUTH_MDP, 'admin'),
45 'admin/medals' => $this->make_hook('admin_medals', AUTH_MDP, 'admin'),
46 'admin/formations' => $this->make_hook('admin_formations', AUTH_MDP, 'admin'),
47 'admin/groupes-x' => $this->make_hook('admin_groupesx', AUTH_MDP, 'admin'),
48 'admin/trombino' => $this->make_hook('admin_trombino', AUTH_MDP, 'admin'),
49
7d8b17cb 50 );
51 }
52
e8599c21 53 /* XXX COMPAT */
54 function handler_fiche(&$page)
55 {
5e2307dc 56 return $this->handler_profile($page, Env::v('user'));
e8599c21 57 }
58
59
7d8b17cb 60 function _trombi_getlist($offset, $limit)
61 {
7d8b17cb 62 $where = ( $this->promo > 0 ? "WHERE promo='{$this->promo}'" : "" );
63
08cce2ff 64 $res = XDB::query(
7d8b17cb 65 "SELECT COUNT(*)
66 FROM auth_user_md5 AS u
67 RIGHT JOIN photo AS p ON u.user_id=p.uid
68 $where");
69 $pnb = $res->fetchOneCell();
70
08cce2ff 71 $res = XDB::query(
2f678da1 72 "SELECT promo, user_id, a.alias AS forlife,
73 IF (nom_usage='', nom, nom_usage) AS nom, prenom
7d8b17cb 74 FROM photo AS p
75 INNER JOIN auth_user_md5 AS u ON u.user_id=p.uid
76 INNER JOIN aliases AS a ON ( u.user_id=a.id AND a.type='a_vie' )
77 $where
2f678da1 78 ORDER BY promo, nom, prenom LIMIT {?}, {?}", $offset*$limit, $limit);
7d8b17cb 79
80 return array($pnb, $res->fetchAllAssoc());
81 }
82
adbdf493 83 function handler_photo(&$page, $x = null, $req = null)
84 {
85 if (is_null($x)) {
86 return PL_NOT_FOUND;
87 }
88
08cce2ff 89 $res = XDB::query("SELECT id, pub FROM aliases
adbdf493 90 LEFT JOIN photo ON(id = uid)
91 WHERE alias = {?}", $x);
92 list($uid, $photo_pub) = $res->fetchOneRow();
93
cab08090 94 if ($req && S::logged()) {
adbdf493 95 include 'validations.inc.php';
96 $myphoto = PhotoReq::get_request($uid);
97 Header('Content-type: image/'.$myphoto->mimetype);
98 echo $myphoto->data;
99 } else {
08cce2ff 100 $res = XDB::query(
adbdf493 101 "SELECT attachmime, attach
102 FROM photo
103 WHERE uid={?}", $uid);
104
2f678da1 105 if ((list($type, $data) = $res->fetchOneRow())
cab08090 106 && ($photo_pub == 'public' || S::logged())) {
adbdf493 107 Header("Content-type: image/$type");
108 echo $data;
109 } else {
110 Header('Content-type: image/png');
fb9a56cb 111 echo file_get_contents(dirname(__FILE__).'/../htdocs/images/none.png');
adbdf493 112 }
113 }
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')) {
eef2d586 127 if (isset($_FILES['userfile']['tmp_name']) && !is_uploaded_file($_FILES['userfile']['tmp_name'])) {
5fe7ec44 128 $page->trig('Une erreur s\'est produite lors du transfert du fichier');
eef2d586 129 } elseif (strpos(trim(mime_content_type($_FILES['userfile']['tmp_name'])), 'image/') !== 0) {
130 $page->trig('Le fichier que tu as transmis n\'est pas une image.');
131 } else {
5fe7ec44 132 $file = is_uploaded_file($_FILES['userfile']['tmp_name'])
133 ? $_FILES['userfile']['tmp_name']
134 : Env::v('photo');
135 if ($data = file_get_contents($file)) {
136 $myphoto = new PhotoReq(S::v('uid'), $data);
eef2d586 137 if ($myphoto->isValid()) {
138 $myphoto->submit();
139 }
5fe7ec44 140 } else {
141 $page->trig('Fichier inexistant ou vide');
fb9a56cb 142 }
fb9a56cb 143 }
144 } elseif (Env::has('trombi')) {
cab08090 145 $myphoto = new PhotoReq(S::v('uid'),
fb9a56cb 146 file_get_contents($trombi_x));
eef2d586 147 if ($myphoto->isValid()) {
fb9a56cb 148 $myphoto->commit();
149 $myphoto->clean();
150 }
5e2307dc 151 } elseif (Env::v('suppr')) {
08cce2ff 152 XDB::execute('DELETE FROM photo WHERE uid = {?}',
cab08090 153 S::v('uid'));
08cce2ff 154 XDB::execute('DELETE FROM requests
fb9a56cb 155 WHERE user_id = {?} AND type="photo"',
cab08090 156 S::v('uid'));
5e2307dc 157 } elseif (Env::v('cancel')) {
08cce2ff 158 $sql = XDB::query('DELETE FROM requests
fb9a56cb 159 WHERE user_id={?} AND type="photo"',
cab08090 160 S::v('uid'));
fb9a56cb 161 }
162
08cce2ff 163 $sql = XDB::query('SELECT COUNT(*) FROM requests
fb9a56cb 164 WHERE user_id={?} AND type="photo"',
cab08090 165 S::v('uid'));
fb9a56cb 166 $page->assign('submited', $sql->fetchOneCell());
167 $page->assign('has_trombi_x', file_exists($trombi_x));
fb9a56cb 168 }
169
e8599c21 170 function handler_profile(&$page, $x = null)
171 {
172 if (is_null($x)) {
173 return PL_NOT_FOUND;
174 }
175
176 global $globals;
177 require_once 'user.func.inc.php';
178
b13048df 179 $page->changeTpl('profile/profile.tpl', SIMPLE);
e8599c21 180
181 $view = 'private';
5e2307dc 182 if (!S::logged() || Env::v('view') == 'public') $view = 'public';
183 if (S::logged() && Env::v('view') == 'ax') $view = 'ax';
e8599c21 184
185 if (is_numeric($x)) {
08cce2ff 186 $res = XDB::query(
e8599c21 187 "SELECT alias
188 FROM aliases AS a
189 INNER JOIN auth_user_md5 AS u ON (a.id=u.user_id AND a.type='a_vie')
190 WHERE matricule={?}", $x);
191 $login = $res->fetchOneCell();
192 } else {
193 $login = get_user_forlife($x);
194 }
195
196 if (empty($login)) {
924b4ba7 197 if (preg_match('/([-a-z]+)\.([-a-z]+)\.([0-9]{4})/i', $x, $matches)) {
198 $matches = str_replace('-', '_', $matches);
199 $res = XDB::query("SELECT user_id
200 FROM auth_user_md5
201 WHERE prenom LIKE {?} AND nom LIKE {?} AND promo = {?}
202 AND perms = 'pending'",
203 $matches[1], $matches[2], $matches[3]);
204 if ($res->numRows() == 1) {
205 $uid = $res->fetchOneCell();
206 pl_redirect('marketing/public/' . $uid);
207 }
208 }
e8599c21 209 return PL_NOT_FOUND;
210 }
211
5e2307dc 212 $new = Env::v('modif') == 'new';
cab08090 213 $user = get_user_details($login, S::v('uid'), $view);
25412aa4 214 require_once('url_catcher.inc.php');
215 $user['freetext'] = url_catcher($user['freetext'], false);
e8599c21 216 $title = $user['prenom'] . ' ' . empty($user['nom_usage']) ? $user['nom'] : $user['nom_usage'];
217 $page->assign('xorg_title', $title);
218
219 // photo
220
7da8ef90 221 $photo = 'photo/'.$user['forlife'].($new ? '/req' : '');
e8599c21 222
2f678da1 223 if (!isset($user['y']) and !isset($user['x'])) {
e8599c21 224 list($user['x'], $user['y']) = getimagesize("images/none.png");
225 }
2f678da1 226 if (!isset($user['y']) or $user['y'] < 1) $user['y']=1;
227 if (!isset($user['x']) or $user['x'] < 1) $user['x']=1;
228 if ($user['x'] > 240) {
e8599c21 229 $user['y'] = (integer)($user['y']*240/$user['x']);
230 $user['x'] = 240;
231 }
2f678da1 232 if ($user['y'] > 300) {
e8599c21 233 $user['x'] = (integer)($user['x']*300/$user['y']);
234 $user['y'] = 300;
235 }
2f678da1 236 if ($user['x'] < 160) {
e8599c21 237 $user['y'] = (integer)($user['y']*160/$user['x']);
238 $user['x'] = 160;
239 }
240
241 $page->assign('logged', has_user_right('private', $view));
242 if (!has_user_right($user['photo_pub'], $view)) {
243 $photo = "";
244 }
245
246 $page->assign_by_ref('x', $user);
247 $page->assign('photo_url', $photo);
248 // alias virtual
08cce2ff 249 $res = XDB::query(
e8599c21 250 "SELECT alias
251 FROM virtual
252 INNER JOIN virtual_redirect USING(vid)
253 INNER JOIN auth_user_quick ON ( user_id = {?} AND emails_alias_pub = 'public' )
254 WHERE ( redirect={?} OR redirect={?} )
255 AND alias LIKE '%@{$globals->mail->alias_dom}'",
cab08090 256 S::v('uid'),
e8599c21 257 $user['forlife'].'@'.$globals->mail->domain,
258 $user['forlife'].'@'.$globals->mail->domain2);
259 $page->assign('virtualalias', $res->fetchOneCell());
260
c99ef281 261 $page->addJsLink('close_on_esc.js');
6ce5dee4 262 header('Last-Modified: ' . date('r', strtotime($user['date'])));
e8599c21 263 }
264
2f678da1 265 function handler_p_edit(&$page, $opened_tab = 'general')
266 {
267 global $globals;
268
8b1f8e12 269 $page->changeTpl('profile/edit.tpl');
2f678da1 270
c99ef281 271 $page->addCssLink('profil.css');
2f678da1 272 $page->assign('xorg_title', 'Polytechnique.org - Mon Profil');
273
274 require_once 'tabs.inc.php';
275 require_once 'profil.func.inc.php';
276 require_once 'synchro_ax.inc.php';
277
3845b131 278 if (Post::v('register_from_ax_question')) {
279 XDB::execute('UPDATE auth_user_quick
2f678da1 280 SET profile_from_ax = 1
281 WHERE user_id = {?}',
cab08090 282 S::v('uid'));
2f678da1 283 }
3845b131 284 if (Post::v('add_to_nl')) {
285 require_once 'newsletter.inc.php';
714bc242 286 NewsLetter::subscribe();
287 }
288 if (Post::v('add_to_ax')) {
289 require_once dirname(__FILE__) . '/axletter/axletter.inc.php';
290 AXLetter::subscribe();
3845b131 291 }
292 if (Post::v('add_to_promo')) {
293 $r = XDB::query('SELECT id FROM groupex.asso WHERE diminutif = {?}',
294 S::v('promo'));
295 $asso_id = $r->fetchOneCell();
296 XDB::execute('REPLACE INTO groupex.membres (uid,asso_id)
297 VALUES ({?}, {?})',
298 S::v('uid'), $asso_id);
9bb8bf21 299 $mmlist = new MMList(S::v('uid'), S::v('password'));
300 $mmlist->subscribe("promo".S::v('promo'));
3845b131 301 }
2f678da1 302
303 if (is_ax_key_missing()) {
304 $page->assign('no_private_key', true);
305 }
306
5e2307dc 307 if (Env::v('synchro_ax') == 'confirm' && !is_ax_key_missing()) {
cab08090 308 ax_synchronize(S::v('bestalias'), S::v('uid'));
a7de4ef7 309 $page->trig('Ton profil a été synchronisé avec celui du site polytechniciens.com');
2f678da1 310 }
311
312 // pour tous les tabs, la date de naissance pour verifier
313 // quelle est bien rentree et la date.
08cce2ff 314 $res = XDB::query(
2f678da1 315 "SELECT naissance, DATE_FORMAT(date, '%d.%m.%Y')
316 FROM auth_user_md5
cab08090 317 WHERE user_id={?}", S::v('uid'));
2f678da1 318 list($naissance, $date_modif_profil) = $res->fetchOneRow();
319
a7de4ef7 320 // lorsqu'on n'a pas la date de naissance en base de données
2f678da1 321 if (!$naissance) {
a7de4ef7 322 // la date de naissance n'existait pas et vient d'être soumise dans la variable
2f678da1 323 if (Env::has('birth')) {
324 //en cas d'erreur :
5e2307dc 325 if (!ereg('[0-3][0-9][0-1][0-9][1][9]([0-9]{2})', Env::v('birth'))) {
2f678da1 326 $page->assign('etat_naissance', 'query');
a7de4ef7 327 $page->trig('Date de naissance incorrecte ou incohérente.');
fd8f77de 328 return;
2f678da1 329 }
330
331 //sinon
5e2307dc 332 $birth = sprintf("%s-%s-%s", substr(Env::v('birth'), 4, 4),
333 substr(Env::v('birth'), 2, 2),
334 substr(Env::v('birth'), 0, 2));
08cce2ff 335 XDB::execute("UPDATE auth_user_md5
2f678da1 336 SET naissance={?}
337 WHERE user_id={?}", $birth,
cab08090 338 S::v('uid'));
2f678da1 339 $page->assign('etat_naissance', 'ok');
fd8f77de 340 return;
2f678da1 341 }
342
343 $page->assign('etat_naissance', 'query');
fd8f77de 344 return; // on affiche le formulaire pour naissance
2f678da1 345 }
346
347 //doit-on faire un update ?
348 if (Env::has('modifier') || Env::has('suivant')) {
28bda7c5 349 require_once dirname(__FILE__) . "/profile/get_{$opened_tab}.inc.php";
350 require_once dirname(__FILE__) . "/profile/verif_{$opened_tab}.inc.php";
2f678da1 351
352 if($page->nb_errs()) {
28bda7c5 353 require_once dirname(__FILE__) . "/profile/assign_{$opened_tab}.inc.php";
2f678da1 354 $page->assign('onglet', $opened_tab);
8b1f8e12 355 $page->assign('onglet_tpl', "profile/$opened_tab.tpl");
fd8f77de 356 return;
2f678da1 357 }
358
359 $date=date("Y-m-j");//nouvelle date de mise a jour
360
361 //On sauvegarde l'uid pour l'AX
362 /* on sauvegarde les changements dans user_changes :
a7de4ef7 363 * on a juste besoin d'insérer le user_id de la personne dans la table
2f678da1 364 */
08cce2ff 365 XDB::execute('REPLACE INTO user_changes SET user_id={?}',
cab08090 366 S::v('uid'));
2f678da1 367
cab08090 368 if (!S::has('suid')) {
2f678da1 369 require_once 'notifs.inc.php';
cab08090 370 register_watch_op(S::v('uid'), WATCH_FICHE);
2f678da1 371 }
372
373 // mise a jour des champs relatifs au tab ouvert
28bda7c5 374 require_once dirname(__FILE__) . "/profile/update_{$opened_tab}.inc.php";
2f678da1 375
5ee95138 376 $log =& $_SESSION['log'];
2f678da1 377 $log->log('profil', $opened_tab);
378 $page->assign('etat_update', 'ok');
379 }
380
381 if (Env::has('suivant')) {
8b00e0e0 382 pl_redirect('profile/edit/' . get_next_tab($opened_tab));
2f678da1 383 }
384
28bda7c5 385 require_once dirname(__FILE__) . "/profile/get_{$opened_tab}.inc.php";
386 require_once dirname(__FILE__) . "/profile/verif_{$opened_tab}.inc.php";
387 require_once dirname(__FILE__) . "/profile/assign_{$opened_tab}.inc.php";
2f678da1 388
389 $page->assign('onglet', $opened_tab);
8b1f8e12 390 $page->assign('onglet_tpl', "profile/$opened_tab.tpl");
2f678da1 391
fd8f77de 392 return;
2f678da1 393 }
394
9b0fa329 395 function handler_p_orange(&$page)
396 {
8b1f8e12 397 $page->changeTpl('profile/orange.tpl');
9b0fa329 398
399 require_once 'validations.inc.php';
400 require_once 'xorg.misc.inc.php';
401
08cce2ff 402 $res = XDB::query(
2f678da1 403 "SELECT u.promo, u.promo_sortie
9b0fa329 404 FROM auth_user_md5 AS u
cab08090 405 WHERE user_id={?}", S::v('uid'));
9b0fa329 406
2f678da1 407 list($promo, $promo_sortie_old) = $res->fetchOneRow();
9b0fa329 408 $page->assign('promo_sortie_old', $promo_sortie_old);
409 $page->assign('promo', $promo);
410
411 if (!Env::has('promo_sortie')) {
fd8f77de 412 return;
9b0fa329 413 }
414
5e2307dc 415 $promo_sortie = Env::i('promo_sortie');
9b0fa329 416
417 if ($promo_sortie < 1000 || $promo_sortie > 9999) {
a7de4ef7 418 $page->trig('L\'année de sortie doit être un nombre de quatre chiffres');
9b0fa329 419 }
420 elseif ($promo_sortie < $promo + 3) {
a7de4ef7 421 $page->trig('Trop tôt');
9b0fa329 422 }
423 elseif ($promo_sortie == $promo_sortie_old) {
a7de4ef7 424 $page->trig('Tu appartiens déjà à la promotion correspondante à cette année de sortie.');
9b0fa329 425 }
426 elseif ($promo_sortie == $promo + 3) {
08cce2ff 427 XDB::execute(
9b0fa329 428 "UPDATE auth_user_md5 set promo_sortie={?}
cab08090 429 WHERE user_id={?}", $promo_sortie, S::v('uid'));
a7de4ef7 430 $page->trig('Ton statut "orange" a été supprimé.');
9b0fa329 431 $page->assign('promo_sortie_old', $promo_sortie);
432 }
433 else {
434 $page->assign('promo_sortie', $promo_sortie);
435
436 if (Env::has('submit')) {
cab08090 437 $myorange = new OrangeReq(S::v('uid'),
9b0fa329 438 $promo_sortie);
439 $myorange->submit();
440 $page->assign('myorange', $myorange);
441 }
442 }
9b0fa329 443 }
444
2f678da1 445 function handler_referent(&$page, $x = null)
28e16d4d 446 {
28e16d4d 447 require_once 'user.func.inc.php';
448
449 if (is_null($x)) {
450 return PL_NOT_FOUND;
451 }
452
8b1f8e12 453 $page->changeTpl('profile/fiche_referent.tpl', SIMPLE);
28e16d4d 454
08cce2ff 455 $res = XDB::query(
28e16d4d 456 "SELECT prenom, nom, user_id, promo, cv, a.alias AS bestalias
457 FROM auth_user_md5 AS u
2f678da1 458 INNER JOIN aliases AS a ON (u.user_id=a.id
459 AND FIND_IN_SET('bestalias', a.flags))
28e16d4d 460 INNER JOIN aliases AS a1 ON (u.user_id=a1.id
461 AND a1.alias = {?}
462 AND a1.type!='homonyme')", $x);
463
464 if ($res->numRows() != 1) {
465 return PL_NOT_FOUND;
466 }
467
468 list($prenom, $nom, $user_id, $promo, $cv, $bestalias) = $res->fetchOneRow();
469
470 $page->assign('prenom', $prenom);
471 $page->assign('nom', $nom);
472 $page->assign('promo', $promo);
473 $page->assign('cv', $cv);
474 $page->assign('bestalias', $bestalias);
475 $page->assign('adr_pro', get_user_details_pro($user_id));
476
477 ///// recuperations infos referent
478
479 //expertise
08cce2ff 480 $res = XDB::query("SELECT expertise FROM mentor WHERE uid = {?}", $user_id);
28e16d4d 481 $page->assign('expertise', $res->fetchOneCell());
482
483 //secteurs
484 $secteurs = $ss_secteurs = Array();
08cce2ff 485 $res = XDB::iterRow(
28e16d4d 486 "SELECT s.label, ss.label
487 FROM mentor_secteurs AS m
488 LEFT JOIN emploi_secteur AS s ON(m.secteur = s.id)
489 LEFT JOIN emploi_ss_secteur AS ss ON(m.secteur = ss.secteur AND m.ss_secteur = ss.id)
490 WHERE uid = {?}", $user_id);
491 while (list($sec, $ssec) = $res->next()) {
492 $secteurs[] = $sec;
493 $ss_secteurs[] = $ssec;
494 }
495 $page->assign_by_ref('secteurs', $secteurs);
496 $page->assign_by_ref('ss_secteurs', $ss_secteurs);
497
498 //pays
08cce2ff 499 $res = XDB::query(
28e16d4d 500 "SELECT gp.pays
501 FROM mentor_pays AS m
502 LEFT JOIN geoloc_pays AS gp ON(m.pid = gp.a2)
503 WHERE uid = {?}", $user_id);
504 $page->assign('pays', $res->fetchColumn());
505
c99ef281 506 $page->addJsLink('close_on_esc.js');
28e16d4d 507 }
508
2f678da1 509 function handler_ref_search(&$page)
510 {
8b1f8e12 511 $page->changeTpl('profile/referent.tpl');
2f678da1 512
513 $page->assign('xorg_title', 'Polytechnique.org - Conseil Pro');
514
5e2307dc 515 $secteur_sel = Post::v('secteur');
516 $ss_secteur_sel = Post::v('ss_secteur');
517 $pays_sel = Post::v('pays', '00');
518 $expertise_champ = Post::v('expertise');
2f678da1 519
520 $page->assign('pays_sel', $pays_sel);
521 $page->assign('expertise_champ', $expertise_champ);
522 $page->assign('secteur_sel', $secteur_sel);
523 $page->assign('ss_secteur_sel', $ss_secteur_sel);
524
525 //recuperation des noms de secteurs
08cce2ff 526 $res = XDB::iterRow("SELECT id, label FROM emploi_secteur");
2f678da1 527 $secteurs[''] = '';
528 while (list($tmp_id, $tmp_label) = $res->next()) {
529 $secteurs[$tmp_id] = $tmp_label;
530 }
531 $page->assign_by_ref('secteurs', $secteurs);
532
533 //on recupere les sous-secteurs si necessaire
534 $ss_secteurs[''] = '';
535 if (!empty($secteur_sel)) {
08cce2ff 536 $res = XDB::iterRow("SELECT id, label FROM emploi_ss_secteur
2f678da1 537 WHERE secteur = {?}", $secteur_sel);
538 while (list($tmp_id, $tmp_label) = $res->next()) {
539 $ss_secteurs[$tmp_id] = $tmp_label;
540 }
541 }
542 $page->assign_by_ref('ss_secteurs', $ss_secteurs);
543
544 //recuperation des noms de pays
08cce2ff 545 $res = XDB::iterRow("SELECT a2, pays FROM geoloc_pays
2f678da1 546 WHERE pays <> '' ORDER BY pays");
547 $pays['00'] = '';
548 while (list($tmp_id, $tmp_label) = $res->next()) {
549 $pays[$tmp_id] = $tmp_label;
550 }
551 $page->assign_by_ref('pays', $pays);
552
553 // nb de mentors
08cce2ff 554 $res = XDB::query("SELECT count(*) FROM mentor");
2f678da1 555 $page->assign('mentors_number', $res->fetchOneCell());
556
557 if (!Env::has('Chercher')) {
fd8f77de 558 return;
2f678da1 559 }
560
561 // On vient d'un formulaire
562 $where = array();
563
564 if ($pays_sel != '00') {
565 $where[] = "mp.pid = '".addslashes($pays_sel)."'";
566 }
567 if ($secteur_sel) {
568 $where[] = "ms.secteur = '".addslashes($secteur_sel)."'";
569 if ($ss_secteur_sel) {
570 $where[] = "ms.ss_secteur = '".addslashes($ss_secteur_sel)."'";
571 }
572 }
573 if ($expertise_champ) {
574 $where[] = "MATCH(m.expertise) AGAINST('".addslashes($expertise_champ)."')";
575 }
576
577 if ($where) {
578 $where = join(' AND ', $where);
579
580 $sql = "SELECT m.uid, a.prenom, a.nom, a.promo,
581 l.alias AS bestalias, m.expertise, mp.pid,
582 ms.secteur, ms.ss_secteur
583 FROM mentor AS m
584 LEFT JOIN auth_user_md5 AS a ON(m.uid = a.user_id)
585 INNER JOIN aliases AS l ON (a.user_id=l.id AND
586 FIND_IN_SET('bestalias', l.flags))
587 LEFT JOIN mentor_pays AS mp ON(m.uid = mp.uid)
588 LEFT JOIN mentor_secteurs AS ms ON(m.uid = ms.uid)
589 WHERE $where
590 GROUP BY uid
591 ORDER BY RAND({?})";
cab08090 592 $res = XDB::iterator($sql, S::v('uid'));
2f678da1 593
594 if ($res->total() == 0) {
595 $page->assign('recherche_trop_large', true);
fd8f77de 596 return;
2f678da1 597 }
598
599 $nb_max_res_total = 100;
600 $nb_max_res_ppage = 10;
601
5e2307dc 602 $curpage = Env::i('curpage', 1);
2f678da1 603 $personnes = array();
604 $i = 0;
605
606 while (($pers = $res->next()) && count($personnes) < $nb_max_res_total) {
607 $the_page = intval($i / $nb_max_res_ppage) + 1;
608 if ($the_page == $curpage) {
609 $personnes[] = $pers;
610 }
611 $i ++;
612 }
613
614 $page->assign('personnes', $personnes);
615 $page->assign('curpage', $curpage);
616 $page->assign('nb_pages_total',
617 intval($res->total() / $nb_max_res_ppage) + 1);
618 }
2f678da1 619 }
620
926f16d7 621 function handler_p_usage(&$page)
622 {
8b1f8e12 623 $page->changeTpl('profile/nomusage.tpl');
926f16d7 624
625 require_once 'validations.inc.php';
626 require_once 'xorg.misc.inc.php';
627
08cce2ff 628 $res = XDB::query(
2f678da1 629 "SELECT u.nom, u.nom_usage, u.flags, e.alias
926f16d7 630 FROM auth_user_md5 AS u
2f678da1 631 LEFT JOIN aliases AS e ON(u.user_id = e.id
632 AND FIND_IN_SET('usage', e.flags))
cab08090 633 WHERE user_id={?}", S::v('uid'));
926f16d7 634
2f678da1 635 list($nom, $usage_old, $flags, $alias_old) = $res->fetchOneRow();
926f16d7 636 $flags = new flagset($flags);
637 $page->assign('usage_old', $usage_old);
638 $page->assign('alias_old', $alias_old);
639
5e2307dc 640 $nom_usage = replace_accent(trim(Env::v('nom_usage')));
926f16d7 641 $nom_usage = strtoupper($nom_usage);
642 $page->assign('usage_req', $nom_usage);
643
644 if (Env::has('submit') && ($nom_usage != $usage_old)) {
645 // on vient de recevoir une requete, differente de l'ancien nom d'usage
646 if ($nom_usage == $nom) {
647 $page->assign('same', true);
a7de4ef7 648 } else { // le nom de mariage est distinct du nom à l'X
926f16d7 649 // on calcule l'alias pour l'afficher
5e2307dc 650 $reason = Env::v('reason');
926f16d7 651 if ($reason == 'other') {
5e2307dc 652 $reason = Env::v('other_reason');
926f16d7 653 }
cab08090 654 $myusage = new UsageReq(S::v('uid'), $nom_usage, $reason);
926f16d7 655 $myusage->submit();
656 $page->assign('myusage', $myusage);
657 }
658 }
926f16d7 659 }
660
7d8b17cb 661 function handler_trombi(&$page, $promo = null)
662 {
8b1f8e12 663 $page->changeTpl('profile/trombipromo.tpl');
2f678da1 664 $page->assign('xorg_title', 'Polytechnique.org - Trombi Promo');
7d8b17cb 665
666 if (is_null($promo)) {
fd8f77de 667 return;
7d8b17cb 668 }
669
670 $this->promo = $promo = intval($promo);
671
9fe6c39d 672 if ($promo >= 1900 && ($promo < intval(date('Y')) || ($promo == intval(date('Y')) && intval(date('m')) >= 9))
cab08090 673 || ($promo == -1 && S::has_perms()))
7d8b17cb 674 {
675 $trombi = new Trombi(array($this, '_trombi_getlist'));
676 $trombi->hidePromo();
677 $trombi->setAdmin();
678 $page->assign_by_ref('trombi', $trombi);
679 } else {
680 $page->trig('Promotion incorrecte (saisir au format YYYY). Recommence.');
681 }
7d8b17cb 682 }
e49018a7 683
a1d79217 684 function handler_xnet(&$page)
685 {
8b1f8e12 686 $page->changeTpl('profile/groupesx.tpl');
a1d79217 687 $page->assign('xorg_title', 'Polytechnique.org - Promo, Groupes X, Binets');
688
689 $req = XDB::query('
46e1d3ba 690 SELECT m.asso_id, a.nom, diminutif, a.logo IS NOT NULL AS has_logo,
691 COUNT(e.eid) AS events, mail_domain AS lists
692 FROM groupex.membres AS m
693 INNER JOIN groupex.asso AS a ON(m.asso_id = a.id)
694 LEFT JOIN groupex.evenements AS e ON(e.asso_id = m.asso_id AND e.archive = 0)
695 WHERE uid = {?} GROUP BY m.asso_id ORDER BY a.nom', S::i('uid'));
a1d79217 696 $page->assign('assos', $req->fetchAllAssoc());
697 }
698
e49018a7 699 function handler_vcard(&$page, $x = null)
700 {
701 if (is_null($x)) {
702 return PL_NOT_FOUND;
703 }
704
705 global $globals;
706
707 if (substr($x, -4) == '.vcf') {
708 $x = substr($x, 0, strlen($x) - 4);
709 }
710
5e193297 711 require_once('vcard.inc.php');
712 $vcard = new VCard($x);
713 $vcard->do_page($page);
e49018a7 714 }
92423144 715
716 function handler_admin_trombino(&$page, $uid = null, $action = null) {
8b1f8e12 717 $page->changeTpl('profile/admin_trombino.tpl');
92423144 718 $page->assign('xorg_title','Polytechnique.org - Administration - Trombino');
719 $page->assign('uid', $uid);
720
721 $q = XDB::query(
722 "SELECT a.alias,promo
723 FROM auth_user_md5 AS u
724 INNER JOIN aliases AS a ON ( u.user_id = a.id AND type='a_vie' )
725 WHERE user_id = {?}", $uid);
726 list($forlife, $promo) = $q->fetchOneRow();
727
728 switch ($action) {
729
730 case "original":
731 header("Content-type: image/jpeg");
732 readfile("/home/web/trombino/photos".$promo."/".$forlife.".jpg");
733 exit;
734 break;
735
736 case "new":
737 $data = file_get_contents($_FILES['userfile']['tmp_name']);
738 list($x, $y) = getimagesize($_FILES['userfile']['tmp_name']);
739 $mimetype = substr($_FILES['userfile']['type'], 6);
740 unlink($_FILES['userfile']['tmp_name']);
741 XDB::execute(
742 "REPLACE INTO photo SET uid={?}, attachmime = {?}, attach={?}, x={?}, y={?}",
743 $uid, $mimetype, $data, $x, $y);
744 break;
745
746 case "delete":
747 XDB::execute('DELETE FROM photo WHERE uid = {?}', $uid);
748 break;
749 }
750
751 $page->assign('forlife', $forlife);
752 }
753 function handler_admin_binets(&$page, $action = 'list', $id = null) {
92423144 754 $page->assign('xorg_title','Polytechnique.org - Administration - Binets');
755 $page->assign('title', 'Gestion des binets');
756 $table_editor = new PLTableEditor('admin/binets', 'binets_def', 'id');
757 $table_editor->add_join_table('binets_ins','binet_id',true);
a7de4ef7 758 $table_editor->describe('text','intitulé',true);
92423144 759 $table_editor->apply($page, $action, $id);
760 }
761 function handler_admin_formations(&$page, $action = 'list', $id = null) {
92423144 762 $page->assign('xorg_title','Polytechnique.org - Administration - Formations');
763 $page->assign('title', 'Gestion des formations');
764 $table_editor = new PLTableEditor('admin/formations','applis_def','id');
765 $table_editor->add_join_table('applis_ins','aid',true);
a7de4ef7 766 $table_editor->describe('text','intitulé',true);
92423144 767 $table_editor->describe('url','site web',false);
768 $table_editor->apply($page, $action, $id);
769 }
770 function handler_admin_groupesx(&$page, $action = 'list', $id = null) {
92423144 771 $page->assign('xorg_title','Polytechnique.org - Administration - Groupes X');
772 $page->assign('title', 'Gestion des Groupes X');
773 $table_editor = new PLTableEditor('admin/groupes-x','groupesx_def','id');
774 $table_editor->add_join_table('groupesx_ins','gid',true);
a7de4ef7 775 $table_editor->describe('text','intitulé',true);
92423144 776 $table_editor->describe('url','site web',false);
777 $table_editor->apply($page, $action, $id);
778 }
779 function handler_admin_medals(&$page, $action = 'list', $id = null) {
92423144 780 $page->assign('xorg_title','Polytechnique.org - Administration - Distinctions');
781 $page->assign('title', 'Gestion des Distinctions');
782 $table_editor = new PLTableEditor('admin/medals','profile_medals','id');
a7de4ef7 783 $table_editor->describe('text', 'intitulé', true);
92423144 784 $table_editor->describe('img', 'nom de l\'image', false);
d02b8359 785 $table_editor->describe('flags', 'valider', true);
92423144 786 $table_editor->apply($page, $action, $id);
787 if ($id && $action == 'edit') {
8b1f8e12 788 $page->changeTpl('profile/admin_decos.tpl');
92423144 789
790 $mid = $id;
791
792 if (Post::v('act') == 'del') {
793 XDB::execute('DELETE FROM profile_medals_grades WHERE mid={?} AND gid={?}', $mid, Post::i('gid'));
794 } elseif (Post::v('act') == 'new') {
795 XDB::execute('INSERT INTO profile_medals_grades (mid,gid) VALUES({?},{?})',
796 $mid, max(array_keys(Post::v('grades', array(0))))+1);
797 } else {
798 foreach (Post::v('grades', array()) as $gid=>$text) {
799 XDB::execute('UPDATE profile_medals_grades SET pos={?}, text={?} WHERE gid={?}', $_POST['pos'][$gid], $text, $gid);
800 }
801 }
802 $res = XDB::iterator('SELECT gid, text, pos FROM profile_medals_grades WHERE mid={?} ORDER BY pos', $mid);
803 $page->assign('grades', $res);
804 }
805 }
7d8b17cb 806}
807
a7de4ef7 808// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
7d8b17cb 809?>