Subversion Repositories eFlore/Applications.cel

Rev

Rev 2914 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2914 Rev 3422
1
<?php
1
<?php
2
// declare(encoding='UTF-8');
2
// declare(encoding='UTF-8');
3
/**
3
/**
4
 * Service recherche de zone par coordonnées et vice versa.
4
 * Service recherche de zone par coordonnées et vice versa.
5
 *
5
 *
6
 * @internal   Mininum PHP version : 5.2
6
 * @internal   Mininum PHP version : 5.2
7
 * @category   CEL
7
 * @category   CEL
8
 * @package    Services
8
 * @package    Services
9
 * @subpackage Cartes
9
 * @subpackage Cartes
10
 * @version    0.1
10
 * @version    0.1
11
 * @author     Mathias CHOUET <mathias@tela-botanica.org>
11
 * @author     Mathias CHOUET <mathias@tela-botanica.org>
12
 * @author     Jean-Pascal MILCENT <jpm@tela-botanica.org>
12
 * @author     Jean-Pascal MILCENT <jpm@tela-botanica.org>
13
 * @author     Aurelien PERONNET <aurelien@tela-botanica.org>
13
 * @author     Aurelien PERONNET <aurelien@tela-botanica.org>
14
 * @license    GPL v3 <http://www.gnu.org/licenses/gpl.txt>
14
 * @license    GPL v3 <http://www.gnu.org/licenses/gpl.txt>
15
 * @license    CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
15
 * @license    CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
16
 * @copyright  1999-2014 Tela Botanica <accueil@tela-botanica.org>
16
 * @copyright  1999-2014 Tela Botanica <accueil@tela-botanica.org>
17
 */
17
 */
