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