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