138 |
aurelien |
1 |
<?php
|
|
|
2 |
/**
|
|
|
3 |
* Service fournissant des informations concernant le CEL au format RSS1, RSS2 ou ATOM.
|
|
|
4 |
* Encodage en entrée : utf8
|
|
|
5 |
* Encodage en sortie : utf8
|
|
|
6 |
* Format du service :
|
|
|
7 |
* /CelSyndicationObservation/liste-des-flux
|
|
|
8 |
* /CelSyndicationObservation/opml
|
|
|
9 |
* /CelSyndicationObservation/par-defaut/(rss1|rss2|atom)?start=0&limit=150
|
|
|
10 |
* /CelSyndicationObservation/pour-admin/(rss1|rss2|atom)?start=0&limit=150
|
|
|
11 |
* /CelSyndicationObservation/par-mots-cles/(rss1|rss2|atom)/mot-cle?start=0&limit=150
|
|
|
12 |
* /CelSyndicationObservation/par-commune/(rss1|rss2|atom)/nom-commune?start=0&limit=150
|
|
|
13 |
*
|
|
|
14 |
* Les paramêtres :
|
|
|
15 |
* - "start" indique le numéro du premier item à afficher
|
|
|
16 |
* - "limit" nombre d'items à afficher
|
|
|
17 |
*
|
|
|
18 |
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
|
|
19 |
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
|
|
|
20 |
* @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
|
|
|
21 |
* @version $Id$
|
|
|
22 |
* @copyright 2010
|
|
|
23 |
*/
|
|
|
24 |
class OdsSyndicationObservation extends OdsTriple {
|
|
|
25 |
|
|
|
26 |
private $parametres_origines = null;
|
|
|
27 |
private $format = null;
|
|
|
28 |
private $service = null;
|
|
|
29 |
private $squelette = null;
|
|
|
30 |
private $squelette_dossier = null;
|
|
|
31 |
private $flux = array();
|
|
|
32 |
|
310 |
aurelien |
33 |
private $tri = 'oo_date_modification';
|
|
|
34 |
private $tri_dir = "DESC";
|
|
|
35 |
|
210 |
aurelien |
36 |
private $mode = 'normal';
|
|
|
37 |
|
138 |
aurelien |
38 |
/**
|
|
|
39 |
* Méthode appelée avec une requête de type GET.
|
|
|
40 |
*/
|
|
|
41 |
public function getElement($params = array()) {
|
|
|
42 |
// Initialisation des variables
|
|
|
43 |
$this->parametres_origines = $params;
|
|
|
44 |
$info = array();
|
|
|
45 |
$contenu = '';
|
|
|
46 |
|
|
|
47 |
if (! $this->etreFluxAdmin() || $this->authentifier()) {
|
|
|
48 |
// Pré traitement des paramêtres
|
|
|
49 |
$pour_bdd = false;
|
|
|
50 |
$p = $this->traiterParametres(array('service', 'format'), $params, $pour_bdd);
|
|
|
51 |
extract($p);
|
310 |
aurelien |
52 |
$this->traiterParametresTri();
|
138 |
aurelien |
53 |
$this->parametres = $params;
|
|
|
54 |
$this->squelette_dossier = dirname(__FILE__).DIRECTORY_SEPARATOR.'squelettes'.DIRECTORY_SEPARATOR;
|
|
|
55 |
|
|
|
56 |
// Récupération de la liste des flux
|
|
|
57 |
$this->chargerListeDesFlux();
|
|
|
58 |
|
|
|
59 |
// Chargement du bon type de service demandé
|
|
|
60 |
if (isset($service)) {
|
|
|
61 |
$this->service = $this->traiterNomService($service);
|
|
|
62 |
$methode = $this->getNomMethodeService();
|
|
|
63 |
if (method_exists($this, $methode)) {
|
|
|
64 |
if (isset($format) && preg_match('/^(?:rss1|rss2|atom)$/i', $format)) {
|
|
|
65 |
// Mise en minuscule de l'indication du format
|
|
|
66 |
$this->format = strtolower($format);
|
|
|
67 |
// Définition du fichier squelette demandé
|
|
|
68 |
$this->squelette = $this->squelette_dossier.$this->format.'.tpl.xml';
|
|
|
69 |
} else if (isset($this->flux[$this->service])) {
|
|
|
70 |
$this->format = '';
|
|
|
71 |
$this->messages[] = "Le service ODS Syndication nécessite d'indiquer en second paramètre le format : rss1, rss2 ou atom.";
|
|
|
72 |
}
|
|
|
73 |
|
|
|
74 |
if (!isset($this->flux[$this->service]) || isset($this->format)) {
|
|
|
75 |
// Suppression des paramêtres inutile pour le reste des méthodes
|
|
|
76 |
array_shift($this->parametres);
|
|
|
77 |
array_shift($this->parametres);
|
|
|
78 |
|
|
|
79 |
// Récupération du contenu à renvoyer
|
|
|
80 |
$contenu = $this->$methode();
|
|
|
81 |
}
|
|
|
82 |
} else {
|
|
|
83 |
$this->messages[] = "Le type d'information demandé '$this->service' n'est pas disponible.";
|
|
|
84 |
}
|
|
|
85 |
} else {
|
|
|
86 |
$this->messages[] = "Le service ODS Syndication Observation nécessite d'indiquer en premier paramètre le type d'information demandé.";
|
|
|
87 |
}
|
|
|
88 |
}
|
|
|
89 |
|
|
|
90 |
// Envoie sur la sortie standard
|
|
|
91 |
$encodage = 'utf-8';
|
|
|
92 |
$mime = $this->getTypeMime();
|
|
|
93 |
$formatage_json = $this->getFormatageJson();
|
|
|
94 |
$this->envoyer($contenu, $mime, $encodage, $formatage_json);
|
|
|
95 |
}
|
|
|
96 |
|
310 |
aurelien |
97 |
private function traiterParametresTri() {
|
|
|
98 |
$tris_possibles = array('oo_date_modification', 'oo_date_saisie', 'oo_date');
|
|
|
99 |
$tris_dirs_possibles = array('ASC', 'DESC');
|
|
|
100 |
|
|
|
101 |
$this->tri = !empty($_GET['tri']) && in_array($_GET['tri'], $tris_possibles) ? $_GET['tri'] : 'oo_date_modification';
|
|
|
102 |
$this->tri_dir = !empty($_GET['tri_dir']) && in_array($_GET['tri_dir'], $tris_dirs_possibles) ? $_GET['tri_dir'] : 'DESC';
|
|
|
103 |
|
|
|
104 |
unset($_GET['tri']);
|
|
|
105 |
unset($_GET['tri_dir']);
|
|
|
106 |
}
|
|
|
107 |
|
138 |
aurelien |
108 |
private function getUrlBase() {
|
|
|
109 |
$url_base = sprintf($this->config['settings']['baseURLAbsoluDyn'], get_class($this).'/');
|
|
|
110 |
return $url_base;
|
|
|
111 |
}
|
|
|
112 |
|
|
|
113 |
private function getUrlServiceBase() {
|
|
|
114 |
$url_service = $this->getUrlBase().implode('/', $this->parametres_origines);
|
|
|
115 |
return $url_service;
|
|
|
116 |
}
|
|
|
117 |
|
|
|
118 |
private function traiterNomService($nom) {
|
|
|
119 |
$nom = strtolower($nom);
|
|
|
120 |
return $nom;
|
|
|
121 |
}
|
|
|
122 |
|
|
|
123 |
private function getNomMethodeService() {
|
|
|
124 |
$methode = '';
|
|
|
125 |
$service_formate = str_replace(' ', '', ucwords(implode(' ', explode('-', $this->service))));
|
|
|
126 |
$methode = 'getService'.$service_formate;
|
|
|
127 |
return $methode;
|
|
|
128 |
}
|
|
|
129 |
|
|
|
130 |
private function getTypeMime() {
|
|
|
131 |
$mime = '';
|
|
|
132 |
$test = isset($this->format) ? $this->format : $this->service;
|
|
|
133 |
switch ($test) {
|
|
|
134 |
case 'atom' :
|
|
|
135 |
$mime = 'application/atom+xml';
|
|
|
136 |
break;
|
|
|
137 |
case 'rss1' :
|
|
|
138 |
case 'rss2' :
|
|
|
139 |
$mime = 'application/rss+xml';
|
|
|
140 |
break;
|
|
|
141 |
case 'opml' :
|
|
|
142 |
$mime = 'text/x-opml';
|
|
|
143 |
break;
|
|
|
144 |
default:
|
|
|
145 |
$mime = 'text/html';
|
|
|
146 |
}
|
|
|
147 |
return $mime;
|
|
|
148 |
}
|
|
|
149 |
|
|
|
150 |
private function getFormatageJson() {
|
|
|
151 |
$json = false;
|
|
|
152 |
switch ($this->service) {
|
|
|
153 |
case 'liste-des-flux' :
|
|
|
154 |
$json = true;
|
|
|
155 |
break;
|
|
|
156 |
default:
|
|
|
157 |
$json = false;
|
|
|
158 |
}
|
|
|
159 |
return $json;
|
|
|
160 |
}
|
|
|
161 |
|
|
|
162 |
private function getFlux($nom) {
|
|
|
163 |
return isset($this->flux[$nom]) ? $this->flux[$nom] : array();
|
|
|
164 |
}
|
|
|
165 |
|
|
|
166 |
private function setFlux($nom, $titre, $description) {
|
|
|
167 |
$url_base = $this->getUrlBase();
|
|
|
168 |
$formats = array('atom', 'rss2', 'rss1');
|
|
|
169 |
$flux = array();
|
|
|
170 |
foreach ($formats as $format) {
|
|
|
171 |
$url = $url_base.$nom.'/'.$format;
|
|
|
172 |
$flux[$format] = $url;
|
|
|
173 |
}
|
|
|
174 |
$this->flux[$nom] = array('titre' => $titre, 'description' => $description, 'urls' => $flux);
|
|
|
175 |
}
|
|
|
176 |
|
|
|
177 |
private function chargerListeDesFlux() {
|
|
|
178 |
$this->setFlux('par-defaut', 'Flux de syndication des observations d\'ODS',
|
|
|
179 |
'Ce flux fournit des informations sur les observations d\'ODS');
|
|
|
180 |
}
|
|
|
181 |
|
|
|
182 |
private function getServiceListeDesFlux() {
|
|
|
183 |
return $this->flux;
|
|
|
184 |
}
|
|
|
185 |
|
|
|
186 |
private function getServiceOpml() {
|
|
|
187 |
$donnees = array();
|
|
|
188 |
$id = 1;
|
|
|
189 |
foreach ($this->flux as $flux_nom => $flux){
|
|
|
190 |
$info = array();
|
|
|
191 |
$info['type'] = 'atom';
|
|
|
192 |
$info['titre'] = $flux['titre'];
|
|
|
193 |
$info['texte'] = "ODS - Obs - $flux_nom";
|
|
|
194 |
$info['description'] = $flux['description'];
|
|
|
195 |
$info['url_xml'] = $this->getUrlBase().$flux_nom.'/atom';
|
|
|
196 |
$donnees['liste_flux'][] = $info;
|
|
|
197 |
}
|
|
|
198 |
|
|
|
199 |
$this->squelette = $this->squelette_dossier.'opml.tpl.xml';
|
|
|
200 |
$contenu = Cel::traiterSquelettePhp($this->squelette, $donnees);
|
|
|
201 |
return $contenu;
|
|
|
202 |
}
|
|
|
203 |
|
|
|
204 |
private function getServiceParDefaut() {
|
|
|
205 |
// Construction de la requête
|
284 |
aurelien |
206 |
$requete = 'SELECT oo.* '.
|
|
|
207 |
'FROM ods_observations oo '.
|
|
|
208 |
'INNER JOIN ods_individus oi '.
|
|
|
209 |
'ON oo.oo_ce_individu = oi.oi_id_individu '.
|
|
|
210 |
'INNER JOIN ods_especes oe '.
|
|
|
211 |
'ON oe.oe_espece_active = 1 '.
|
|
|
212 |
'AND oi.oi_ce_espece = oe.oe_id_espece '.
|
207 |
aurelien |
213 |
'WHERE oo_ce_participant != '.$this->config['appli']['id_participant_demo'].' '.
|
284 |
aurelien |
214 |
'AND oo_ce_participant != '.$this->config['appli']['id_participant_admin'].' '.
|
229 |
aurelien |
215 |
'AND DAY(oo_date) != "00" '.
|
310 |
aurelien |
216 |
'ORDER BY '.$this->tri.' '.$this->tri_dir.' '.
|
138 |
aurelien |
217 |
"LIMIT $this->start,$this->limit ";
|
289 |
aurelien |
218 |
|
138 |
aurelien |
219 |
$elements = $this->executerRequete($requete);
|
|
|
220 |
|
|
|
221 |
// Création du contenu
|
|
|
222 |
$contenu = $this->executerService($elements);
|
|
|
223 |
return $contenu;
|
|
|
224 |
}
|
|
|
225 |
|
210 |
aurelien |
226 |
private function getServiceModificationObservations() {
|
|
|
227 |
|
|
|
228 |
$this->mode = 'admin';
|
|
|
229 |
|
|
|
230 |
// Construction de la requête
|
|
|
231 |
$requete = 'SELECT * '.
|
284 |
aurelien |
232 |
'FROM ods_observations oo '.
|
|
|
233 |
'INNER JOIN ods_individus oi '.
|
|
|
234 |
'ON oo.oo_ce_individu = oi.oi_id_individu '.
|
|
|
235 |
'INNER JOIN ods_especes oe '.
|
|
|
236 |
'ON oe.oe_espece_active = 1 '.
|
|
|
237 |
'AND oi.oi_ce_espece = oe.oe_id_espece '.
|
|
|
238 |
'LEFT JOIN ods_stations os '.
|
|
|
239 |
'ON oi.oi_ce_station = os.os_id_station '.
|
210 |
aurelien |
240 |
'WHERE oo_ce_participant != '.$this->config['appli']['id_participant_demo'].' '.
|
284 |
aurelien |
241 |
'AND oo_ce_participant != '.$this->config['appli']['id_participant_admin'].' '.
|
210 |
aurelien |
242 |
'AND oo_date_saisie != oo_date_modification '.
|
310 |
aurelien |
243 |
'ORDER BY '.$this->tri.' '.$this->tri_dir.' '.
|
210 |
aurelien |
244 |
"LIMIT $this->start,$this->limit ";
|
284 |
aurelien |
245 |
|
210 |
aurelien |
246 |
$elements = $this->executerRequete($requete);
|
|
|
247 |
|
|
|
248 |
// Création du contenu
|
|
|
249 |
$contenu = $this->executerService($elements);
|
|
|
250 |
return $contenu;
|
|
|
251 |
}
|
|
|
252 |
|
138 |
aurelien |
253 |
private function executerService($elements) {
|
|
|
254 |
$contenu = '';
|
|
|
255 |
if (is_array($elements)) {
|
|
|
256 |
// Prétraitement des données
|
|
|
257 |
$donnees = $this->construireDonneesCommunesAuFlux($elements);
|
|
|
258 |
|
|
|
259 |
foreach ($elements as $element) {
|
|
|
260 |
$donnees['items'][] = $this->construireDonneesCommunesAuxItems($element);
|
|
|
261 |
}
|
|
|
262 |
|
|
|
263 |
// Création du contenu à partir d'un template PHP
|
|
|
264 |
if (isset($this->squelette)) {
|
|
|
265 |
$contenu = JrestService::traiterSquelettePhp($this->squelette, $donnees);
|
|
|
266 |
}
|
|
|
267 |
}
|
|
|
268 |
return $contenu;
|
|
|
269 |
}
|
|
|
270 |
|
|
|
271 |
private function construireDonneesCommunesAuFlux($observations) {
|
|
|
272 |
$donnees = $this->getFlux($this->service);
|
|
|
273 |
$donnees['guid'] = $this->getUrlServiceBase();
|
284 |
aurelien |
274 |
$donnees['titre'] = $this->creerTitreService();
|
|
|
275 |
$donnees['description'] = $this->creerDescriptionService();
|
138 |
aurelien |
276 |
$donnees['lien_service'] = $this->creerUrlService();
|
|
|
277 |
$donnees['lien_ods'] = $this->config['settings']['odsSaisieUrlAbsolu'];
|
|
|
278 |
$donnees['editeur'] = $this->config['settings']['editeur'];
|
|
|
279 |
$derniere_info_en_date = reset($observations);
|
|
|
280 |
$date_modification_timestamp = strtotime($derniere_info_en_date['oo_date_modification']);
|
|
|
281 |
$donnees['date_maj_RSS'] = date(DATE_RSS, $date_modification_timestamp);
|
|
|
282 |
$donnees['date_maj_ATOM'] = date(DATE_ATOM, $date_modification_timestamp);
|
|
|
283 |
$donnees['date_maj_W3C'] = date(DATE_W3C, $date_modification_timestamp);
|
|
|
284 |
$donnees['annee_courante'] = date('Y');
|
|
|
285 |
$donnees['generateur'] = 'ODS - Jrest - OdsSyndicationObservation';
|
|
|
286 |
preg_match('/([0-9]+)/', '$Revision$', $match);
|
284 |
aurelien |
287 |
$donnees['generateur_version'] = isset($match[1]) ? $match[1] : 'Inconnue';
|
138 |
aurelien |
288 |
return $donnees;
|
|
|
289 |
}
|
|
|
290 |
|
|
|
291 |
private function construireDonneesCommunesAuxItems($observation) {
|
|
|
292 |
$item = array();
|
|
|
293 |
$date_modification_timestamp = $this->convertirDateHeureMysqlEnTimestamp($observation['oo_date_modification']);
|
215 |
aurelien |
294 |
$item['date_maj_simple'] = strftime('%A %d %B %Y', $date_modification_timestamp);
|
138 |
aurelien |
295 |
$item['date_maj_RSS'] = date(DATE_RSS, $date_modification_timestamp);
|
|
|
296 |
$item['date_maj_ATOM'] = date(DATE_ATOM, $date_modification_timestamp);
|
|
|
297 |
$item['date_maj_W3C'] = date(DATE_W3C, $date_modification_timestamp);
|
215 |
aurelien |
298 |
$item['date_creation_simple'] = strftime('%A %d %B %Y', strtotime($observation['oo_date_saisie']));
|
138 |
aurelien |
299 |
$item['titre'] = $this->creerTitre($observation);
|
|
|
300 |
$item['guid'] = $this->creerGuidItem($observation);
|
210 |
aurelien |
301 |
$item['lien'] = $this->creerUrlService();
|
138 |
aurelien |
302 |
$item['categorie'] = $this->creerCategorie($item);
|
|
|
303 |
$item['description'] = $this->creerDescription($this->protegerCaracteresHtmlDansChamps($observation), $item);
|
|
|
304 |
$item['description_encodee'] = htmlspecialchars($this->creerDescription($observation, $item));
|
|
|
305 |
$item['modifier_par'] = $this->creerAuteur($observation['oo_ce_participant'], $this->etreFluxAdmin());
|
|
|
306 |
return $item;
|
|
|
307 |
}
|
|
|
308 |
|
284 |
aurelien |
309 |
private function creerTitreService() {
|
|
|
310 |
$titre = '';
|
|
|
311 |
switch($this->service) {
|
|
|
312 |
case 'modification-observations':
|
|
|
313 |
$titre = 'Flux rss des dernières modifications d\'observations de l\'observatoire des saisons';
|
|
|
314 |
break;
|
|
|
315 |
default:
|
|
|
316 |
$titre = 'Flux rss de l\'observatoire des saisons';
|
|
|
317 |
}
|
|
|
318 |
return $titre;
|
|
|
319 |
}
|
|
|
320 |
|
|
|
321 |
private function creerDescriptionService() {
|
|
|
322 |
$description = '';
|
|
|
323 |
switch($this->service) {
|
|
|
324 |
case 'modification-observations':
|
|
|
325 |
$description = 'Flux rss des dernières modifications d\'observations de l\'observatoire des saisons';
|
|
|
326 |
break;
|
|
|
327 |
default:
|
|
|
328 |
$description = 'Flux rss de l\'observatoire des saisons';
|
|
|
329 |
}
|
|
|
330 |
return $description;
|
|
|
331 |
}
|
|
|
332 |
|
310 |
aurelien |
333 |
private function creerTitre($obs) {
|
|
|
334 |
$date_saisie = date("d/m/Y", strtotime($obs['oo_date']));
|
|
|
335 |
$date_modif = date("d/m/Y", strtotime($obs['oo_date_modification']));
|
138 |
aurelien |
336 |
|
|
|
337 |
$stade_obs = $this->obtenirValeurTripleParId($obs['oo_ce_evenement']);
|
|
|
338 |
$nom_plante = $this->obtenirNomEspecePourIdIndividu($obs['oo_ce_individu']);
|
|
|
339 |
$utilisateur = $this->creerAuteur($obs['oo_ce_participant'], $this->etreFluxAdmin());
|
310 |
aurelien |
340 |
$titre = "$stade_obs pour $nom_plante par $utilisateur saisie le $date_saisie, observée le $date_modif";
|
138 |
aurelien |
341 |
$titre = $this->nettoyerTexte($titre);
|
|
|
342 |
return $titre;
|
|
|
343 |
}
|
|
|
344 |
|
|
|
345 |
private function obtenirNomEspecePourIdIndividu($id_individu) {
|
|
|
346 |
|
|
|
347 |
$requete_id_espece_individu = 'SELECT oi_ce_espece FROM ods_individus '.
|
|
|
348 |
'WHERE oi_id_individu = '.$this->proteger($id_individu);
|
|
|
349 |
|
|
|
350 |
$resultat_id_espece = $this->executerRequete($requete_id_espece_individu);
|
|
|
351 |
$id_espece = $resultat_id_espece[0]['oi_ce_espece'];
|
|
|
352 |
|
|
|
353 |
$requete_nom_espece_individu = 'SELECT oe_nom_vernaculaire FROM ods_especes '.
|
|
|
354 |
'WHERE oe_id_espece = '.$this->proteger($id_espece);
|
|
|
355 |
|
|
|
356 |
$resultat_nom_espece = $this->executerRequete($requete_nom_espece_individu);
|
|
|
357 |
$nom_espece = $resultat_nom_espece[0]['oe_nom_vernaculaire'];
|
|
|
358 |
|
|
|
359 |
return $nom_espece;
|
|
|
360 |
}
|
|
|
361 |
|
|
|
362 |
private function creerGuidItem($element) {
|
|
|
363 |
$guid = sprintf($this->config['settings']['guidObsTpl'], 'obs'.$element['oo_id_observation']);
|
|
|
364 |
return $guid;
|
|
|
365 |
}
|
|
|
366 |
|
|
|
367 |
private function creerLienItem($element) {
|
|
|
368 |
return $this->config['settings']['odsSaisieUrlAbsolu'];
|
|
|
369 |
}
|
|
|
370 |
|
|
|
371 |
private function creerAuteur($element) {
|
|
|
372 |
|
|
|
373 |
//TODO externaliser les champs dans le fichier de config
|
289 |
aurelien |
374 |
$requete_selection_auteur = 'SELECT * FROM drupal_users '.
|
284 |
aurelien |
375 |
'WHERE uid = '.$this->proteger($element);
|
138 |
aurelien |
376 |
|
|
|
377 |
$resultat_auteur = $this->executerRequete($requete_selection_auteur);
|
284 |
aurelien |
378 |
|
310 |
aurelien |
379 |
$nom_auteur = !empty($resultat_auteur[0]['name']) ? $resultat_auteur[0]['name'] : "";
|
284 |
aurelien |
380 |
|
|
|
381 |
if($this->mode == 'admin') {
|
|
|
382 |
$nom_auteur = $resultat_auteur[0]['mail'];
|
|
|
383 |
}
|
|
|
384 |
|
138 |
aurelien |
385 |
return $nom_auteur;
|
|
|
386 |
}
|
|
|
387 |
|
|
|
388 |
private function creerDescription($obs, $item) {
|
|
|
389 |
|
|
|
390 |
$requete_commune_pour_station = 'SELECT os_ce_commune FROM ods_stations '.
|
|
|
391 |
'WHERE os_id_station = '.
|
|
|
392 |
'(SELECT oi_ce_station FROM ods_individus '.
|
|
|
393 |
'WHERE oi_id_individu = '.$this->proteger($obs['oo_ce_individu']).')';
|
|
|
394 |
|
|
|
395 |
$resultat_commune = $this->executerRequete($requete_commune_pour_station);
|
|
|
396 |
$commune = $resultat_commune[0]['os_ce_commune'];
|
|
|
397 |
|
207 |
aurelien |
398 |
if(is_numeric($commune)) {
|
|
|
399 |
$requete_lieu = 'SELECT * FROM ods_communes '.
|
|
|
400 |
'WHERE oc_code_insee = '.$this->proteger($commune);
|
138 |
aurelien |
401 |
|
207 |
aurelien |
402 |
$resultat_lieu = $this->executerRequete($requete_lieu);
|
|
|
403 |
$lieu = $resultat_lieu[0]['oc_nom']. ' ('.substr($commune,0,2).')';
|
|
|
404 |
} else {
|
|
|
405 |
$lieu = $commune;
|
|
|
406 |
}
|
138 |
aurelien |
407 |
|
210 |
aurelien |
408 |
$description = "Observé à $lieu".'<br />';
|
|
|
409 |
|
|
|
410 |
if($this->mode == 'admin') {
|
|
|
411 |
$description .= ' Individu : '.$obs['oi_nom'].'<br />';
|
215 |
aurelien |
412 |
$description .= 'Station : '.$obs['os_nom'].'<br />';
|
|
|
413 |
if($this->estUneDateSqlInvalide($obs['oo_date'])) {
|
|
|
414 |
$description .= ' Date d\'observation supprimée <br />';
|
|
|
415 |
} else {
|
|
|
416 |
$description .= ' Date de l\'observation changée en : '.strftime('%A %d %B %Y', strtotime($obs['oo_date'])).'<br />';
|
|
|
417 |
}
|
210 |
aurelien |
418 |
$description .= 'Saisi le : '.$item['date_creation_simple'].'<br />';
|
|
|
419 |
$description .= 'Modifié le : '.$item['date_maj_simple'].'<br />';
|
|
|
420 |
}
|
|
|
421 |
|
138 |
aurelien |
422 |
$description = $this->nettoyerTexte($description);
|
210 |
aurelien |
423 |
|
138 |
aurelien |
424 |
return $description;
|
|
|
425 |
}
|
|
|
426 |
|
215 |
aurelien |
427 |
private function estUneDateSqlInvalide($date) {
|
|
|
428 |
|
262 |
gduche |
429 |
$date_tab = explode('-', $date);
|
215 |
aurelien |
430 |
return ($date_tab[2] == '00' || $date_tab[1] == '00' || $date_tab[0] == '0000');
|
|
|
431 |
}
|
|
|
432 |
|
138 |
aurelien |
433 |
private function creerCategorie($element) {
|
|
|
434 |
$categorie = '';
|
|
|
435 |
$categorie = 'Observation';
|
|
|
436 |
$categorie = $this->nettoyerTexte($categorie);
|
|
|
437 |
return $categorie;
|
|
|
438 |
}
|
|
|
439 |
|
|
|
440 |
private function etreFluxAdmin() {
|
284 |
aurelien |
441 |
return (isset($_GET['admin']) && $_GET['admin'] == '1') ? true : false;
|
138 |
aurelien |
442 |
}
|
|
|
443 |
|
|
|
444 |
private function creerUrlService() {
|
|
|
445 |
$url_service = $this->getUrlServiceBase();
|
|
|
446 |
if (count($_GET) > 0) {
|
|
|
447 |
|
|
|
448 |
$url_service .= '?';
|
|
|
449 |
$requete = '';
|
|
|
450 |
|
|
|
451 |
foreach($_GET as $cle => $valeur) {
|
|
|
452 |
if($cle != '' && trim($valeur) != '') {
|
|
|
453 |
$requete .= '&'.$cle.'='.$valeur;
|
|
|
454 |
}
|
|
|
455 |
}
|
|
|
456 |
|
|
|
457 |
$url_service = $url_service.ltrim($requete, '&');
|
|
|
458 |
}
|
|
|
459 |
|
|
|
460 |
return $url_service;
|
|
|
461 |
}
|
|
|
462 |
}
|
|
|
463 |
|
|
|
464 |
?>
|