26 |
alex |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
/**
|
|
|
4 |
*
|
|
|
5 |
* Classe en charge de recuperer les donnees d'observation ou liees a leur localisation
|
|
|
6 |
* Le jeu de donnees a interroger est partage en commun avec l'application EFlore
|
|
|
7 |
*
|
|
|
8 |
* On passera en parametre lors de la creation d'une instance un objet contenant la liste des criteres
|
|
|
9 |
* qui vont restreindre le nombre de resultats a renvoyer
|
|
|
10 |
*
|
|
|
11 |
* Les deux operations suivantes peuvent etre utilisees dans les services :
|
|
|
12 |
* - recupererStations : va rechercher dans la base de donnees tous les points d'observations
|
|
|
13 |
* correspondant aux criteres de recherche demandes. La precision des lieux d'observation est
|
|
|
14 |
* soit un point precis, soit ramenee au niveau de la commune dans laquelle l'observation a ete faite
|
|
|
15 |
* En fonction du niveau de zoom et du nombre de resultats trouves, la presentation se fera
|
|
|
16 |
* soit par les points localisant les stations pour des niveaux de zoom eleves ou pour un nombre
|
|
|
17 |
* de stations inferieur a un seuil, ou par des mailles de 64*64 pixels dans le cas contraire
|
|
|
18 |
*
|
|
|
19 |
* - recupererObservations : va rechercher dans la base de donnees les donnees sur des observations
|
|
|
20 |
* a partir des coordonnees longitude et latitude d'une station (+ des parametres additionnels)
|
|
|
21 |
*
|
|
|
22 |
* Les donnees seront renvoyees au format JSON
|
|
|
23 |
*
|
|
|
24 |
* @package framework-0.3
|
|
|
25 |
* @author Alexandre GALIBERT <alexandre.galibert@tela-botanica.org>
|
|
|
26 |
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
|
|
|
27 |
* @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
|
|
|
28 |
* @version $Id$
|
|
|
29 |
* @copyright 2013 Tela Botanica (accueil@tela-botanica.org)
|
|
|
30 |
*
|
|
|
31 |
*/
|
|
|
32 |
|
31 |
alex |
33 |
class SophyFormateur extends Formateur {
|
26 |
alex |
34 |
|
|
|
35 |
|
31 |
alex |
36 |
protected function construireRequeteStations() {
|
26 |
alex |
37 |
$requete =
|
31 |
alex |
38 |
"SELECT COUNT(guid) AS observations, lieu_station_nom AS nom, lieu_station_latitude AS latitude, ".
|
|
|
39 |
"lieu_station_longitude AS longitude, 'STATION' AS type_site, lieu_commune_code_insee AS code_insee ".
|
26 |
alex |
40 |
"FROM sophy_tapir WHERE 1 ".
|
|
|
41 |
$this->construireWhereDepartement().' '.
|
|
|
42 |
$this->construireWhereAuteur().' '.
|
31 |
alex |
43 |
$this->construireWhereDate().' '.
|
26 |
alex |
44 |
$this->construireWhereReferentiel().' '.
|
|
|
45 |
$this->construireWhereTaxon().' '.
|
|
|
46 |
$this->construireWhereCoordonneesBbox().' '.
|
31 |
alex |
47 |
"GROUP BY lieu_station_longitude, lieu_station_latitude";
|
26 |
alex |
48 |
return $requete;
|
|
|
49 |
}
|
|
|
50 |
|
31 |
alex |
51 |
protected function construireRequeteObservations() {
|
26 |
alex |
52 |
$requete =
|
|
|
53 |
"SELECT observation_id AS id_obs, nom_scientifique_complet AS nomSci, ".
|
|
|
54 |
"observation_date AS date, lieu_station_nom AS lieu, observateur_nom_complet AS observateur ".
|
|
|
55 |
"FROM sophy_tapir WHERE 1 ".
|
|
|
56 |
$this->construireWhereAuteur().' '.
|
|
|
57 |
$this->construireWhereReferentiel().' '.
|
31 |
alex |
58 |
$this->construireWhereDate().' '.
|
26 |
alex |
59 |
$this->construireWhereTaxon().' '.
|
|
|
60 |
$this->construireWhereCoordonneesPoint().' '.
|
|
|
61 |
"ORDER BY nom_scientifique_complet, date, observateur";
|
|
|
62 |
return $requete;
|
|
|
63 |
}
|
|
|
64 |
|
31 |
alex |
65 |
protected function construireWhereTaxon() {
|
26 |
alex |
66 |
$sql = '';
|
|
|
67 |
if (isset($this->criteresRecherche->taxon)) {
|
31 |
alex |
68 |
$taxons = $this->criteresRecherche->taxon;
|
|
|
69 |
$criteres = array();
|
|
|
70 |
foreach ($taxons as $taxon) {
|
|
|
71 |
$nomRang = $this->getNomRang($taxon);
|
|
|
72 |
$criteres[] = "nom_scientifique_complet LIKE ".$this->getBdd()->proteger($taxon['nom']."%");
|
|
|
73 |
if ($nomRang == 'espece') {
|
|
|
74 |
$criteres = array_merge($criteres, $this->concatenerTaxonsSousEspeces($taxon));
|
|
|
75 |
} elseif ($nomRang == 'genre') {
|
|
|
76 |
$criteres = array_merge($criteres, $this->concatenerTaxonsFamilles($taxon));
|
|
|
77 |
}
|
26 |
alex |
78 |
}
|
31 |
alex |
79 |
$sql = "AND (".implode(' OR ',array_unique($criteres)).")";
|
26 |
alex |
80 |
}
|
|
|
81 |
return $sql;
|
|
|
82 |
}
|
|
|
83 |
|
31 |
alex |
84 |
protected function concatenerTaxonsSousEspeces($taxon) {
|
|
|
85 |
$referentiel = new Referentiel($this->criteresRecherche->referentiel, $taxon);
|
|
|
86 |
$sousTaxons = $referentiel->recupererTaxonsSousEspeces();
|
|
|
87 |
$criteres = array();
|
|
|
88 |
foreach ($sousTaxons as $sousTaxon) {
|
|
|
89 |
$criteres[] = "nom_scientifique_complet LIKE ".$this->getBdd()->proteger($sousTaxon['nom']."%");
|
|
|
90 |
}
|
|
|
91 |
return $criteres;
|
|
|
92 |
}
|
|
|
93 |
|
|
|
94 |
protected function concatenerTaxonsFamilles($taxon) {
|
|
|
95 |
$referentiel = new Referentiel($this->criteresRecherche->referentiel, $taxon);
|
|
|
96 |
$sousTaxons = $referentiel->recupererTaxonsFamilles();
|
|
|
97 |
$criteres = array();
|
|
|
98 |
foreach ($sousTaxons as $sousTaxon) {
|
|
|
99 |
$criteres[] = "nom_scientifique_complet LIKE ".$this->getBdd()->proteger($sousTaxon['nom']."%");
|
|
|
100 |
}
|
|
|
101 |
return $criteres;
|
|
|
102 |
}
|
|
|
103 |
|
26 |
alex |
104 |
// TODO : completer le corps des methodes construire where pour referentiel et departement
|
31 |
alex |
105 |
protected function construireWhereReferentiel() {
|
26 |
alex |
106 |
$sql = '';
|
|
|
107 |
return $sql;
|
|
|
108 |
}
|
|
|
109 |
|
31 |
alex |
110 |
protected function construireWhereDepartement() {
|
26 |
alex |
111 |
$sql = '';
|
31 |
alex |
112 |
if (isset($this->criteresRecherche->departement)) {
|
|
|
113 |
$valeurs_a_proteger = $this->criteresRecherche->departement;
|
|
|
114 |
foreach ($valeurs_a_proteger as $valeur) {
|
|
|
115 |
$aProteger = $this->getBdd()->proteger($valeur . '%');
|
|
|
116 |
$valeurs_protegees[] = "lieu_commune_code_insee LIKE {$aProteger}";
|
|
|
117 |
}
|
|
|
118 |
$valeurs = implode(' OR ', $valeurs_protegees);
|
|
|
119 |
$sql = "AND ($valeurs)";
|
|
|
120 |
}
|
26 |
alex |
121 |
return $sql;
|
|
|
122 |
}
|
|
|
123 |
|
31 |
alex |
124 |
protected function construireWhereAuteur() {
|
26 |
alex |
125 |
$sql = '';
|
|
|
126 |
if (isset($this->criteresRecherche->auteur)) {
|
|
|
127 |
$auteur = $this->getBdd()->proteger($this->criteresRecherche->auteur);
|
|
|
128 |
$sql = "AND observateur_nom_complet = $auteur";
|
|
|
129 |
}
|
|
|
130 |
return $sql;
|
|
|
131 |
}
|
31 |
alex |
132 |
|
|
|
133 |
protected function construireWhereDate() {
|
|
|
134 |
$sql = '';
|
|
|
135 |
$dateDebut = isset($this->criteresRecherche->dateDebut) ? $this->criteresRecherche->dateDebut : null;
|
|
|
136 |
$dateFin = isset($this->criteresRecherche->dateFin) ? $this->criteresRecherche->dateFin : null;
|
|
|
137 |
if (!is_null($dateDebut) || !is_null($dateFin)) {
|
|
|
138 |
$dateDebut = !is_null($dateDebut) ? substr($dateDebut, 0, 4) : null;
|
|
|
139 |
$dateFin = !is_null($dateFin) ? substr($dateFin, 0, 4) : date('Y');
|
|
|
140 |
$condition = '';
|
|
|
141 |
if ($dateDebut == $dateFin) {
|
|
|
142 |
$condition = "observation_date=".$dateDebut;
|
|
|
143 |
} elseif (is_null($dateFin)) {
|
|
|
144 |
$condition = "observation_date>=".$dateDebut;
|
|
|
145 |
} elseif (is_null($dateDebut)) {
|
|
|
146 |
$condition = "observation_date<=".$dateFin;
|
|
|
147 |
} else {
|
|
|
148 |
$condition = "observation_date BETWEEN ".$dateDebut." AND ".$dateFin;
|
|
|
149 |
}
|
|
|
150 |
$sql = "AND ($condition)";
|
|
|
151 |
}
|
|
|
152 |
return $sql;
|
|
|
153 |
}
|
26 |
alex |
154 |
|
31 |
alex |
155 |
protected function construireWhereCoordonneesBbox() {
|
26 |
alex |
156 |
$bbox = $this->criteresRecherche->bbox;
|
|
|
157 |
$sql = "AND lieu_station_longitude BETWEEN ".$bbox['ouest']." AND ".$bbox['est']." ".
|
|
|
158 |
"AND lieu_station_latitude BETWEEN ".$bbox['sud']." AND ".$bbox['nord'];
|
|
|
159 |
return $sql;
|
|
|
160 |
}
|
|
|
161 |
|
31 |
alex |
162 |
protected function construireWhereCoordonneesPoint() {
|
26 |
alex |
163 |
$sql = "AND lieu_station_latitude=".$this->criteresRecherche->latitude." ".
|
|
|
164 |
"AND lieu_station_longitude=".$this->criteresRecherche->longitude;
|
|
|
165 |
return $sql;
|
|
|
166 |
}
|
|
|
167 |
|
31 |
alex |
168 |
protected function obtenirNomsStationsSurPoint() {
|
26 |
alex |
169 |
$requete = "SELECT DISTINCTROW lieu_station_nom FROM sophy_tapir WHERE 1 ".
|
|
|
170 |
$this->construireWhereTaxon().' '.
|
|
|
171 |
$this->construireWhereCoordonneesPoint();
|
|
|
172 |
$stations = $this->getBdd()->recupererTous($requete);
|
|
|
173 |
$nomsStations = array();
|
|
|
174 |
foreach ($stations as $station) {
|
|
|
175 |
$nomsStations[] = $station['lieu_station_nom'];
|
|
|
176 |
}
|
|
|
177 |
return implode(', ', $nomsStations);
|
|
|
178 |
}
|
|
|
179 |
|
31 |
alex |
180 |
protected function obtenirNombreStationsDansBbox() {
|
26 |
alex |
181 |
$bbox = $this->criteresRecherche->bbox;
|
|
|
182 |
$zoom = $this->criteresRecherche->zoom;
|
|
|
183 |
$requete =
|
|
|
184 |
"SELECT zoom, Sum(nombre_sites) AS total_points FROM mailles_sophy ".
|
|
|
185 |
"WHERE zoom=".$zoom." AND limite_sud<=".$bbox['nord']." AND limite_nord>=".$bbox['sud']." ".
|
|
|
186 |
"AND limite_ouest<=".$bbox['est']." AND limite_est>=".$bbox['ouest']." GROUP BY zoom";
|
|
|
187 |
$resultat = $this->getBdd()->recuperer($requete);
|
|
|
188 |
return $resultat['total_points'];
|
|
|
189 |
}
|
|
|
190 |
|
31 |
alex |
191 |
protected function recupererMaillesDansBbox() {
|
26 |
alex |
192 |
$bbox = $this->criteresRecherche->bbox;
|
|
|
193 |
$zoom = $this->criteresRecherche->zoom;
|
|
|
194 |
$requete =
|
31 |
alex |
195 |
"SELECT limite_sud AS latitudeSud, limite_ouest AS longitudeOuest, limite_est AS longitudeEst, ".
|
|
|
196 |
"limite_nord AS latitudeNord, nombre_sites, nombre_observations FROM mailles_sophy ".
|
|
|
197 |
"WHERE zoom=".$zoom." AND limite_sud<=".$bbox['nord']." ".
|
26 |
alex |
198 |
"AND limite_nord>=".$bbox['sud']." AND limite_ouest<=". $bbox['est']." ".
|
|
|
199 |
"AND limite_est>=".$bbox['ouest'];
|
31 |
alex |
200 |
$mailles = $this->getBdd()->recupererTous($requete, Bdd::MODE_OBJET);
|
|
|
201 |
// placer les totaux des nombres de stations dans des mailles vides
|
|
|
202 |
$maillage = new Maillage($this->criteresRecherche->bbox, $zoom, $this->nomSource);
|
|
|
203 |
$maillage->genererMaillesVides();
|
|
|
204 |
$maillage->ajouterMailles($mailles);
|
|
|
205 |
return $maillage->formaterSortie();
|
26 |
alex |
206 |
}
|
|
|
207 |
|
|
|
208 |
}
|
|
|
209 |
|
|
|
210 |
?>
|