Simplification
[platal.git] / modules / search.php
CommitLineData
09824164 1<?php
2/***************************************************************************
3 * Copyright (C) 2003-2006 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 );
30 }
31
8d8f7607 32 function on_subscribe($forlife, $uid, $promo, $pass)
33 {
34 require_once 'user.func.inc.php';
35 user_reindex($uid);
36 }
37
09824164 38 function get_quick($offset, $limit, $order)
39 {
40 global $globals;
41 $qSearch = new QuickSearch('quick');
42 $fields = new SFieldGroup(true, array($qSearch));
43
44 if ($qSearch->isempty()) {
45 new ThrowError('Recherche trop générale.');
46 }
47
48 $sql = 'SELECT SQL_CALC_FOUND_ROWS
49 UPPER(IF(u.nom!="",u.nom,u.nom_ini)) AS nom,
50 IF(u.prenom!="",u.prenom,u.prenom_ini) AS prenom,
51 '.$globals->search->result_fields.'
52 c.uid AS contact, w.ni_id AS watch,
53 '.$qSearch->get_score_statement().'
54 FROM auth_user_md5 AS u
55 '.$fields->get_select_statement().'
56 LEFT JOIN auth_user_quick AS q ON (u.user_id = q.user_id)
57 LEFT JOIN aliases AS a ON (u.user_id = a.id AND a.type="a_vie")
6b590724 58 LEFT JOIN contacts AS c ON (c.uid='.S::i('uid', -1).'
09824164 59 AND c.contact=u.user_id)
60 LEFT JOIN watch_nonins AS w ON (w.ni_id=u.user_id
6b590724 61 AND w.uid='.S::i('uid', -1).')
09824164 62 '.$globals->search->result_where_statement.'
63 WHERE '.$fields->get_where_statement()
cab08090 64 .(S::logged() && Env::has('nonins') ? ' AND u.perms="pending" AND u.deces=0' : '')
09824164 65 .'
66 GROUP BY u.user_id
67 ORDER BY '.($order?($order.', '):'')
68 .implode(',',array_filter(array($fields->get_order_statement(),
69 'u.promo DESC, NomSortKey, prenom'))).'
70 LIMIT '.$offset * $globals->search->per_page.','
71 .$globals->search->per_page;
08cce2ff 72 $list = XDB::iterator($sql);
73 $res = XDB::query("SELECT FOUND_ROWS()");
09824164 74 $nb_tot = $res->fetchOneCell();
75 return array($list, $nb_tot);
76 }
77
78 function form_prepare()
79 {
d25e0f0b 80 global $page;
81
09824164 82 $page->assign('formulaire',1);
83 $page->assign('choix_nats',
08cce2ff 84 XDB::iterator('SELECT a2 AS id,IF(nat=\'\',pays,nat) AS text
09824164 85 FROM geoloc_pays ORDER BY text'));
86 $page->assign('choix_postes',
08cce2ff 87 XDB::iterator('SELECT id,fonction_fr FROM fonctions_def
09824164 88 ORDER BY fonction_fr'));
89 $page->assign('choix_binets',
08cce2ff 90 XDB::iterator('SELECT id,text FROM binets_def ORDER BY text'));
09824164 91 $page->assign('choix_groupesx',
08cce2ff 92 XDB::iterator('SELECT id,text FROM groupesx_def ORDER BY text'));
09824164 93 $page->assign('choix_sections',
08cce2ff 94 XDB::iterator('SELECT id,text FROM sections ORDER BY text'));
09824164 95 $page->assign('choix_schools',
08cce2ff 96 XDB::iterator('SELECT id,text FROM applis_def ORDER BY text'));
09824164 97 $page->assign('choix_secteurs',
08cce2ff 98 XDB::iterator('SELECT id,label FROM emploi_secteur ORDER BY label'));
09824164 99
100 if (Env::has('school')) {
5e2307dc 101 $sql = 'SELECT type FROM applis_def WHERE id='.Env::i('school');
09824164 102 } else {
103 $sql = 'DESCRIBE applis_def type';
104 }
105
08cce2ff 106 $res = XDB::query($sql);
09824164 107 $row = $res->fetchOneRow();
108 if (Env::has('school')) {
109 $types = $row[0];
110 } else {
111 $types = explode('(',$row[1]);
112 $types = str_replace("'","",substr($types[1],0,-1));
113 }
114 $page->assign('choix_diplomas', explode(',',$types));
115 }
116
117 function get_advanced($offset, $limit, $order)
118 {
119 $fields = new SFieldGroup(true, advancedSearchFromInput());
120 if ($fields->too_large()) {
121 $this->form_prepare();
122 new ThrowError('Recherche trop générale.');
123 }
124 global $globals, $page;
125
126 $page->assign('search_vars', $fields->get_url());
127
128 $where = $fields->get_where_statement();
129 if ($where) {
130 $where = "WHERE $where";
131 }
132 $sql = 'SELECT SQL_CALC_FOUND_ROWS DISTINCT
133 u.nom, u.prenom,
134 '.$globals->search->result_fields.'
135 c.uid AS contact,
136 w.ni_id AS watch
137 FROM auth_user_md5 AS u
138 LEFT JOIN auth_user_quick AS q USING(user_id)
139 '.$fields->get_select_statement().'
140 '.(Env::has('only_referent') ? ' INNER JOIN mentor AS m ON (m.uid = u.user_id)' : '').'
141 LEFT JOIN aliases AS a ON (u.user_id = a.id AND a.type="a_vie")
cab08090 142 LEFT JOIN contacts AS c ON (c.uid='.S::v('uid').'
09824164 143 AND c.contact=u.user_id)
144 LEFT JOIN watch_nonins AS w ON (w.ni_id=u.user_id
cab08090 145 AND w.uid='.S::v('uid').')
09824164 146 '.$globals->search->result_where_statement."
147 $where
1f17ab93 148 GROUP BY u.user_id
09824164 149 ORDER BY ".($order?($order.', '):'')
150 .implode(',',array_filter(array($fields->get_order_statement(),
151 'promo DESC, NomSortKey, prenom'))).'
152 LIMIT '.($offset * $limit).','.$limit;
08cce2ff 153 $liste = XDB::iterator($sql);
154 $res = XDB::query("SELECT FOUND_ROWS()");
09824164 155 $nb_tot = $res->fetchOneCell();
156 return Array($liste, $nb_tot);
157 }
158
159 function handler_quick(&$page)
160 {
161 global $globals;
162
163 require_once 'search.inc.php';
164
165 $page->changeTpl('search/index.tpl');
166
167 $page->assign('xorg_title','Polytechnique.org - Annuaire');
168 require_once("applis.func.inc.php");
169 require_once("geoloc.inc.php");
170
171 $page->assign('baseurl', $globals->baseurl);
172
173 if (Env::has('quick')) {
174 $page->assign('formulaire', 0);
175
176 $search = new XOrgSearch(array($this, 'get_quick'));
177 $search->setNbLines($globals->search->per_page);
178 $search->addOrder('score', 'score', false, 'pertinence', AUTH_PUBLIC, true);
179
180 $nb_tot = $search->show();
181
cab08090 182 if (!S::logged() && $nb_tot > $globals->search->public_max) {
09824164 183 new ThrowError('Votre recherche a généré trop de résultats pour un affichage public.');
184 } elseif ($nb_tot > $globals->search->private_max) {
185 new ThrowError('Recherche trop générale');
186 } elseif (empty($nb_tot)) {
187 new ThrowError('il n\'existe personne correspondant à ces critères dans la base !');
188 }
189 } else {
190 $page->assign('formulaire',1);
191 }
192
193 $page->register_modifier('display_lines', 'display_lines');
09824164 194 }
195
196 function handler_advanced(&$page, $mode = null)
197 {
198 global $globals;
199
200 require_once 'search.inc.php' ;
201 require_once 'applis.func.inc.php';
202 require_once 'geoloc.inc.php';
203
204
62a66dfc 205 $page->changeTpl('search/index.tpl', $mode == 'mini' ? SIMPLE : SKINNED);
09824164 206
207 $page->assign('advanced',1);
208 $page->assign('public_directory',0);
09824164 209
210 if (!Env::has('rechercher')) {
211 $this->form_prepare();
212 } else {
213
d095003a 214 $search = new XOrgSearch(array($this, 'get_advanced'));
09824164 215 $search->setNbLines($globals->search->per_page);
216
217 $page->assign('url_search_form', $search->make_url(Array('rechercher'=>0)));
218 if (Env::has('with_soundex')) {
219 $page->assign('with_soundex', $search->make_url(Array())."&with_soundex=1");
220 }
221
222 $nb_tot = $search->show();
223
224 if ($nb_tot > $globals->search->private_max) {
225 $this->form_prepare();
226 new ThrowError('Recherche trop générale');
227 }
228
229 }
230
231 $page->register_modifier('display_lines', 'display_lines');
09824164 232 }
233}
234
235?>