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