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