Merge commit 'origin/fusionax' into account
[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
FB
76 $res = XDB::query("SELECT MIN(diminutif), MAX(diminutif)
77 FROM groupex.asso
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';
89 if (S::has_perms()) {
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));
a2aa8436 129 $view->addMod('geoloc', 'Planisphère', false, array('with_annu' => 'search/adv'));
35fa92e8 130 }
8c4a0c30 131 $view->apply('search', $page, $action, $subaction);
09824164 132
8c4a0c30 133 $nb_tot = $view->count();
e35882be 134 $page->assign('search_results_nb', $nb_tot);
8c4a0c30 135 if ($subaction) {
136 return;
137 }
cab08090 138 if (!S::logged() && $nb_tot > $globals->search->public_max) {
a7de4ef7 139 new ThrowError('Votre recherche a généré trop de résultats pour un affichage public.');
09824164 140 } elseif ($nb_tot > $globals->search->private_max) {
8d118e58 141 new ThrowError('Recherche trop générale. Une <a href="search/adv">recherche avancée</a> permet de préciser la recherche.');
09824164 142 } elseif (empty($nb_tot)) {
8d118e58 143 new ThrowError('Il n\'existe personne correspondant à ces critères dans la base !');
09824164 144 }
145 } else {
146 $page->assign('formulaire',1);
e654517d 147 $page->addJsLink('ajax.js');
09824164 148 }
149
460d8f55 150 $this->load('search.inc.php');
eaf30d86 151 $page->changeTpl('search/index.tpl');
46f272fe 152 $page->setTitle('Annuaire');
09824164 153 }
154
90ccb062 155 function handler_advanced(&$page, $action = null, $subaction = null)
09824164 156 {
157 global $globals;
bc67c37c 158 require_once 'geoloc.inc.php';
460d8f55 159 $this->load('search.inc.php');
bc67c37c 160 $page->assign('advanced',1);
4b4b4b67 161 $page->addJsLink('jquery.autocomplete.js');
bc67c37c 162
90ccb062 163 if (!Env::has('rechercher') && $action != 'geoloc') {
09824164 164 $this->form_prepare();
165 } else {
137e819f 166 $textFields = array(
e4cd7a1f
SJ
167 'country' => array('field' => 'iso_3166_1_a2', 'table' => 'geoloc_countries', 'text' => 'countryFR',
168 'exact' => false),
2398e553 169 'fonction' => array('field' => 'id', 'table' => 'fonctions_def', 'text' => 'fonction_fr', 'exact' => true),
c7139c07 170 'secteur' => array('field' => 'id', 'table' => 'profile_job_sector_enum', 'text' => 'name', 'exact' => false),
e4cd7a1f
SJ
171 'nationalite' => array('field' => 'iso_3166_1_a2', 'table' => 'geoloc_countries',
172 'text' => 'nationalityFR', 'exact' => 'false'),
2398e553 173 'binet' => array('field' => 'id', 'table' => 'binets_def', 'text' => 'text', 'exact' => false),
92c3f9e5
GB
174 'networking_type' => array('field' => 'network_type', 'table' => 'profile_networking_enum',
175 'text' => 'name', 'exact' => false),
2398e553 176 'groupex' => array('field' => 'id', 'table' => 'groupex.asso',
8320b6fb 177 'text' => "(cat = 'GroupesX' OR cat = 'Institutions') AND pub = 'public' AND nom",
2398e553
SJ
178 'exact' => false),
179 'section' => array('field' => 'id', 'table' => 'sections', 'text' => 'text', 'exact' => false),
180 'school' => array('field' => 'id', 'table' => 'profile_education_enum', 'text' => 'name', 'exact' => false),
e4cd7a1f 181 'city' => array('table' => 'geoloc_localities', 'text' => 'name', 'exact' => false)
137e819f 182 );
e31c1c3e 183 if (!Env::has('page')) {
732e5855 184 S::logger()->log('search', 'adv=' . var_export($_GET, true));
e31c1c3e 185 }
137e819f
FB
186 foreach ($textFields as $field=>&$query) {
187 if (!Env::v($field) && Env::v($field . 'Txt')) {
188 $res = XDB::query("SELECT {$query['field']}
189 FROM {$query['table']}
579a8c9a
FB
190 WHERE {$query['text']} " . ($query['exact'] ? " = {?}" :
191 " LIKE CONCAT('%', {?}, '%')"),
137e819f
FB
192 Env::v($field . 'Txt'));
193 $_REQUEST[$field] = $res->fetchOneCell();
194 }
195 }
196
8c4a0c30 197 require_once 'userset.inc.php';
198 $view = new SearchSet(false, $action == 'geoloc' && substr($subaction, -3) == 'swf');
1fae7605 199 $view->addMod('minifiche', 'Mini-fiches', true);
35fa92e8 200 $view->addMod('trombi', 'Trombinoscope', false, array('with_promo' => true));
8ddd48c3 201 //$view->addMod('geoloc', 'Planisphère', false, array('with_annu' => 'search/adv'));
86b5c8f0 202 $view->apply('search/adv', $page, $action, $subaction);
eaf30d86 203
8c4a0c30 204 if ($subaction) {
205 return;
09824164 206 }
8c4a0c30 207 $nb_tot = $view->count();
09824164 208 if ($nb_tot > $globals->search->private_max) {
209 $this->form_prepare();
8d118e58 210 new ThrowError('Recherche trop générale.');
09824164 211 }
09824164 212 }
213
90ccb062 214 $page->changeTpl('search/index.tpl', $action == 'mini' ? SIMPLE : SKINNED);
3c640222 215 $page->addJsLink('ajax.js');
8c4a0c30 216 $page->assign('public_directory',0);
09824164 217 }
3c640222 218
838cc16a 219 function handler_autocomplete(&$page, $type = null)
220 {
221 // Autocompletion : according to type required, return
222 // a list of results matching with the number of matches.
223 // The output format is :
224 // result1|nb1
225 // result2|nb2
226 // ...
227 header('Content-Type: text/plain; charset="UTF-8"');
ff3eb9b7 228 $q = preg_replace(array('/\*+$/', // always look for $q*
229 '/([\^\$\[\]])/', // escape special regexp char
230 '/\*/'), // replace joker by regexp joker
231 array('',
232 '\\\\\1',
233 '.*'),
78e4b1f6 234 Env::s('q'));
838cc16a 235 if (!$q) exit();
c15afc4e 236
eaf30d86 237 // try to look in cached results
78e4b1f6
FB
238 $cache = XDB::query('SELECT result
239 FROM search_autocomplete
240 WHERE name = {?} AND
241 query = {?} AND
242 generated > NOW() - INTERVAL 1 DAY',
ff3eb9b7 243 $type, $q);
c15afc4e 244 if ($res = $cache->fetchOneCell()) {
ff3eb9b7 245 echo $res;
246 die();
c15afc4e 247 }
eaf30d86 248
2ab7a09f 249 // default search
78e4b1f6
FB
250 $unique = 'pid';
251 $db = 'profiles';
2ab7a09f 252 $realid = false;
f3da6d81 253 $beginwith = true;
f6818108 254 $field2 = false;
baa62e58 255 $qsearch = str_replace(array('%', '_'), '', $q);
c7139c07 256 $distinct = true;
eaf30d86 257
838cc16a 258 switch ($type) {
ff3eb9b7 259 case 'binetTxt':
78e4b1f6
FB
260 $db = 'binets_def INNER JOIN
261 binets_ins ON(binets_def.id = binets_ins.binet_id)';
262 $field = 'binets_def.text';
ff3eb9b7 263 if (strlen($q) > 2)
264 $beginwith = false;
78e4b1f6 265 $realid = 'binets_def.id';
ff3eb9b7 266 break;
92c3f9e5 267 case 'networking_typeTxt':
78e4b1f6
FB
268 $db = 'profile_networking_enum INNER JOIN
269 profile_networking ON(profile_networking.network_type = profile_networking_enum.network_type)';
270 $field = 'profile_networking_enum.name';
92c3f9e5 271 $unique = 'uid';
78e4b1f6 272 $realid = 'profile_networking_enum.network_type';
92c3f9e5 273 break;
ff3eb9b7 274 case 'city':
e4cd7a1f
SJ
275 $db = 'geoloc_localities INNER JOIN
276 profile_addresses ON (geoloc_localities.id = profile_addresses.localityId)';
277 $unique = 'uid';
278 $field ='geoloc_localities.name';
ff3eb9b7 279 break;
280 case 'countryTxt':
e4cd7a1f
SJ
281 $db = 'geoloc_countries INNER JOIN
282 profile_addresses ON (geoloc_countries.iso_3166_1_a2 = profile_addresses.countryId)';
283 $unique = 'pid';
284 $field = 'geoloc_countries.countryFR';
285 $realid = 'geoloc_countries.iso_3166_1_a2';
ff3eb9b7 286 break;
287 case 'entreprise':
c7139c07
SJ
288 $db = 'profile_job_enum INNER JOIN
289 profile_job ON (profile_job.jobid = profile_job_enum.id)';
290 $field = 'profile_job_enum.name';
291 $unique = 'profile_job.uid';
ff3eb9b7 292 break;
ff3eb9b7 293 case 'fonctionTxt':
c7139c07
SJ
294 $db = 'fonctions_def INNER JOIN
295 profile_job ON (profile_job.fonctionid = fonctions_def.id)';
296 $field = 'fonction_fr';
297 $unique = 'uid';
298 $realid = 'fonctions_def.id';
ff3eb9b7 299 $beginwith = false;
300 break;
301 case 'groupexTxt':
579a8c9a
FB
302 $db = "groupex.asso AS a INNER JOIN
303 groupex.membres AS m ON(a.id = m.asso_id
304 AND (a.cat = 'GroupesX' OR a.cat = 'Institutions')
305 AND a.pub = 'public')";
306 $field='a.nom';
307 $field2 = 'a.diminutif';
ff3eb9b7 308 if (strlen($q) > 2)
309 $beginwith = false;
579a8c9a
FB
310 $realid = 'a.id';
311 $unique = 'm.uid';
ff3eb9b7 312 break;
ff3eb9b7 313 case 'nationaliteTxt':
e4cd7a1f 314 $db = 'geoloc_countries INNER JOIN
5b2c9987 315 profile ON (geoloc_countries.a2 IN (profile.nationality1, profile.nationality2, profile.nationality3))';
e4cd7a1f
SJ
316 $field = 'geoloc_countries.nationalityFR';
317 $realid = 'geoloc_countries.iso_3166_1_a2';
ff3eb9b7 318 break;
c7139c07
SJ
319 case 'description':
320 $db = 'profile_job';
321 $field = 'description';
322 $unique = 'uid';
ff3eb9b7 323 break;
324 case 'schoolTxt':
043bbacf
SJ
325 $db = 'profile_education_enum INNER JOIN
326 profile_education ON (profile_education_enum.id = profile_education.eduid)';
327 $field = 'profile_education_enum.name';
328 $unique = 'uid';
329 $realid = 'profile_education_enum.id';
ff3eb9b7 330 if (strlen($q) > 2)
331 $beginwith = false;
332 break;
333 case 'secteurTxt':
c7139c07
SJ
334 $db = 'profile_job_sector_enum INNER JOIN
335 profile_job ON (profile_job.sectorid = profile_job_sector_enum.id)';
336 $field = 'profile_job_sector_enum.name';
337 $realid = 'profile_job_sector_enum.id';
338 $unique = 'uid';
339 $beginwith = false;
340 break;
341 case 'sss_secteur':
342 $db = 'profile_job_subsubsector_enum';
343 $field = 'name';
ff3eb9b7 344 $beginwith = false;
c7139c07
SJ
345 $unique = 'name';
346 $distinct = false;
ff3eb9b7 347 break;
348 case 'sectionTxt':
78e4b1f6
FB
349 $db = 'sections AS acs
350 INNER JOIN profiles AS acp ON (acp.section = acs.id)';
351 $field = 'acs.text';
352 $realid = 'acs.id';
ff3eb9b7 353 $beginwith = false;
354 break;
355 default: exit();
838cc16a 356 }
357
baa62e58
FB
358 function make_field_test($fields, $beginwith) {
359 $tests = array();
360 $tests[] = $fields . ' LIKE CONCAT({?}, \'%\')';
361 if (!$beginwith) {
362 $tests[] = $fields . ' LIKE CONCAT(\'% \', {?}, \'%\')';
363 $tests[] = $fields . ' LIKE CONCAT(\'%-\', {?}, \'%\')';
364 }
365 return '(' . implode(' OR ', $tests) . ')';
366 }
ff3eb9b7 367 $field_select = $field;
baa62e58 368 $field_t = make_field_test($field, $beginwith);
ff3eb9b7 369 if ($field2) {
baa62e58
FB
370 $field2_t = make_field_test($field2, $beginwith);
371 $field_select = 'IF(' . $field_t . ', ' . $field . ', ' . $field2. ')';
ff3eb9b7 372 }
c7139c07
SJ
373 $list = XDB::iterator('SELECT ' . $field_select . ' AS field'
374 . ($distinct ? (', COUNT(DISTINCT ' . $unique . ') AS nb') : '')
375 . ($realid ? (', ' . $realid . ' AS id') : '') . '
baa62e58
FB
376 FROM ' . $db . '
377 WHERE ' . $field_t .
378 ($field2 ? (' OR ' . $field2_t) : '') . '
379 GROUP BY ' . $field_select . '
c7139c07 380 ORDER BY ' . ($distinct ? 'nb DESC' : $field_select) . '
ff3eb9b7 381 LIMIT 11',
7eb43a1d 382 $qsearch, $qsearch, $qsearch, $qsearch, $qsearch, $qsearch, $qsearch, $qsearch,
011b438c 383 $qsearch, $qsearch, $qsearch, $qsearch, $qsearch, $qsearch, $qsearch, $qsearch);
f781871c 384
838cc16a 385 $nbResults = 0;
c15afc4e 386 $res = "";
2ab7a09f 387 while ($result = $list->next()) {
838cc16a 388 $nbResults++;
389 if ($nbResults == 11) {
b3ec63d5 390 $res .= $q."|-1\n";
838cc16a 391 } else {
f6818108 392 $res .= $result['field'].'|';
c7139c07
SJ
393 if (isset($result['nb'])) {
394 $res .= $result['nb'];
395 }
ff3eb9b7 396 if (isset($result['id'])) {
397 $res .= '|'.$result['id'];
398 }
399 $res .= "\n";
838cc16a 400 }
401 }
78e4b1f6 402 XDB::query('REPLACE INTO search_autocomplete
ff3eb9b7 403 VALUES ({?}, {?}, {?}, NOW())',
404 $type, $q, $res);
c15afc4e 405 echo $res;
838cc16a 406 exit();
407 }
eaf30d86 408
2ab7a09f 409 function handler_list(&$page, $type = null, $idVal = null)
410 {
ff3eb9b7 411 // Give the list of all values possible of type and builds a select input for it
78e4b1f6
FB
412 $field = 'text';
413 $id = 'id';
ff3eb9b7 414 $where = '';
415
416 switch ($type) {
417 case 'binet':
78e4b1f6 418 $db = 'binets_def';
ff3eb9b7 419 break;
92c3f9e5 420 case 'networking_type':
78e4b1f6
FB
421 $db = 'profile_networking_enum';
422 $field = 'name';
423 $id = 'network_type';
92c3f9e5 424 break;
ff3eb9b7 425 case 'country':
e4cd7a1f
SJ
426 $db = 'geoloc_countries';
427 $field = 'countryFR';
428 $id = 'iso_3166_1_a2';
ff3eb9b7 429 $page->assign('onchange', 'changeCountry(this.value)');
430 break;
431 case 'fonction':
78e4b1f6
FB
432 $db = 'fonctions_def';
433 $field = 'fonction_fr';
ff3eb9b7 434 break;
435 case 'diploma':
f6818108 436 header('Content-Type: text/xml; charset="UTF-8"');
ff3eb9b7 437 $this->get_diplomas();
438 $page->changeTpl('search/adv.grade.form.tpl', NO_SKIN);
439 return;
440 case 'groupex':
579a8c9a
FB
441 $db = 'groupex.asso';
442 $where = " WHERE (cat = 'GroupesX' OR cat = 'Institutions') AND pub = 'public'";
443 $field = 'nom';
ff3eb9b7 444 break;
445 case 'nationalite':
e4cd7a1f 446 $db = 'geoloc_countries INNER JOIN
78e4b1f6 447 profiles AS acp ON (acgp.a2 IN (acp.nationality1, acp.nationality2, acp.nationality3))';
e4cd7a1f
SJ
448 $field = 'nationalityFR';
449 $id = 'iso_3166_1_a2';
ff3eb9b7 450 break;
451 case 'region':
e4cd7a1f 452 $db = 'geoloc_administrativeareas';
78e4b1f6 453 $field = 'name';
e4cd7a1f 454 $id = 'id';
f6818108 455 if (isset($_REQUEST['country'])) {
e4cd7a1f 456 $where .= ' WHERE country = "' . $_REQUEST['country'] . '"';
f6818108 457 }
ff3eb9b7 458 break;
459 case 'school':
043bbacf 460 $db = 'profile_education_enum';
f9817768
SJ
461 $field = 'name';
462 $id = 'id';
ff3eb9b7 463 $page->assign('onchange', 'changeSchool(this.value)');
464 break;
465 case 'section':
78e4b1f6 466 $db = 'sections';
ff3eb9b7 467 break;
468 case 'secteur':
c7139c07
SJ
469 $db = 'profile_job_sector_enum INNER JOIN
470 profile_job ON (profile_job.sectorid = profile_job_sector_enum.id)';
471 $field = 'profile_job_sector_enum.name';
472 $id = 'profile_job_sector_enum.id';
ff3eb9b7 473 break;
474 default: exit();
475 }
476 if (isset($idVal)) {
477 header('Content-Type: text/plain; charset="UTF-8"');
478 $result = XDB::query('SELECT '.$field.' AS field FROM '.$db.' WHERE '.$id.' = {?} LIMIT 1',$idVal);
479 echo $result->fetchOneCell();
480 exit();
481 }
f6818108 482 header('Content-Type: text/xml; charset="UTF-8"');
05cb05c0 483 $page->changeTpl('include/field.select.tpl', NO_SKIN);
f6818108 484 $page->assign('name', $type);
ff3eb9b7 485 $page->assign('list', XDB::iterator('SELECT '.$field.' AS field,
486 '.$id.' AS id
487 FROM '.$db.$where.'
a85224e3 488 GROUP BY '.$field.'
ff3eb9b7 489 ORDER BY '.$field));
b0691e10
FB
490 $page->assign('with_text_value', true);
491 $page->assign('onchange', "document.forms.recherche.{$type}Txt.value = this.options[this.selectedIndex].text");
2ab7a09f 492 }
09824164 493}
494
a7de4ef7 495// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
09824164 496?>