Adapts advanced search on addresses to our new geocoding engine (gmaps v3).
[platal.git] / modules / search.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2011 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 SearchModule extends PLModule
23 {
24 function handlers()
25 {
26 return array(
27 'search' => $this->make_hook('quick', AUTH_PUBLIC),
28 'search/adv' => $this->make_hook('advanced', AUTH_COOKIE, 'directory_ax'),
29 'advanced_search.php' => $this->make_hook('redir_advanced', AUTH_PUBLIC),
30 'search/autocomplete' => $this->make_hook('autocomplete', AUTH_COOKIE, 'directory_ax', NO_AUTH),
31 'search/list' => $this->make_hook('list', AUTH_COOKIE, 'directory_ax', NO_AUTH),
32 'jobs' => $this->make_hook('referent', AUTH_COOKIE),
33 'emploi' => $this->make_hook('referent', AUTH_COOKIE),
34 'referent/search' => $this->make_hook('referent', AUTH_COOKIE),
35 'search/referent/countries' => $this->make_hook('referent_countries', AUTH_COOKIE),
36 );
37 }
38
39 function handler_redir_advanced($page, $mode = null)
40 {
41 pl_redirect('search/adv');
42 exit;
43 }
44
45 function form_prepare()
46 {
47 Platal::page()->assign('formulaire',1);
48 }
49
50 /**
51 * $model: The way of presenting the results: minifiche, trombi, geoloc.
52 * $byletter: Show only names beginning with this letter
53 */
54 function handler_quick($page, $model = null, $byletter = null)
55 {
56 global $globals;
57
58 if (Env::has('quick') || $model == 'geoloc') {
59 $quick = Env::t('quick');
60 if (S::logged() && !Env::has('page')) {
61 S::logger()->log('search', 'quick=' . $quick);
62 }
63
64 if ($quick == '') {
65 $page->trigWarning('Aucun critère de recherche n\'est spécifié.');
66 $page->changeTpl('search/index.tpl');
67 $page->setTitle('Annuaire');
68 $page->assign('formulaire', 1);
69 return;
70 }
71
72 $list = 'profile|prf|fiche|fic|referent|ref|mentor';
73 if (S::admin()) {
74 $list .= '|admin|adm|ax';
75 }
76 $suffixes = array_keys(DirEnum::getOptions(DirEnum::ACCOUNTTYPES));
77 $suffixes = implode('|', $suffixes);
78 if (preg_match('/^(' . $list . '):([-a-z]+(\.[-a-z]+(\.(?:[md]?\d{2,4}|' . $suffixes . '))?)?)$/', replace_accent($quick), $matches)) {
79 $login = $matches[2];
80 switch($matches[1]) {
81 case 'admin': case 'adm':
82 $base = 'admin/user/';
83 break;
84 case 'ax':
85 $base = 'profile/ax/';
86 break;
87 case 'profile': case 'prf': case 'fiche': case 'fic':
88 $base = 'profile/';
89 break;
90 case 'referent': case 'ref': case 'mentor':
91 $base = 'referent/';
92 break;
93 }
94
95 $user = User::getSilent($login);
96 if ($user) {
97 pl_redirect($base . $user->login());
98 }
99 Get::set('quick', $login);
100 } elseif (strpos($quick, 'doc:') === 0) {
101 $url = 'Docs/Recherche?';
102 $url .= 'action=search&q=' . urlencode(substr($quick, 4));
103 $url .= '&group=' . urlencode('-Equipe,-Main,-PmWiki,-Site,-Review');
104 pl_redirect($url);
105 } elseif (strpos($quick, 'trombi:') === 0) {
106 $promo = substr($quick, 7);
107 $res = XDB::query("SELECT diminutif
108 FROM groups
109 WHERE cat = 'Promotions' AND diminutif = {?}",
110 $promo);
111 if ($res->numRows() == 0) {
112 $page->trigWarning("La promotion demandée n'est pas valide: $promo");
113 } else {
114 http_redirect('http://www.polytechnique.net/login/' . $promo . '/annuaire/trombi');
115 }
116 }
117
118 $page->assign('formulaire', 0);
119
120 require_once 'userset.inc.php';
121 $view = new QuickSearchSet();
122 $view->addMod('minifiche', 'Mini-fiches', true, array('with_score' => true, 'starts_with' => $byletter));
123 if (S::logged() && !Env::i('nonins')) {
124 $view->addMod('trombi', 'Trombinoscope', false, array('with_promo' => true, 'with_score' => true));
125 // TODO: Reactivate when the new map is completed.
126 // $view->addMod('geoloc', 'Planisphère', false, array('with_annu' => 'search/adv'));
127 }
128 $view->apply('search', $page, $model);
129
130 $nb_tot = $view->count();
131 $page->assign('search_results_nb', $nb_tot);
132 if (!S::logged() && $nb_tot > $globals->search->public_max) {
133 $page->trigError('Votre recherche a généré trop de résultats pour un affichage public.');
134 } elseif ($nb_tot > $globals->search->private_max) {
135 $page->trigError('Recherche trop générale. Une <a href="search/adv">recherche avancée</a> permet de préciser la recherche.');
136 } elseif (empty($nb_tot)) {
137 $page->trigError('Il n\'existe personne correspondant à ces critères dans la base !');
138 }
139 } else {
140 $page->assign('formulaire',1);
141 }
142
143 $page->changeTpl('search/index.tpl');
144 $page->setTitle('Annuaire');
145 }
146
147 /** $model is the way of presenting the results: minifiche, trombi, geoloc.
148 */
149 function handler_advanced($page, $model = null, $byletter = null)
150 {
151 global $globals;
152 $page->assign('advanced',1);
153
154 $networks = DirEnum::getOptions(DirEnum::NETWORKS);
155 $networks[-1] = 'Tous types';
156 $networks[0] = '-';
157 ksort($networks);
158 $page->assign('networking_types', $networks);
159 $origin_corps_list = DirEnum::getOptions(DirEnum::CURRENTCORPS);
160 $current_corps_list = DirEnum::getOptions(DirEnum::ORIGINCORPS);
161 $corps_rank_list = DirEnum::getOptions(DirEnum::CORPSRANKS);
162 $origin_corps_list[0] = '-';
163 $current_corps_list[0] = '-';
164 $corps_rank_list[0] = '-';
165 ksort($origin_corps_list);
166 ksort($current_corps_list);
167 ksort($corps_rank_list);
168 $page->assign('origin_corps_list', $origin_corps_list);
169 $page->assign('current_corps_list', $current_corps_list);
170 $page->assign('corps_rank_list', $corps_rank_list);
171
172 if (!Env::has('rechercher') && $model != 'geoloc') {
173 $this->form_prepare();
174 } else {
175 if (!Env::has('page')) {
176 S::logger()->log('search', 'adv=' . var_export($_GET, true));
177 }
178
179 require_once 'userset.inc.php';
180 // Enable X.org fields for X.org admins, and AX fields for AX secretaries.
181 $view = new AdvancedSearchSet(S::admin(),
182 S::user()->checkPerms(User::PERM_EDIT_DIRECTORY));
183
184 if (!$view->isValid()) {
185 $this->form_prepare();
186 $page->trigError('Recherche invalide.');
187 } else {
188 $view->addMod('minifiche', 'Mini-fiches', true, array('starts_with' => $byletter));
189 $view->addMod('trombi', 'Trombinoscope', false, array('with_promo' => true));
190 // TODO: Reactivate when the new map is completed.
191 // $view->addMod('geoloc', 'Planisphère', false, array('with_annu' => 'search/adv'));
192 if (S::user()->checkPerms(User::PERM_EDIT_DIRECTORY) || S::admin()) {
193 $view->addMod('addresses', 'Adresses postales', false);
194 }
195 $view->apply('search/adv', $page, $model);
196
197 $nb_tot = $view->count();
198 if ($nb_tot > $globals->search->private_max) {
199 $this->form_prepare();
200 if ($model != 'addresses' && (S::user()->checkPerms(User::PERM_EDIT_DIRECTORY) || S::admin())) {
201 $page->assign('suggestAddresses', true);
202 }
203 $page->trigError('Recherche trop générale.');
204 } else if ($nb_tot == 0) {
205 $this->form_prepare();
206 $page->trigError('Il n\'existe personne correspondant à ces critères dans la base !');
207 }
208 }
209 }
210
211 $page->changeTpl('search/index.tpl', $model == 'mini' ? SIMPLE : SKINNED);
212 $page->assign('public_directory',0);
213 }
214
215 function handler_autocomplete($page, $type = null)
216 {
217 // Autocompletion : according to type required, return
218 // a list of results matching with the number of matches.
219 // The output format is :
220 // result1|nb1
221 // result2|nb2
222 // ...
223 pl_content_headers("text/plain");
224 $q = preg_replace(array('/\*+$/', // always look for $q*
225 '/([\^\$\[\]])/', // escape special regexp char
226 '/\*/'), // replace joker by regexp joker
227 array('',
228 '\\\\\1',
229 '.*'),
230 Env::s('q'));
231 if (!$q) exit();
232
233 // try to look in cached results
234 $cache = XDB::query('SELECT result
235 FROM search_autocomplete
236 WHERE name = {?} AND
237 query = {?} AND
238 generated > NOW() - INTERVAL 1 DAY',
239 $type, $q);
240 if ($res = $cache->fetchOneCell()) {
241 echo $res;
242 die();
243 }
244
245 $enums = array(
246 'binetTxt' => DirEnum::BINETS,
247 'groupexTxt' => DirEnum::GROUPESX,
248 'sectionTxt' => DirEnum::SECTIONS,
249 'networking_typeTxt' => DirEnum::NETWORKS,
250 'city' => DirEnum::LOCALITIES,
251 'countryTxt' => DirEnum::COUNTRIES,
252 'entreprise' => DirEnum::COMPANIES,
253 'jobtermTxt' => DirEnum::JOBTERMS,
254 'description' => DirEnum::JOBDESCRIPTION,
255 'nationaliteTxt' => DirEnum::NATIONALITIES,
256 'schoolTxt' => DirEnum::EDUSCHOOLS,
257 );
258 if (!array_key_exists($type, $enums)) {
259 exit();
260 }
261
262 $enum = $enums[$type];
263
264 $list = DirEnum::getAutoComplete($enum, $q);
265 $nbResults = 0;
266 $res = "";
267 while ($result = $list->next()) {
268 $nbResults++;
269 if ($nbResults == 11) {
270 $res .= $q."|-1\n";
271 } else {
272 $res .= $result['field'].'|';
273 if (isset($result['nb'])) {
274 $res .= $result['nb'];
275 }
276 if (isset($result['id'])) {
277 $res .= '|'.$result['id'];
278 }
279 $res .= "\n";
280 }
281 }
282 if ($nbResults == 0) {
283 $res = $q."|-2\n";
284 }
285 XDB::query('INSERT INTO search_autocomplete (name, query, result, generated)
286 VALUES ({?}, {?}, {?}, NOW())
287 ON DUPLICATE KEY UPDATE result = VALUES(result), generated = VALUES(generated)',
288 $type, $q, $res);
289 echo $res;
290 exit();
291 }
292
293 function handler_list($page, $type = null, $idVal = null)
294 {
295 $page->assign('name', $type);
296 $page->assign('with_text_value', true);
297 $page->assign('onchange', "document.forms.recherche.{$type}Txt.value = this.options[this.selectedIndex].text");
298
299 // Give the list of all values possible of type and builds a select input for it
300 $ids = null;
301
302 switch ($type) {
303 case 'binet':
304 $ids = DirEnum::getOptionsIter(DirEnum::BINETS);
305 break;
306 case 'networking_type':
307 $ids = DirEnum::getOptionsIter(DirEnum::NETWORKS);
308 break;
309 case 'country':
310 $ids = DirEnum::getOptionsIter(DirEnum::COUNTRIES);
311 $page->assign('onchange', 'changeCountry(this.value)');
312 break;
313 case 'diploma':
314 if (Env::has('school') && Env::i('school') != 0) {
315 $ids = DirEnum::getOptionsIter(DirEnum::EDUDEGREES, Env::i('school'));
316 } else {
317 $ids = DirEnum::getOptionsIter(DirEnum::EDUDEGREES);
318 }
319 break;
320 case 'groupex':
321 $ids = DirEnum::getOptionsIter(DirEnum::GROUPESX);
322 break;
323 case 'nationalite':
324 $ids = DirEnum::getOptionsIter(DirEnum::NATIONALITIES);
325 break;
326 case 'administrativearea':
327 if (Env::has('country')) {
328 $ids = DirEnum::getOptionsIter(DirEnum::ADMINAREAS, Env::v('country'));
329 } else {
330 $ids = DirEnum::getOptionsIter(DirEnum::ADMINAREAS);
331 }
332 $page->assign('onchange', 'changeAdministrativeArea(this.value)');
333 break;
334 case 'subadministrativearea':
335 if (Env::has('administrativearea')) {
336 $ids = DirEnum::getOptionsIter(DirEnum::SUBADMINAREAS, Env::v('administrativearea'));
337 } else {
338 $ids = DirEnum::getOptionsIter(DirEnum::SUBADMINAREAS);
339 }
340 break;
341 case 'school':
342 $ids = DirEnum::getOptionsIter(DirEnum::EDUSCHOOLS);
343 $page->assign('onchange', 'changeSchool(this.value)');
344 break;
345 case 'section':
346 $ids = DirEnum::getOptionsIter(DirEnum::SECTIONS);
347 break;
348 case 'jobterm':
349 if (Env::has('jtid')) {
350 JobTerms::ajaxGetBranch($page, JobTerms::ONLY_JOBS);
351 return;
352 } else {
353 pl_content_headers('text/xml');
354 echo '<div>'; // global container so that response is valid xml
355 echo '<input name="jobtermTxt" type="text" style="display:none" size="32" />';
356 echo '<input name="jobterm" type="hidden"/>';
357 echo '<div class="term_tree"></div>'; // container where to create the tree
358 echo '<script type="text/javascript" src="javascript/jquery.jstree.js"></script>';
359 echo '<script type="text/javascript" src="javascript/jobtermstree.js"></script>';
360 echo '<script type="text/javascript">createJobTermsTree(".term_tree", "search/list/jobterm", "search", "searchForJobTerm");</script>';
361 echo '</div>';
362 exit();
363 }
364 default: exit();
365 }
366 if (isset($idVal)) {
367 pl_content_headers("text/plain");
368 echo $ids[$idVal];
369 exit();
370 }
371 pl_content_headers("text/xml");
372 $page->changeTpl('include/field.select.tpl', NO_SKIN);
373 $page->assign('list', $ids);
374 }
375
376 function handler_referent($page, $action = null, $subaction = null)
377 {
378 global $globals;
379
380 $wp = new PlWikiPage('Docs.Emploi');
381 $wp->buildCache();
382
383 $page->setTitle('Emploi et Carrières');
384
385 // Count mentors
386 $res = XDB::query("SELECT count(distinct pid) FROM profile_mentor_term");
387 $page->assign('mentors_number', $res->fetchOneCell());
388
389 // Search for mentors matching filters
390 require_once 'ufbuilder.inc.php';
391 $ufb = new UFB_MentorSearch();
392 if (!$ufb->isEmpty()) {
393 require_once 'userset.inc.php';
394 $ufc = $ufb->getUFC();
395 $set = new ProfileSet($ufc);
396 $set->addMod('mentor', 'Référents');
397 $set->apply('referent/search', $page, $action, $subaction);
398 $nb_tot = $set->count();
399 if ($nb_tot > $globals->search->private_max) {
400 $this->form_prepare();
401 $page->trigError('Recherche trop générale.');
402 $page->assign('plset_count', 0);
403 } else if ($nb_tot == 0) {
404 $this->form_prepare();
405 $page->trigError('Il n\'existe personne correspondant à ces critères dans la base.');
406 }
407 }
408
409 $page->changeTpl('search/referent.tpl');
410 }
411
412 /**
413 * Builds a select field to choose among countries that referents
414 * know about. Only referents linked to term (jtid) are displayed.
415 * @param $jtid id of job term to restrict referents
416 */
417 function handler_referent_countries($page, $jtid = null)
418 {
419 pl_content_headers("text/xml");
420 $page->changeTpl('include/field.select.tpl', NO_SKIN);
421 $page->assign('name', 'country');
422 $it = XDB::iterator("SELECT gc.iso_3166_1_a2 AS id, gc.country AS field
423 FROM geoloc_countries AS gc
424 INNER JOIN profile_mentor_country AS mp ON (mp.country = gc.iso_3166_1_a2)
425 INNER JOIN profile_mentor_term AS mt ON (mt.pid = mp.pid)
426 INNER JOIN profile_job_term_relation AS jtr ON (jtr.jtid_2 = mt.jtid)
427 WHERE jtr.jtid_1 = {?}
428 GROUP BY gc.iso_3166_1_a2
429 ORDER BY gc.country", $jtid);
430 $page->assign('list', $it);
431 }
432 }
433
434 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
435 ?>