Subversion Repositories Sites.obs-saisons.fr

Rev

Rev 171 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
104 aurelien 1
<?php
2
 
3
class OdsCommune extends JRestService {
4
 
5
	const PREFIXE = 'get';
6
 
7
	/**
8
     * Méthode appelée avec une requête de type GET.
9
     *
10
     */
11
    function getElement($param = array()) {
12
 
13
    	$type = $param[0];
14
 
15
    	if ($type == '*' || is_numeric($type)) {
16
            $info = $this->getElementParDefaut($param);
17
        } else {
18
            $methode = self::PREFIXE.$type;
19
            if (method_exists($this, $methode)) {
20
                array_shift($param);
21
                $info = $this->$methode($param);
22
            } else {
23
                $this->messages[] = "Le type d'information demandé '$type' n'est pas disponible.";
24
            }
25
        }
26
 
27
        // Envoi sur la sortie standard
28
        $this->envoyer($info);
29
    }
30
 
31
 
32
/** ======================= Methodes privées d'accès aux informations ================================ */
33
 
34
    private function getElementParDefaut() {
35
    	return $this->getInformationsPourCoordonnees();
36
    }
37
 
38
    private function getInformationsPourCoordonnees($params) {
39
 
40
    	$lat = $_GET['lat'];
41
    	$lon = $_GET['lon'];
42
 
43
    	$infos_altitude_json = file_get_contents('http://maps.googleapis.com/maps/api/elevation/json?sensor=false&locations='.$lat.','.$lon);
44
    	$infos_commune_json = file_get_contents("http://ws.geonames.org/findNearbyJSON?featureClass=ADM4&lat=".urlencode($lat)."&lng=".urlencode($lon)."&style=full") ;
45
 
46
    	// à voir l'utilisation de google places lors de la mise en place d'un compte google premier api
47
    	//$infos_commune = file_get_contents('https://maps.googleapis.com/maps/api/place/search/json?sensor=false&locations='.$lat.','.$lon);
48
 
49
		$infos_localites = $this->formaterTableauInformationsCoordsPourEnvoi($infos_altitude_json, $infos_commune_json);
50
 
51
    	return $infos_localites;
52
    }
53
 
54
    private function getInformationsPourCommune($params) {
55
 
56
    	$commune = $_GET['commune'];
57
 
58
    	$commune = $this->remplacerNomCommunePourRecherche($commune);
59
 
60
    	$requete_infos_communes = 'SELECT * FROM ods.COMMUNE WHERE COMMUNE_NOM LIKE '.$this->proteger($commune).' ORDER BY COMMUNE_NOM LIMIT 0,10';
61
 
62
    	$infos_communes = $this->executerRequete($requete_infos_communes);
63
 
64
		$infos_communes_formatees = $this->formaterTableauInformationsCommunePourEnvoi($infos_communes);
65
 
66
    	return $infos_communes_formatees;
67
    }
68
 
69
    private function remplacerNomCommunePourRecherche($nom) {
70
    	$nom = str_replace(' ','_',$nom);
71
    	$nom = str_replace('-','_',$nom);
72
    	$nom .= '%';
73
 
74
    	return $nom;
75
    }
76
 
77
    private function formaterTableauInformationsCoordsPourEnvoi($infos_altitude_json, $infos_commune_json) {
78
 
79
    	$infos_altitude = json_decode($infos_altitude_json);
80
    	$infos_commune = json_decode($infos_commune_json);
81
 
82
    	$altitude = $infos_altitude->results[0]->elevation;
83
    	$altitude = number_format($altitude, 0, '', '');
84
 
85
    	$lat = $infos_altitude->results[0]->location->lat;
86
    	$lon = $infos_altitude->results[0]->location->lng;
87
 
88
    	$commune = $infos_commune->geonames[0]->adminName4;
89
    	$dpt = $infos_commune->geonames[0]->adminCode2;
90
 
91
    	return array(
92
    	    'commune' => $commune,
93
    		'dpt' => $dpt,
94
            'lat' => $lat,
95
            'lon' => $lon,
96
            'alt' => $altitude
97
        );
98
 
99
    }
100
 
101
	private function formaterTableauInformationsCommunePourEnvoi($infos_communes) {
102
 
103
		$infos_formatees = array();
104
 
105
		foreach($infos_communes as $commune) {
106
 
107
			$infos_formatees[] = array(
108
    			'commune' => $commune['COMMUNE_NOM'],
109
    			'dpt' => $commune['COMMUNE_CODEPOSTAL'],
110
    			'lat' => $commune['COMMUNE_LATITUDE'],
111
				'lon' => $commune['COMMUNE_LONGITUDE']
112
    		);
113
		}
114
    	return $infos_formatees;
115
    }
116
}
117
?>