Updates userset.inc.php for the new profile_address and geoloc_countries tables.
[platal.git] / modules / search / search.inc.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2009 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
22 require_once dirname(__FILE__).'/classes.inc.php';
23
24 // {{{ function advancedSearchFromInput
25 function getadr_join($table) {
26 return 'u.user_id = ' . $table . '.pid' . (Env::v('only_current', false) ? ' AND FIND_IN_SET(\'current\', ' . $table . '.flags)' : '');
27 }
28 function advancedSearchFromInput()
29 {
30 if ($with_soundex = Env::has('with_soundex')) {
31 $nameField = new RefWithSoundexSField('name', array('n.soundex'), 'search_name',
32 'n', 'u.user_id = n.uid');
33 } else {
34 $nameField = new NameSField('name', array('n.token'), 'search_name', 'n', 'u.user_id = n.uid');
35 }
36
37 $promo1Field = new PromoSField('promo1', 'egal1', array('u.promo'), '');
38 $promo2Field = new PromoSField('promo2', 'egal2', array('u.promo'), '');
39 $womanField = new RefSField('woman', array('FIND_IN_SET(\'femme\', u.flags) + 1'), '', '', '');
40 $subscriberField = new RefSField('subscriber', array('!(u.perms IN (\'admin\', \'user\')) + 1'), '', '', '');
41 $aliveField = new RefSField('alive', array('(u.deces != 0) + 1'), '', '', '');
42 if (Env::v('only_referent') == 'on') {
43 $referentField = new RefSField('only_referent', array('"on"'), 'mentor', 'mt', 'mt.expertise != "" AND mt.uid = u.user_id');
44 } else {
45 $referentField = null;
46 }
47
48 if (!Env::i('cityid')) {
49 $townField = new RefSField('city', array('ac.city', 'ac.postcode'), 'adresses', 'ac', getadr_join('ac'), false);
50 } else {
51 $townField = new RefSField('cityid', array('av.cityid', 'av.postcode'), 'adresses', 'av', getadr_join('av'));
52 }
53 $countryField = new RefSField('country', array('ap.country'), 'adresses', 'ap', getadr_join('ap'));
54 $regionField = new RefSField('region',array('ar.region'), 'adresses', 'ar', getadr_join('ar'));
55 $mapField = new MapSField('mapid', array('sgcim.map_id'), array('adresses', 'geoloc_city_in_maps'),
56 array('amp', 'sgcim'), array(getadr_join('amp'), 'amp.cityid = sgcim.city_id'));
57
58 $entrepriseField = new RefSField('entreprise', array('je.name'), '', '','');
59 $posteField = new RefSField('poste', array('ep.description'), 'profile_job', 'ep', 'u.user_id = ep.uid', false);
60 $fonctionField = new RefSField('fonction', array('en.fonction_fr'), 'fonctions_def', 'en',
61 'u.user_id = profile_job.uid AND fonctions_def.id = profile_job.functionid');
62 $secteurField = new RefSField('secteur', array('fm.sectorid'), 'profile_job', 'fm', 'u.user_id = fm.uid');
63 $cvField = new RefSField('cv', array('u.cv'), '', '', '', false);
64
65 $natField = new RefSField('nationalite', array('u.nationalite', 'u.nationalite2', 'u.nationalite3'), '', '', '');
66 $binetField = new RefSField('binet', array('b.binet_id'), 'binets_ins', 'b', 'u.user_id=b.user_id');
67 $groupexField = new RefSField('groupex', array('g.id'), array('groupex.asso', 'groupex.membres'), array('g', 'gm'),
68 array("(g.cat = 'GroupesX' OR g.cat = 'Institutions') AND g.pub = 'public'",
69 'gm.asso_id = g.id AND u.user_id = gm.uid'));
70 $sectionField = new RefSField('section', array('u.section'), '', '', '');
71 $schoolField = new RefSField('school', array('edu.eduid'), 'profile_education', 'edu', 'u.user_id = edu.uid');
72 $diplomaField = new RefSField('diploma', array('edd.degreeid'), 'profile_education', 'edd', 'u.user_id = edd.uid');
73
74 $freeField = new RefSField('free', array('q.profile_freetext'), '', '', '', false);
75
76 $nwAddressField = new RefSField('networking_address', array('nw.address'), 'profile_networking', 'nw', 'nw.uid=u.user_id', false);
77 if (Env::v('networking_address') == '') {
78 $nwTypeField = new IndexSField('networking_type', array('nwe.network_type'), array('profile_networking', 'profile_networking_enum'),
79 array('nw', 'nwe'), array('nw.uid = u.user_id', 'nwe.network_type = nw.network_type'));
80 } else {
81 $nwTypeField = new IndexSField('networking_type',
82 array('nwe.network_type'), 'profile_networking_enum', 'nwe', 'nwe.network_type = nw.network_type');
83 }
84 $nwPhoneField = new PhoneSField('phone_number', array('t.search_tel'), 'profile_phones', 't', 't.uid = u.user_id');
85 return array(
86 $nameField, $promo1Field,
87 $promo2Field, $womanField, $subscriberField, $aliveField,
88 $townField, $countryField, $regionField, $mapField, $entrepriseField,
89 $posteField, $secteurField, $cvField, $natField, $binetField,
90 $groupexField, $sectionField, $schoolField, $diplomaField,
91 $freeField, $fonctionField, $nwAddressField, $nwTypeField,
92 $nwPhoneField, $referentField);
93 }
94
95 // }}}
96
97 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
98 ?>