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