Changelog
[platal.git] / modules / geoloc.php
CommitLineData
7b14a2a0 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 GeolocModule extends PLModule
23{
24 function handlers()
25 {
26 return array(
0bf274a8 27 'geoloc' => $this->make_hook('default', AUTH_COOKIE),
28 'geoloc/icon.swf' => $this->make_hook('icon', AUTH_COOKIE),
29 'geoloc/dynamap.swf' => $this->make_hook('dynamap', AUTH_COOKIE),
30 'geoloc/init' => $this->make_hook('init', AUTH_COOKIE),
31 'geoloc/city' => $this->make_hook('city', AUTH_COOKIE),
32 'geoloc/country' => $this->make_hook('country', AUTH_COOKIE),
80244bbe 33 '%grp/geoloc' => $this->make_hook('default',AUTH_COOKIE),
34 '%grp/geoloc/icon.swf' => $this->make_hook('icon', AUTH_COOKIE),
35 '%grp/geoloc/dynamap.swf'=> $this->make_hook('dynamap',AUTH_COOKIE),
36 '%grp/geoloc/init' => $this->make_hook('init', AUTH_COOKIE),
37 '%grp/geoloc/city' => $this->make_hook('city', AUTH_COOKIE),
38 '%grp/geoloc/country' => $this->make_hook('country',AUTH_COOKIE),
7b14a2a0 39 );
40 }
41
42 function _make_qs()
43 {
44 $querystring = "";
45
46 foreach ($_GET as $v => $a) {
0bf274a8 47 if ($v != 'initfile' && $v != 'p' && $v != 'mapid') {
48 $querystring .= urlencode($v).'='.urlencode($a).'&amp;';
7b14a2a0 49 }
50 }
51
52 return $querystring;
53 }
54
55 function handler_default(&$page)
56 {
57 global $globals;
58
80244bbe 59 if (!is_file(dirname(__FILE__).'/geoloc/dynamap.swf') ||
60 !is_file(dirname(__FILE__).'/geoloc/icon.swf'))
61 $page->assign('request_geodesix', 1);
7b14a2a0 62
80244bbe 63 if (!empty($GLOBALS['IS_XNET_SITE'])) {
64 $page->useMenu();
65 $page->setType($globals->asso('cat'));
66 $page->assign('no_annu', 1);
67 }
7b14a2a0 68
80244bbe 69 require_once 'search.inc.php';
70 $page->changeTpl('geoloc/index.tpl');
7b14a2a0 71 $fields = new SFieldGroup(true, advancedSearchFromInput());
72 $search = $fields->get_url();
0bf274a8 73 if (!Env::has('only_current'))
74 $search .= '&only_current=on';
75 elseif (Env::get('only_current') != 'on')
7b14a2a0 76 $search .= '&only_current=';
0bf274a8 77
7b14a2a0 78 $search = preg_replace('/(^|&amp;)mapid=([0-9]+)(&amp;|$)/','\1\3', $search);
0bf274a8 79 if ($search)
80 $search = '?'.$search;
80244bbe 81 $page->assign('search',$search);
0bf274a8 82
83 $page->assign('protocole', substr($globals->baseurl,0,strpos($globals->baseurl,':')));
84
85 if (!$search) {
86 $res = XDB::query('SELECT COUNT(DISTINCT uid)
87 FROM adresses WHERE cityid IS NOT NULL');
88 $page->assign('localises', $res->fetchOneCell());
7b14a2a0 89 }
7b14a2a0 90 }
91
92 function handler_icon(&$page)
93 {
94 global $globals;
95
96 header("Content-type: application/x-shockwave-flash");
00d0011e 97 header("Pragma:");
7b14a2a0 98
80244bbe 99 readfile(dirname(__FILE__).'/geoloc/icon.swf');
100 exit;
7b14a2a0 101
102 return PL_NOT_FOUND;
103 }
104
105 function handler_dynamap(&$page)
106 {
107 global $globals;
108
7b14a2a0 109 header("Content-type: application/x-shockwave-flash");
110
80244bbe 111 header("Pragma:");
112 readfile(dirname(__FILE__).'/geoloc/dynamap.swf');
113 exit;
7b14a2a0 114
115 return PL_NOT_FOUND;
116 }
117
118 function handler_init(&$page)
119 {
120 global $globals;
121
801fcad8 122 $page->changeTpl('geoloc/geolocInit.tpl', NO_SKIN);
7b14a2a0 123
124 header('Content-type: text/xml');
00d0011e 125 header('Pragma:');
80244bbe 126 if(!empty($GLOBALS['IS_XNET_SITE']))
127 $page->assign('background', 0xF2E9D0);
7b14a2a0 128 $page->assign('querystring', $this->_make_qs());
7b14a2a0 129 }
130
131 function handler_city(&$page)
132 {
133 global $globals;
134
135 header("Content-type: text/xml");
00d0011e 136 header("Pragma:");
7b14a2a0 137
801fcad8 138 $page->changeTpl('geoloc/getCityInfos.tpl', NO_SKIN);
7b14a2a0 139
140 require_once('geoloc.inc.php');
141 require_once('search.inc.php');
142
80244bbe 143 if (empty($GLOBALS['IS_XNET_SITE'])) {
144 $usual_fields = advancedSearchFromInput();
145 $fields = new SFieldGroup(true, $usual_fields);
146 } else {
147 $_REQUEST['asso_id'] = $globals->asso('id');
148 $_REQUEST['only_current'] = 'on';
149 $fields = new SFieldGroup(true, array(
150 new RefSField('asso_id',array('gxm.asso_id'),'groupex.membres','gxm','u.user_id=gxm.uid'),
151 new RefSField('cityid',array('av.cityid'),'adresses','av',getadr_join('av'))));
152 }
7b14a2a0 153 $where = $fields->get_where_statement();
154 if ($where) $where = "WHERE ".$where;
155
08cce2ff 156 $users = XDB::iterator("
7b14a2a0 157 SELECT u.user_id AS id, u.prenom, u.nom, u.promo
158 FROM adresses AS a
159 INNER JOIN auth_user_md5 AS u ON(u.user_id = a.uid)
160 INNER JOIN auth_user_quick AS q ON(q.user_id = a.uid)
161 ".$fields->get_select_statement()."
162 ".$where."
163 GROUP BY u.user_id LIMIT 11", $id);
164
165 $page->assign('users', $users);
7b14a2a0 166 }
167
0bf274a8 168 function handler_country(&$page)
7b14a2a0 169 {
170 global $globals;
171
172 // to debug sql use the next line
173 if (Env::has('debug')) {
62a66dfc 174 $page->changeTpl('geoloc/getData.tpl', SIMPLE);
7b14a2a0 175 } else {
176 header("Content-type: text/xml");
00d0011e 177 header("Pragma:");
801fcad8 178 $page->changeTpl('geoloc/getData.tpl', NO_SKIN);
7b14a2a0 179 }
180
181 require_once 'geoloc.inc.php';
182 require_once 'search.inc.php';
183
184 $querystring = $this->_make_qs();
185 $page->assign('searchvars', $querystring);
186
5e2307dc 187 $mapid = Env::has('mapid') ? Env::i('mapid', -2) : false;
80244bbe 188 if (empty($GLOBALS['IS_XNET_SITE'])) {
189 $fields = advancedSearchFromInput();
190 } else {
191 $_REQUEST['asso_id'] = $globals->asso('id');
192 $_REQUEST['only_current'] = 'on';
193 $fields = array(new RefSField('asso_id',array('gxm.asso_id'),'groupex.membres','gxm','u.user_id=gxm.uid'));
194 }
7b14a2a0 195
80244bbe 196 list($countries, $cities) = geoloc_getData_subcountries($mapid, $fields, 10);
7b14a2a0 197
198 $page->assign('countries', $countries);
199 $page->assign('cities', $cities);
7b14a2a0 200 }
201}
202
203?>