Deletes all references to sectors as they have been replaced by jobterms.
[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/skill' => $this->make_hook('ajax_skill', AUTH_COOKIE, 'user', NO_AUTH),
42 'profile/ajax/searchname' => $this->make_hook('ajax_searchname', AUTH_COOKIE, 'user', NO_AUTH),
43 'profile/ajax/buildnames' => $this->make_hook('ajax_buildnames', AUTH_COOKIE, 'user', NO_AUTH),
44 'profile/ajax/tree/jobterms' => $this->make_hook('ajax_tree_job_terms', AUTH_COOKIE, 'user', NO_AUTH),
45 'profile/jobterms' => $this->make_hook('jobterms', AUTH_COOKIE, 'user', NO_AUTH),
46 'javascript/education.js' => $this->make_hook('education_js', AUTH_COOKIE),
47 'javascript/grades.js' => $this->make_hook('grades_js', AUTH_COOKIE),
48 'profile/medal' => $this->make_hook('medal', AUTH_PUBLIC),
49 'profile/name_info' => $this->make_hook('name_info', AUTH_PUBLIC),
50
51 'referent' => $this->make_hook('referent', AUTH_COOKIE),
52 'referent/country' => $this->make_hook('ref_country', AUTH_COOKIE, 'user', NO_AUTH),
53 'referent/autocomplete' => $this->make_hook('ref_autocomplete', AUTH_COOKIE, 'user', NO_AUTH),
54
55 'groupes-x' => $this->make_hook('xnet', AUTH_COOKIE),
56 'groupes-x/logo' => $this->make_hook('xnetlogo', AUTH_PUBLIC),
57
58 'vcard' => $this->make_hook('vcard', AUTH_COOKIE, 'user', NO_HTTPS),
59 'admin/binets' => $this->make_hook('admin_binets', AUTH_MDP, 'admin'),
60 'admin/medals' => $this->make_hook('admin_medals', AUTH_MDP, 'admin'),
61 'admin/education' => $this->make_hook('admin_education', AUTH_MDP, 'admin'),
62 'admin/education_field' => $this->make_hook('admin_education_field', AUTH_MDP, 'admin'),
63 'admin/education_degree' => $this->make_hook('admin_education_degree', AUTH_MDP, 'admin'),
64 'admin/education_degree_set' => $this->make_hook('admin_education_degree_set', AUTH_MDP, 'admin'),
65 'admin/sections' => $this->make_hook('admin_sections', AUTH_MDP, 'admin'),
66 'admin/networking' => $this->make_hook('admin_networking', AUTH_MDP, 'admin'),
67 'admin/trombino' => $this->make_hook('admin_trombino', AUTH_MDP, 'admin'),
68 'admin/corps_enum' => $this->make_hook('admin_corps_enum', AUTH_MDP, 'admin'),
69 'admin/corps_rank' => $this->make_hook('admin_corps_rank', AUTH_MDP, 'admin'),
70 'admin/names' => $this->make_hook('admin_names', AUTH_MDP, 'admin'),
71 );
72 }
73
74 /* Function needed for compatibility reasons.
75 * TODO: removes calls to fiche.php?user=blah.machin.2083 and then removes this.
76 */
77 function handler_fiche(&$page)
78 {
79 return $this->handler_profile($page, Env::v('user'));
80 }
81
82 function handler_photo(&$page, $x = null, $req = null)
83 {
84 if (!$x || !($profile = Profile::get($x))) {
85 return PL_NOT_FOUND;
86 }
87
88 // Retrieve the photo and its mime type.
89 if ($req && S::logged()) {
90 $myphoto = PhotoReq::get_request($profile->id());
91 $photo = PlImage::fromData($myphoto->data, $myphoto->mimetype);
92 } else {
93 $photo = $profile->getPhoto(true, true);
94 }
95
96 // Display the photo, or a default one when not available.
97 $photo->send();
98 }
99
100 function handler_medal(&$page, $mid)
101 {
102 $thumb = ($mid == 'thumb');
103 $mid = $thumb ? @func_get_arg(2) : $mid;
104
105 $res = XDB::query("SELECT img
106 FROM profile_medal_enum
107 WHERE id = {?}",
108 $mid);
109 $img = $thumb ?
110 dirname(__FILE__).'/../htdocs/images/medals/thumb/' . $res->fetchOneCell() :
111 dirname(__FILE__).'/../htdocs/images/medals/' . $res->fetchOneCell();
112 pl_cached_content_headers(mime_content_type($img));
113 echo file_get_contents($img);
114 exit;
115 }
116
117 function handler_name_info(&$page)
118 {
119 pl_content_headers("text/html");
120 $page->changeTpl('profile/name_info.tpl', SIMPLE);
121 $res = XDB::iterator("SELECT name, explanations,
122 FIND_IN_SET('public', flags) AS public,
123 FIND_IN_SET('has_particle', flags) AS has_particle
124 FROM profile_name_enum
125 WHERE NOT FIND_IN_SET('not_displayed', flags)
126 ORDER BY NOT FIND_IN_SET('public', flags)");
127 $page->assign('types', $res);
128 }
129
130 function handler_networking(&$page, $mid)
131 {
132 $res = XDB::query("SELECT icon
133 FROM profile_networking_enum
134 WHERE nwid = {?}",
135 $mid);
136 $img = dirname(__FILE__) . '/../htdocs/images/networking/' . $res->fetchOneCell();
137 pl_cached_content_headers(mime_content_type($img));
138 echo file_get_contents($img);
139 exit;
140 }
141
142 /** Tries to return the correct user from given hrpid
143 * Will redirect to $returnurl$hrpid if $hrpid was empty
144 */
145 private function findProfile($returnurl, $hrpid = null)
146 {
147 if (is_null($hrpid)) {
148 $user = S::user();
149 if (!$user->hasProfile()) {
150 return PL_NOT_FOUND;
151 } else {
152 pl_redirect($returnurl . $user->profile()->hrid());
153 }
154 } else {
155 $profile = Profile::get($hrpid);
156 if (!$profile) {
157 return PL_NOT_FOUND;
158 } else if (!S::user()->canEdit($profile) && Platal::notAllowed()) {
159 return PL_FORBIDDEN;
160 }
161 }
162 return $profile;
163 }
164
165 function handler_photo_change(&$page, $hrpid = null)
166 {
167 global $globals;
168 $profile = $this->findProfile('photo/change/', $hrpid);
169 if (! ($profile instanceof Profile) && ($profile == PL_NOT_FOUND || $profile == PL_FORBIDDEN)) {
170 return $profile;
171 }
172
173 $page->changeTpl('profile/trombino.tpl');
174 $page->assign('hrpid', $profile->hrid());
175
176 $trombi_x = '/home/web/trombino/photos' . $profile->promo() . '/' . $profile->hrid() . '.jpg';
177 if (Env::has('upload')) {
178 S::assert_xsrf_token();
179
180 $upload = new PlUpload($profile->hrid(), 'photo');
181 if (!$upload->upload($_FILES['userfile']) && !$upload->download(Env::v('photo'))) {
182 $page->trigError('Une erreur est survenue lors du téléchargement du fichier');
183 } else {
184 $myphoto = new PhotoReq(S::user(), $profile, $upload);
185 if ($myphoto->isValid()) {
186 $myphoto->submit();
187 }
188 }
189 } elseif (Env::has('trombi')) {
190 S::assert_xsrf_token();
191
192 $upload = new PlUpload($profile->hrid(), 'photo');
193 if ($upload->copyFrom($trombi_x)) {
194 $myphoto = new PhotoReq(S::user(), $profile, $upload);
195 if ($myphoto->isValid()) {
196 $myphoto->commit();
197 $myphoto->clean();
198 }
199 }
200 } elseif (Env::v('suppr')) {
201 S::assert_xsrf_token();
202
203 XDB::execute('DELETE FROM profile_photos
204 WHERE pid = {?}',
205 $profile->id());
206 XDB::execute("DELETE FROM requests
207 WHERE pid = {?} AND type = 'photo'",
208 $profile->id());
209 $globals->updateNbValid();
210 $page->trigSuccess("Ta photo a bien été supprimée. Elle ne sera plus visible sur le site dans au plus une heure.");
211 } elseif (Env::v('cancel')) {
212 S::assert_xsrf_token();
213
214 $sql = XDB::query("DELETE FROM requests
215 WHERE pid = {?} AND type = 'photo'",
216 $profile->id());
217 $globals->updateNbValid();
218 }
219
220 $sql = XDB::query("SELECT COUNT(*)
221 FROM requests
222 WHERE pid = {?} AND type = 'photo'",
223 $profile->id());
224 $page->assign('submited', $sql->fetchOneCell());
225 $page->assign('has_trombi_x', file_exists($trombi_x));
226 }
227
228 function handler_profile(&$page, $id = null)
229 {
230 // Checks if the identifier corresponds to an actual profile. Numeric
231 // identifiers canonly be user by logged users.
232 if (is_null($id)) {
233 return PL_NOT_FOUND;
234 }
235 $pid = (!is_numeric($id) || S::admin()) ? Profile::getPID($id) : null;
236 if (is_null($pid)) {
237 if (S::logged()) {
238 $page->trigError($id . " inconnu dans l'annuaire.");
239 }
240 return PL_NOT_FOUND;
241 }
242
243 // Now that we know this is an existing profile, we can switch to the
244 // appropriate template.
245 $page->changeTpl('profile/profile.tpl', SIMPLE);
246
247 // Determines the access level at which the profile will be displayed.
248 if (!S::logged() || !S::user()->checkPerms('directory_ax') || Env::v('view') == 'public') {
249 $view = 'public';
250 } else if (!S::user()->checkPerms('directory_private') || Env::v('view') == 'ax') {
251 $view = 'ax';
252 } else {
253 $view = 'private';
254 }
255
256 // Display pending picture
257 if (S::logged() && Env::v('modif') == 'new') {
258 $page->assign('with_pending_pic', true);
259 }
260
261 // Fetches profile's and profile's owner information and redirects to
262 // marketing if the owner has not subscribed and the requirer has logged in.
263 $profile = Profile::get($pid, Profile::FETCH_ALL, $view);
264 $owner = $profile->owner();
265 if (S::logged() && !is_null($owner) && $owner->state == 'pending') {
266 pl_redirect('marketing/public/' . $profile->hrid());
267 }
268
269 // Profile view are logged.
270 if (S::logged()) {
271 S::logger()->log('view_profile', $profile->hrid());
272 }
273
274 // Sets the title of the html page.
275 $page->setTitle($profile->fullName());
276
277 // Determines and displays the virtual alias.
278 if (!is_null($owner) && $profile->alias_pub == 'public') {
279 $page->assign('virtualalias', $owner->emailAlias());
280 }
281
282 $page->assign_by_ref('profile', $profile);
283 $page->assign_by_ref('owner', $owner);
284 $page->assign('view', $view);
285 $page->assign('logged', S::logged());
286
287 $page->addJsLink('close_on_esc.js');
288 header('Last-Modified: ' . date('r', strtotime($profile->last_change)));
289 }
290
291 function handler_ax(&$page, $user = null)
292 {
293 $user = Profile::get($user);
294 if (!$user) {
295 return PL_NOT_FOUND;
296 }
297 if (!$user->ax_id) {
298 $page->kill("Le matricule AX de {$user->hrid()} est inconnu");
299 }
300 http_redirect("http://www.polytechniciens.com/?page=AX_FICHE_ANCIEN&ancc_id=" . $user->ax_id);
301 }
302
303 function handler_p_edit(&$page, $hrpid = null, $opened_tab = null, $mode = null, $success = null)
304 {
305 global $globals;
306
307 $profile = $this->findProfile('profile/edit/', $hrpid);
308 if (! ($profile instanceof Profile) && ($profile == PL_NOT_FOUND || $profile == PL_FORBIDDEN)) {
309 return $profile;
310 }
311
312 // Build the page
313 $page->addJsLink('ajax.js');
314 $page->addJsLink('education.js', false); /* dynamic content */
315 $page->addJsLink('grades.js', false); /* dynamic content */
316 $page->addJsLink('profile.js');
317 $page->addJsLink('jquery.autocomplete.js');
318 $wiz = new PlWizard('Profil', PlPage::getCoreTpl('plwizard.tpl'), true, true, false);
319 $wiz->addUserData('profile', $profile);
320 $wiz->addUserData('owner', $profile->owner());
321 $this->load('page.inc.php');
322 $wiz->addPage('ProfilePageGeneral', 'Général', 'general');
323 $wiz->addPage('ProfilePageAddresses', 'Adresses personnelles', 'adresses');
324 $wiz->addPage('ProfilePageJobs', 'Informations professionnelles', 'emploi');
325 if (S::user()->checkPerms(User::PERM_DIRECTORY_PRIVATE)) {
326 $wiz->addPage('ProfilePageGroups', 'Groupes X - Binets', 'poly');
327 }
328 $wiz->addPage('ProfilePageDecos', 'Décorations - Medailles', 'deco');
329 if (S::user()->checkPerms(User::PERM_DIRECTORY_PRIVATE)) {
330 $wiz->addPage('ProfilePageSkills', 'Compétences diverses', 'skill');
331 $wiz->addPage('ProfilePageMentor', 'Mentoring', 'mentor');
332 }
333 $wiz->apply($page, 'profile/edit/' . $profile->hrid(), $opened_tab, $mode);
334
335 if (!$profile->birthdate) {
336 $page->trigWarning("Ta date de naissance n'est pas renseignée, ce qui t'empêcheras de réaliser"
337 . " la procédure de récupération de mot de passe si un jour tu le perdais.");
338 }
339
340 $page->setTitle('Mon Profil');
341 if (isset($success) && $success) {
342 $page->trigSuccess('Ton profil a bien été mis à jour.');
343 }
344 }
345
346 function handler_education_js(&$page)
347 {
348 pl_cached_content_headers("text/javascript", "utf-8");
349 $page->changeTpl('profile/education.js.tpl', NO_SKIN);
350 require_once 'education.func.inc.php';
351 }
352
353 function handler_grades_js(&$page)
354 {
355 pl_cached_content_headers("text/javascript", "utf-8");
356 $page->changeTpl('profile/grades.js.tpl', NO_SKIN);
357 $res = XDB::iterator("SELECT *
358 FROM profile_medal_grade_enum
359 ORDER BY mid, pos");
360 $grades = array();
361 while ($tmp = $res->next()) {
362 $grades[$tmp['mid']][] = $tmp;
363 }
364 $page->assign('grades', $grades);
365
366 $res = XDB::iterator("SELECT *, FIND_IN_SET('validation', flags) AS validate
367 FROM profile_medal_enum
368 ORDER BY type, text");
369 $mlist = array();
370 while ($tmp = $res->next()) {
371 $mlist[$tmp['type']][] = $tmp;
372 }
373 $page->assign('medal_list', $mlist);
374 }
375
376 function handler_ajax_address(&$page, $id)
377 {
378 pl_content_headers("text/html");
379 $page->changeTpl('profile/adresses.address.tpl', NO_SKIN);
380 $page->assign('i', $id);
381 $page->assign('address', array());
382 }
383
384 function handler_ajax_tel(&$page, $prefid, $prefname, $telid)
385 {
386 pl_content_headers("text/html");
387 $page->changeTpl('profile/phone.tpl', NO_SKIN);
388 $page->assign('prefid', $prefid);
389 $page->assign('prefname', $prefname);
390 $page->assign('telid', $telid);
391 $phone = new Phone();
392 $page->assign('tel', $phone->toFormArray());
393 }
394
395 function handler_ajax_edu(&$page, $eduid, $class)
396 {
397 pl_content_headers("text/html");
398 $page->changeTpl('profile/general.edu.tpl', NO_SKIN);
399 $res = XDB::iterator("SELECT id, field
400 FROM profile_education_field_enum
401 ORDER BY field");
402 $page->assign('edu_fields', $res->fetchAllAssoc());
403 $page->assign('eduid', $eduid);
404 $page->assign('class', $class);
405 require_once "education.func.inc.php";
406 }
407
408 function handler_ajax_medal(&$page, $id)
409 {
410 pl_content_headers("text/html");
411 $page->changeTpl('profile/deco.medal.tpl', NO_SKIN);
412 $page->assign('id', $id);
413 $page->assign('medal', array('valid' => 0, 'grade' => 0));
414 }
415
416 function handler_ajax_job(&$page, $id)
417 {
418 pl_content_headers("text/html");
419 $page->changeTpl('profile/jobs.job.tpl', NO_SKIN);
420 $page->assign('i', $id);
421 $page->assign('job', array());
422 $page->assign('new', true);
423 require_once "emails.combobox.inc.php";
424 fill_email_combobox($page);
425 }
426
427 /**
428 * Page for url "profile/ajax/tree/jobterms". Display a JSon page containing
429 * the sub-branches of a branch in the job terms tree.
430 * @param $page the Platal page
431 * @param $filter filter helps to display only jobterms that are contained in jobs or in mentors
432 *
433 * @param Env::i('jtid') job term id of the parent branch, if none trunk will be used
434 * @param Env::v('attrfunc') the name of a javascript function that will be called when a branch
435 * is chosen
436 * @param Env::v('treeid') tree id that will be given as first argument of attrfunc function
437 * the second argument will be the chosen job term id and the third one the chosen job full name.
438 */
439 function handler_ajax_tree_job_terms(&$page, $filter = JobTerms::ALL)
440 {
441 JobTerms::ajaxGetBranch(&$page, $filter);
442 }
443
444 function handler_ajax_skill(&$page, $cat, $id)
445 {
446 pl_content_headers("text/html");
447 $page->changeTpl('profile/skill.skill.tpl', NO_SKIN);
448 $page->assign('cat', $cat);
449 $page->assign('id', $id);
450 if ($cat == 'competences') {
451 $page->assign('levels', array('initié' => 'initié',
452 'bonne connaissance' => 'bonne connaissance',
453 'expert' => 'expert'));
454 } else {
455 $page->assign('levels', array(1 => 'connaissance basique',
456 2 => 'maîtrise des bases',
457 3 => 'maîtrise limitée',
458 4 => 'maîtrise générale',
459 5 => 'bonne maîtrise',
460 6 => 'maîtrise complète'));
461 }
462 }
463
464 function handler_ajax_searchname(&$page, $id, $isFemale)
465 {
466 pl_content_headers("text/html");
467 $page->changeTpl('profile/general.searchname.tpl', NO_SKIN);
468 $res = XDB::query("SELECT id, name, FIND_IN_SET('public', flags) AS pub
469 FROM profile_name_enum
470 WHERE NOT FIND_IN_SET('not_displayed', flags)
471 AND NOT FIND_IN_SET('always_displayed', flags)");
472 $page->assign('sn_type_list', $res->fetchAllAssoc());
473 $page->assign('isFemale', $isFemale);
474 $page->assign('i', $id);
475 }
476
477 function handler_ajax_buildnames(&$page, $data, $isFemale)
478 {
479 pl_content_headers("text/html");
480 $page->changeTpl('profile/general.buildnames.tpl', NO_SKIN);
481 require_once 'name.func.inc.php';
482 $page->assign('names', build_javascript_names($data, $isFemale));
483 }
484
485 function handler_referent(&$page, $pf)
486 {
487 $page->changeTpl('profile/fiche_referent.tpl', SIMPLE);
488
489 $pf = Profile::get($pf);
490 if (!$pf) {
491 return PL_NOT_FOUND;
492 }
493
494 $page->assign_by_ref('profile', $pf);
495
496 // Retrieves referents' countries.
497 $res = XDB::query(
498 "SELECT gc.countryFR
499 FROM profile_mentor_country AS m
500 LEFT JOIN geoloc_countries AS gc ON (m.country = gc.iso_3166_1_a2)
501 WHERE pid = {?}", $pf->id());
502 $page->assign('pays', $res->fetchColumn());
503
504 $page->addJsLink('close_on_esc.js');
505 }
506
507 function handler_ref_country(&$page)
508 {
509 pl_content_headers("text/html");
510 $page->changeTpl('include/field.select.tpl', NO_SKIN);
511 $page->assign('name', 'pays_sel');
512 $it = XDB::iterator("SELECT gc.iso_3166_1_a2 AS id, gc.countryFR AS field
513 FROM geoloc_countries AS gc
514 INNER JOIN profile_mentor_country AS mp ON (mp.country = gc.iso_3166_1_a2)
515 GROUP BY iso_3166_1_a2
516 ORDER BY countryFR");
517 $page->assign('list', $it);
518 }
519
520 /**
521 * Page for url "referent/autocomplete". Display an "autocomplete" page (plain/text with values
522 * separated by "|" chars) for jobterms in referent (mentor) search.
523 * @see handler_jobterms
524 */
525 function handler_ref_autocomplete(&$page)
526 {
527 $this->handler_jobterms(&$page, 'mentor');
528 }
529
530 /**
531 * Page for url "profile/jobterms" (function also used for "referent/autocomplete" @see
532 * handler_ref_autocomplete). Displays an "autocomplete" page (plain text with values
533 * separated by "|" chars) for jobterms to add in profile.
534 * @param $page the Platal page
535 * @param $type set to 'mentor' to display the number of mentors for each term and order
536 * by descending number of mentors.
537 *
538 * @param Env::v('q') the text that has been typed and to complete automatically
539 */
540 function handler_jobterms(&$page, $type = 'nomentor')
541 {
542 pl_content_headers("text/plain");
543
544 $q = Env::v('q').'%';
545 $tokens = JobTerms::tokenize($q);
546 if (count($tokens) == 0) {
547 exit;
548 }
549 sort($tokens);
550 $q_normalized = implode(' ', $tokens);
551
552 // try to look in cached results
553 $cache = XDB::query('SELECT result
554 FROM search_autocomplete
555 WHERE name = {?} AND
556 query = {?} AND
557 generated > NOW() - INTERVAL 1 DAY',
558 $type, $q_normalized);
559 if ($res = $cache->fetchOneCell()) {
560 echo $res;
561 die();
562 }
563
564 $joins = JobTerms::token_join_query($tokens, 'e');
565 if ($type == 'mentor') {
566 $count = ', COUNT(DISTINCT pid) AS nb';
567 $countjoin = ' INNER JOIN profile_job_term_relation AS r ON(r.jtid_1 = e.jtid) INNER JOIN profile_mentor_term AS m ON(r.jtid_2 = m.jtid)';
568 $countorder = 'nb DESC, ';
569 } else {
570 $count = $countjoin = $countorder = '';
571 }
572 $list = XDB::iterator('SELECT e.jtid AS id, e.full_name AS field'.$count.'
573 FROM profile_job_term_enum AS e '.$joins.$countjoin.'
574 GROUP BY e.jtid
575 ORDER BY '.$countorder.'field
576 LIMIT 11');
577 $nbResults = 0;
578 $res = '';
579 while ($result = $list->next()) {
580 $nbResults++;
581 if ($nbResults == 11) {
582 $res .= $q."|-1\n";
583 } else {
584 $res .= $result['field'].'|';
585 if ($count) {
586 $res .= $result['nb'].'|';
587 }
588 $res .= $result['id'];
589 }
590 $res .= "\n";
591 }
592 XDB::query('REPLACE INTO search_autocomplete
593 VALUES ({?}, {?}, {?}, NOW())',
594 $type, $q_normalized, $res);
595 echo $res;
596 exit();
597 }
598
599 function handler_xnet(&$page)
600 {
601 $page->changeTpl('profile/groupesx.tpl');
602 $page->setTitle('Promo, Groupes X, Binets');
603
604 $req = XDB::query('
605 SELECT m.asso_id, a.nom, diminutif, a.logo IS NOT NULL AS has_logo,
606 COUNT(e.eid) AS events, mail_domain AS lists
607 FROM group_members AS m
608 INNER JOIN groups AS a ON(m.asso_id = a.id)
609 LEFT JOIN group_events AS e ON(e.asso_id = m.asso_id AND e.archive = 0)
610 WHERE uid = {?} GROUP BY m.asso_id ORDER BY a.nom', S::i('uid'));
611 $page->assign('assos', $req->fetchAllAssoc());
612 }
613
614 function handler_xnetlogo(&$page, $id)
615 {
616 if (is_null($id)) {
617 return PL_NOT_FOUND;
618 }
619
620 $res = XDB::query('SELECT logo, logo_mime
621 FROM groups
622 WHERE id = {?}', $id);
623 list($logo, $logo_mime) = $res->fetchOneRow();
624
625 if (!empty($logo)) {
626 pl_cached_dynamic_content_headers($logo_mime);
627 echo $logo;
628 } else {
629 pl_cached_dynamic_content_headers("image/jpeg");
630 readfile(dirname(__FILE__) . '/../htdocs/images/dflt_carre.jpg');
631 }
632
633 exit;
634 }
635
636 function handler_vcard(&$page, $x = null)
637 {
638 if (is_null($x)) {
639 return PL_NOT_FOUND;
640 }
641
642 global $globals;
643
644 if (substr($x, -4) == '.vcf') {
645 $x = substr($x, 0, strlen($x) - 4);
646 }
647
648 $vcard = new VCard();
649 $vcard->addProfile(Profile::get($x));
650 $vcard->show();
651 }
652
653 function handler_admin_trombino(&$page, $login = null, $action = null) {
654 $page->changeTpl('profile/admin_trombino.tpl');
655 $page->setTitle('Administration - Trombino');
656
657 if (!$login || !($user = User::get($login))) {
658 return PL_NOT_FOUND;
659 } else {
660 $page->assign_by_ref('user', $user);
661 }
662
663 switch ($action) {
664 case "original":
665 PlImage::fromFile("/home/web/trombino/photos" . $user->promo() . "/" . $user->login() . ".jpg", "image/jpeg")->send();
666 exit;
667
668 case "new":
669 S::assert_xsrf_token();
670
671 $data = file_get_contents($_FILES['userfile']['tmp_name']);
672 list($x, $y) = getimagesize($_FILES['userfile']['tmp_name']);
673 $mimetype = substr($_FILES['userfile']['type'], 6);
674 unlink($_FILES['userfile']['tmp_name']);
675 XDB::execute(
676 "REPLACE INTO profile_photos SET pid={?}, attachmime = {?}, attach={?}, x={?}, y={?}",
677 $user->profile()->id(), $mimetype, $data, $x, $y);
678 break;
679
680 case "delete":
681 S::assert_xsrf_token();
682
683 XDB::execute('DELETE FROM profile_photos WHERE pid = {?}', $user->profile()->id());
684 break;
685 }
686 }
687 function handler_admin_names(&$page, $action = 'list', $id = null) {
688 $page->setTitle('Administration - Types de noms');
689 $page->assign('title', 'Gestion des types de noms');
690 $table_editor = new PLTableEditor('admin/names', 'profile_name_enum', 'id', true);
691 $table_editor->describe('name', 'Nom', true);
692 $table_editor->describe('explanations', 'Explications', true);
693 $table_editor->describe('type', 'Type', true);
694 $table_editor->describe('flags', 'Flags', true);
695 $table_editor->describe('score', 'Score', true);
696 $table_editor->apply($page, $action, $id);
697 }
698 function handler_admin_binets(&$page, $action = 'list', $id = null) {
699 $page->setTitle('Administration - Binets');
700 $page->assign('title', 'Gestion des binets');
701 $table_editor = new PLTableEditor('admin/binets', 'profile_binet_enum', 'id');
702 $table_editor->add_join_table('profile_binets','binet_id',true);
703 $table_editor->describe('text','intitulé',true);
704 $table_editor->apply($page, $action, $id);
705 }
706 function handler_admin_education(&$page, $action = 'list', $id = null) {
707 $page->setTitle('Administration - Formations');
708 $page->assign('title', 'Gestion des formations');
709 $table_editor = new PLTableEditor('admin/education', 'profile_education_enum', 'id');
710 $table_editor->add_join_table('profile_education', 'eduid', true);
711 $table_editor->add_join_table('profile_education_degree', 'eduid', true);
712 $table_editor->describe('name', 'intitulé', true);
713 $table_editor->describe('url', 'site web', false);
714 $table_editor->apply($page, $action, $id);
715 }
716 function handler_admin_education_field(&$page, $action = 'list', $id = null) {
717 $page->setTitle('Administration - Domaines de formation');
718 $page->assign('title', 'Gestion des domaines de formation');
719 $table_editor = new PLTableEditor('admin/education_field', 'profile_education_field_enum', 'id', true);
720 $table_editor->add_join_table('profile_education', 'fieldid', true);
721 $table_editor->describe('field', 'domaine', true);
722 $table_editor->apply($page, $action, $id);
723 }
724 function handler_admin_education_degree(&$page, $action = 'list', $id = null) {
725 $page->setTitle('Administration - Niveau de formation');
726 $page->assign('title', 'Gestion des niveau de formation');
727 $table_editor = new PLTableEditor('admin/education_degree', 'profile_education_degree_enum', 'id');
728 $table_editor->add_join_table('profile_education_degree', 'degreeid', true);
729 $table_editor->add_join_table('profile_education', 'degreeid', true);
730 $table_editor->describe('degree', 'niveau', true);
731 $table_editor->apply($page, $action, $id);
732 }
733 function handler_admin_education_degree_set(&$page, $action = 'list', $id = null) {
734 $page->setTitle('Administration - Correspondances formations - niveau de formation');
735 $page->assign('title', 'Gestion des correspondances formations - niveau de formation');
736 $table_editor = new PLTableEditor('admin/education_degree_set', 'profile_education_degree', 'eduid', true);
737 $table_editor->describe('eduid', 'id formation', true);
738 $table_editor->describe('degreeid', 'id niveau', true);
739
740 // Adds fields to show the names of education
741 $table_editor->add_option_table('profile_education_enum','profile_education_enum.id = eduid');
742 $table_editor->add_option_field('profile_education_enum.name', 'edu_name', 'formation', null, 'degreeid');
743 // Adds fields to show the names of degrees
744 $table_editor->add_option_table('profile_education_degree_enum','profile_education_degree_enum.id = t.degreeid');
745 $table_editor->add_option_field('profile_education_degree_enum.degree', 'degree_name', 'niveau');
746
747 $table_editor->apply($page, $action, $id);
748 }
749 function handler_admin_sections(&$page, $action = 'list', $id = null) {
750 $page->setTitle('Administration - Sections');
751 $page->assign('title', 'Gestion des sections');
752 $table_editor = new PLTableEditor('admin/sections','profile_section_enum','id');
753 $table_editor->describe('text','intitulé',true);
754 $table_editor->apply($page, $action, $id);
755 }
756 function handler_admin_networking(&$page, $action = 'list', $id = null) {
757 $page->assign('xorg_title', 'Polytechnique.org - Administration - Networking');
758 $page->assign('title', 'Gestion des types de networking');
759 $table_editor = new PLTableEditor('admin/networking', 'profile_networking_enum', 'nwid');
760 $table_editor->describe('name', 'intitulé', true);
761 $table_editor->describe('icon', 'nom de l\'icône', false);
762 $table_editor->describe('filter', 'filtre', true);
763 $table_editor->describe('link', 'lien web', true);
764 $table_editor->apply($page, $action, $id);
765 }
766 function handler_admin_corps_enum(&$page, $action = 'list', $id = null) {
767 $page->setTitle('Administration - Corps');
768 $page->assign('title', 'Gestion des Corps');
769 $table_editor = new PLTableEditor('admin/corps_enum', 'profile_corps_enum', 'id');
770 $table_editor->describe('name', 'intitulé', true);
771 $table_editor->describe('abbreviation', 'abbréviation', true);
772 $table_editor->describe('still_exists', 'existe encore ?', true);
773 $table_editor->apply($page, $action, $id);
774 }
775 function handler_admin_corps_rank(&$page, $action = 'list', $id = null) {
776 $page->setTitle('Administration - Grade dans les Corps');
777 $page->assign('title', 'Gestion des grade dans les Corps');
778 $table_editor = new PLTableEditor('admin/corps_rank', 'profile_corps_rank_enum', 'id');
779 $table_editor->describe('name', 'intitulé', true);
780 $table_editor->describe('abbreviation', 'abbréviation', true);
781 $table_editor->apply($page, $action, $id);
782 }
783 function handler_admin_medals(&$page, $action = 'list', $id = null) {
784 $page->setTitle('Administration - Distinctions');
785 $page->assign('title', 'Gestion des Distinctions');
786 $table_editor = new PLTableEditor('admin/medals','profile_medal_enum','id');
787 $table_editor->describe('text', 'intitulé', true);
788 $table_editor->describe('img', 'nom de l\'image', false);
789 $table_editor->describe('flags', 'valider', true);
790 $table_editor->apply($page, $action, $id);
791 if ($id && $action == 'edit') {
792 $page->changeTpl('profile/admin_decos.tpl');
793
794 $mid = $id;
795
796 if (Post::v('act') == 'del') {
797 XDB::execute('DELETE FROM profile_medal_grade_enum
798 WHERE mid={?} AND gid={?}', $mid, Post::i('gid'));
799 } else {
800 foreach (Post::v('grades', array()) as $gid=>$text) {
801 if ($gid === 0) {
802 if (!empty($text)) {
803 $res = XDB::query('SELECT MAX(gid)
804 FROM profile_medal_grade_enum
805 WHERE mid = {?}', $mid);
806 $gid = $res->fetchOneCell() + 1;
807
808 XDB::execute('INSERT INTO profile_medal_grade_enum (mid, gid, text, pos)
809 VALUES ({?}, {?}, {?}, {?})',
810 $mid, $gid, $text, $_POST['pos']['0']);
811 }
812 } else {
813 XDB::execute('UPDATE profile_medal_grade_enum
814 SET pos={?}, text={?}
815 WHERE gid={?} AND mid={?}', $_POST['pos'][$gid], $text, $gid, $mid);
816 }
817 }
818 }
819 $res = XDB::iterator('SELECT gid, text, pos FROM profile_medal_grade_enum WHERE mid={?} ORDER BY pos', $mid);
820 $page->assign('grades', $res);
821 }
822 }
823 }
824
825 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
826 ?>