Backports
[platal.git] / include / geoloc.inc.php
CommitLineData
0337d704 1<?php
2/***************************************************************************
5ddeb07c 3 * Copyright (C) 2003-2007 Polytechnique.org *
0337d704 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
0337d704 22// {{{ liste les pays ou les régions d'un pays
23/** donne la liste déroulante des pays
24 * @param $current pays actuellement selectionné
25 */
26function geoloc_country($current) {
08cce2ff 27 $res = XDB::iterRow('SELECT a2,pays FROM geoloc_pays ORDER BY pays');
0337d704 28 $html = "";
29 while (list($my_id, $my_pays) = $res->next()) {
30 $html .= sprintf("<option value=\"%s\" %s>%s</option>\n",
31 $my_id, ($current==$my_id?"selected='selected'":""), $my_pays);
32 }
33 return $html;
34}
35
36function _geoloc_country_smarty($params){
37 if(!isset($params['country']))
38 return;
39 return geoloc_country($params['country']);
40}
80ca1b4e 41$GLOBALS['page']->register_function('geoloc_country', '_geoloc_country_smarty');
0337d704 42
43/** donne la liste deroulante des regions pour un pays
44 * @param $pays le pays dont on veut afficher les regions
45 * @param $current la region actuellement selectionnee
46 */
47function geoloc_region($country,$current) {
08cce2ff 48 $res = XDB::iterRow('SELECT region,name FROM geoloc_region where a2={?} ORDER BY name', $country);
0337d704 49 $html = "<option value=\"\"></option>";
50 while (list($regid, $regname) = $res->next()) {
51 $html .= sprintf("<option value=\"%s\" %s>%s</option>\n",
52 $regid, ($current==$regid?"selected='selected'":""), $regname);
53 }
54 return $html;
55
56}
57function _geoloc_region_smarty($params){
58 if(!isset($params['country']))
59 return;
60 if(!isset($params['region']))
61 return;
62 return geoloc_region($params['country'], $params['region']);
63}
80ca1b4e 64$GLOBALS['page']->register_function('geoloc_region', '_geoloc_region_smarty');
0337d704 65// }}}
66
0f0dfb0b 67function geoloc_is_utf8($text)
68{
69 return (iconv('utf-8', 'utf-8', $text) == $text);
70}
71
72function geoloc_utf8_decode($text)
73{
74 return geoloc_is_utf8($text) ? utf8_decode($text) : $text;
75}
76
0337d704 77// {{{ get_address_infos($txt)
78/** retrieve the infos on a text address
79 * store on the fly the info of the city concerned
80 * @param $txt the raw text of an address
81 */
82function get_address_infos($txt) {
56670b6a 83 global $globals;
c41e72df 84 $url = $globals->geoloc->webservice_url."address.php?precise=1&txt=".urlencode(utf8_encode($txt));
0337d704 85 if (!($f = @fopen($url, 'r'))) return false;
86 $keys = explode('|',fgets($f));
87 $vals = explode('|',fgets($f));
88 $infos = array();
2b98ac11 89 foreach ($keys as $i=>$key) {
90 if($vals[$i]) {
91 if ($key == 'sql') {
92 $infos[$key] = $vals[$i];
93 } else {
94 $val = strtr($vals[$i], array(chr(197).chr(147) => "&oelig;"));
0f0dfb0b 95 $infos[$key] = geoloc_utf8_decode($val);
2b98ac11 96 }
97 }
98 }
5ee95138 99 if (isset($infos['sql']) && $infos['sql'])
08cce2ff 100 XDB::execute("REPLACE INTO geoloc_city VALUES ".$infos['sql']);
5ee95138 101 if (isset($infos['display']) && $infos['display'])
7f3ac007 102 XDB::execute("UPDATE geoloc_pays SET display = {?} WHERE a2 = {?}", $infos['display'], $infos['country']);
5ee95138 103 if (isset($infos['cityid']))
104 fix_cities_not_on_map(1, $infos['cityid']);
0337d704 105 return $infos;
106}
107// }}}
108
56670b6a 109// {{{ get_cities_maps($array)
110/* get all the maps id of the cities contained in an array */
111function get_cities_maps($array)
112{
113 global $globals;
114 implode("\n",$array);
115 $url = $globals->geoloc->webservice_url."findMaps.php?datatext=".urlencode(utf8_encode(implode("\n", $array)));
116 if (!($f = @fopen($url, 'r'))) return false;
117 $maps = array();
118 while (!feof($f))
119 {
120 $l = trim(fgets($f));
121 $tab = explode(';', $l);
122 $i = $tab[0];
123 unset($tab[0]);
124 $maps[$i] = $tab;
125 }
126 return $maps;
127}
128// }}}
129
130// {{{ get_new_maps($url)
131/** set new maps from url **/
132function get_new_maps($url)
133{
a3a049fc 134 if (!($f = @fopen($url, 'r'))) {
135 return false;
136 }
137 XDB::query('TRUNCATE TABLE geoloc_maps');
138 $s = '';
139 while (!feof($f)) {
140 $l = fgetcsv($f, 1024, ';', '"');
141 foreach ($l as $i => $val) {
142 if ($val != 'NULL') {
143 $l[$i] = '\''.addslashes($val).'\'';
144 }
145 }
146 $s .= ',('.implode(',',$l).')';
147 }
148 XDB::execute('INSERT INTO geoloc_maps VALUES '.substr($s, 1));
149 return true;
56670b6a 150}
80244bbe 151// }}}
56670b6a 152
0337d704 153// {{{ get_address_text($adr)
154/** make the text of an address that can be read by a mailman
155 * @param $adr an array with all the usual fields
156 */
157function get_address_text($adr) {
158 $t = "";
5ee95138 159 if (isset($adr['adr1']) && $adr['adr1']) $t.= $adr['adr1'];
160 if (isset($adr['adr2']) && $adr['adr2']) $t.= "\n".$adr['adr2'];
161 if (isset($adr['adr3']) && $adr['adr3']) $t.= "\n".$adr['adr3'];
0337d704 162 $l = "";
5ee95138 163 if (isset($adr['display']) && $adr['display']) {
80ca1b4e 164 $keys = explode(' ', $adr['display']);
165 foreach ($keys as $key) {
166 if (isset($adr[$key]))
167 $l .= " ".$adr[$key];
168 else
169 $l .= " ".$key;
170 }
171 if ($l) $l = substr($l, 1);
172 }
173 else
174 {
175 if ($adr['country'] == 'US' || $adr['country'] == 'CA' || $adr['country'] == 'GB') {
176 if ($adr['city']) $l .= $adr['city'].",\n";
177 if ($adr['region']) $l .= $adr['region']." ";
178 if ($adr['postcode']) $l .= $adr['postcode'];
179 } else {
5ee95138 180 if (isset($adr['postcode']) && $adr['postcode']) $l .= $adr['postcode']." ";
181 if (isset($adr['city']) && $adr['city']) $l .= $adr['city'];
80ca1b4e 182 }
0337d704 183 }
184 if ($l) $t .= "\n".trim($l);
185 if ($adr['country'] != '00' && (!$adr['countrytxt'] || $adr['countrytxt'] == strtoupper($adr['countrytxt']))) {
08cce2ff 186 $res = XDB::query("SELECT pays FROM geoloc_pays WHERE a2 = {?}", $adr['country']);
0337d704 187 $adr['countrytxt'] = $res->fetchOneCell();
188 }
5ee95138 189 if (isset($adr['countrytxt']) && $adr['countrytxt']) $t .= "\n".$adr['countrytxt'];
0337d704 190 return trim($t);
191}
192// }}}
193
194// {{{ compare_addresses_text($a, $b)
195/** compares if two address matches
196 * @param $a the raw text of an address
197 * @param $b the raw text of a complete valid address
198 */
199function compare_addresses_text($a, $b) {
200 $ta = strtoupper(preg_replace(array("/[0-9,\"'#~:;_\- ]/", "/\r\n/"), array("", "\n"), $a));
201 $tb = strtoupper(preg_replace(array("/[0-9,\"'#~:;_\- ]/", "/\r\n/"), array("", "\n"), $b));
202
203 $la = explode("\n", $ta);
204 $lb = explode("\n", $tb);
205
206 if (count($lb) > count($la) + 1) return false;
207 foreach ($la as $i=>$l) if (levenshtein($l, $lb[$i]) > 3) return false;
208 return true;
209}
210
211// }}}
212
213function empty_address() {
214 return Array(
215 "adr1" => "",
216 "adr2" => "",
217 "adr3" => "",
218 "cityid" => NULL,
219 "city" => "",
220 "postcode" => "",
221 "region" => "",
80ca1b4e 222 "regiontxt" => "",
0337d704 223 "country" => "00",
224 "countrytxt" => "");
225}
226
227// create a simple address from a text without geoloc
228function cut_address($txt) {
229 $txt = str_replace("\r\n", "\n", $txt);
230 ereg("^([^\n]*)(\n([^\n]*)(\n(.*))?)?$", trim($txt), $a);
231 return array("adr1" => trim($a[1]), "adr2" => trim($a[3]), "adr3" => trim(str_replace("\n", " ", $a[5])));
232}
233
234// {{{ localize_addresses($uid)
235/* localize all the address of a user and modify the database
236 * if the new address match with the old one
237 * @param $uid the id of the user
238 */
239function localize_addresses($uid) {
08cce2ff 240 $res = XDB::iterator("SELECT * FROM adresses WHERE uid = {?} and (cityid IS NULL OR cityid = 0)", $uid);
0337d704 241 $erreur = Array();
242
243 while ($a = $res->next()) {
244 $new = get_address_infos($ta = get_address_text($a));
245 if (compare_addresses_text($ta, get_address_text($new))) {
08cce2ff 246 XDB::execute("UPDATE adresses SET
0337d704 247 adr1 = {?}, adr2 = {?}, adr3 = {?},
248 cityid = {?}, city = {?}, postcode = {?},
56670b6a 249 region = {?}, regiontxt = {?}, country = {?},
250 glat = {?}, glng = {?}
0337d704 251 WHERE uid = {?} AND adrid = {?}",
252 $new['adr1'], $new['adr2'], $new['adr3'],
253 $new['cityid'], $new['city'], $new['postcode'],
80ca1b4e 254 $new['region'], $new['regiontxt'], $new['country'],
56670b6a 255 $new['precise_lat'], $new['precise_lon'],
0337d704 256 $uid, $a['adrid']);
257 $new['store'] = true;
258 if (!$new['cityid']) $erreur[$a['adrid']] = $new;
259 } else {
260 $new['store'] = false;
261 $erreur[$a['adrid']] = $new;
262 }
263 }
264 return $erreur;
265}
266// }}}
267
268// {{{ synchro_city($id)
269/** synchronise the local geoloc_city base to geoloc.org
270 * @param $id the id of the city to synchronize
271 */
272 function synchro_city($id) {
56670b6a 273 global $globals;
274 $url = $globals->geoloc->webservice_url."cityFinder.php?method=id&id=".$id."&out=sql";
0337d704 275 if (!($f = @fopen($url, 'r'))) return false;
276 $s = fgets($f);
0337d704 277 if ($s)
08cce2ff 278 return XDB::execute("REPLACE INTO geoloc_city VALUES ".$s) > 0;
0337d704 279 }
280 // }}}
281
56670b6a 282// {{{ function fix_cities_not_on_map($limit)
7f3ac007 283function fix_cities_not_on_map($limit=false, $cityid=false)
56670b6a 284{
7f3ac007 285 $missing = XDB::query("SELECT c.id FROM geoloc_city AS c LEFT JOIN geoloc_city_in_maps AS m ON(c.id = m.city_id) WHERE m.city_id IS NULL".($cityid?(" AND c.id = '".$cityid."'"):"").($limit?" LIMIT $limit":""));
56670b6a 286 $maps = get_cities_maps($missing->fetchColumn());
287 if ($maps)
288 {
289 $values = "";
290 foreach ($maps as $cityid => $maps_c)
291 foreach ($maps_c as $map_id)
292 $values .= ",($cityid, $map_id, '')";
08cce2ff 293 XDB::execute("REPLACE INTO geoloc_city_in_maps VALUES ".substr($values, 1));
56670b6a 294 }
295 else
296 return false;
014c8464 297 return true;
298}
56670b6a 299
014c8464 300function set_smallest_levels() {
08cce2ff 301 $maxlengths = XDB::iterRow("SELECT MAX(LENGTH(gm.path)), gcim.city_id
014c8464 302 FROM geoloc_city_in_maps AS gcim
303 INNER JOIN geoloc_maps AS gm
304 USING ( map_id )
305 GROUP BY gcim.city_id
306 ");
307 while (list($length, $id) = $maxlengths->next()) {
08cce2ff 308 XDB::execute("UPDATE geoloc_city_in_maps AS gcim
014c8464 309 INNER JOIN geoloc_maps AS gm USING(map_id)
310 SET gcim.infos = IF(LENGTH(gm.path) = {?}, 'smallest', '')
311 WHERE gcim.city_id = {?}", $length, $id);
312 }
56670b6a 313 return true;
314}
315// }}}
316
317
318function geoloc_to_x($lon, $lat) { return deg2rad(1) * $lon *100; }
319
320function geoloc_to_y($lon, $lat) {
321 if ($lat < -75) return latToY(-75);
322 if ($lat > 75) return latToY(75);
323 return -100 * log(tan(pi()/4 + deg2rad(1)/2*$lat));
324}
325
326function size_of_city($nb) { $s = round(log($nb + 1)*2,2); if ($s < 1) return 1; return $s; }
327function size_of_territory($nb) { return size_of_city($nb); }
328
2b105fb6 329function geoloc_getData_subcities($mapid, $SFields, &$cities, $direct=true) {
2b105fb6 330 for ($i_mapfield=0; $i_mapfield < count($SFields) ; $i_mapfield++) if ($SFields[$i_mapfield]->fieldFormName == 'mapid') break;
331 $SFields[$i_mapfield] = new MapSField('mapid', array('gcim.map_id'), array('adresses','geoloc_city_in_maps'), array('am','gcim'), array(getadr_join('am'), 'am.cityid = gcim.city_id'), $mapid);
332
333 $fields = new SFieldGroup(true, $SFields);
334 $where = $fields->get_where_statement();
335 if ($where) $where = " AND ".$where;
336
08cce2ff 337 $cityres = XDB::iterator("
2b105fb6 338 SELECT gc.id,
339 gc.lon / 100000 AS x, gc.lat/100000 AS y,
340 gc.name,
341 COUNT(u.user_id) AS pop,
342 SUM(u.promo % 2) AS yellow
343 FROM auth_user_md5 AS u
344 INNER JOIN auth_user_quick AS q ON(u.user_id = q.user_id)
345 ".$fields->get_select_statement()."
346 LEFT JOIN geoloc_city AS gc ON(gcim.city_id = gc.id)
347 WHERE ".($direct?"gcim.infos = 'smallest'":"1")."
348 $where
349 GROUP BY gc.id,gc.alias ORDER BY pop DESC");
350 while ($c = $cityres->next())
351 if ($c['pop'] > 0)
352 {
353 $city = $c;
0f0dfb0b 354 // $city['name'] = geoloc_utf8_decode($city['name']);
355 if (!geoloc_is_utf8($city['name'])) {
356 $city['name'] = utf8_encode($city['name']);
357 }
2b105fb6 358 $city['x'] = geoloc_to_x($c['x'], $c['y']);
359 $city['y'] = geoloc_to_y($c['x'], $c['y']);
360 $city['size'] = size_of_city($c['pop']);
361 $cities[$c['id']] = $city;
362 }
363}
364
365function geoloc_getData_subcountries($mapid, $SFields, $minentities) {
2b105fb6 366 $countries = array();
367 $cities = array();
368
369 if ($mapid === false)
370 $wheremapid = "WHERE gm.parent IS NULL";
371 else
372 $wheremapid = "WHERE gm.parent = {?}";
08cce2ff 373 $submapres = XDB::iterator(
2b105fb6 374 "SELECT gm.map_id AS id, gm.name, gm.x, gm.y, gm.xclip, gm.yclip,
375 gm.width, gm.height, gm.scale, 1 AS rat
376 FROM geoloc_maps AS gm
5e2307dc 377 ".$wheremapid, Env::v('mapid',''));
2b105fb6 378
edfc872d 379 global $globals;
380
2b105fb6 381 while ($c = $submapres->next())
382 {
383 $country = $c;
384 $country['name'] = utf8_decode($country['name']);
385 $country['color'] = 0xFFFFFF;
386 $country['swf'] = $globals->geoloc->webservice_url."maps/mercator/map_".$c['id'].".swf";
387 $countries[$c['id']] = $country;
388 }
389
390 if ($mapid === false) return array($countries, $cities);
391
5e2307dc 392 geoloc_getData_subcities(Env::i('mapid'), $SFields, $cities);
2b105fb6 393 $nbcities = count($cities);
394 $nocity = $nbcities == 0;
395
396 for ($i_mapfield=0; $i_mapfield < count($SFields) ; $i_mapfield++) if ($SFields[$i_mapfield]->fieldFormName == 'mapid') break;
397 $SFields[$i_mapfield] = new MapSField('mapid', array('map.parent'), array('adresses','geoloc_city_in_maps','geoloc_maps'), array('am','gcim','map'), array(getadr_join('am'), 'am.cityid = gcim.city_id', 'map.map_id = gcim.map_id'));
398
399 $fields = new SFieldGroup(true, $SFields);
400 $where = $fields->get_where_statement();
401 if ($where) $where = " WHERE ".$where;
402
08cce2ff 403 $countryres = XDB::iterator("
2b105fb6 404 SELECT map.map_id AS id,
405 COUNT(u.user_id) AS nbPop,
406 SUM(u.promo % 2) AS yellow,
407 COUNT(DISTINCT gcim.city_id) AS nbCities,
408 SUM(IF(u.user_id IS NULL,0,am.glng)) AS lonPop,
409 SUM(IF(u.user_id IS NULL, 0,am.glat)) AS latPop
410 FROM auth_user_md5 AS u
411 INNER JOIN auth_user_quick AS q ON(u.user_id = q.user_id)
412 ".$fields->get_select_statement()."
413 $where
414 GROUP BY map.map_id ORDER BY NULL", $hierarchy);
415
416 $maxpop = 0;
417 $nbentities = $nbcities + $countryres->total();
418 while ($c = $countryres->next())
419 {
420 $c['latPop'] /= $c['nbPop'];
421 $c['lonPop'] /= $c['nbPop'];
422 $c['rad'] = size_of_territory($c['nbPop']);
423 if ($maxpop < $c['nbPop']) $maxpop = $c['nbPop'];
424 $c['xPop'] = geoloc_to_x($c['lonPop'], $c['latPop']);
425 $c['yPop'] = geoloc_to_y($c['lonPop'], $c['latPop']);
426 $countries[$c['id']] = array_merge($countries[$c['id']], $c);
427
428 $nbcities += $c['nbCities'];
429 }
430
431 if ($nocity && $nbcities < $minentities)
432 {
433 foreach($countries as $i => $c)
434 {
435 $countries[$i]['nbPop'] = 0;
436 if ($c['nbCities'] > 0)
437 geoloc_getData_subcities($c['id'], $SFields, $cities, false);
438 }
439 }
440
441 foreach ($countries as $i => $c) if ($c['nbPop'] > 0)
442 {
443 $lambda = pow($c['nbPop'] / $maxpop,0.3);
444 $countries[$i]['color'] = 0x0000FF + round((1-$lambda) * 0xFF)*0x010100;
445 }
446
447 return array($countries, $cities);
448}
138b3c8e 449// }}}
450
0337d704 451// vim:set et sw=4 sts=4 sws=4 foldmethod=marker:
452?>