Use 'changeTpl' for xnet pages and use handler permission instead of page restriction
[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),
9ed396c0 29 'search/ajax/region' => $this->make_hook('region', AUTH_COOKIE, 'user', NO_AUTH),
30 'search/ajax/grade' => $this->make_hook('grade', AUTH_COOKIE, 'user', NO_AUTH),
ba2afb88 31 'advanced_search.php' => $this->make_hook('redir_advanced', AUTH_PUBLIC),
2ab7a09f 32 'search/autocomplete' => $this->make_hook('autocomplete', AUTH_COOKIE, 'user', NO_AUTH),
33 'search/list' => $this->make_hook('list', AUTH_COOKIE, 'user', NO_AUTH),
09824164 34 );
35 }
36
ba2afb88 37 function handler_redir_advanced(&$page, $mode = null)
38 {
39 pl_redirect('search/adv');
40 exit;
41 }
42
8d8f7607 43 function on_subscribe($forlife, $uid, $promo, $pass)
44 {
45 require_once 'user.func.inc.php';
46 user_reindex($uid);
47 }
48
09824164 49
50 function form_prepare()
51 {
d25e0f0b 52 global $page;
53
09824164 54 $page->assign('formulaire',1);
09824164 55 $page->assign('choix_schools',
08cce2ff 56 XDB::iterator('SELECT id,text FROM applis_def ORDER BY text'));
3c640222 57 $this->get_diplomas();
58 }
59
60 function get_diplomas($school = null)
61 {
62 if (is_null($school) && Env::has('school')) {
63 $school = Env::i('school');
64 }
09824164 65
3c640222 66 if (!is_null($school)) {
67 $sql = 'SELECT type FROM applis_def WHERE id=' . $school;
09824164 68 } else {
69 $sql = 'DESCRIBE applis_def type';
70 }
71
08cce2ff 72 $res = XDB::query($sql);
09824164 73 $row = $res->fetchOneRow();
3c640222 74 if (!is_null($school)) {
09824164 75 $types = $row[0];
76 } else {
77 $types = explode('(',$row[1]);
78 $types = str_replace("'","",substr($types[1],0,-1));
79 }
3c640222 80 global $page;
09824164 81 $page->assign('choix_diplomas', explode(',',$types));
82 }
83
8c4a0c30 84 function handler_quick(&$page, $action = null, $subaction = null)
09824164 85 {
86 global $globals;
87
8c4a0c30 88 if (Env::has('quick') || $action == 'geoloc') {
09824164 89 $page->assign('formulaire', 0);
90
8c4a0c30 91 require_once 'userset.inc.php';
92 $view = new SearchSet(true, $action == 'geoloc' && substr($subaction, -3) == 'swf');
93 $view->addMod('minifiche', 'Minifiches', true);
94 $view->addMod('trombi', 'Trombinoscope');
95 $view->addMod('geoloc', 'Planishpère');
96 $view->apply('search', $page, $action, $subaction);
09824164 97
8c4a0c30 98 $nb_tot = $view->count();
99 if ($subaction) {
100 return;
101 }
cab08090 102 if (!S::logged() && $nb_tot > $globals->search->public_max) {
a7de4ef7 103 new ThrowError('Votre recherche a généré trop de résultats pour un affichage public.');
09824164 104 } elseif ($nb_tot > $globals->search->private_max) {
a7de4ef7 105 new ThrowError('Recherche trop générale');
09824164 106 } elseif (empty($nb_tot)) {
a7de4ef7 107 new ThrowError('il n\'existe personne correspondant à ces critères dans la base !');
09824164 108 }
109 } else {
70a55e68 110 $res = XDB::query("SELECT MIN(diminutif), MAX(diminutif)
111 FROM groupex.asso
112 WHERE cat = 'Promotions'");
113 list($min, $max) = $res->fetchOneRow();
114 $page->assign('promo_min', $min);
115 $page->assign('promo_max', $max);
09824164 116 $page->assign('formulaire',1);
e654517d 117 $page->addJsLink('ajax.js');
09824164 118 }
119
90ccb062 120 require_once dirname(__FILE__) . '/search/search.inc.php';
8c4a0c30 121 $page->changeTpl('search/index.tpl');
122 $page->assign('xorg_title','Polytechnique.org - Annuaire');
123 $page->assign('baseurl', $globals->baseurl);
90ccb062 124 $page->register_modifier('display_lines', 'display_lines');
09824164 125 }
126
90ccb062 127 function handler_advanced(&$page, $action = null, $subaction = null)
09824164 128 {
129 global $globals;
90ccb062 130 if (!Env::has('rechercher') && $action != 'geoloc') {
09824164 131 $this->form_prepare();
132 } else {
8c4a0c30 133 require_once 'userset.inc.php';
134 $view = new SearchSet(false, $action == 'geoloc' && substr($subaction, -3) == 'swf');
135 $view->addMod('minifiche', 'Minifiches', true);
136 $view->addMod('trombi', 'Trombinoscope');
137 $view->addMod('geoloc', 'Planishpère');
138 $view->apply('search', $page, $action, $subaction);
139
140 if ($subaction) {
141 return;
09824164 142 }
8c4a0c30 143 $nb_tot = $view->count();
09824164 144 if ($nb_tot > $globals->search->private_max) {
145 $this->form_prepare();
a7de4ef7 146 new ThrowError('Recherche trop générale');
09824164 147 }
09824164 148 }
149
90ccb062 150 require_once 'geoloc.inc.php';
151 require_once dirname(__FILE__) . '/search/search.inc.php';
152 $page->changeTpl('search/index.tpl', $action == 'mini' ? SIMPLE : SKINNED);
3c640222 153 $page->addJsLink('ajax.js');
8c4a0c30 154 $page->assign('advanced',1);
155 $page->assign('public_directory',0);
90ccb062 156 $page->register_modifier('display_lines', 'display_lines');
09824164 157 }
3c640222 158
159 function handler_region(&$page, $country = null)
160 {
493b6abe 161 header('Content-Type: text/html; charset="UTF-8"');
3c640222 162 require_once("geoloc.inc.php");
163 $page->ChangeTpl('search/adv.region.form.tpl', NO_SKIN);
164 $page->assign('region', "");
165 $page->assign('country', $country);
166 }
167
168 function handler_grade(&$page, $school = null)
169 {
493b6abe 170 header('Content-Type: text/html; charset="UTF-8"');
3c640222 171 $page->ChangeTpl('search/adv.grade.form.tpl', NO_SKIN);
172 $page->assign('grade', '');
173 $this->get_diplomas($school);
174 }
838cc16a 175
176 function handler_autocomplete(&$page, $type = null)
177 {
178 // Autocompletion : according to type required, return
179 // a list of results matching with the number of matches.
180 // The output format is :
181 // result1|nb1
182 // result2|nb2
183 // ...
184 header('Content-Type: text/plain; charset="UTF-8"');
c15afc4e 185 $q = preg_replace('/\*+$/','',$_REQUEST['q']);
838cc16a 186 if (!$q) exit();
c15afc4e 187
188 // try to look in cached results
189 $cache = XDB::query('SELECT result FROM search_autocomplete WHERE name = {?} AND query = {?} AND generated > NOW() - INTERVAL 1 DAY',
190 $type, $q);
191 if ($res = $cache->fetchOneCell()) {
192 echo $res;
193 die();
194 }
195
2ab7a09f 196 // default search
838cc16a 197 $unique = 'user_id';
198 $db = 'auth_user_md5';
2ab7a09f 199 $realid = false;
200 $contains = false;
201
838cc16a 202 switch ($type) {
2ab7a09f 203 case 'binetTxt':
204 $db = 'binets_def INNER JOIN binets_ins ON(binets_def.id = binets_ins.binet_id)';
205 $field='binets_def.text';
206 if (strlen($q) > 2)
207 $contains = true;
208 $realid = 'binets_def.id';
209 break;
210 case 'city': $db = 'geoloc_city INNER JOIN adresses ON(geoloc_city.id = adresses.cityid)'; $unique='uid'; $field='geoloc_city.name'; break;
211 case 'entreprise': $db = 'entreprises'; $field = 'entreprise'; $unique='uid'; break;
838cc16a 212 case 'firstname': $field = 'prenom'; break;
2ab7a09f 213 case 'fonctionTxt':
214 $db = 'fonctions_def INNER JOIN entreprises ON(entreprises.fonction = fonctions_def.id)';
215 $field = 'fonction_fr';
216 $unique = 'uid';
217 $realid = 'fonctions_def.id';
218 break;
219 case 'groupexTxt':
220 $db = 'groupesx_def INNER JOIN groupesx_ins ON(groupesx_def.id = groupesx_ins.gid)';
221 $field='groupesx_def.text';
222 if (strlen($q) > 2)
223 $contains = true;
224 $realid = 'groupesx_def.id';
225 $unique = 'guid';
226 break;
838cc16a 227 case 'name': $field = 'nom'; break;
2ab7a09f 228 case 'nationaliteTxt':
229 $db = 'geoloc_pays INNER JOIN auth_user_md5 ON(geoloc_pays.a2 = auth_user_md5.nationalite)';
230 $field = 'IF(geoloc_pays.nat=\'\', geoloc_pays.pays, geoloc_pays.nat)';
231 $realid = 'geoloc_pays.a2';
232 break;
baa8a594 233 case 'nickname': $field = 'profile_nick'; $db = 'auth_user_quick'; break;
df87518a 234 case 'poste': $db = 'entreprises'; $field = 'poste'; $unique='uid'; break;
2ab7a09f 235 case 'secteurTxt':
236 $db = 'emploi_secteur INNER JOIN entreprises ON(entreprises.secteur = emploi_secteur.id)';
237 $field = 'emploi_secteur.label';
238 $realid = 'emploi_secteur.id';
239 $unique = 'uid';
240 break;
241 case 'sectionTxt':
242 $db = 'sections INNER JOIN auth_user_md5 ON(auth_user_md5.section = sections.id)';
243 $field = 'sections.text';
244 $realid = 'sections.id';
245 break;
838cc16a 246 default: exit();
247 }
248
2ab7a09f 249 $list = XDB::iterator('
250 SELECT
251 '.$field.' AS field,
252 COUNT(DISTINCT '.$unique.') AS nb
253 '.($realid?(', '.$realid.' AS id'):'').'
254 FROM '.$db.'
255 WHERE '.$field.' LIKE {?}
256 GROUP BY '.$field.'
257 ORDER BY nb DESC
258 LIMIT 11',
259 ($contains?'%':'').str_replace('*','%',$q).'%');
838cc16a 260 $nbResults = 0;
c15afc4e 261 $res = "";
2ab7a09f 262 while ($result = $list->next()) {
838cc16a 263 $nbResults++;
264 if ($nbResults == 11) {
c15afc4e 265 $res .= '...|1'."\n";
838cc16a 266 } else {
c15afc4e 267 $res .= $result['field'].'|'.$result['nb'].(isset($result['id'])?('|'.$result['id']):'')."\n";
838cc16a 268 }
269 }
c15afc4e 270 XDB::query('REPLACE INTO search_autocomplete VALUES ({?}, {?}, {?}, NOW())',
271 $type, $q, $res);
272 echo $res;
838cc16a 273 exit();
274 }
2ab7a09f 275
276 function handler_list(&$page, $type = null, $idVal = null)
277 {
278 // Give the list of all values possible of type and builds a select input for it
279 $field = 'text';
280 $id = 'id';
281 switch ($type) {
282 case 'binet':
283 $db = 'binets_def';
284 break;
285 case 'fonction':
286 $db = 'fonctions_def';
287 $field = 'fonction_fr';
288 break;
289 case 'groupex':
290 $db = 'groupesx_def';
291 break;
292 case 'nationalite':
293 $db = 'geoloc_pays';
294 $field = 'IF(nat=\'\', pays, nat)';
295 $id = 'a2';
296 break;
297 case 'section':
298 $db = 'sections';
299 break;
300 case 'secteur':
301 $db = 'emploi_secteur';
302 $field = 'label';
303 break;
304 default: exit();
305 }
306 if (isset($idVal)) {
307 header('Content-Type: text/plain; charset="UTF-8"');
308 $result = XDB::query('SELECT '.$field.' AS field FROM '.$db.' WHERE '.$id.' = {?} LIMIT 1',$idVal);
309 echo $result->fetchOneCell();
310 } else {
311 header('Content-Type: text/xml; charset="UTF-8"');
312 $list = XDB::iterator('
313 SELECT
314 '.$field.' AS field,
315 '.$id.' AS id
316 FROM '.$db.'
317 ORDER BY '.$field);
318 echo '<select name="'.$type.'">';
319 while ($result = $list->next()) {
320 echo '<option value="'.$result['id'].'">'.htmlspecialchars($result['field']).'</option>';
321 }
322 echo '</select>';
323 }
324
325 exit();
326 }
09824164 327}
328
a7de4ef7 329// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
09824164 330?>