Add a generic hash capability to the newsletter.
[platal.git] / modules / geoloc.php
CommitLineData
7b14a2a0 1<?php
2/***************************************************************************
179afa7f 3 * Copyright (C) 2003-2008 Polytechnique.org *
7b14a2a0 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),
92423144 28 'admin/geoloc' => $this->make_hook('admin', AUTH_MDP, 'admin'),
29 'admin/geoloc/dynamap' => $this->make_hook('admin_dynamap', AUTH_MDP, 'admin'),
7b14a2a0 30 );
31 }
32
8c4a0c30 33 function handler_default(&$page, $action = null, $subaction = null)
7b14a2a0 34 {
35 global $globals;
36
8c4a0c30 37 $set = new UserSet();
38 $set->addMod('geoloc', 'Geolocalisation', true);
0e2472b6 39 $set->apply('geoloc', $page, $action, $subaction);
7b14a2a0 40 }
92423144 41
42 function handler_admin(&$page, $action = false) {
163eddd2 43 $page->changeTpl('geoloc/admin.tpl');
92423144 44 require_once("geoloc.inc.php");
45 $page->assign('xorg_title','Polytechnique.org - Administration - Geolocalisation');
eaf30d86 46
92423144 47 $nb_synchro = 0;
eaf30d86 48
92423144 49 if (Env::has('id') && is_numeric(Env::v('id'))) {
50 if (synchro_city(Env::v('id'))) $nb_synchro ++;
51 }
eaf30d86 52
92423144 53 if ($action == 'missinglat') {
54 $res = XDB::iterRow("SELECT id FROM geoloc_city WHERE lat = 0 AND lon = 0");
55 while ($a = $res->next()) if (synchro_city($a[0])) $nb_synchro++;
56 }
eaf30d86
PH
57
58 if ($nb_synchro)
a7de4ef7 59 $page->trig(($nb_synchro > 1)?($nb_synchro." villes ont été synchronisées"):"Une ville a été synchronisée");
eaf30d86 60
92423144 61 $res = XDB::query("SELECT COUNT(*) FROM geoloc_city WHERE lat = 0 AND lon = 0");
62 $page->assign("nb_missinglat", $res->fetchOneCell());
63 }
eaf30d86 64
92423144 65 function handler_admin_dynamap(&$page, $action = false) {
163eddd2 66 $page->changeTpl('geoloc/admin_dynamap.tpl');
eaf30d86 67
92423144 68 if ($action == 'cities_not_on_map') {
69 require_once('geoloc.inc.php');
70 if (!fix_cities_not_on_map(20))
a7de4ef7 71 $page->trig("Impossible d'accéder au webservice");
92423144 72 else
73 $refresh = true;
74 }
eaf30d86 75
92423144 76 if ($action == 'smallest_maps') {
77 require_once('geoloc.inc.php');
78 set_smallest_levels();
79 }
eaf30d86 80
92423144 81 if ($action == 'precise_coordinates') {
de0485fd
FB
82 XDB::execute("UPDATE adresses AS a
83 INNER JOIN geoloc_city AS c ON(a.cityid = c.id)
84 SET a.glat = c.lat / 100000, a.glng = c.lon / 100000");
92423144 85 }
eaf30d86 86
92423144 87 if ($action == 'newmaps') {
88 require_once('geoloc.inc.php');
89 if (!get_new_maps(Env::v('url')))
a7de4ef7 90 $page->trig("Impossible d'accéder aux nouvelles cartes");
92423144 91 }
eaf30d86 92
92423144 93 $countMissing = XDB::query("SELECT COUNT(*) 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");
94 $missing = $countMissing->fetchOneCell();
eaf30d86 95
92423144 96 $countNoSmallest = XDB::query("SELECT SUM(IF(infos = 'smallest',1,0)) AS n FROM geoloc_city_in_maps GROUP BY city_id ORDER BY n");
97 $noSmallest = $countNoSmallest->fetchOneCell() == 0;
eaf30d86 98
92423144 99 $countNoCoordinates = XDB::query("SELECT COUNT(*) FROM adresses WHERE cityid IS NOT NULL AND glat = 0 AND glng = 0");
100 $noCoordinates = $countNoCoordinates->fetchOneCell();
eaf30d86 101
92423144 102 if (isset($refresh) && $missing) {
103 $page->assign("xorg_extra_header", "<meta http-equiv='Refresh' content='3'/>");
104 }
105 $page->assign("nb_cities_not_on_map", $missing);
106 $page->assign("no_smallest", $noSmallest);
107 $page->assign("no_coordinates", $noCoordinates);
108 }
eaf30d86 109
7b14a2a0 110}
111
a7de4ef7 112// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
7b14a2a0 113?>