Use 'changeTpl' for xnet pages and use handler permission instead of page restriction
[platal.git] / modules / search.php
... / ...
CommitLineData
1<?php
2/***************************************************************************
3 * Copyright (C) 2003-2007 Polytechnique.org *
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),
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),
31 'advanced_search.php' => $this->make_hook('redir_advanced', AUTH_PUBLIC),
32 'search/autocomplete' => $this->make_hook('autocomplete', AUTH_COOKIE, 'user', NO_AUTH),
33 'search/list' => $this->make_hook('list', AUTH_COOKIE, 'user', NO_AUTH),
34 );
35 }
36
37 function handler_redir_advanced(&$page, $mode = null)
38 {
39 pl_redirect('search/adv');
40 exit;
41 }
42
43 function on_subscribe($forlife, $uid, $promo, $pass)
44 {
45 require_once 'user.func.inc.php';
46 user_reindex($uid);
47 }
48
49
50 function form_prepare()
51 {
52 global $page;
53
54 $page->assign('formulaire',1);
55 $page->assign('choix_schools',
56 XDB::iterator('SELECT id,text FROM applis_def ORDER BY text'));
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 }
65
66 if (!is_null($school)) {
67 $sql = 'SELECT type FROM applis_def WHERE id=' . $school;
68 } else {
69 $sql = 'DESCRIBE applis_def type';
70 }
71
72 $res = XDB::query($sql);
73 $row = $res->fetchOneRow();
74 if (!is_null($school)) {
75 $types = $row[0];
76 } else {
77 $types = explode('(',$row[1]);
78 $types = str_replace("'","",substr($types[1],0,-1));
79 }
80 global $page;
81 $page->assign('choix_diplomas', explode(',',$types));
82 }
83
84 function handler_quick(&$page, $action = null, $subaction = null)
85 {
86 global $globals;
87
88 if (Env::has('quick') || $action == 'geoloc') {
89 $page->assign('formulaire', 0);
90
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);
97
98 $nb_tot = $view->count();
99 if ($subaction) {
100 return;
101 }
102 if (!S::logged() && $nb_tot > $globals->search->public_max) {
103 new ThrowError('Votre recherche a généré trop de résultats pour un affichage public.');
104 } elseif ($nb_tot > $globals->search->private_max) {
105 new ThrowError('Recherche trop générale');
106 } elseif (empty($nb_tot)) {
107 new ThrowError('il n\'existe personne correspondant à ces critères dans la base !');
108 }
109 } else {
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);
116 $page->assign('formulaire',1);
117 $page->addJsLink('ajax.js');
118 }
119
120 require_once dirname(__FILE__) . '/search/search.inc.php';
121 $page->changeTpl('search/index.tpl');
122 $page->assign('xorg_title','Polytechnique.org - Annuaire');
123 $page->assign('baseurl', $globals->baseurl);
124 $page->register_modifier('display_lines', 'display_lines');
125 }
126
127 function handler_advanced(&$page, $action = null, $subaction = null)
128 {
129 global $globals;
130 if (!Env::has('rechercher') && $action != 'geoloc') {
131 $this->form_prepare();
132 } else {
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;
142 }
143 $nb_tot = $view->count();
144 if ($nb_tot > $globals->search->private_max) {
145 $this->form_prepare();
146 new ThrowError('Recherche trop générale');
147 }
148 }
149
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);
153 $page->addJsLink('ajax.js');
154 $page->assign('advanced',1);
155 $page->assign('public_directory',0);
156 $page->register_modifier('display_lines', 'display_lines');
157 }
158
159 function handler_region(&$page, $country = null)
160 {
161 header('Content-Type: text/html; charset="UTF-8"');
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 {
170 header('Content-Type: text/html; charset="UTF-8"');
171 $page->ChangeTpl('search/adv.grade.form.tpl', NO_SKIN);
172 $page->assign('grade', '');
173 $this->get_diplomas($school);
174 }
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"');
185 $q = preg_replace('/\*+$/','',$_REQUEST['q']);
186 if (!$q) exit();
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
196 // default search
197 $unique = 'user_id';
198 $db = 'auth_user_md5';
199 $realid = false;
200 $contains = false;
201
202 switch ($type) {
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;
212 case 'firstname': $field = 'prenom'; break;
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;
227 case 'name': $field = 'nom'; break;
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;
233 case 'nickname': $field = 'profile_nick'; $db = 'auth_user_quick'; break;
234 case 'poste': $db = 'entreprises'; $field = 'poste'; $unique='uid'; break;
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;
246 default: exit();
247 }
248
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).'%');
260 $nbResults = 0;
261 $res = "";
262 while ($result = $list->next()) {
263 $nbResults++;
264 if ($nbResults == 11) {
265 $res .= '...|1'."\n";
266 } else {
267 $res .= $result['field'].'|'.$result['nb'].(isset($result['id'])?('|'.$result['id']):'')."\n";
268 }
269 }
270 XDB::query('REPLACE INTO search_autocomplete VALUES ({?}, {?}, {?}, NOW())',
271 $type, $q, $res);
272 echo $res;
273 exit();
274 }
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 }
327}
328
329// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
330?>