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