Adapts profile's display.
[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 || !($profile = Profile::get($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($profile->owner()->id());
95 $photo = PlImage::fromData($myphoto->data, $myphoto->mimetype);
96 } else {
97 $photo = $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_medal_enum
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 profile_photos
182 WHERE pid = {?}',
183 S::user()->profile()->id());
184 XDB::execute("DELETE FROM requests
185 WHERE uid = {?} 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 uid = {?} AND type = 'photo'",
194 S::v('uid'));
195 $globals->updateNbValid();
196 }
197
198 $sql = XDB::query("SELECT COUNT(*)
199 FROM requests
200 WHERE uid = {?} 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, $id = null)
207 {
208 // Checks if the identifier corresponds to an actual profile. Numeric
209 // identifiers canonly be user by logged users.
210 if (is_null($id)) {
211 return PL_NOT_FOUND;
212 }
213 $pid = (!is_numeric($id) || S::has_perms()) ? Profile::getPID($id) : null;
214 if (is_null($pid)) {
215 if (S::logged()) {
216 $page->trigError($id . " inconnu dans l'annuaire.");
217 }
218 return PL_NOT_FOUND;
219 }
220
221 // Now that we know this is an existing profile, we can switch to the
222 // appropriate template.
223 $page->changeTpl('profile/profile.tpl', SIMPLE);
224
225 // Determines the access level at which the profile will be displayed.
226 if (!S::logged() || Env::v('view') == 'public') {
227 $view = 'public';
228 } else if (S::logged() && Env::v('view') == 'ax') {
229 $view = 'ax';
230 } else {
231 $view = 'private';
232 }
233
234 // Fetches profile's and profile's owner information and redirects to
235 // marketing if the owner has not subscribed and the requirer has logged in.
236 $profile = Profile::getBulkProfilesWithPIDs(array($pid), Profile::FETCH_ALL, $view);
237 $owner = $profile->owner();
238 if (S::logged() && !is_null($owner) && $owner->state == 'pending') {
239 pl_redirect('marketing/public/' . $profile->hrid());
240 }
241
242 // Profile view are logged.
243 if (S::logged()) {
244 S::logger()->log('view_profile', $profile->hrid());
245 }
246
247 // Sets the title of the html page.
248 $page->setTitle($profile->fullName());
249
250 // Is that really useful???
251 /*$photo = 'photo/' . $profile->hrid() . ($new ? '/req' : '');
252 if (!isset($user['photo_pub']) || !has_user_right($user['photo_pub'], $view)) {
253 $photo = "";
254 }
255 $page->assign('photo_url', $photo);
256 }*/
257
258 // Determines and displays the virtual alias.
259 if (!is_null($owner)) {
260 $page->assign('virtualalias', $owner->emailAlias());
261 }
262
263 $page->assign_by_ref('profile', $profile);
264 $page->assign_by_ref('owner', $owner);
265
266 $page->addJsLink('close_on_esc.js');
267 header('Last-Modified: ' . date('r', strtotime($profile->last_change)));
268 }
269
270 function handler_ax(&$page, $user = null)
271 {
272 $user = Profile::get($user);
273 if (!$user) {
274 return PL_NOT_FOUND;
275 }
276 if (!$user->ax_id) {
277 $page->kill("Le matricule AX de {$user->hrid()} est inconnu");
278 }
279 http_redirect("http://www.polytechniciens.com/?page=AX_FICHE_ANCIEN&ancc_id=" . $user->ax_id);
280 }
281
282 function handler_p_edit(&$page, $user = null, $opened_tab = null, $mode = null, $success = null)
283 {
284 global $globals;
285
286 if (is_null($user)) {
287 $user = S::user();
288 if (!$user->hasProfile()) {
289 return PL_NOT_FOUND;
290 } else {
291 pl_redirect('profile/edit/' . $user->profile()->hrid());
292 }
293 } else {
294 $user = Profile::get($user);
295 if (!$user) {
296 return PL_NOT_FOUND;
297 } else if (!S::user()->canEdit($user) && Platal::notAllowed()) {
298 return PL_FORBIDDEN;
299 }
300 }
301
302 // Build the page
303 $page->addJsLink('ajax.js');
304 $page->addJsLink('education.js'); /* dynamic content */
305 $page->addJsLink('grades.js'); /* dynamic content */
306 $page->addJsLink('profile.js');
307 $page->addJsLink('jquery.autocomplete.js');
308 $wiz = new PlWizard('Profil', PlPage::getCoreTpl('plwizard.tpl'), true, true, false);
309 $wiz->addUserData('profile', $user);
310 $wiz->addUserData('owner', $user->owner());
311 $this->load('page.inc.php');
312 $wiz->addPage('ProfileGeneral', 'Général', 'general');
313 $wiz->addPage('ProfileAddresses', 'Adresses personnelles', 'adresses');
314 $wiz->addPage('ProfileGroups', 'Groupes X - Binets', 'poly');
315 $wiz->addPage('ProfileDecos', 'Décorations - Medailles', 'deco');
316 $wiz->addPage('ProfileJobs', 'Informations professionnelles', 'emploi');
317 $wiz->addPage('ProfileSkills', 'Compétences diverses', 'skill');
318 $wiz->addPage('ProfileMentor', 'Mentoring', 'mentor');
319 $wiz->apply($page, 'profile/edit/' . $user->hrid(), $opened_tab, $mode);
320
321 if (!$user->birthdate) {
322 $page->trigWarning("Ta date de naissance n'est pas renseignée, ce qui t'empêcheras de réaliser"
323 . " la procédure de récupération de mot de passe si un jour tu le perdais.");
324 }
325
326 $page->setTitle('Mon Profil');
327 if (isset($success) && $success) {
328 $page->trigSuccess('Ton profil a bien été mis à jour.');
329 }
330 }
331
332 function handler_education_js(&$page)
333 {
334 pl_cached_content_headers("text/javascript", "utf-8");
335 $page->changeTpl('profile/education.js.tpl', NO_SKIN);
336 require_once 'education.func.inc.php';
337 }
338
339 function handler_grades_js(&$page)
340 {
341 pl_cached_content_headers("text/javascript", "utf-8");
342 $page->changeTpl('profile/grades.js.tpl', NO_SKIN);
343 $res = XDB::iterator("SELECT *
344 FROM profile_medal_enum_grades
345 ORDER BY mid, pos");
346 $grades = array();
347 while ($tmp = $res->next()) {
348 $grades[$tmp['mid']][] = $tmp;
349 }
350 $page->assign('grades', $grades);
351
352 $res = XDB::iterator("SELECT *, FIND_IN_SET('validation', flags) AS validate
353 FROM profile_medal_enum
354 ORDER BY type, text");
355 $mlist = array();
356 while ($tmp = $res->next()) {
357 $mlist[$tmp['type']][] = $tmp;
358 }
359 $page->assign('medal_list', $mlist);
360 }
361
362 function handler_ajax_address(&$page, $id)
363 {
364 pl_content_headers("text/html");
365 $page->changeTpl('profile/adresses.address.tpl', NO_SKIN);
366 $page->assign('i', $id);
367 $page->assign('address', array());
368 }
369
370 function handler_ajax_tel(&$page, $prefid, $prefname, $telid)
371 {
372 pl_content_headers("text/html");
373 $page->changeTpl('profile/phone.tpl', NO_SKIN);
374 $page->assign('prefid', $prefid);
375 $page->assign('prefname', $prefname);
376 $page->assign('telid', $telid);
377 $page->assign('tel', array());
378 }
379
380 function handler_ajax_edu(&$page, $eduid, $class)
381 {
382 header('Content-Type: text/html; charset=utf-8');
383 $page->changeTpl('profile/general.edu.tpl', NO_SKIN);
384 $res = XDB::iterator("SELECT id, field
385 FROM profile_education_field_enum
386 ORDER BY field");
387 $page->assign('edu_fields', $res->fetchAllAssoc());
388 $page->assign('eduid', $eduid);
389 $page->assign('class', $class);
390 require_once "education.func.inc.php";
391 }
392
393 function handler_ajax_medal(&$page, $id)
394 {
395 pl_content_headers("text/html");
396 $page->changeTpl('profile/deco.medal.tpl', NO_SKIN);
397 $page->assign('id', $id);
398 $page->assign('medal', array('valid' => 0, 'grade' => 0));
399 }
400
401 function handler_ajax_job(&$page, $id)
402 {
403 pl_content_headers("text/html");
404 $page->changeTpl('profile/jobs.job.tpl', NO_SKIN);
405 $page->assign('i', $id);
406 $page->assign('job', array());
407 $page->assign('new', true);
408 $res = XDB::query("SELECT id, name AS label
409 FROM profile_job_sector_enum");
410 $page->assign('sectors', $res->fetchAllAssoc());
411 require_once "emails.combobox.inc.php";
412 fill_email_combobox($page);
413 }
414
415 function handler_ajax_sector(&$page, $id, $jobid, $jobpref, $sect, $ssect = -1)
416 {
417 pl_content_headers("text/html");
418 $res = XDB::iterator("SELECT id, name, FIND_IN_SET('optgroup', flags) AS optgroup
419 FROM profile_job_subsector_enum
420 WHERE sectorid = {?}", $sect);
421 $page->changeTpl('profile/jobs.sector.tpl', NO_SKIN);
422 $page->assign('id', $id);
423 $page->assign('subSectors', $res);
424 $page->assign('sel', $ssect);
425 if ($id != -1) {
426 $page->assign('change', 1);
427 $page->assign('jobid', $jobid);
428 $page->assign('jobpref', $jobpref);
429 }
430 }
431
432 function handler_ajax_sub_sector(&$page, $id, $ssect, $sssect = -1)
433 {
434 header('Content-Type: text/html; charset=utf-8');
435 $res = XDB::iterator("SELECT id, name
436 FROM profile_job_subsubsector_enum
437 WHERE subsectorid = {?}", $ssect);
438 $page->changeTpl('profile/jobs.sub_sector.tpl', NO_SKIN);
439 $page->assign('id', $id);
440 $page->assign('subSubSectors', $res);
441 $page->assign('sel', $sssect);
442 }
443
444 function handler_ajax_alternates(&$page, $id, $sssect)
445 {
446 header('Content-Type: text/html; charset=utf-8');
447 $res = XDB::iterator('SELECT name
448 FROM profile_job_alternates
449 WHERE subsubsectorid = {?}
450 ORDER BY id',
451 $sssect);
452 $page->changeTpl('profile/jobs.alternates.tpl', NO_SKIN);
453 $alternate = $res->next();
454 $alternates = $alternate['name'];
455 while ($alternate = $res->next()) {
456 $alternates .= ', ' . $alternate['name'];
457 }
458 $page->assign('alternates', $alternates);
459 }
460
461 function handler_ajax_skill(&$page, $cat, $id)
462 {
463 pl_content_headers("text/html");
464 $page->changeTpl('profile/skill.skill.tpl', NO_SKIN);
465 $page->assign('cat', $cat);
466 $page->assign('id', $id);
467 if ($cat == 'competences') {
468 $page->assign('levels', array('initié' => 'initié',
469 'bonne connaissance' => 'bonne connaissance',
470 'expert' => 'expert'));
471 } else {
472 $page->assign('levels', array(1 => 'connaissance basique',
473 2 => 'maîtrise des bases',
474 3 => 'maîtrise limitée',
475 4 => 'maîtrise générale',
476 5 => 'bonne maîtrise',
477 6 => 'maîtrise complète'));
478 }
479 }
480
481 function handler_ajax_searchname(&$page, $id)
482 {
483 header('Content-Type: text/html; charset=utf-8');
484 $page->changeTpl('profile/general.searchname.tpl', NO_SKIN);
485 $res = XDB::query("SELECT id, name, FIND_IN_SET('public', flags) AS pub
486 FROM profile_name_enum
487 WHERE NOT FIND_IN_SET('not_displayed', flags)
488 AND NOT FIND_IN_SET('always_displayed', flags)");
489 $page->assign('sn_type_list', $res->fetchAllAssoc());
490 $page->assign('i', $id);
491 }
492
493 function handler_ajax_buildnames(&$page, $data)
494 {
495 header('Content-Type: text/html; charset=utf-8');
496 $page->changeTpl('profile/general.buildnames.tpl', NO_SKIN);
497 require_once 'name.func.inc.php';
498 $page->assign('names', build_javascript_names($data));
499 }
500
501 function handler_p_orange(&$page, $pid = null)
502 {
503 $page->changeTpl('profile/orange.tpl');
504
505 require_once 'validations.inc.php';
506 $profile = Profile::get($pid);
507 if (is_null($profile)) {
508 return PL_NOT_FOUND;
509 }
510 $page->assign('promo_sortie_old', $profile->grad_year);
511 $page->assign('promo', $profile->entry_year);
512 $page->assign('promo_display', $profile->promo());
513 $page->assign('sexe', $profile->isFemale());
514
515 if (!Env::has('promo_sortie')) {
516 return;
517 } else {
518 S::assert_xsrf_token();
519 }
520
521 $promo_sortie = Env::i('promo_sortie');
522 $promo = $profile->entry_year;
523 if ($promo_sortie < 1000 || $promo_sortie > 9999) {
524 $page->trigError('L\'année de sortie doit être un nombre de quatre chiffres.');
525 } elseif ($promo_sortie < $promo + 3) {
526 $page->trigError('Trop tôt !');
527 } elseif ($promo_sortie == $promo_sortie_old) {
528 $page->trigWarning('Tu appartiens déjà à la promotion correspondante à cette année de sortie.');
529 } elseif ($promo_sortie == $promo + 3) {
530 XDB::execute('UPDATE profile_education
531 SET grad_year = {?}
532 WHERE pid = {?} AND FIND_IN_SET(\'primary\', flags)',
533 $promo_sortie, $profile->id());
534 $page->trigSuccess('Ton statut "orange" a été supprimé.');
535 $page->assign('promo_sortie_old', $promo_sortie);
536 } else {
537 $page->assign('promo_sortie', $promo_sortie);
538
539 if (Env::has('submit')) {
540 $myorange = new OrangeReq(S::user(), $promo_sortie);
541 $myorange->submit();
542 $page->assign('myorange', $myorange);
543 }
544 }
545 }
546
547 function handler_referent(&$page, $user)
548 {
549 $page->changeTpl('profile/fiche_referent.tpl', SIMPLE);
550
551 $user = Profile::get($user);
552 if (!$user) {
553 return PL_NOT_FOUND;
554 }
555
556 $page->assign_by_ref('user', $user);
557 $page->assign('cv', MiniWiki::WikiToHTML($user->cv, true));
558 //TODO: waiting for job refactoring to be done
559 //$page->assign('adr_pro', get_user_details_pro($user->id()));
560
561 ///// recuperations infos referent
562
563 //expertise
564 $res = XDB::query('SELECT expertise
565 FROM profile_mentor
566 WHERE pid = {?}', $user->id());
567 $page->assign('expertise', $res->fetchOneCell());
568
569 // Sectors
570 $sectors = $subSectors = Array();
571 $res = XDB::iterRow(
572 "SELECT s.name AS label, ss.name AS label
573 FROM profile_mentor_sector AS m
574 LEFT JOIN profile_job_sector_enum AS s ON(m.sectorid = s.id)
575 LEFT JOIN profile_job_subsector_enum AS ss ON(m.sectorid = ss.sectorid AND m.subsectorid = ss.id)
576 WHERE pid = {?}", $user->id());
577 while (list($sector, $subSector) = $res->next()) {
578 $sectors[] = $sector;
579 $subSectors[] = $subSector;
580 }
581 $page->assign_by_ref('sectors', $sectors);
582 $page->assign_by_ref('subSectors', $subSectors);
583
584 // Countries.
585 $res = XDB::query(
586 "SELECT gc.countryFR
587 FROM profile_mentor_country AS m
588 LEFT JOIN geoloc_countries AS gc ON (m.country = gc.iso_3166_1_a2)
589 WHERE pid = {?}", $user->id());
590 $page->assign('pays', $res->fetchColumn());
591
592 $page->addJsLink('close_on_esc.js');
593 }
594
595 function handler_ref_search(&$page, $action = null, $subaction = null)
596 {
597 $wp = new PlWikiPage('Docs.Emploi');
598 $wp->buildCache();
599
600 $page->setTitle('Conseil Pro');
601
602 // Retrieval of sector names
603 $sectors = DirEnum::getOptions(DirEnum::SECTORS);
604 $sectors[''] = '';
605 $page->assign_by_ref('sectors', $sectors);
606
607 // nb de mentors
608 $res = XDB::query("SELECT count(*) FROM profile_mentor");
609 $page->assign('mentors_number', $res->fetchOneCell());
610
611 // On vient d'un formulaire
612 require_once 'ufbuilder.inc.php';
613 $ufb = new UFB_MentorSearch();
614 if (!$ufb->isEmpty()) {
615 require_once 'userset.inc.php';
616 $ufc = $ufb->getUFC();
617 $set = new ProfileSet($ufc);
618 $set->addMod('mentor', 'Référents');
619 $set->apply('referent/search', $page, $action, $subaction);
620 if ($set->count() > 100) {
621 $page->assign('recherche_trop_large', true);
622 }
623 }
624
625 $page->changeTpl('profile/referent.tpl');
626 }
627
628 function handler_ref_sect(&$page, $sect)
629 {
630 pl_content_headers("text/html");
631 $page->changeTpl('include/field.select.tpl', NO_SKIN);
632 $page->assign('onchange', 'setSSectors()');
633 $page->assign('id', 'ssect_field');
634 $page->assign('name', 'subSector');
635 $it = XDB::iterator("SELECT id, name AS field
636 FROM profile_job_subsector_enum
637 WHERE sectorid = {?}", $sect);
638 $page->assign('list', $it);
639 }
640
641 function handler_ref_country(&$page, $sect, $ssect = '')
642 {
643 pl_content_headers("text/html");
644 $page->changeTpl('include/field.select.tpl', NO_SKIN);
645 $page->assign('name', 'pays_sel');
646 $where = ($ssect ? ' AND ms.subsectorid = {?}' : '');
647 $it = XDB::iterator("SELECT gc.iso_3166_1_a2 AS id, gc.countryFR AS field
648 FROM geoloc_countries AS gc
649 INNER JOIN profile_mentor_country AS mp ON (mp.country = gc.iso_3166_1_a2)
650 INNER JOIN profile_mentor_sector AS ms ON (ms.pid = mp.pid)
651 WHERE ms.sectorid = {?} " . $where . "
652 GROUP BY iso_3166_1_a2
653 ORDER BY countryFR", $sect, $ssect);
654 $page->assign('list', $it);
655 }
656
657 function handler_xnet(&$page)
658 {
659 $page->changeTpl('profile/groupesx.tpl');
660 $page->setTitle('Promo, Groupes X, Binets');
661
662 $req = XDB::query('
663 SELECT m.asso_id, a.nom, diminutif, a.logo IS NOT NULL AS has_logo,
664 COUNT(e.eid) AS events, mail_domain AS lists
665 FROM group_members AS m
666 INNER JOIN groups AS a ON(m.asso_id = a.id)
667 LEFT JOIN group_events AS e ON(e.asso_id = m.asso_id AND e.archive = 0)
668 WHERE uid = {?} GROUP BY m.asso_id ORDER BY a.nom', S::i('uid'));
669 $page->assign('assos', $req->fetchAllAssoc());
670 }
671
672 function handler_xnetlogo(&$page, $id)
673 {
674 if (is_null($id)) {
675 return PL_NOT_FOUND;
676 }
677
678 $res = XDB::query('SELECT logo, logo_mime
679 FROM groups
680 WHERE id = {?}', $id);
681 list($logo, $logo_mime) = $res->fetchOneRow();
682
683 if (!empty($logo)) {
684 pl_cached_dynamic_content_headers($logo_mime);
685 echo $logo;
686 } else {
687 pl_cached_dynamic_content_headers("image/jpeg");
688 readfile(dirname(__FILE__) . '/../htdocs/images/dflt_carre.jpg');
689 }
690
691 exit;
692 }
693
694 function handler_vcard(&$page, $x = null)
695 {
696 if (is_null($x)) {
697 return PL_NOT_FOUND;
698 }
699
700 global $globals;
701
702 if (substr($x, -4) == '.vcf') {
703 $x = substr($x, 0, strlen($x) - 4);
704 }
705
706 $vcard = new VCard();
707 $vcard->addProfile(Profile::get($x));
708 $vcard->show();
709 }
710
711 function handler_admin_trombino(&$page, $login = null, $action = null) {
712 $page->changeTpl('profile/admin_trombino.tpl');
713 $page->setTitle('Administration - Trombino');
714
715 if (!$login || !($user = User::get($login))) {
716 return PL_NOT_FOUND;
717 } else {
718 $page->assign_by_ref('user', $user);
719 }
720
721 switch ($action) {
722 case "original":
723 PlImage::fromFile("/home/web/trombino/photos" . $user->promo() . "/" . $user->login() . ".jpg", "image/jpeg")->send();
724 exit;
725
726 case "new":
727 S::assert_xsrf_token();
728
729 $data = file_get_contents($_FILES['userfile']['tmp_name']);
730 list($x, $y) = getimagesize($_FILES['userfile']['tmp_name']);
731 $mimetype = substr($_FILES['userfile']['type'], 6);
732 unlink($_FILES['userfile']['tmp_name']);
733 XDB::execute(
734 "REPLACE INTO profile_photos SET pid={?}, attachmime = {?}, attach={?}, x={?}, y={?}",
735 $user->profile()->id(), $mimetype, $data, $x, $y);
736 break;
737
738 case "delete":
739 S::assert_xsrf_token();
740
741 XDB::execute('DELETE FROM profile_photos WHERE pid = {?}', $user->profile()->id());
742 break;
743 }
744 }
745 function handler_admin_names(&$page, $action = 'list', $id = null) {
746 $page->setTitle('Administration - Types de noms');
747 $page->assign('title', 'Gestion des types de noms');
748 $table_editor = new PLTableEditor('admin/names', 'profile_name_enum', 'id', true);
749 $table_editor->describe('name', 'Nom', true);
750 $table_editor->describe('explanations', 'Explications', true);
751 $table_editor->describe('type', 'Type', true);
752 $table_editor->describe('flags', 'Flags', true);
753 $table_editor->describe('score', 'Score', true);
754 $table_editor->apply($page, $action, $id);
755 }
756 function handler_admin_binets(&$page, $action = 'list', $id = null) {
757 $page->setTitle('Administration - Binets');
758 $page->assign('title', 'Gestion des binets');
759 $table_editor = new PLTableEditor('admin/binets', 'profile_binet_enum', 'id');
760 $table_editor->add_join_table('profile_binets','binet_id',true);
761 $table_editor->describe('text','intitulé',true);
762 $table_editor->apply($page, $action, $id);
763 }
764 function handler_admin_education(&$page, $action = 'list', $id = null) {
765 $page->setTitle('Administration - Formations');
766 $page->assign('title', 'Gestion des formations');
767 $table_editor = new PLTableEditor('admin/education', 'profile_education_enum', 'id');
768 $table_editor->add_join_table('profile_education', 'eduid', true);
769 $table_editor->add_join_table('profile_education_degree', 'eduid', true);
770 $table_editor->describe('name', 'intitulé', true);
771 $table_editor->describe('url', 'site web', false);
772 $table_editor->apply($page, $action, $id);
773 }
774 function handler_admin_education_field(&$page, $action = 'list', $id = null) {
775 $page->setTitle('Administration - Domaines de formation');
776 $page->assign('title', 'Gestion des domaines de formation');
777 $table_editor = new PLTableEditor('admin/education_field', 'profile_education_field_enum', 'id', true);
778 $table_editor->add_join_table('profile_education', 'fieldid', true);
779 $table_editor->describe('field', 'domaine', true);
780 $table_editor->apply($page, $action, $id);
781 }
782 function handler_admin_education_degree(&$page, $action = 'list', $id = null) {
783 $page->setTitle('Administration - Niveau de formation');
784 $page->assign('title', 'Gestion des niveau de formation');
785 $table_editor = new PLTableEditor('admin/education_degree', 'profile_education_degree_enum', 'id', true);
786 $table_editor->add_join_table('profile_education_degree', 'degreeid', true);
787 $table_editor->add_join_table('profile_education', 'degreeid', true);
788 $table_editor->describe('degree', 'niveau', true);
789 $table_editor->apply($page, $action, $id);
790 }
791 function handler_admin_education_degree_set(&$page, $action = 'list', $id = null) {
792 $page->setTitle('Administration - Correspondances formations - niveau de formation');
793 $page->assign('title', 'Gestion des correspondances formations - niveau de formation');
794 $table_editor = new PLTableEditor('admin/education_degree_set', 'profile_education_degree', 'eduid', true);
795 $table_editor->describe('eduid', 'formation', true);
796 $table_editor->describe('degreeid', 'niveau', true);
797 $table_editor->apply($page, $action, $id);
798 }
799 function handler_admin_sections(&$page, $action = 'list', $id = null) {
800 $page->setTitle('Administration - Sections');
801 $page->assign('title', 'Gestion des sections');
802 $table_editor = new PLTableEditor('admin/sections','profile_section_enum','id');
803 $table_editor->describe('text','intitulé',true);
804 $table_editor->apply($page, $action, $id);
805 }
806 function handler_admin_sectors(&$page, $action = 'list', $id = null) {
807 $page->setTitle('Administration - Secteurs');
808 $page->assign('title', 'Gestion des secteurs');
809 $table_editor = new PLTableEditor('admin/sectors', 'profile_job_subsubsector_enum', 'id', true);
810 $table_editor->describe('sectorid', 'id du secteur', false);
811 $table_editor->describe('subsectorid', 'id du sous-secteur', false);
812 $table_editor->describe('name', 'nom', true);
813 $table_editor->describe('flags', 'affichage', true);
814 $table_editor->apply($page, $action, $id);
815 }
816 function handler_admin_networking(&$page, $action = 'list', $id = null) {
817 $page->assign('xorg_title', 'Polytechnique.org - Administration - Networking');
818 $page->assign('title', 'Gestion des types de networking');
819 $table_editor = new PLTableEditor('admin/networking', 'profile_networking_enum', 'network_type');
820 $table_editor->describe('name', 'intitulé', true);
821 $table_editor->describe('icon', 'nom de l\'icône', false);
822 $table_editor->describe('filter', 'filtre', true);
823 $table_editor->describe('link', 'lien web', true);
824 $table_editor->apply($page, $action, $id);
825 }
826 function handler_admin_corps_enum(&$page, $action = 'list', $id = null) {
827 $page->setTitle('Administration - Corps');
828 $page->assign('title', 'Gestion des Corps');
829 $table_editor = new PLTableEditor('admin/corps_enum', 'profile_corps_enum', 'id');
830 $table_editor->describe('name', 'intitulé', true);
831 $table_editor->describe('abbreviation', 'abbréviation', true);
832 $table_editor->describe('still_exists', 'existe encore ?', true);
833 $table_editor->apply($page, $action, $id);
834 }
835 function handler_admin_corps_rank(&$page, $action = 'list', $id = null) {
836 $page->setTitle('Administration - Grade dans les Corps');
837 $page->assign('title', 'Gestion des grade dans les Corps');
838 $table_editor = new PLTableEditor('admin/corps_rank', 'profile_corps_rank_enum', 'id');
839 $table_editor->describe('name', 'intitulé', true);
840 $table_editor->describe('abbreviation', 'abbréviation', true);
841 $table_editor->apply($page, $action, $id);
842 }
843 function handler_admin_medals(&$page, $action = 'list', $id = null) {
844 $page->setTitle('Administration - Distinctions');
845 $page->assign('title', 'Gestion des Distinctions');
846 $table_editor = new PLTableEditor('admin/medals','profile_medal_enum','id');
847 $table_editor->describe('text', 'intitulé', true);
848 $table_editor->describe('img', 'nom de l\'image', false);
849 $table_editor->describe('flags', 'valider', true);
850 $table_editor->apply($page, $action, $id);
851 if ($id && $action == 'edit') {
852 $page->changeTpl('profile/admin_decos.tpl');
853
854 $mid = $id;
855
856 if (Post::v('act') == 'del') {
857 XDB::execute('DELETE FROM profile_medal_enum_grades
858 WHERE mid={?} AND gid={?}', $mid, Post::i('gid'));
859 } else {
860 foreach (Post::v('grades', array()) as $gid=>$text) {
861 if ($gid === 0) {
862 if (!empty($text)) {
863 $res = XDB::query('SELECT MAX(gid)
864 FROM profile_medal_enum_grades
865 WHERE mid = {?}', $mid);
866 $gid = $res->fetchOneCell() + 1;
867
868 XDB::execute('INSERT INTO profile_medal_enum_grades (mid, gid, text, pos)
869 VALUES ({?}, {?}, {?}, {?})',
870 $mid, $gid, $text, $_POST['pos']['0']);
871 }
872 } else {
873 XDB::execute('UPDATE profile_medal_enum_grades
874 SET pos={?}, text={?}
875 WHERE gid={?} AND mid={?}', $_POST['pos'][$gid], $text, $gid, $mid);
876 }
877 }
878 }
879 $res = XDB::iterator('SELECT gid, text, pos FROM profile_medal_enum_grades WHERE mid={?} ORDER BY pos', $mid);
880 $page->assign('grades', $res);
881 }
882 }
883 }
884
885 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
886 ?>