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