Merge commit 'origin/master' into account
[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/edu' => $this->make_hook('ajax_edu', AUTH_COOKIE, 'user', NO_AUTH),
38 'profile/ajax/medal' => $this->make_hook('ajax_medal', AUTH_COOKIE, 'user', NO_AUTH),
39 'profile/networking' => $this->make_hook('networking', AUTH_PUBLIC),
40 'profile/ajax/job' => $this->make_hook('ajax_job', AUTH_COOKIE, 'user', NO_AUTH),
41 'profile/ajax/sector' => $this->make_hook('ajax_sector', AUTH_COOKIE, 'user', NO_AUTH),
42 'profile/ajax/sub_sector' => $this->make_hook('ajax_sub_sector', AUTH_COOKIE, 'user', NO_AUTH),
43 'profile/ajax/alternates' => $this->make_hook('ajax_alternates', AUTH_COOKIE, 'user', NO_AUTH),
44 'profile/ajax/skill' => $this->make_hook('ajax_skill', AUTH_COOKIE, 'user', NO_AUTH),
45 'profile/ajax/searchname' => $this->make_hook('ajax_searchname', AUTH_COOKIE, 'user', NO_AUTH),
46 'profile/ajax/buildnames' => $this->make_hook('ajax_buildnames', AUTH_COOKIE, 'user', NO_AUTH),
47 'javascript/education.js' => $this->make_hook('education_js', AUTH_COOKIE),
48 'javascript/grades.js' => $this->make_hook('grades_js', AUTH_COOKIE),
49 'profile/medal' => $this->make_hook('medal', AUTH_PUBLIC),
50 'profile/name_info' => $this->make_hook('name_info', AUTH_PUBLIC),
51 'profile/orange' => $this->make_hook('p_orange', AUTH_MDP),
52
53 'referent' => $this->make_hook('referent', AUTH_COOKIE),
54 'emploi' => $this->make_hook('ref_search', AUTH_COOKIE),
55 'referent/search' => $this->make_hook('ref_search', AUTH_COOKIE),
56 'referent/ssect' => $this->make_hook('ref_sect', AUTH_COOKIE, 'user', NO_AUTH),
57 'referent/country' => $this->make_hook('ref_country', AUTH_COOKIE, 'user', NO_AUTH),
58
59 'groupes-x' => $this->make_hook('xnet', AUTH_COOKIE),
60 'groupes-x/logo' => $this->make_hook('xnetlogo', AUTH_PUBLIC),
61
62 'vcard' => $this->make_hook('vcard', AUTH_COOKIE, 'user', NO_HTTPS),
63 'admin/binets' => $this->make_hook('admin_binets', AUTH_MDP, 'admin'),
64 'admin/medals' => $this->make_hook('admin_medals', AUTH_MDP, 'admin'),
65 'admin/education' => $this->make_hook('admin_education', AUTH_MDP, 'admin'),
66 'admin/education_field' => $this->make_hook('admin_education_field', AUTH_MDP, 'admin'),
67 'admin/education_degree' => $this->make_hook('admin_education_degree', AUTH_MDP, 'admin'),
68 'admin/education_degree_set' => $this->make_hook('admin_education_degree_set', AUTH_MDP, 'admin'),
69 'admin/sections' => $this->make_hook('admin_sections', AUTH_MDP, 'admin'),
70 'admin/networking' => $this->make_hook('admin_networking', AUTH_MDP, 'admin'),
71 'admin/trombino' => $this->make_hook('admin_trombino', AUTH_MDP, 'admin'),
72 'admin/sectors' => $this->make_hook('admin_sectors', AUTH_MDP, 'admin'),
73 'admin/corps_enum' => $this->make_hook('admin_corps_enum', AUTH_MDP, 'admin'),
74 'admin/corps_rank' => $this->make_hook('admin_corps_rank', AUTH_MDP, 'admin'),
75 'admin/names' => $this->make_hook('admin_names', AUTH_MDP, 'admin'),
76 );
77 }
78
79 /* XXX COMPAT */
80 function handler_fiche(&$page)
81 {
82 return $this->handler_profile($page, Env::v('user'));
83 }
84
85 function handler_photo(&$page, $x = null, $req = null)
86 {
87 if (!$x || !($user = User::getSilent($x))) {
88 return PL_NOT_FOUND;
89 }
90
91 // Retrieve the photo and its mime type.
92 if ($req && S::logged()) {
93 include 'validations.inc.php';
94 $myphoto = PhotoReq::get_request($user->id());
95 $photo = PlImage::fromData($myphoto->data, $myphoto->mimetype);
96 } else {
97 $photo = $user->profile()->getPhoto(true);
98 }
99
100 // Display the photo, or a default one when not available.
101 $photo->send();
102 }
103
104 function handler_medal(&$page, $mid)
105 {
106 $thumb = ($mid == 'thumb');
107 $mid = $thumb ? @func_get_arg(2) : $mid;
108
109 $res = XDB::query("SELECT img
110 FROM profile_medals
111 WHERE id = {?}",
112 $mid);
113 $img = $thumb ?
114 dirname(__FILE__).'/../htdocs/images/medals/thumb/' . $res->fetchOneCell() :
115 dirname(__FILE__).'/../htdocs/images/medals/' . $res->fetchOneCell();
116 pl_cached_content_headers(mime_content_type($img));
117 echo file_get_contents($img);
118 exit;
119 }
120
121 function handler_name_info(&$page)
122 {
123 header('Content-Type: text/html; charset=utf-8');
124 $page->changeTpl('profile/name_info.tpl', SIMPLE);
125 $res = XDB::iterator("SELECT name, explanations,
126 FIND_IN_SET('public', flags) AS public,
127 FIND_IN_SET('has_particle', flags) AS has_particle
128 FROM profile_name_enum
129 WHERE NOT FIND_IN_SET('not_displayed', flags)
130 ORDER BY NOT FIND_IN_SET('public', flags)");
131 $page->assign('types', $res);
132 }
133
134 function handler_networking(&$page, $mid)
135 {
136 $res = XDB::query("SELECT icon
137 FROM profile_networking_enum
138 WHERE network_type = {?}",
139 $mid);
140 $img = dirname(__FILE__) . '/../htdocs/images/networking/' . $res->fetchOneCell();
141 $type = mime_content_type($img);
142 header("Content-Type: $type");
143 echo file_get_contents($img);
144 exit;
145 }
146
147 function handler_photo_change(&$page)
148 {
149 global $globals;
150 $page->changeTpl('profile/trombino.tpl');
151
152 require_once('validations.inc.php');
153
154 $trombi_x = '/home/web/trombino/photos' . S::v('promo') . '/' . S::user()->login() . '.jpg';
155 if (Env::has('upload')) {
156 S::assert_xsrf_token();
157
158 $upload = new PlUpload(S::user()->login(), 'photo');
159 if (!$upload->upload($_FILES['userfile']) && !$upload->download(Env::v('photo'))) {
160 $page->trigError('Une erreur est survenue lors du téléchargement du fichier');
161 } else {
162 $myphoto = new PhotoReq(S::user(), $upload);
163 if ($myphoto->isValid()) {
164 $myphoto->submit();
165 }
166 }
167 } elseif (Env::has('trombi')) {
168 S::assert_xsrf_token();
169
170 $upload = new PlUpload(S::user()->login(), 'photo');
171 if ($upload->copyFrom($trombi_x)) {
172 $myphoto = new PhotoReq(S::user(), $upload);
173 if ($myphoto->isValid()) {
174 $myphoto->commit();
175 $myphoto->clean();
176 }
177 }
178 } elseif (Env::v('suppr')) {
179 S::assert_xsrf_token();
180
181 XDB::execute('DELETE FROM photo
182 WHERE uid = {?}',
183 S::v('uid'));
184 XDB::execute('DELETE FROM requests
185 WHERE user_id = {?} AND type="photo"',
186 S::v('uid'));
187 $globals->updateNbValid();
188 $page->trigSuccess("Ta photo a bien été supprimée. Elle ne sera plus visible sur le site dans au plus une heure.");
189 } elseif (Env::v('cancel')) {
190 S::assert_xsrf_token();
191
192 $sql = XDB::query('DELETE FROM requests
193 WHERE user_id={?} AND type="photo"',
194 S::v('uid'));
195 $globals->updateNbValid();
196 }
197
198 $sql = XDB::query('SELECT COUNT(*)
199 FROM requests
200 WHERE user_id={?} AND type="photo"',
201 S::v('uid'));
202 $page->assign('submited', $sql->fetchOneCell());
203 $page->assign('has_trombi_x', file_exists($trombi_x));
204 }
205
206 function handler_profile(&$page, $x = null)
207 {
208 // TODO/note for upcoming developers:
209 // We currently maintain both $user and $login; $user is the old way of
210 // obtaining information, and eventually everything will be loaded
211 // through $login. That is the reason why in the template $user is named
212 // $x, and $login $user (sorry for the confusion).
213
214 // Determines which user to display the profile of, and retrieves basic
215 // information on this user.
216 if (is_null($x)) {
217 return PL_NOT_FOUND;
218 }
219
220 $login = (!is_numeric($x) || S::has_perms()) ? Profile::get($x) : null;
221 if (!$login) {
222 if (S::logged()) {
223 $page->trigError($x . ' inconnu dans l\'annuaire');
224 }
225 return PL_NOT_FOUND;
226 }
227
228 // Now that we know this is the profile of an existing user, we can
229 // switch to the appropriate template.
230 $page->changeTpl('profile/profile.tpl', SIMPLE);
231 require_once 'user.func.inc.php';
232
233 // Determines the access level at which the profile will be displayed.
234 if (!S::logged() || Env::v('view') == 'public') {
235 $view = 'public';
236 } else if (S::logged() && Env::v('view') == 'ax') {
237 $view = 'ax';
238 } else {
239 $view = 'private';
240 }
241
242 // Determines is the user is registered, and fetches the user infos in
243 // the appropriate way.
244 $owner = $login->owner();
245 if (!$owner || $owner->state != 'pending') {
246 $new = Env::v('modif') == 'new';
247 // XXX: Deprecated...
248 $user = get_user_details($login->hrid(), S::i('uid'), $view);
249 } else {
250 $new = false;
251 $user = array();
252 if (S::logged()) {
253 pl_redirect('marketing/public/' . $owner->login());
254 }
255 }
256
257 // Profile view are logged.
258 if (S::logged()) {
259 S::logger()->log('view_profile', $login->hrid());
260 }
261
262 // Sets the title of the html page.
263 $page->setTitle($login->fullName());
264
265 // Prepares the display of the user's mugshot.
266 $photo = 'photo/' . $login->hrid() . ($new ? '/req' : '');
267 if (!isset($user['photo_pub']) || !has_user_right($user['photo_pub'], $view)) {
268 $photo = "";
269 }
270 $page->assign('photo_url', $photo);
271
272 if (!isset($user['y']) and !isset($user['x'])) {
273 list($user['x'], $user['y']) = getimagesize("images/none.png");
274 }
275 if (!isset($user['y']) or $user['y'] < 1) $user['y']=1;
276 if (!isset($user['x']) or $user['x'] < 1) $user['x']=1;
277 if ($user['x'] > 240) {
278 $user['y'] = (integer)($user['y']*240/$user['x']);
279 $user['x'] = 240;
280 }
281 if ($user['y'] > 300) {
282 $user['x'] = (integer)($user['x']*300/$user['y']);
283 $user['y'] = 300;
284 }
285 if ($user['x'] < 160) {
286 $user['y'] = (integer)($user['y']*160/$user['x']);
287 $user['x'] = 160;
288 }
289
290 // Determines and displays the virtual alias.
291 global $globals;
292 $owner = $login->owner();
293 if ($owner) {
294 $page->assign('virtualalias', $owner->emailAlias());
295 }
296
297 // Adds miscellaneous properties to the display.
298 // Adds the global user property array to the display.
299 $page->assign_by_ref('x', $user);
300 $page->assign_by_ref('user', $owner);
301 $page->assign('logged', has_user_right('private', $view));
302 $page->assign('view', $view);
303
304 $page->addJsLink('close_on_esc.js');
305 if (isset($user['date'])) {
306 header('Last-Modified: ' . date('r', strtotime($user['date'])));
307 }
308 }
309
310 function handler_ax(&$page, $user = null)
311 {
312 $user = Profile::get($user);
313 if (!$user) {
314 return PL_NOT_FOUND;
315 }
316 if (!$user->ax_id) {
317 $page->kill("Le matricule AX de {$user->hrid()} est inconnu");
318 }
319 http_redirect("http://www.polytechniciens.com/?page=AX_FICHE_ANCIEN&ancc_id=" . $user->ax_id);
320 }
321
322 function handler_p_edit(&$page, $user = null, $opened_tab = null, $mode = null, $success = null)
323 {
324 global $globals;
325
326 if (is_null($user)) {
327 $user = S::user();
328 if (!$user->hasProfile()) {
329 return PL_NOT_FOUND;
330 } else {
331 pl_redirect('profile/edit/' . $user->profile()->hrid());
332 }
333 } else {
334 $user = Profile::get($user);
335 if (!$user) {
336 return PL_NOT_FOUND;
337 } else if (!S::user()->canEdit($user) && Platal::notAllowed()) {
338 return PL_FORBIDDEN;
339 }
340 }
341
342 // Build the page
343 $page->addJsLink('ajax.js');
344 $page->addJsLink('education.js'); /* dynamic content */
345 $page->addJsLink('grades.js'); /* dynamic content */
346 $page->addJsLink('profile.js');
347 $page->addJsLink('jquery.autocomplete.js');
348 $wiz = new PlWizard('Profil', PlPage::getCoreTpl('plwizard.tpl'), true, true, false);
349 $wiz->addUserData('profile', $user);
350 $wiz->addUserData('owner', $user->owner());
351 $this->load('page.inc.php');
352 $wiz->addPage('ProfileGeneral', 'Général', 'general');
353 $wiz->addPage('ProfileAddresses', 'Adresses personnelles', 'adresses');
354 $wiz->addPage('ProfileGroups', 'Groupes X - Binets', 'poly');
355 $wiz->addPage('ProfileDecos', 'Décorations - Medailles', 'deco');
356 $wiz->addPage('ProfileJobs', 'Informations professionnelles', 'emploi');
357 $wiz->addPage('ProfileSkills', 'Compétences diverses', 'skill');
358 $wiz->addPage('ProfileMentor', 'Mentoring', 'mentor');
359 $wiz->apply($page, 'profile/edit/' . $user->hrid(), $opened_tab, $mode);
360
361 if (!$user->birthdate) {
362 $page->trigWarning("Ta date de naissance n'est pas renseignée, ce qui t'empêcheras de réaliser"
363 . " la procédure de récupération de mot de passe si un jour tu le perdais.");
364 }
365
366 $page->setTitle('Mon Profil');
367 if (isset($success) && $success) {
368 $page->trigSuccess('Ton profil a bien été mis à jour.');
369 }
370 }
371
372 function handler_education_js(&$page)
373 {
374 pl_cached_content_headers("text/javascript", "utf-8");
375 $page->changeTpl('profile/education.js.tpl', NO_SKIN);
376 require_once 'education.func.inc.php';
377 }
378
379 function handler_grades_js(&$page)
380 {
381 pl_cached_content_headers("text/javascript", "utf-8");
382 $page->changeTpl('profile/grades.js.tpl', NO_SKIN);
383 $res = XDB::iterator("SELECT *
384 FROM profile_medals_grades
385 ORDER BY mid, pos");
386 $grades = array();
387 while ($tmp = $res->next()) {
388 $grades[$tmp['mid']][] = $tmp;
389 }
390 $page->assign('grades', $grades);
391
392 $res = XDB::iterator("SELECT *, FIND_IN_SET('validation', flags) AS validate
393 FROM profile_medals
394 ORDER BY type, text");
395 $mlist = array();
396 while ($tmp = $res->next()) {
397 $mlist[$tmp['type']][] = $tmp;
398 }
399 $page->assign('medal_list', $mlist);
400 }
401
402 function handler_ajax_address(&$page, $id)
403 {
404 pl_content_headers("text/html");
405 $page->changeTpl('profile/adresses.address.tpl', NO_SKIN);
406 $page->assign('i', $id);
407 $page->assign('address', array());
408 }
409
410 function handler_ajax_tel(&$page, $prefid, $prefname, $telid)
411 {
412 pl_content_headers("text/html");
413 $page->changeTpl('profile/phone.tpl', NO_SKIN);
414 $page->assign('prefid', $prefid);
415 $page->assign('prefname', $prefname);
416 $page->assign('telid', $telid);
417 $page->assign('tel', array());
418 }
419
420 function handler_ajax_edu(&$page, $eduid, $class)
421 {
422 header('Content-Type: text/html; charset=utf-8');
423 $page->changeTpl('profile/general.edu.tpl', NO_SKIN);
424 $res = XDB::iterator("SELECT id, field
425 FROM profile_education_field_enum
426 ORDER BY field");
427 $page->assign('edu_fields', $res->fetchAllAssoc());
428 $page->assign('eduid', $eduid);
429 $page->assign('class', $class);
430 require_once "education.func.inc.php";
431 }
432
433 function handler_ajax_medal(&$page, $id)
434 {
435 pl_content_headers("text/html");
436 $page->changeTpl('profile/deco.medal.tpl', NO_SKIN);
437 $page->assign('id', $id);
438 $page->assign('medal', array('valid' => 0, 'grade' => 0));
439 }
440
441 function handler_ajax_job(&$page, $id)
442 {
443 pl_content_headers("text/html");
444 $page->changeTpl('profile/jobs.job.tpl', NO_SKIN);
445 $page->assign('i', $id);
446 $page->assign('job', array());
447 $page->assign('new', true);
448 $res = XDB::query("SELECT id, name AS label
449 FROM profile_job_sector_enum");
450 $page->assign('sectors', $res->fetchAllAssoc());
451 require_once "emails.combobox.inc.php";
452 fill_email_combobox($page);
453 }
454
455 function handler_ajax_sector(&$page, $id, $jobid, $jobpref, $sect, $ssect = -1)
456 {
457 pl_content_headers("text/html");
458 $res = XDB::iterator("SELECT id, name, FIND_IN_SET('optgroup', flags) AS optgroup
459 FROM profile_job_subsector_enum
460 WHERE sectorid = {?}", $sect);
461 $page->changeTpl('profile/jobs.sector.tpl', NO_SKIN);
462 $page->assign('id', $id);
463 $page->assign('subSectors', $res);
464 $page->assign('sel', $ssect);
465 if ($id != -1) {
466 $page->assign('change', 1);
467 $page->assign('jobid', $jobid);
468 $page->assign('jobpref', $jobpref);
469 }
470 }
471
472 function handler_ajax_sub_sector(&$page, $id, $ssect, $sssect = -1)
473 {
474 header('Content-Type: text/html; charset=utf-8');
475 $res = XDB::iterator("SELECT id, name
476 FROM profile_job_subsubsector_enum
477 WHERE subsectorid = {?}", $ssect);
478 $page->changeTpl('profile/jobs.sub_sector.tpl', NO_SKIN);
479 $page->assign('id', $id);
480 $page->assign('subSubSectors', $res);
481 $page->assign('sel', $sssect);
482 }
483
484 function handler_ajax_alternates(&$page, $id, $sssect)
485 {
486 header('Content-Type: text/html; charset=utf-8');
487 $res = XDB::iterator('SELECT name
488 FROM profile_job_alternates
489 WHERE subsubsectorid = {?}
490 ORDER BY id',
491 $sssect);
492 $page->changeTpl('profile/jobs.alternates.tpl', NO_SKIN);
493 $alternate = $res->next();
494 $alternates = $alternate['name'];
495 while ($alternate = $res->next()) {
496 $alternates .= ', ' . $alternate['name'];
497 }
498 $page->assign('alternates', $alternates);
499 }
500
501 function handler_ajax_skill(&$page, $cat, $id)
502 {
503 pl_content_headers("text/html");
504 $page->changeTpl('profile/skill.skill.tpl', NO_SKIN);
505 $page->assign('cat', $cat);
506 $page->assign('id', $id);
507 if ($cat == 'competences') {
508 $page->assign('levels', array('initié' => 'initié',
509 'bonne connaissance' => 'bonne connaissance',
510 'expert' => 'expert'));
511 } else {
512 $page->assign('levels', array(1 => 'connaissance basique',
513 2 => 'maîtrise des bases',
514 3 => 'maîtrise limitée',
515 4 => 'maîtrise générale',
516 5 => 'bonne maîtrise',
517 6 => 'maîtrise complète'));
518 }
519 }
520
521 function handler_ajax_searchname(&$page, $id)
522 {
523 header('Content-Type: text/html; charset=utf-8');
524 $page->changeTpl('profile/general.searchname.tpl', NO_SKIN);
525 $res = XDB::query("SELECT id, name, FIND_IN_SET('public', flags) AS pub
526 FROM profile_name_enum
527 WHERE NOT FIND_IN_SET('not_displayed', flags)
528 AND NOT FIND_IN_SET('always_displayed', flags)");
529 $page->assign('sn_type_list', $res->fetchAllAssoc());
530 $page->assign('i', $id);
531 }
532
533 function handler_ajax_buildnames(&$page, $data)
534 {
535 header('Content-Type: text/html; charset=utf-8');
536 $page->changeTpl('profile/general.buildnames.tpl', NO_SKIN);
537 require_once 'name.func.inc.php';
538 $page->assign('names', build_javascript_names($data));
539 }
540
541 function handler_p_orange(&$page, $pid = null)
542 {
543 $page->changeTpl('profile/orange.tpl');
544
545 require_once 'validations.inc.php';
546 $profile = Profile::get($pid);
547 if (is_null($profile)) {
548 return PL_NOT_FOUND;
549 }
550 $page->assign('promo_sortie_old', $profile->grad_year);
551 $page->assign('promo', $profile->entry_year);
552 $page->assign('promo_display', $profile->promo());
553 $page->assign('sexe', $profile->isFemale());
554
555 if (!Env::has('promo_sortie')) {
556 return;
557 } else {
558 S::assert_xsrf_token();
559 }
560
561 $promo_sortie = Env::i('promo_sortie');
562 $promo = $profile->entry_year;
563 if ($promo_sortie < 1000 || $promo_sortie > 9999) {
564 $page->trigError('L\'année de sortie doit être un nombre de quatre chiffres.');
565 } elseif ($promo_sortie < $promo + 3) {
566 $page->trigError('Trop tôt !');
567 } elseif ($promo_sortie == $promo_sortie_old) {
568 $page->trigWarning('Tu appartiens déjà à la promotion correspondante à cette année de sortie.');
569 } elseif ($promo_sortie == $promo + 3) {
570 XDB::execute('UPDATE profile_education
571 SET grad_year = {?}
572 WHERE uid = {?} AND FIND_IN_SET(\'primary\', flags)',
573 $promo_sortie, $profile->id());
574 $page->trigSuccess('Ton statut "orange" a été supprimé.');
575 $page->assign('promo_sortie_old', $promo_sortie);
576 } else {
577 $page->assign('promo_sortie', $promo_sortie);
578
579 if (Env::has('submit')) {
580 $myorange = new OrangeReq(S::user(), $promo_sortie);
581 $myorange->submit();
582 $page->assign('myorange', $myorange);
583 }
584 }
585 }
586
587 function handler_referent(&$page, $user)
588 {
589 require_once 'user.func.inc.php';
590 $page->changeTpl('profile/fiche_referent.tpl', SIMPLE);
591
592 $user = Profile::get($user);
593 if (!$user) {
594 return PL_NOT_FOUND;
595 }
596
597 $page->assign_by_ref('user', $user);
598 $page->assign('cv', MiniWiki::WikiToHTML($user->cv, true));
599 //TODO: waiting for job refactoring to be done
600 //$page->assign('adr_pro', get_user_details_pro($user->id()));
601
602 ///// recuperations infos referent
603
604 //expertise
605 $res = XDB::query('SELECT expertise
606 FROM profile_mentor
607 WHERE uid = {?}', $user->id());
608 $page->assign('expertise', $res->fetchOneCell());
609
610 // Sectors
611 $sectors = $subSectors = Array();
612 $res = XDB::iterRow(
613 "SELECT s.name AS label, ss.name AS label
614 FROM profile_mentor_sector AS m
615 LEFT JOIN profile_job_sector_enum AS s ON(m.sectorid = s.id)
616 LEFT JOIN profile_job_subsector_enum AS ss ON(m.sectorid = ss.sectorid AND m.subsectorid = ss.id)
617 WHERE uid = {?}", $user->id());
618 while (list($sector, $subSector) = $res->next()) {
619 $sectors[] = $sector;
620 $subSectors[] = $subSector;
621 }
622 $page->assign_by_ref('sectors', $sectors);
623 $page->assign_by_ref('subSectors', $subSectors);
624
625 // Countries.
626 $res = XDB::query(
627 "SELECT gc.countryFR
628 FROM profile_mentor_country AS m
629 LEFT JOIN geoloc_countries AS gc ON (m.country = gc.iso_3166_1_a2)
630 WHERE uid = {?}", $user->id());
631 $page->assign('pays', $res->fetchColumn());
632
633 $page->addJsLink('close_on_esc.js');
634 }
635
636 function handler_ref_search(&$page, $action = null, $subaction = null)
637 {
638 $wp = new PlWikiPage('Docs.Emploi');
639 $wp->buildCache();
640
641 $page->setTitle('Conseil Pro');
642
643 require_once "directory.enums.inc.php";
644
645 // Retrieval of sector names
646 $sectors = DirEnum::getOptionsArray(DirEnum::SECTORS);
647 $sectors[''] = '';
648 $page->assign_by_ref('sectors', $sectors);
649
650 // nb de mentors
651 $res = XDB::query("SELECT count(*) FROM profile_mentor");
652 $page->assign('mentors_number', $res->fetchOneCell());
653
654 // On vient d'un formulaire
655 require_once 'ufbuilder.inc.php';
656 $ufb = new UFB_MentorSearch();
657 if (!$ufb->isEmpty()) {
658 require_once 'userset.inc.php';
659 $ufc = $ufb->getUFC();
660 $set = new ProfileSet($ufc);
661 $set->addMod('mentor', 'Référents');
662 $set->apply('referent/search', $page, $action, $subaction);
663 if ($set->count() > 100) {
664 $page->assign('recherche_trop_large', true);
665 }
666 }
667
668 $page->changeTpl('profile/referent.tpl');
669 }
670
671 function handler_ref_sect(&$page, $sect)
672 {
673 pl_content_headers("text/html");
674 $page->changeTpl('include/field.select.tpl', NO_SKIN);
675 $page->assign('onchange', 'setSSectors()');
676 $page->assign('id', 'ssect_field');
677 $page->assign('name', 'subSector');
678 $it = XDB::iterator("SELECT id, name AS field
679 FROM profile_job_subsector_enum
680 WHERE sectorid = {?}", $sect);
681 $page->assign('list', $it);
682 }
683
684 function handler_ref_country(&$page, $sect, $ssect = '')
685 {
686 pl_content_headers("text/html");
687 $page->changeTpl('include/field.select.tpl', NO_SKIN);
688 $page->assign('name', 'pays_sel');
689 $where = ($ssect ? ' AND ms.subsectorid = {?}' : '');
690 $it = XDB::iterator("SELECT gc.iso_3166_1_a2 AS id, gc.countryFR AS field
691 FROM geoloc_countries AS gc
692 INNER JOIN profile_mentor_country AS mp ON (mp.country = gc.iso_3166_1_a2)
693 INNER JOIN profile_mentor_sector AS ms ON (ms.uid = mp.uid)
694 WHERE ms.sectorid = {?} " . $where . "
695 GROUP BY iso_3166_1_a2
696 ORDER BY countryFR", $sect, $ssect);
697 $page->assign('list', $it);
698 }
699
700 function handler_xnet(&$page)
701 {
702 $page->changeTpl('profile/groupesx.tpl');
703 $page->setTitle('Promo, Groupes X, Binets');
704
705 $req = XDB::query('
706 SELECT m.asso_id, a.nom, diminutif, a.logo IS NOT NULL AS has_logo,
707 COUNT(e.eid) AS events, mail_domain AS lists
708 FROM group_members AS m
709 INNER JOIN groups AS a ON(m.asso_id = a.id)
710 LEFT JOIN group_events AS e ON(e.asso_id = m.asso_id AND e.archive = 0)
711 WHERE uid = {?} GROUP BY m.asso_id ORDER BY a.nom', S::i('uid'));
712 $page->assign('assos', $req->fetchAllAssoc());
713 }
714
715 function handler_xnetlogo(&$page, $id)
716 {
717 if (is_null($id)) {
718 return PL_NOT_FOUND;
719 }
720
721 $res = XDB::query('SELECT logo, logo_mime
722 FROM groups
723 WHERE id = {?}', $id);
724 list($logo, $logo_mime) = $res->fetchOneRow();
725
726 if (!empty($logo)) {
727 pl_cached_dynamic_content_headers($logo_mime);
728 echo $logo;
729 } else {
730 pl_cached_dynamic_content_headers("image/jpeg");
731 readfile(dirname(__FILE__) . '/../htdocs/images/dflt_carre.jpg');
732 }
733
734 exit;
735 }
736
737 function handler_vcard(&$page, $x = null)
738 {
739 if (is_null($x)) {
740 return PL_NOT_FOUND;
741 }
742
743 global $globals;
744
745 if (substr($x, -4) == '.vcf') {
746 $x = substr($x, 0, strlen($x) - 4);
747 }
748
749 $vcard = new VCard();
750 $vcard->addUser($x);
751 $vcard->show();
752 }
753
754 function handler_admin_trombino(&$page, $login = null, $action = null) {
755 $page->changeTpl('profile/admin_trombino.tpl');
756 $page->setTitle('Administration - Trombino');
757
758 if (!$login || !($user = User::get($login))) {
759 return PL_NOT_FOUND;
760 } else {
761 $page->assign_by_ref('user', $user);
762 }
763
764 switch ($action) {
765 case "original":
766 pl_cached_content_headers("image/jpeg");
767 readfile("/home/web/trombino/photos" . $user->promo() . "/" . $user->login() . ".jpg");
768 exit;
769
770 case "new":
771 S::assert_xsrf_token();
772
773 $data = file_get_contents($_FILES['userfile']['tmp_name']);
774 list($x, $y) = getimagesize($_FILES['userfile']['tmp_name']);
775 $mimetype = substr($_FILES['userfile']['type'], 6);
776 unlink($_FILES['userfile']['tmp_name']);
777 XDB::execute(
778 "REPLACE INTO photo SET uid={?}, attachmime = {?}, attach={?}, x={?}, y={?}",
779 $user->id(), $mimetype, $data, $x, $y);
780 break;
781
782 case "delete":
783 S::assert_xsrf_token();
784
785 XDB::execute('DELETE FROM photo WHERE uid = {?}', $user->id());
786 break;
787 }
788 }
789 function handler_admin_names(&$page, $action = 'list', $id = null) {
790 $page->setTitle('Administration - Types de noms');
791 $page->assign('title', 'Gestion des types de noms');
792 $table_editor = new PLTableEditor('admin/names', 'profile_name_enum', 'id', true);
793 $table_editor->describe('name', 'Nom', true);
794 $table_editor->describe('explanations', 'Explications', true);
795 $table_editor->describe('type', 'Type', true);
796 $table_editor->describe('flags', 'Flags', true);
797 $table_editor->describe('score', 'Score', true);
798 $table_editor->apply($page, $action, $id);
799 }
800 function handler_admin_binets(&$page, $action = 'list', $id = null) {
801 $page->setTitle('Administration - Binets');
802 $page->assign('title', 'Gestion des binets');
803 $table_editor = new PLTableEditor('admin/binets', 'binets_def', 'id');
804 $table_editor->add_join_table('binets_ins','binet_id',true);
805 $table_editor->describe('text','intitulé',true);
806 $table_editor->apply($page, $action, $id);
807 }
808 function handler_admin_education(&$page, $action = 'list', $id = null) {
809 $page->setTitle('Administration - Formations');
810 $page->assign('title', 'Gestion des formations');
811 $table_editor = new PLTableEditor('admin/education', 'profile_education_enum', 'id');
812 $table_editor->add_join_table('profile_education', 'eduid', true);
813 $table_editor->add_join_table('profile_education_degree', 'eduid', true);
814 $table_editor->describe('name', 'intitulé', true);
815 $table_editor->describe('url', 'site web', false);
816 $table_editor->apply($page, $action, $id);
817 }
818 function handler_admin_education_field(&$page, $action = 'list', $id = null) {
819 $page->setTitle('Administration - Domaines de formation');
820 $page->assign('title', 'Gestion des domaines de formation');
821 $table_editor = new PLTableEditor('admin/education_field', 'profile_education_field_enum', 'id', true);
822 $table_editor->add_join_table('profile_education', 'fieldid', true);
823 $table_editor->describe('field', 'domaine', true);
824 $table_editor->apply($page, $action, $id);
825 }
826 function handler_admin_education_degree(&$page, $action = 'list', $id = null) {
827 $page->setTitle('Administration - Niveau de formation');
828 $page->assign('title', 'Gestion des niveau de formation');
829 $table_editor = new PLTableEditor('admin/education_degree', 'profile_education_degree_enum', 'id', true);
830 $table_editor->add_join_table('profile_education_degree', 'degreeid', true);
831 $table_editor->add_join_table('profile_education', 'degreeid', true);
832 $table_editor->describe('degree', 'niveau', true);
833 $table_editor->apply($page, $action, $id);
834 }
835 function handler_admin_education_degree_set(&$page, $action = 'list', $id = null) {
836 $page->setTitle('Administration - Correspondances formations - niveau de formation');
837 $page->assign('title', 'Gestion des correspondances formations - niveau de formation');
838 $table_editor = new PLTableEditor('admin/education_degree_set', 'profile_education_degree', 'eduid', true);
839 $table_editor->describe('eduid', 'formation', true);
840 $table_editor->describe('degreeid', 'niveau', true);
841 $table_editor->apply($page, $action, $id);
842 }
843 function handler_admin_sections(&$page, $action = 'list', $id = null) {
844 $page->setTitle('Administration - Sections');
845 $page->assign('title', 'Gestion des sections');
846 $table_editor = new PLTableEditor('admin/sections','sections','id');
847 $table_editor->describe('text','intitulé',true);
848 $table_editor->apply($page, $action, $id);
849 }
850 function handler_admin_sectors(&$page, $action = 'list', $id = null) {
851 $page->setTitle('Administration - Secteurs');
852 $page->assign('title', 'Gestion des secteurs');
853 $table_editor = new PLTableEditor('admin/sectors', 'profile_job_subsubsector_enum', 'id', true);
854 $table_editor->describe('sectorid', 'id du secteur', false);
855 $table_editor->describe('subsectorid', 'id du sous-secteur', false);
856 $table_editor->describe('name', 'nom', true);
857 $table_editor->describe('flags', 'affichage', true);
858 $table_editor->apply($page, $action, $id);
859 }
860 function handler_admin_networking(&$page, $action = 'list', $id = null) {
861 $page->assign('xorg_title', 'Polytechnique.org - Administration - Networking');
862 $page->assign('title', 'Gestion des types de networking');
863 $table_editor = new PLTableEditor('admin/networking', 'profile_networking_enum', 'network_type');
864 $table_editor->describe('name', 'intitulé', true);
865 $table_editor->describe('icon', 'nom de l\'icône', false);
866 $table_editor->describe('filter', 'filtre', true);
867 $table_editor->describe('link', 'lien web', true);
868 $table_editor->apply($page, $action, $id);
869 }
870 function handler_admin_corps_enum(&$page, $action = 'list', $id = null) {
871 $page->setTitle('Administration - Corps');
872 $page->assign('title', 'Gestion des Corps');
873 $table_editor = new PLTableEditor('admin/corps_enum', 'profile_corps_enum', 'id');
874 $table_editor->describe('name', 'intitulé', true);
875 $table_editor->describe('abbreviation', 'abbréviation', true);
876 $table_editor->describe('still_exists', 'existe encore ?', true);
877 $table_editor->apply($page, $action, $id);
878 }
879 function handler_admin_corps_rank(&$page, $action = 'list', $id = null) {
880 $page->setTitle('Administration - Grade dans les Corps');
881 $page->assign('title', 'Gestion des grade dans les Corps');
882 $table_editor = new PLTableEditor('admin/corps_rank', 'profile_corps_rank_enum', 'id');
883 $table_editor->describe('name', 'intitulé', true);
884 $table_editor->describe('abbreviation', 'abbréviation', true);
885 $table_editor->apply($page, $action, $id);
886 }
887 function handler_admin_medals(&$page, $action = 'list', $id = null) {
888 $page->setTitle('Administration - Distinctions');
889 $page->assign('title', 'Gestion des Distinctions');
890 $table_editor = new PLTableEditor('admin/medals','profile_medals','id');
891 $table_editor->describe('text', 'intitulé', true);
892 $table_editor->describe('img', 'nom de l\'image', false);
893 $table_editor->describe('flags', 'valider', true);
894 $table_editor->apply($page, $action, $id);
895 if ($id && $action == 'edit') {
896 $page->changeTpl('profile/admin_decos.tpl');
897
898 $mid = $id;
899
900 if (Post::v('act') == 'del') {
901 XDB::execute('DELETE FROM profile_medals_grades
902 WHERE mid={?} AND gid={?}', $mid, Post::i('gid'));
903 } else {
904 foreach (Post::v('grades', array()) as $gid=>$text) {
905 if ($gid === 0) {
906 if (!empty($text)) {
907 $res = XDB::query('SELECT MAX(gid)
908 FROM profile_medals_grades
909 WHERE mid = {?}', $mid);
910 $gid = $res->fetchOneCell() + 1;
911
912 XDB::execute('INSERT INTO profile_medals_grades (mid, gid, text, pos)
913 VALUES ({?}, {?}, {?}, {?})',
914 $mid, $gid, $text, $_POST['pos']['0']);
915 }
916 } else {
917 XDB::execute('UPDATE profile_medals_grades
918 SET pos={?}, text={?}
919 WHERE gid={?} AND mid={?}', $_POST['pos'][$gid], $text, $gid, $mid);
920 }
921 }
922 }
923 $res = XDB::iterator('SELECT gid, text, pos FROM profile_medals_grades WHERE mid={?} ORDER BY pos', $mid);
924 $page->assign('grades', $res);
925 }
926 }
927 }
928
929 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
930 ?>