Integrates new phone table in profile and other pages
[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'));
85bb670b 92 if (S::logged() && !Env::has('page')) {
e31c1c3e
FB
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);
4b4b4b67 169 $page->addJsLink('jquery.autocomplete.js');
bc67c37c 170
14256b08
GB
171 $res = XDB::iterator("SELECT nw.network_type AS type, nw.name
172 FROM profile_networking_enum AS nw
173 ORDER BY name ;");
174 $page->assign('network_list', $res->fetchAllAssoc());
175
90ccb062 176 if (!Env::has('rechercher') && $action != 'geoloc') {
09824164 177 $this->form_prepare();
178 } else {
137e819f
FB
179 $textFields = array(
180 'country' => array('field' => 'a2', 'table' => 'geoloc_pays', 'text' => 'pays', 'exact' => false),
181 'fonction' => array('field' => 'id', 'table' => 'fonctions_def', 'text' => 'fonction_fr', 'exact' => true),
182 'secteur' => array('field' => 'id', 'table' => 'emploi_secteur', 'text' => 'label', 'exact' => false),
183 'nationalite' => array('field' => 'a2', 'table' => 'geoloc_pays', 'text' => 'nat', 'exact' => 'false'),
184 'binet' => array('field' => 'id', 'table' => 'binets_def', 'text' => 'text', 'exact' => false),
579a8c9a
FB
185 'groupex' => array('field' => 'id', 'table' => 'groupex.asso',
186 'text' => "(a.cat = 'GroupesX' OR a.cat = 'Institutions') AND pub = 'public' AND nom",
187 'exact' => false),
137e819f 188 'section' => array('field' => 'id', 'table' => 'sections', 'text' => 'text', 'exact' => false),
f08062c3
FB
189 'school' => array('field' => 'id', 'table' => 'applis_def', 'text' => 'text', 'exact' => false),
190 'city' => array('table' => 'geoloc_city', 'text' => 'name', 'exact' => false)
137e819f 191 );
e31c1c3e
FB
192 if (!Env::has('page')) {
193 $_SESSION['log']->log('search', 'adv=' . var_export($_GET, true));
194 }
137e819f
FB
195 foreach ($textFields as $field=>&$query) {
196 if (!Env::v($field) && Env::v($field . 'Txt')) {
197 $res = XDB::query("SELECT {$query['field']}
198 FROM {$query['table']}
579a8c9a
FB
199 WHERE {$query['text']} " . ($query['exact'] ? " = {?}" :
200 " LIKE CONCAT('%', {?}, '%')"),
137e819f
FB
201 Env::v($field . 'Txt'));
202 $_REQUEST[$field] = $res->fetchOneCell();
203 }
204 }
205
8c4a0c30 206 require_once 'userset.inc.php';
207 $view = new SearchSet(false, $action == 'geoloc' && substr($subaction, -3) == 'swf');
208 $view->addMod('minifiche', 'Minifiches', true);
35fa92e8 209 $view->addMod('trombi', 'Trombinoscope', false, array('with_promo' => true));
8ddd48c3 210 //$view->addMod('geoloc', 'Planisphère', false, array('with_annu' => 'search/adv'));
86b5c8f0 211 $view->apply('search/adv', $page, $action, $subaction);
eaf30d86 212
8c4a0c30 213 if ($subaction) {
214 return;
09824164 215 }
8c4a0c30 216 $nb_tot = $view->count();
09824164 217 if ($nb_tot > $globals->search->private_max) {
218 $this->form_prepare();
8d118e58 219 new ThrowError('Recherche trop générale.');
09824164 220 }
09824164 221 }
222
90ccb062 223 $page->changeTpl('search/index.tpl', $action == 'mini' ? SIMPLE : SKINNED);
3c640222 224 $page->addJsLink('ajax.js');
8c4a0c30 225 $page->assign('public_directory',0);
09824164 226 }
3c640222 227
838cc16a 228 function handler_autocomplete(&$page, $type = null)
229 {
230 // Autocompletion : according to type required, return
231 // a list of results matching with the number of matches.
232 // The output format is :
233 // result1|nb1
234 // result2|nb2
235 // ...
236 header('Content-Type: text/plain; charset="UTF-8"');
ff3eb9b7 237 $q = preg_replace(array('/\*+$/', // always look for $q*
238 '/([\^\$\[\]])/', // escape special regexp char
239 '/\*/'), // replace joker by regexp joker
240 array('',
241 '\\\\\1',
242 '.*'),
243 $_REQUEST['q']);
838cc16a 244 if (!$q) exit();
c15afc4e 245
eaf30d86 246 // try to look in cached results
ff3eb9b7 247 $cache = XDB::query('SELECT `result`
248 FROM `search_autocomplete`
249 WHERE `name` = {?} AND
250 `query` = {?} AND
251 `generated` > NOW() - INTERVAL 1 DAY',
252 $type, $q);
c15afc4e 253 if ($res = $cache->fetchOneCell()) {
ff3eb9b7 254 echo $res;
255 die();
c15afc4e 256 }
eaf30d86 257
2ab7a09f 258 // default search
f6818108 259 $unique = '`user_id`';
260 $db = '`auth_user_md5`';
2ab7a09f 261 $realid = false;
f3da6d81 262 $beginwith = true;
f6818108 263 $field2 = false;
baa62e58 264 $qsearch = str_replace(array('%', '_'), '', $q);
eaf30d86 265
838cc16a 266 switch ($type) {
ff3eb9b7 267 case 'binetTxt':
268 $db = '`binets_def` INNER JOIN
269 `binets_ins` ON(`binets_def`.`id` = `binets_ins`.`binet_id`)';
270 $field='`binets_def`.`text`';
271 if (strlen($q) > 2)
272 $beginwith = false;
273 $realid = '`binets_def`.`id`';
274 break;
275 case 'city':
276 $db = '`geoloc_city` INNER JOIN
277 `adresses` ON(`geoloc_city`.`id` = `adresses`.`cityid`)';
278 $unique='`uid`';
279 $field='`geoloc_city`.`name`';
280 break;
281 case 'countryTxt':
282 $db = '`geoloc_pays` INNER JOIN
283 `adresses` ON(`geoloc_pays`.`a2` = `adresses`.`country`)';
284 $unique='`uid`';
285 $field = '`geoloc_pays`.`pays`';
286 $field2 = '`geoloc_pays`.`country`';
287 $realid='`geoloc_pays`.`a2`';
288 break;
289 case 'entreprise':
290 $db = '`entreprises`';
291 $field = '`entreprise`';
292 $unique='`uid`';
293 break;
07c4f9cc 294 case 'firstname':
ff3eb9b7 295 $field = '`prenom`';
ff3eb9b7 296 $beginwith = false;
297 break;
298 case 'fonctionTxt':
299 $db = '`fonctions_def` INNER JOIN
300 `entreprises` ON(`entreprises`.`fonction` = `fonctions_def`.`id`)';
301 $field = '`fonction_fr`';
302 $unique = '`uid`';
303 $realid = '`fonctions_def`.`id`';
ff3eb9b7 304 $beginwith = false;
305 break;
306 case 'groupexTxt':
579a8c9a
FB
307 $db = "groupex.asso AS a INNER JOIN
308 groupex.membres AS m ON(a.id = m.asso_id
309 AND (a.cat = 'GroupesX' OR a.cat = 'Institutions')
310 AND a.pub = 'public')";
311 $field='a.nom';
312 $field2 = 'a.diminutif';
ff3eb9b7 313 if (strlen($q) > 2)
314 $beginwith = false;
579a8c9a
FB
315 $realid = 'a.id';
316 $unique = 'm.uid';
ff3eb9b7 317 break;
318 case 'name':
319 $field = '`nom`';
320 $field2 = '`nom_usage`';
ff3eb9b7 321 $beginwith = false;
322 break;
323 case 'nationaliteTxt':
324 $db = '`geoloc_pays` INNER JOIN
325 `auth_user_md5` ON(`geoloc_pays`.`a2` = `auth_user_md5`.`nationalite`)';
326 $field = 'IF(`geoloc_pays`.`nat`=\'\',
327 `geoloc_pays`.`pays`,
328 `geoloc_pays`.`nat`)';
329 $realid = '`geoloc_pays`.`a2`';
330 break;
331 case 'nickname':
332 $field = '`profile_nick`';
333 $db = '`auth_user_quick`';
ff3eb9b7 334 $beginwith = false;
335 break;
336 case 'poste':
337 $db = '`entreprises`';
338 $field = '`poste`';
339 $unique='`uid`';
340 break;
341 case 'schoolTxt':
342 $db = '`applis_def` INNER JOIN
343 `applis_ins` ON(`applis_def`.`id` = `applis_ins`.`aid`)';
344 $field='`applis_def`.`text`';
345 $unique = '`uid`';
346 $realid = '`applis_def`.`id`';
347 if (strlen($q) > 2)
348 $beginwith = false;
349 break;
350 case 'secteurTxt':
351 $db = '`emploi_secteur` INNER JOIN
352 `entreprises` ON(`entreprises`.`secteur` = `emploi_secteur`.`id`)';
353 $field = '`emploi_secteur`.`label`';
354 $realid = '`emploi_secteur`.`id`';
355 $unique = '`uid`';
356 $beginwith = false;
357 break;
358 case 'sectionTxt':
eaf30d86 359 $db = '`sections` INNER JOIN
ff3eb9b7 360 `auth_user_md5` ON(`auth_user_md5`.`section` = `sections`.`id`)';
361 $field = '`sections`.`text`';
362 $realid = '`sections`.`id`';
363 $beginwith = false;
364 break;
365 default: exit();
838cc16a 366 }
367
baa62e58
FB
368 function make_field_test($fields, $beginwith) {
369 $tests = array();
370 $tests[] = $fields . ' LIKE CONCAT({?}, \'%\')';
371 if (!$beginwith) {
372 $tests[] = $fields . ' LIKE CONCAT(\'% \', {?}, \'%\')';
373 $tests[] = $fields . ' LIKE CONCAT(\'%-\', {?}, \'%\')';
374 }
375 return '(' . implode(' OR ', $tests) . ')';
376 }
ff3eb9b7 377 $field_select = $field;
baa62e58 378 $field_t = make_field_test($field, $beginwith);
ff3eb9b7 379 if ($field2) {
baa62e58
FB
380 $field2_t = make_field_test($field2, $beginwith);
381 $field_select = 'IF(' . $field_t . ', ' . $field . ', ' . $field2. ')';
ff3eb9b7 382 }
baa62e58
FB
383 $list = XDB::iterator('SELECT ' . $field_select . ' AS field,
384 COUNT(DISTINCT ' . $unique . ') AS nb
385 ' . ($realid ? (', ' . $realid . ' AS id') : '') . '
386 FROM ' . $db . '
387 WHERE ' . $field_t .
388 ($field2 ? (' OR ' . $field2_t) : '') . '
389 GROUP BY ' . $field_select . '
ff3eb9b7 390 ORDER BY nb DESC
391 LIMIT 11',
7eb43a1d 392 $qsearch, $qsearch, $qsearch, $qsearch, $qsearch, $qsearch, $qsearch, $qsearch,
011b438c 393 $qsearch, $qsearch, $qsearch, $qsearch, $qsearch, $qsearch, $qsearch, $qsearch);
838cc16a 394 $nbResults = 0;
c15afc4e 395 $res = "";
2ab7a09f 396 while ($result = $list->next()) {
838cc16a 397 $nbResults++;
398 if ($nbResults == 11) {
b3ec63d5 399 $res .= $q."|-1\n";
838cc16a 400 } else {
f6818108 401 $res .= $result['field'].'|';
ff3eb9b7 402 $res .= $result['nb'];
403 if (isset($result['id'])) {
404 $res .= '|'.$result['id'];
405 }
406 $res .= "\n";
838cc16a 407 }
408 }
ff3eb9b7 409 XDB::query('REPLACE INTO `search_autocomplete`
410 VALUES ({?}, {?}, {?}, NOW())',
411 $type, $q, $res);
c15afc4e 412 echo $res;
838cc16a 413 exit();
414 }
eaf30d86 415
2ab7a09f 416 function handler_list(&$page, $type = null, $idVal = null)
417 {
ff3eb9b7 418 // Give the list of all values possible of type and builds a select input for it
419 $field = '`text`';
420 $id = '`id`';
421 $where = '';
422
423 switch ($type) {
424 case 'binet':
425 $db = '`binets_def`';
426 break;
427 case 'country':
428 $db = '`geoloc_pays`';
429 $field = '`pays`';
430 $id = '`a2`';
431 $page->assign('onchange', 'changeCountry(this.value)');
432 break;
433 case 'fonction':
434 $db = '`fonctions_def`';
435 $field = '`fonction_fr`';
436 break;
437 case 'diploma':
f6818108 438 header('Content-Type: text/xml; charset="UTF-8"');
ff3eb9b7 439 $this->get_diplomas();
440 $page->changeTpl('search/adv.grade.form.tpl', NO_SKIN);
441 return;
442 case 'groupex':
579a8c9a
FB
443 $db = 'groupex.asso';
444 $where = " WHERE (cat = 'GroupesX' OR cat = 'Institutions') AND pub = 'public'";
445 $field = 'nom';
ff3eb9b7 446 break;
447 case 'nationalite':
eaf30d86 448 $db = '`geoloc_pays` INNER JOIN
a85224e3 449 `auth_user_md5` ON (`geoloc_pays`.`a2` = `auth_user_md5`.`nationalite`)';
ff3eb9b7 450 $field = 'IF(`nat`=\'\', `pays`, `nat`)';
451 $id = '`a2`';
452 break;
453 case 'region':
454 $db = '`geoloc_region`';
455 $field = '`name`';
eaf30d86 456 $id = '`region`';
f6818108 457 if (isset($_REQUEST['country'])) {
458 $where .= ' WHERE `a2` = "'.$_REQUEST['country'].'"';
459 }
ff3eb9b7 460 break;
461 case 'school':
462 $db = '`applis_def`';
463 $page->assign('onchange', 'changeSchool(this.value)');
464 break;
465 case 'section':
466 $db = '`sections`';
467 break;
468 case 'secteur':
469 $db = '`emploi_secteur`';
470 $field = '`label`';
471 break;
472 default: exit();
473 }
474 if (isset($idVal)) {
475 header('Content-Type: text/plain; charset="UTF-8"');
476 $result = XDB::query('SELECT '.$field.' AS field FROM '.$db.' WHERE '.$id.' = {?} LIMIT 1',$idVal);
477 echo $result->fetchOneCell();
478 exit();
479 }
f6818108 480 header('Content-Type: text/xml; charset="UTF-8"');
05cb05c0 481 $page->changeTpl('include/field.select.tpl', NO_SKIN);
f6818108 482 $page->assign('name', $type);
ff3eb9b7 483 $page->assign('list', XDB::iterator('SELECT '.$field.' AS field,
484 '.$id.' AS id
485 FROM '.$db.$where.'
a85224e3 486 GROUP BY '.$field.'
ff3eb9b7 487 ORDER BY '.$field));
b0691e10
FB
488 $page->assign('with_text_value', true);
489 $page->assign('onchange', "document.forms.recherche.{$type}Txt.value = this.options[this.selectedIndex].text");
2ab7a09f 490 }
09824164 491}
492
a7de4ef7 493// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
09824164 494?>