Close #711: Fix advanced search when autocompletion is not explicitly
[platal.git] / modules / search.php
CommitLineData
09824164 1<?php
2/***************************************************************************
5ddeb07c 3 * Copyright (C) 2003-2007 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(
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),
2ab7a09f 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
8d8f7607 41 function on_subscribe($forlife, $uid, $promo, $pass)
42 {
43 require_once 'user.func.inc.php';
44 user_reindex($uid);
45 }
46
09824164 47
48 function form_prepare()
49 {
d25e0f0b 50 global $page;
51
09824164 52 $page->assign('formulaire',1);
3c640222 53 }
54
55 function get_diplomas($school = null)
56 {
57 if (is_null($school) && Env::has('school')) {
58 $school = Env::i('school');
59 }
09824164 60
3c640222 61 if (!is_null($school)) {
62 $sql = 'SELECT type FROM applis_def WHERE id=' . $school;
09824164 63 } else {
64 $sql = 'DESCRIBE applis_def type';
65 }
66
08cce2ff 67 $res = XDB::query($sql);
09824164 68 $row = $res->fetchOneRow();
3c640222 69 if (!is_null($school)) {
09824164 70 $types = $row[0];
71 } else {
72 $types = explode('(',$row[1]);
73 $types = str_replace("'","",substr($types[1],0,-1));
74 }
3c640222 75 global $page;
09824164 76 $page->assign('choix_diplomas', explode(',',$types));
77 }
78
8c4a0c30 79 function handler_quick(&$page, $action = null, $subaction = null)
09824164 80 {
81 global $globals;
82
97eff0ff 83 $res = XDB::query("SELECT MIN(`diminutif`), MAX(`diminutif`)
84 FROM `groupex`.`asso`
85 WHERE `cat` = 'Promotions'");
86 list($min, $max) = $res->fetchOneRow();
87 $page->assign('promo_min', $min);
88 $page->assign('promo_max', $max);
89
8c4a0c30 90 if (Env::has('quick') || $action == 'geoloc') {
383bcdec 91 $quick = trim(Env::v('quick'));
92 $list = 'profile|prf|fiche|fic|referent|ref|mentor';
93 if (S::has_perms()) {
94 $list .= '|admin|adm|ax';
95 }
8fee4fbd 96 if (preg_match('/^(' . $list . '):([-a-z]+(\.[-a-z]+(\.\d{2,4})?)?)$/', $quick, $matches)) {
383bcdec 97 $forlife = $matches[2];
98 switch($matches[1]) {
99 case 'admin': case 'adm':
100 $base = 'admin/user/';
101 break;
102 case 'ax':
103 $base = 'profile/ax/';
104 break;
105 case 'profile': case 'prf': case 'fiche': case 'fic':
106 $base = 'profile/';
107 break;
108 case 'referent': case 'ref': case 'mentor':
109 $base = 'referent/';
110 break;
111 }
112 pl_redirect($base . $forlife);
8fee4fbd 113 } elseif (strpos($quick, 'doc:') === 0) {
114 $url = 'Docs/Recherche?';
115 $url .= 'action=search&q=' . urlencode(substr($quick, 4));
116 $url .= '&group=' . urlencode('-Equipe,-Main,-PmWiki,-Site');
117 pl_redirect($url);
383bcdec 118 }
8fee4fbd 119
09824164 120 $page->assign('formulaire', 0);
121
8c4a0c30 122 require_once 'userset.inc.php';
123 $view = new SearchSet(true, $action == 'geoloc' && substr($subaction, -3) == 'swf');
35fa92e8 124 $view->addMod('minifiche', 'Minifiches', true, array('with_score' => true));
125 if (S::logged() && !Env::i('nonins')) {
126 $view->addMod('trombi', 'Trombinoscope', false, array('with_promo' => true, 'with_score' => true));
a2aa8436 127 $view->addMod('geoloc', 'Planisphère', false, array('with_annu' => 'search/adv'));
35fa92e8 128 }
8c4a0c30 129 $view->apply('search', $page, $action, $subaction);
09824164 130
8c4a0c30 131 $nb_tot = $view->count();
e35882be 132 $page->assign('search_results_nb', $nb_tot);
8c4a0c30 133 if ($subaction) {
134 return;
135 }
cab08090 136 if (!S::logged() && $nb_tot > $globals->search->public_max) {
a7de4ef7 137 new ThrowError('Votre recherche a généré trop de résultats pour un affichage public.');
09824164 138 } elseif ($nb_tot > $globals->search->private_max) {
a7de4ef7 139 new ThrowError('Recherche trop générale');
09824164 140 } elseif (empty($nb_tot)) {
a7de4ef7 141 new ThrowError('il n\'existe personne correspondant à ces critères dans la base !');
09824164 142 }
143 } else {
144 $page->assign('formulaire',1);
e654517d 145 $page->addJsLink('ajax.js');
09824164 146 }
147
90ccb062 148 require_once dirname(__FILE__) . '/search/search.inc.php';
eaf30d86 149 $page->changeTpl('search/index.tpl');
8c4a0c30 150 $page->assign('xorg_title','Polytechnique.org - Annuaire');
09824164 151 }
152
90ccb062 153 function handler_advanced(&$page, $action = null, $subaction = null)
09824164 154 {
155 global $globals;
bc67c37c 156 require_once 'geoloc.inc.php';
157 require_once dirname(__FILE__) . '/search/search.inc.php';
158 $page->assign('advanced',1);
159
90ccb062 160 if (!Env::has('rechercher') && $action != 'geoloc') {
09824164 161 $this->form_prepare();
162 } else {
137e819f
FB
163 $textFields = array(
164 'country' => array('field' => 'a2', 'table' => 'geoloc_pays', 'text' => 'pays', 'exact' => false),
165 'fonction' => array('field' => 'id', 'table' => 'fonctions_def', 'text' => 'fonction_fr', 'exact' => true),
166 'secteur' => array('field' => 'id', 'table' => 'emploi_secteur', 'text' => 'label', 'exact' => false),
167 'nationalite' => array('field' => 'a2', 'table' => 'geoloc_pays', 'text' => 'nat', 'exact' => 'false'),
168 'binet' => array('field' => 'id', 'table' => 'binets_def', 'text' => 'text', 'exact' => false),
169 'groupex' => array('field' => 'id', 'table' => 'groupesx_def', 'text' => 'text', 'exact' => false),
170 'section' => array('field' => 'id', 'table' => 'sections', 'text' => 'text', 'exact' => false),
171 'school' => array('field' => 'id', 'table' => 'applis_def', 'text' => 'text', 'exact' => false)
172 );
173 foreach ($textFields as $field=>&$query) {
174 if (!Env::v($field) && Env::v($field . 'Txt')) {
175 $res = XDB::query("SELECT {$query['field']}
176 FROM {$query['table']}
177 WHERE {$query['text']} " . ($query['exact'] ? " = {?}" : " LIKE CONCAT({?}, '%')"),
178 Env::v($field . 'Txt'));
179 $_REQUEST[$field] = $res->fetchOneCell();
180 }
181 }
182
8c4a0c30 183 require_once 'userset.inc.php';
184 $view = new SearchSet(false, $action == 'geoloc' && substr($subaction, -3) == 'swf');
185 $view->addMod('minifiche', 'Minifiches', true);
35fa92e8 186 $view->addMod('trombi', 'Trombinoscope', false, array('with_promo' => true));
a2aa8436 187 $view->addMod('geoloc', 'Planisphère', false, array('with_annu' => 'search/adv'));
86b5c8f0 188 $view->apply('search/adv', $page, $action, $subaction);
eaf30d86 189
8c4a0c30 190 if ($subaction) {
191 return;
09824164 192 }
8c4a0c30 193 $nb_tot = $view->count();
09824164 194 if ($nb_tot > $globals->search->private_max) {
195 $this->form_prepare();
a7de4ef7 196 new ThrowError('Recherche trop générale');
09824164 197 }
09824164 198 }
199
90ccb062 200 $page->changeTpl('search/index.tpl', $action == 'mini' ? SIMPLE : SKINNED);
3c640222 201 $page->addJsLink('ajax.js');
8c4a0c30 202 $page->assign('public_directory',0);
09824164 203 }
3c640222 204
838cc16a 205 function handler_autocomplete(&$page, $type = null)
206 {
207 // Autocompletion : according to type required, return
208 // a list of results matching with the number of matches.
209 // The output format is :
210 // result1|nb1
211 // result2|nb2
212 // ...
213 header('Content-Type: text/plain; charset="UTF-8"');
ff3eb9b7 214 $q = preg_replace(array('/\*+$/', // always look for $q*
215 '/([\^\$\[\]])/', // escape special regexp char
216 '/\*/'), // replace joker by regexp joker
217 array('',
218 '\\\\\1',
219 '.*'),
220 $_REQUEST['q']);
838cc16a 221 if (!$q) exit();
c15afc4e 222
eaf30d86 223 // try to look in cached results
ff3eb9b7 224 $cache = XDB::query('SELECT `result`
225 FROM `search_autocomplete`
226 WHERE `name` = {?} AND
227 `query` = {?} AND
228 `generated` > NOW() - INTERVAL 1 DAY',
229 $type, $q);
c15afc4e 230 if ($res = $cache->fetchOneCell()) {
ff3eb9b7 231 echo $res;
232 die();
c15afc4e 233 }
eaf30d86 234
2ab7a09f 235 // default search
af2ff9ef 236 $q = preg_quote($q);
f6818108 237 $unique = '`user_id`';
238 $db = '`auth_user_md5`';
2ab7a09f 239 $realid = false;
f3da6d81 240 $beginwith = true;
f6818108 241 $field2 = false;
242 $qsearch = $q;
eaf30d86 243
838cc16a 244 switch ($type) {
ff3eb9b7 245 case 'binetTxt':
246 $db = '`binets_def` INNER JOIN
247 `binets_ins` ON(`binets_def`.`id` = `binets_ins`.`binet_id`)';
248 $field='`binets_def`.`text`';
249 if (strlen($q) > 2)
250 $beginwith = false;
251 $realid = '`binets_def`.`id`';
252 break;
253 case 'city':
254 $db = '`geoloc_city` INNER JOIN
255 `adresses` ON(`geoloc_city`.`id` = `adresses`.`cityid`)';
256 $unique='`uid`';
257 $field='`geoloc_city`.`name`';
258 break;
259 case 'countryTxt':
260 $db = '`geoloc_pays` INNER JOIN
261 `adresses` ON(`geoloc_pays`.`a2` = `adresses`.`country`)';
262 $unique='`uid`';
263 $field = '`geoloc_pays`.`pays`';
264 $field2 = '`geoloc_pays`.`country`';
265 $realid='`geoloc_pays`.`a2`';
266 break;
267 case 'entreprise':
268 $db = '`entreprises`';
269 $field = '`entreprise`';
270 $unique='`uid`';
271 break;
07c4f9cc 272 case 'firstname':
ff3eb9b7 273 $field = '`prenom`';
274 $q = '(^|[ \\-])'.$q;
275 $beginwith = false;
276 break;
277 case 'fonctionTxt':
278 $db = '`fonctions_def` INNER JOIN
279 `entreprises` ON(`entreprises`.`fonction` = `fonctions_def`.`id`)';
280 $field = '`fonction_fr`';
281 $unique = '`uid`';
282 $realid = '`fonctions_def`.`id`';
283 $qsearch = '(^|[ /\\-])'.$q;
284 $beginwith = false;
285 break;
286 case 'groupexTxt':
287 $db = '`groupesx_def` INNER JOIN
288 `groupesx_ins` ON(`groupesx_def`.`id` = `groupesx_ins`.`gid`)';
289 $field='`groupesx_def`.`text`';
290 if (strlen($q) > 2)
291 $beginwith = false;
292 $realid = '`groupesx_def`.`id`';
293 $unique = '`guid`';
294 break;
295 case 'name':
296 $field = '`nom`';
297 $field2 = '`nom_usage`';
298 $qsearch = '(^|[ \\-])'.$q;
299 $beginwith = false;
300 break;
301 case 'nationaliteTxt':
302 $db = '`geoloc_pays` INNER JOIN
303 `auth_user_md5` ON(`geoloc_pays`.`a2` = `auth_user_md5`.`nationalite`)';
304 $field = 'IF(`geoloc_pays`.`nat`=\'\',
305 `geoloc_pays`.`pays`,
306 `geoloc_pays`.`nat`)';
307 $realid = '`geoloc_pays`.`a2`';
308 break;
309 case 'nickname':
310 $field = '`profile_nick`';
311 $db = '`auth_user_quick`';
312 $qsearch = '(^|[ \\-])'.$q;
313 $beginwith = false;
314 break;
315 case 'poste':
316 $db = '`entreprises`';
317 $field = '`poste`';
318 $unique='`uid`';
319 break;
320 case 'schoolTxt':
321 $db = '`applis_def` INNER JOIN
322 `applis_ins` ON(`applis_def`.`id` = `applis_ins`.`aid`)';
323 $field='`applis_def`.`text`';
324 $unique = '`uid`';
325 $realid = '`applis_def`.`id`';
326 if (strlen($q) > 2)
327 $beginwith = false;
328 break;
329 case 'secteurTxt':
330 $db = '`emploi_secteur` INNER JOIN
331 `entreprises` ON(`entreprises`.`secteur` = `emploi_secteur`.`id`)';
332 $field = '`emploi_secteur`.`label`';
333 $realid = '`emploi_secteur`.`id`';
334 $unique = '`uid`';
335 $beginwith = false;
336 break;
337 case 'sectionTxt':
eaf30d86 338 $db = '`sections` INNER JOIN
ff3eb9b7 339 `auth_user_md5` ON(`auth_user_md5`.`section` = `sections`.`id`)';
340 $field = '`sections`.`text`';
341 $realid = '`sections`.`id`';
342 $beginwith = false;
343 break;
344 default: exit();
838cc16a 345 }
346
ff3eb9b7 347 $field_select = $field;
348 if ($field2) {
349 $field_select = 'IF('.$field.' REGEXP {?}, '.$field.', '.$field2.')';
350 }
351
352 if ($beginwith) {
353 $qsearch = '^'.$qsearch;
354 }
355 $list = XDB::iterator('SELECT '.$field_select.' AS field,
356 COUNT(DISTINCT '.$unique.') AS nb
357 '.($realid?(', '.$realid.' AS id'):'').'
358 FROM '.$db.'
359 WHERE '.$field.' REGEXP {?}'.
360 ($field2?(' OR '.$field2.' REGEXP {?}'):'').'
361 GROUP BY '.$field_select.'
362 ORDER BY nb DESC
363 LIMIT 11',
364 $qsearch, $qsearch, $qsearch, $qsearch);
838cc16a 365 $nbResults = 0;
c15afc4e 366 $res = "";
2ab7a09f 367 while ($result = $list->next()) {
838cc16a 368 $nbResults++;
369 if ($nbResults == 11) {
c15afc4e 370 $res .= '...|1'."\n";
838cc16a 371 } else {
f6818108 372 $res .= $result['field'].'|';
ff3eb9b7 373 $res .= $result['nb'];
374 if (isset($result['id'])) {
375 $res .= '|'.$result['id'];
376 }
377 $res .= "\n";
838cc16a 378 }
379 }
ff3eb9b7 380 XDB::query('REPLACE INTO `search_autocomplete`
381 VALUES ({?}, {?}, {?}, NOW())',
382 $type, $q, $res);
c15afc4e 383 echo $res;
838cc16a 384 exit();
385 }
eaf30d86 386
2ab7a09f 387 function handler_list(&$page, $type = null, $idVal = null)
388 {
ff3eb9b7 389 // Give the list of all values possible of type and builds a select input for it
390 $field = '`text`';
391 $id = '`id`';
392 $where = '';
393
394 switch ($type) {
395 case 'binet':
396 $db = '`binets_def`';
397 break;
398 case 'country':
399 $db = '`geoloc_pays`';
400 $field = '`pays`';
401 $id = '`a2`';
402 $page->assign('onchange', 'changeCountry(this.value)');
403 break;
404 case 'fonction':
405 $db = '`fonctions_def`';
406 $field = '`fonction_fr`';
407 break;
408 case 'diploma':
f6818108 409 header('Content-Type: text/xml; charset="UTF-8"');
ff3eb9b7 410 $this->get_diplomas();
411 $page->changeTpl('search/adv.grade.form.tpl', NO_SKIN);
412 return;
413 case 'groupex':
414 $db = '`groupesx_def`';
415 break;
416 case 'nationalite':
eaf30d86 417 $db = '`geoloc_pays` INNER JOIN
a85224e3 418 `auth_user_md5` ON (`geoloc_pays`.`a2` = `auth_user_md5`.`nationalite`)';
ff3eb9b7 419 $field = 'IF(`nat`=\'\', `pays`, `nat`)';
420 $id = '`a2`';
421 break;
422 case 'region':
423 $db = '`geoloc_region`';
424 $field = '`name`';
eaf30d86 425 $id = '`region`';
f6818108 426 if (isset($_REQUEST['country'])) {
427 $where .= ' WHERE `a2` = "'.$_REQUEST['country'].'"';
428 }
ff3eb9b7 429 break;
430 case 'school':
431 $db = '`applis_def`';
432 $page->assign('onchange', 'changeSchool(this.value)');
433 break;
434 case 'section':
435 $db = '`sections`';
436 break;
437 case 'secteur':
438 $db = '`emploi_secteur`';
439 $field = '`label`';
440 break;
441 default: exit();
442 }
443 if (isset($idVal)) {
444 header('Content-Type: text/plain; charset="UTF-8"');
445 $result = XDB::query('SELECT '.$field.' AS field FROM '.$db.' WHERE '.$id.' = {?} LIMIT 1',$idVal);
446 echo $result->fetchOneCell();
447 exit();
448 }
f6818108 449 header('Content-Type: text/xml; charset="UTF-8"');
05cb05c0 450 $page->changeTpl('include/field.select.tpl', NO_SKIN);
f6818108 451 $page->assign('name', $type);
ff3eb9b7 452 $page->assign('list', XDB::iterator('SELECT '.$field.' AS field,
453 '.$id.' AS id
454 FROM '.$db.$where.'
a85224e3 455 GROUP BY '.$field.'
ff3eb9b7 456 ORDER BY '.$field));
2ab7a09f 457 }
09824164 458}
459
a7de4ef7 460// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
09824164 461?>