Minor bugfixes
[platal.git] / modules / search.php
CommitLineData
09824164 1<?php
2/***************************************************************************
8d84c630 3 * Copyright (C) 2003-2009 Polytechnique.org *
09824164 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 SearchModule extends PLModule
23{
24 function handlers()
25 {
26 return array(
abed2826
SJ
27 'search' => $this->make_hook('quick', AUTH_PUBLIC),
28 'search/adv' => $this->make_hook('advanced', AUTH_COOKIE),
ba2afb88 29 'advanced_search.php' => $this->make_hook('redir_advanced', AUTH_PUBLIC),
abed2826
SJ
30 'search/autocomplete' => $this->make_hook('autocomplete', AUTH_COOKIE, 'user', NO_AUTH),
31 'search/list' => $this->make_hook('list', AUTH_COOKIE, 'user', NO_AUTH),
09824164 32 );
33 }
34
ba2afb88 35 function handler_redir_advanced(&$page, $mode = null)
36 {
37 pl_redirect('search/adv');
38 exit;
39 }
40
09824164 41 function form_prepare()
42 {
d7610c35 43 Platal::page()->assign('formulaire',1);
3c640222 44 }
45
46 function get_diplomas($school = null)
47 {
48 if (is_null($school) && Env::has('school')) {
49 $school = Env::i('school');
50 }
09824164 51
f9817768
SJ
52 if ((!is_null($school)) && ($school != '')) {
53 $sql = 'SELECT degreeid
54 FROM profile_education_degree
55 WHERE eduid=' . $school;
09824164 56 } else {
f9817768
SJ
57 $sql = 'SELECT id
58 FROM profile_education_degree_enum
59 ORDER BY id';
09824164 60 }
61
08cce2ff 62 $res = XDB::query($sql);
f9817768
SJ
63 Platal::page()->assign('choix_diplomas', $res->fetchColumn());
64
65 $sql = 'SELECT degree
66 FROM profile_education_degree_enum
67 ORDER BY id';
68 $res = XDB::query($sql);
69 Platal::page()->assign('name_diplomas', $res->fetchColumn());
09824164 70 }
71
8c4a0c30 72 function handler_quick(&$page, $action = null, $subaction = null)
09824164 73 {
74 global $globals;
75
78e4b1f6 76 $res = XDB::query("SELECT MIN(diminutif), MAX(diminutif)
00112b2e 77 FROM #groupex#.asso
78e4b1f6 78 WHERE cat = 'Promotions'");
97eff0ff 79 list($min, $max) = $res->fetchOneRow();
80 $page->assign('promo_min', $min);
81 $page->assign('promo_max', $max);
82
8c4a0c30 83 if (Env::has('quick') || $action == 'geoloc') {
383bcdec 84 $quick = trim(Env::v('quick'));
85bb670b 85 if (S::logged() && !Env::has('page')) {
732e5855 86 S::logger()->log('search', 'quick=' . $quick);
e31c1c3e 87 }
383bcdec 88 $list = 'profile|prf|fiche|fic|referent|ref|mentor';
dd70cd28 89 if (S::admin()) {
383bcdec 90 $list .= '|admin|adm|ax';
91 }
11647113 92 if (preg_match('/^(' . $list . '):([-a-z]+(\.[-a-z]+(\.\d{2,4})?)?)$/', replace_accent($quick), $matches)) {
4514bea3 93 $login = $matches[2];
383bcdec 94 switch($matches[1]) {
95 case 'admin': case 'adm':
96 $base = 'admin/user/';
97 break;
98 case 'ax':
99 $base = 'profile/ax/';
100 break;
101 case 'profile': case 'prf': case 'fiche': case 'fic':
102 $base = 'profile/';
103 break;
104 case 'referent': case 'ref': case 'mentor':
105 $base = 'referent/';
106 break;
107 }
7511200d 108
4514bea3
VZ
109 $user = User::getSilent($login);
110 if ($user) {
111 pl_redirect($base . $user->login());
7511200d 112 }
90c614cd
VZ
113 $_REQUEST['quick'] = $login;
114 $_GET['quick'] = $login;
8fee4fbd 115 } elseif (strpos($quick, 'doc:') === 0) {
116 $url = 'Docs/Recherche?';
117 $url .= 'action=search&q=' . urlencode(substr($quick, 4));
7511200d 118 $url .= '&group=' . urlencode('-Equipe,-Main,-PmWiki,-Site,-Review');
8fee4fbd 119 pl_redirect($url);
383bcdec 120 }
8fee4fbd 121
09824164 122 $page->assign('formulaire', 0);
123
8c4a0c30 124 require_once 'userset.inc.php';
125 $view = new SearchSet(true, $action == 'geoloc' && substr($subaction, -3) == 'swf');
1fae7605 126 $view->addMod('minifiche', 'Mini-fiches', true, array('with_score' => true));
35fa92e8 127 if (S::logged() && !Env::i('nonins')) {
128 $view->addMod('trombi', 'Trombinoscope', false, array('with_promo' => true, 'with_score' => true));
1fe46b8f
SJ
129 // TODO: Reactivate when the new map is completed.
130 // $view->addMod('geoloc', 'Planisphère', false, array('with_annu' => 'search/adv'));
35fa92e8 131 }
8c4a0c30 132 $view->apply('search', $page, $action, $subaction);
09824164 133
8c4a0c30 134 $nb_tot = $view->count();
e35882be 135 $page->assign('search_results_nb', $nb_tot);
8c4a0c30 136 if ($subaction) {
137 return;
138 }
cab08090 139 if (!S::logged() && $nb_tot > $globals->search->public_max) {
a7de4ef7 140 new ThrowError('Votre recherche a généré trop de résultats pour un affichage public.');
09824164 141 } elseif ($nb_tot > $globals->search->private_max) {
8d118e58 142 new ThrowError('Recherche trop générale. Une <a href="search/adv">recherche avancée</a> permet de préciser la recherche.');
09824164 143 } elseif (empty($nb_tot)) {
8d118e58 144 new ThrowError('Il n\'existe personne correspondant à ces critères dans la base !');
09824164 145 }
146 } else {
147 $page->assign('formulaire',1);
e654517d 148 $page->addJsLink('ajax.js');
09824164 149 }
150
460d8f55 151 $this->load('search.inc.php');
eaf30d86 152 $page->changeTpl('search/index.tpl');
46f272fe 153 $page->setTitle('Annuaire');
09824164 154 }
155
90ccb062 156 function handler_advanced(&$page, $action = null, $subaction = null)
09824164 157 {
158 global $globals;
c7c2a181 159 require_once 'geocoding.inc.php';
460d8f55 160 $this->load('search.inc.php');
bc67c37c 161 $page->assign('advanced',1);
4b4b4b67 162 $page->addJsLink('jquery.autocomplete.js');
bc67c37c 163
90ccb062 164 if (!Env::has('rechercher') && $action != 'geoloc') {
09824164 165 $this->form_prepare();
166 } else {
137e819f 167 $textFields = array(
e4cd7a1f
SJ
168 'country' => array('field' => 'iso_3166_1_a2', 'table' => 'geoloc_countries', 'text' => 'countryFR',
169 'exact' => false),
2398e553 170 'fonction' => array('field' => 'id', 'table' => 'fonctions_def', 'text' => 'fonction_fr', 'exact' => true),
c7139c07 171 'secteur' => array('field' => 'id', 'table' => 'profile_job_sector_enum', 'text' => 'name', 'exact' => false),
e4cd7a1f
SJ
172 'nationalite' => array('field' => 'iso_3166_1_a2', 'table' => 'geoloc_countries',
173 'text' => 'nationalityFR', 'exact' => 'false'),
2398e553 174 'binet' => array('field' => 'id', 'table' => 'binets_def', 'text' => 'text', 'exact' => false),
92c3f9e5
GB
175 'networking_type' => array('field' => 'network_type', 'table' => 'profile_networking_enum',
176 'text' => 'name', 'exact' => false),
ee718651 177 'groupex' => array('field' => 'id', 'table' => '#groupex#.asso',
8320b6fb 178 'text' => "(cat = 'GroupesX' OR cat = 'Institutions') AND pub = 'public' AND nom",
2398e553
SJ
179 'exact' => false),
180 'section' => array('field' => 'id', 'table' => 'sections', 'text' => 'text', 'exact' => false),
181 'school' => array('field' => 'id', 'table' => 'profile_education_enum', 'text' => 'name', 'exact' => false),
e4cd7a1f 182 'city' => array('table' => 'geoloc_localities', 'text' => 'name', 'exact' => false)
137e819f 183 );
e31c1c3e 184 if (!Env::has('page')) {
732e5855 185 S::logger()->log('search', 'adv=' . var_export($_GET, true));
e31c1c3e 186 }
137e819f
FB
187 foreach ($textFields as $field=>&$query) {
188 if (!Env::v($field) && Env::v($field . 'Txt')) {
189 $res = XDB::query("SELECT {$query['field']}
190 FROM {$query['table']}
579a8c9a
FB
191 WHERE {$query['text']} " . ($query['exact'] ? " = {?}" :
192 " LIKE CONCAT('%', {?}, '%')"),
137e819f
FB
193 Env::v($field . 'Txt'));
194 $_REQUEST[$field] = $res->fetchOneCell();
195 }
196 }
197
8c4a0c30 198 require_once 'userset.inc.php';
199 $view = new SearchSet(false, $action == 'geoloc' && substr($subaction, -3) == 'swf');
1fae7605 200 $view->addMod('minifiche', 'Mini-fiches', true);
35fa92e8 201 $view->addMod('trombi', 'Trombinoscope', false, array('with_promo' => true));
1fe46b8f
SJ
202 // TODO: Reactivate when the new map is completed.
203 // $view->addMod('geoloc', 'Planisphère', false, array('with_annu' => 'search/adv'));
86b5c8f0 204 $view->apply('search/adv', $page, $action, $subaction);
eaf30d86 205
8c4a0c30 206 if ($subaction) {
207 return;
09824164 208 }
8c4a0c30 209 $nb_tot = $view->count();
09824164 210 if ($nb_tot > $globals->search->private_max) {
211 $this->form_prepare();
8d118e58 212 new ThrowError('Recherche trop générale.');
09824164 213 }
09824164 214 }
215
90ccb062 216 $page->changeTpl('search/index.tpl', $action == 'mini' ? SIMPLE : SKINNED);
3c640222 217 $page->addJsLink('ajax.js');
8c4a0c30 218 $page->assign('public_directory',0);
09824164 219 }
3c640222 220
838cc16a 221 function handler_autocomplete(&$page, $type = null)
222 {
223 // Autocompletion : according to type required, return
224 // a list of results matching with the number of matches.
225 // The output format is :
226 // result1|nb1
227 // result2|nb2
228 // ...
3cb500d5 229 pl_content_headers("text/plain");
ff3eb9b7 230 $q = preg_replace(array('/\*+$/', // always look for $q*
231 '/([\^\$\[\]])/', // escape special regexp char
232 '/\*/'), // replace joker by regexp joker
233 array('',
234 '\\\\\1',
235 '.*'),
78e4b1f6 236 Env::s('q'));
838cc16a 237 if (!$q) exit();
c15afc4e 238
eaf30d86 239 // try to look in cached results
78e4b1f6
FB
240 $cache = XDB::query('SELECT result
241 FROM search_autocomplete
242 WHERE name = {?} AND
243 query = {?} AND
244 generated > NOW() - INTERVAL 1 DAY',
ff3eb9b7 245 $type, $q);
c15afc4e 246 if ($res = $cache->fetchOneCell()) {
ff3eb9b7 247 echo $res;
248 die();
c15afc4e 249 }
eaf30d86 250
2ab7a09f 251 // default search
78e4b1f6
FB
252 $unique = 'pid';
253 $db = 'profiles';
2ab7a09f 254 $realid = false;
f3da6d81 255 $beginwith = true;
f6818108 256 $field2 = false;
baa62e58 257 $qsearch = str_replace(array('%', '_'), '', $q);
c7139c07 258 $distinct = true;
eaf30d86 259
838cc16a 260 switch ($type) {
ff3eb9b7 261 case 'binetTxt':
78e4b1f6
FB
262 $db = 'binets_def INNER JOIN
263 binets_ins ON(binets_def.id = binets_ins.binet_id)';
264 $field = 'binets_def.text';
ff3eb9b7 265 if (strlen($q) > 2)
266 $beginwith = false;
78e4b1f6 267 $realid = 'binets_def.id';
ff3eb9b7 268 break;
92c3f9e5 269 case 'networking_typeTxt':
78e4b1f6
FB
270 $db = 'profile_networking_enum INNER JOIN
271 profile_networking ON(profile_networking.network_type = profile_networking_enum.network_type)';
272 $field = 'profile_networking_enum.name';
92c3f9e5 273 $unique = 'uid';
78e4b1f6 274 $realid = 'profile_networking_enum.network_type';
92c3f9e5 275 break;
ff3eb9b7 276 case 'city':
e4cd7a1f
SJ
277 $db = 'geoloc_localities INNER JOIN
278 profile_addresses ON (geoloc_localities.id = profile_addresses.localityId)';
279 $unique = 'uid';
280 $field ='geoloc_localities.name';
ff3eb9b7 281 break;
282 case 'countryTxt':
e4cd7a1f
SJ
283 $db = 'geoloc_countries INNER JOIN
284 profile_addresses ON (geoloc_countries.iso_3166_1_a2 = profile_addresses.countryId)';
285 $unique = 'pid';
286 $field = 'geoloc_countries.countryFR';
287 $realid = 'geoloc_countries.iso_3166_1_a2';
ff3eb9b7 288 break;
289 case 'entreprise':
c7139c07
SJ
290 $db = 'profile_job_enum INNER JOIN
291 profile_job ON (profile_job.jobid = profile_job_enum.id)';
292 $field = 'profile_job_enum.name';
293 $unique = 'profile_job.uid';
ff3eb9b7 294 break;
ff3eb9b7 295 case 'fonctionTxt':
c7139c07
SJ
296 $db = 'fonctions_def INNER JOIN
297 profile_job ON (profile_job.fonctionid = fonctions_def.id)';
298 $field = 'fonction_fr';
299 $unique = 'uid';
300 $realid = 'fonctions_def.id';
ff3eb9b7 301 $beginwith = false;
302 break;
303 case 'groupexTxt':
00112b2e
VZ
304 $db = "#groupex#.asso AS a INNER JOIN
305 #groupex#.membres AS m ON(a.id = m.asso_id
579a8c9a
FB
306 AND (a.cat = 'GroupesX' OR a.cat = 'Institutions')
307 AND a.pub = 'public')";
308 $field='a.nom';
309 $field2 = 'a.diminutif';
ff3eb9b7 310 if (strlen($q) > 2)
311 $beginwith = false;
579a8c9a
FB
312 $realid = 'a.id';
313 $unique = 'm.uid';
ff3eb9b7 314 break;
ff3eb9b7 315 case 'nationaliteTxt':
e4cd7a1f 316 $db = 'geoloc_countries INNER JOIN
5b2c9987 317 profile ON (geoloc_countries.a2 IN (profile.nationality1, profile.nationality2, profile.nationality3))';
e4cd7a1f
SJ
318 $field = 'geoloc_countries.nationalityFR';
319 $realid = 'geoloc_countries.iso_3166_1_a2';
ff3eb9b7 320 break;
c7139c07
SJ
321 case 'description':
322 $db = 'profile_job';
323 $field = 'description';
324 $unique = 'uid';
ff3eb9b7 325 break;
326 case 'schoolTxt':
043bbacf
SJ
327 $db = 'profile_education_enum INNER JOIN
328 profile_education ON (profile_education_enum.id = profile_education.eduid)';
329 $field = 'profile_education_enum.name';
330 $unique = 'uid';
331 $realid = 'profile_education_enum.id';
ff3eb9b7 332 if (strlen($q) > 2)
333 $beginwith = false;
334 break;
335 case 'secteurTxt':
c7139c07
SJ
336 $db = 'profile_job_sector_enum INNER JOIN
337 profile_job ON (profile_job.sectorid = profile_job_sector_enum.id)';
338 $field = 'profile_job_sector_enum.name';
339 $realid = 'profile_job_sector_enum.id';
340 $unique = 'uid';
341 $beginwith = false;
342 break;
f3b2736f 343 case 'subSubSector':
c7139c07
SJ
344 $db = 'profile_job_subsubsector_enum';
345 $field = 'name';
ff3eb9b7 346 $beginwith = false;
c7139c07
SJ
347 $unique = 'name';
348 $distinct = false;
ff3eb9b7 349 break;
350 case 'sectionTxt':
78e4b1f6
FB
351 $db = 'sections AS acs
352 INNER JOIN profiles AS acp ON (acp.section = acs.id)';
353 $field = 'acs.text';
354 $realid = 'acs.id';
ff3eb9b7 355 $beginwith = false;
356 break;
357 default: exit();
838cc16a 358 }
359
baa62e58
FB
360 function make_field_test($fields, $beginwith) {
361 $tests = array();
362 $tests[] = $fields . ' LIKE CONCAT({?}, \'%\')';
363 if (!$beginwith) {
364 $tests[] = $fields . ' LIKE CONCAT(\'% \', {?}, \'%\')';
365 $tests[] = $fields . ' LIKE CONCAT(\'%-\', {?}, \'%\')';
366 }
367 return '(' . implode(' OR ', $tests) . ')';
368 }
ff3eb9b7 369 $field_select = $field;
baa62e58 370 $field_t = make_field_test($field, $beginwith);
ff3eb9b7 371 if ($field2) {
baa62e58
FB
372 $field2_t = make_field_test($field2, $beginwith);
373 $field_select = 'IF(' . $field_t . ', ' . $field . ', ' . $field2. ')';
ff3eb9b7 374 }
c7139c07
SJ
375 $list = XDB::iterator('SELECT ' . $field_select . ' AS field'
376 . ($distinct ? (', COUNT(DISTINCT ' . $unique . ') AS nb') : '')
377 . ($realid ? (', ' . $realid . ' AS id') : '') . '
baa62e58
FB
378 FROM ' . $db . '
379 WHERE ' . $field_t .
380 ($field2 ? (' OR ' . $field2_t) : '') . '
381 GROUP BY ' . $field_select . '
c7139c07 382 ORDER BY ' . ($distinct ? 'nb DESC' : $field_select) . '
ff3eb9b7 383 LIMIT 11',
7eb43a1d 384 $qsearch, $qsearch, $qsearch, $qsearch, $qsearch, $qsearch, $qsearch, $qsearch,
011b438c 385 $qsearch, $qsearch, $qsearch, $qsearch, $qsearch, $qsearch, $qsearch, $qsearch);
f781871c 386
838cc16a 387 $nbResults = 0;
c15afc4e 388 $res = "";
2ab7a09f 389 while ($result = $list->next()) {
838cc16a 390 $nbResults++;
391 if ($nbResults == 11) {
b3ec63d5 392 $res .= $q."|-1\n";
838cc16a 393 } else {
f6818108 394 $res .= $result['field'].'|';
c7139c07
SJ
395 if (isset($result['nb'])) {
396 $res .= $result['nb'];
397 }
ff3eb9b7 398 if (isset($result['id'])) {
399 $res .= '|'.$result['id'];
400 }
401 $res .= "\n";
838cc16a 402 }
403 }
78e4b1f6 404 XDB::query('REPLACE INTO search_autocomplete
ff3eb9b7 405 VALUES ({?}, {?}, {?}, NOW())',
406 $type, $q, $res);
c15afc4e 407 echo $res;
838cc16a 408 exit();
409 }
eaf30d86 410
2ab7a09f 411 function handler_list(&$page, $type = null, $idVal = null)
412 {
ff3eb9b7 413 // Give the list of all values possible of type and builds a select input for it
78e4b1f6
FB
414 $field = 'text';
415 $id = 'id';
ff3eb9b7 416 $where = '';
417
418 switch ($type) {
419 case 'binet':
78e4b1f6 420 $db = 'binets_def';
ff3eb9b7 421 break;
92c3f9e5 422 case 'networking_type':
78e4b1f6
FB
423 $db = 'profile_networking_enum';
424 $field = 'name';
425 $id = 'network_type';
92c3f9e5 426 break;
ff3eb9b7 427 case 'country':
e4cd7a1f
SJ
428 $db = 'geoloc_countries';
429 $field = 'countryFR';
430 $id = 'iso_3166_1_a2';
ff3eb9b7 431 $page->assign('onchange', 'changeCountry(this.value)');
432 break;
433 case 'fonction':
78e4b1f6
FB
434 $db = 'fonctions_def';
435 $field = 'fonction_fr';
ff3eb9b7 436 break;
437 case 'diploma':
3cb500d5 438 pl_content_headers("text/xml");
ff3eb9b7 439 $this->get_diplomas();
440 $page->changeTpl('search/adv.grade.form.tpl', NO_SKIN);
441 return;
442 case 'groupex':
00112b2e 443 $db = '#groupex#.asso';
579a8c9a
FB
444 $where = " WHERE (cat = 'GroupesX' OR cat = 'Institutions') AND pub = 'public'";
445 $field = 'nom';
ff3eb9b7 446 break;
447 case 'nationalite':
e4cd7a1f 448 $db = 'geoloc_countries INNER JOIN
78e4b1f6 449 profiles AS acp ON (acgp.a2 IN (acp.nationality1, acp.nationality2, acp.nationality3))';
e4cd7a1f
SJ
450 $field = 'nationalityFR';
451 $id = 'iso_3166_1_a2';
ff3eb9b7 452 break;
453 case 'region':
e4cd7a1f 454 $db = 'geoloc_administrativeareas';
78e4b1f6 455 $field = 'name';
e4cd7a1f 456 $id = 'id';
f6818108 457 if (isset($_REQUEST['country'])) {
e4cd7a1f 458 $where .= ' WHERE country = "' . $_REQUEST['country'] . '"';
f6818108 459 }
ff3eb9b7 460 break;
461 case 'school':
043bbacf 462 $db = 'profile_education_enum';
f9817768
SJ
463 $field = 'name';
464 $id = 'id';
ff3eb9b7 465 $page->assign('onchange', 'changeSchool(this.value)');
466 break;
467 case 'section':
78e4b1f6 468 $db = 'sections';
ff3eb9b7 469 break;
470 case 'secteur':
c7139c07
SJ
471 $db = 'profile_job_sector_enum INNER JOIN
472 profile_job ON (profile_job.sectorid = profile_job_sector_enum.id)';
473 $field = 'profile_job_sector_enum.name';
474 $id = 'profile_job_sector_enum.id';
ff3eb9b7 475 break;
476 default: exit();
477 }
478 if (isset($idVal)) {
3cb500d5 479 pl_content_headers("text/plain");
ff3eb9b7 480 $result = XDB::query('SELECT '.$field.' AS field FROM '.$db.' WHERE '.$id.' = {?} LIMIT 1',$idVal);
481 echo $result->fetchOneCell();
482 exit();
483 }
3cb500d5 484 pl_content_headers("text/xml");
05cb05c0 485 $page->changeTpl('include/field.select.tpl', NO_SKIN);
f6818108 486 $page->assign('name', $type);
ff3eb9b7 487 $page->assign('list', XDB::iterator('SELECT '.$field.' AS field,
488 '.$id.' AS id
489 FROM '.$db.$where.'
a85224e3 490 GROUP BY '.$field.'
ff3eb9b7 491 ORDER BY '.$field));
b0691e10
FB
492 $page->assign('with_text_value', true);
493 $page->assign('onchange', "document.forms.recherche.{$type}Txt.value = this.options[this.selectedIndex].text");
2ab7a09f 494 }
09824164 495}
496
a7de4ef7 497// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
09824164 498?>