18
class CoordSearch extends Cel {
18
class CoordSearch extends Cel {
19
	
19
	
20
	public function getRessource() {
20
	public function getRessource() {
21
		return $this->getElement(array());
21
		return $this->getElement(array());
22
	}
22
	}
23
	
23
	
24
	public function getElement($uid){
24
	public function getElement($uid){
25
		$header = '';
25
		$header = '';
26
		$retour = array();
26
		$retour = array();
27
 
27
 
28
		$params = $this->traiterParametres();
28
		$params = $this->traiterParametres();
29
		$recherche_zones_geo = new RechercheInfosZoneGeo($this->config);
29
		$recherche_zones_geo = new RechercheInfosZoneGeo($this->config);
30
 
30
 
31
		if ($this->estUneRequeteReverseGeocoding($params)) {
31
		if ($this->estUneRequeteReverseGeocoding($params)) {
32
 
32
 
33
			$coordonnees = array('latitude' => $params['lat'], 'longitude' => $params['lon']);
33
			$coordonnees = array('latitude' => $params['lat'], 'longitude' => $params['lon']);
34
			$informations_zones = $recherche_zones_geo->obtenirInfosPourCoordonnees($coordonnees);
34
			$informations_zones = $recherche_zones_geo->obtenirInfosPourCoordonnees($coordonnees);
35
			$header = 'Content-Type: application/json; charset=UTF-8';
35
			$header = 'Content-Type: application/json; charset=UTF-8';
36
			$retour = json_encode($informations_zones);	
36
			$retour = json_encode($informations_zones);	
37
				
-
 
-
 
37
		}  elseif ($this->estUneRequeteGeocodingCodeInseeCommune($params)) {
-
 
38
 			$informations_coord = $recherche_zones_geo->obtenirInfosPourCodeInseeCommune($params['code']);
-
 
39
			$header = 'Content-Type: application/json; charset=UTF-8';
-
 
40
			$retour = json_encode($informations_coord);
38
		} elseif ($this->estUneRequeteGeocoding($params)) {	
41
		} elseif ($this->estUneRequeteGeocoding($params)) {	
39
			$informations_coord = $recherche_zones_geo->obtenirInfosPourNom($params['zone'], $params['pays'], $params['code']);
42
			$informations_coord = $recherche_zones_geo->obtenirInfosPourNom($params['zone'], $params['pays'], $params['code']);
40
			$header = 'Content-Type: application/json; charset=UTF-8';
43
			$header = 'Content-Type: application/json; charset=UTF-8';
41
			$retour = json_encode($informations_coord);
44
			$retour = json_encode($informations_coord);
42
			
45
			
43
		} elseif ($this->estUneRequeteGeocodingGroupe($params)) {
46
		} elseif ($this->estUneRequeteGeocodingGroupe($params)) {
44
			// renvoie des infos sur un groupes de zones géographiques, si celui-ci
47
			// renvoie des infos sur un groupes de zones géographiques, si celui-ci
45
			// est décrit dans la table cel_groupes_zones_geo
48
			// est décrit dans la table cel_groupes_zones_geo
46
			$informations_groupe = $recherche_zones_geo->obtenirInfosPourGroupeZonesFrance($params['groupe_zones']);
49
			$informations_groupe = $recherche_zones_geo->obtenirInfosPourGroupeZonesFrance($params['groupe_zones']);
47
			$header = 'Content-Type: application/json; charset=UTF-8';
50
			$header = 'Content-Type: application/json; charset=UTF-8';
48
			$retour = json_encode($informations_groupe);
51
			$retour = json_encode($informations_groupe);
49
			
52
			
50
		} else {
53
		} else {
51
			$header = 'HTTP/1.0 400 Bad Request';
54
			$header = 'HTTP/1.0 400 Bad Request';
52
			$retour = 'zone ou Coordonnées non spécifiées';
55
			$retour = 'zone ou Coordonnées ou code INSEE non spécifié.e';
53
		}
56
		}
54
		
57
		
55
		header($header);
58
		header($header);
56
		echo $retour;
59
		echo $retour;
57
	}
60
	}
58
 
61
 
59
	protected function traiterParametres() {
62
	protected function traiterParametres() {
60
		$params = array('lon', 'lat', 'zone', 'groupe_zones', 'code', 'pays');
63
		$params = array('lon', 'lat', 'zone', 'groupe_zones', 'code', 'pays');
61
		$parametresTraites = array();
64
		$parametresTraites = array();
62
 
65
 
63
		foreach($params as $p) {
66
		foreach($params as $p) {
64
			$val = ''; // @TODO plutôt null ?
67
			$val = ''; // @TODO plutôt null ?
65
			if (!empty($_REQUEST[$p])) {
68
			if (!empty($_REQUEST[$p])) {
66
				$val = $_REQUEST[$p];
69
				$val = $_REQUEST[$p];
67
			}
70
			}
68
			$parametresTraites[$p] = $val;
71
			$parametresTraites[$p] = $val;
69
		}
72
		}
70
 
73
 
71
		return $parametresTraites;
74
		return $parametresTraites;
72
	}
75
	}
73
	
76
	
74
	protected function estUneRequeteReverseGeocoding($params) {
77
	protected function estUneRequeteReverseGeocoding($params) {
75
		return ($params['lat'] != '' && $params['lon'] != '');
78
		return ($params['lat'] != '' && $params['lon'] != '');
76
	}
79
	}
77
 
80
 
78
	protected function estUneRequeteGeocoding($params) {
81
	protected function estUneRequeteGeocoding($params) {
79
		return ($params['zone'] != '');
82
		return ($params['zone'] != '');
80
	}
83
	}
-
 
84
 
-
 
85
	protected function estUneRequeteGeocodingCodeInseeCommune($params) {
-
 
86
		return ($params['code'] != '' && 5 === strlen($params['code']));
-
 
87
	}
81
 
88
 
82
	protected function estUneRequeteGeocodingGroupe($params) {
89
	protected function estUneRequeteGeocodingGroupe($params) {
83
		return ($params['groupe_zones'] != '');
90
		return ($params['groupe_zones'] != '');
84
	}
91
	}
85
}
-
 
86
92
}
-
 
93