719 |
jpm |
1 |
<?php
|
|
|
2 |
// declare(encoding='UTF-8');
|
|
|
3 |
/**
|
|
|
4 |
* Service permettant d'insérer les informations fournie par le widget Saisie dans le CEL.
|
|
|
5 |
*
|
|
|
6 |
* Cas d'utilisation :
|
|
|
7 |
* PUT /CelWidgetSaisie : ajout de données en les passant via $_POST
|
|
|
8 |
*
|
2461 |
jpm |
9 |
* @internal Mininum PHP version : 5.2
|
|
|
10 |
* @category CEL
|
|
|
11 |
* @package Services
|
2462 |
jpm |
12 |
* @subpackage Widget
|
2461 |
jpm |
13 |
* @version 0.1
|
|
|
14 |
* @author Mathias CHOUET <mathias@tela-botanica.org>
|
|
|
15 |
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
|
|
16 |
* @author Aurelien PERONNET <aurelien@tela-botanica.org>
|
|
|
17 |
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
|
|
|
18 |
* @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
|
|
|
19 |
* @copyright 1999-2014 Tela Botanica <accueil@tela-botanica.org>
|
719 |
jpm |
20 |
*/
|
2056 |
aurelien |
21 |
class CelWidgetSaisie extends Cel {
|
1068 |
jpm |
22 |
|
3715 |
idir |
23 |
private $projet = null;
|
|
|
24 |
private $projetId = null;
|
|
|
25 |
private $projetTags = array();
|
|
|
26 |
private $tagsObs = null;
|
|
|
27 |
private $tagsImg = null;
|
|
|
28 |
private $userId = null;
|
|
|
29 |
private $userEmail = null;
|
3754 |
killian |
30 |
private $userIntitule = null;
|
3753 |
killian |
31 |
private $isPlantnetPull = false;
|
3715 |
idir |
32 |
private $isSauvages = false;
|
|
|
33 |
const DUREE_DE_VIE_IMG = 86400;// 3600 * 24 = 86 400 (1 journée)
|
|
|
34 |
const ARRET_SERVICE = false;// Permet de bloquer le service en cas de problème sur le serveur
|
1565 |
jpm |
35 |
|
3715 |
idir |
36 |
private $correspondanceIdImgTags = array();
|
|
|
37 |
private $gestionMotsClesObs = null;
|
|
|
38 |
private $gestionMotsClesImages = null;
|
1068 |
jpm |
39 |
|
3715 |
idir |
40 |
public function createElement($requeteDonnees) {
|
|
|
41 |
if (self::ARRET_SERVICE) {
|
|
|
42 |
$this->messages[] = "Désactivation temporaire du service d'envoi des données au CEL.";
|
|
|
43 |
} else if (array_key_exists('projet', $requeteDonnees)) {
|
|
|
44 |
$this->debug[] = 'Projet : '.$requeteDonnees['projet'];
|
|
|
45 |
if ($requeteDonnees['projet'] != "base") {
|
3743 |
delphine |
46 |
$this->projet = $requeteDonnees['projet'] ?? null;
|
3715 |
idir |
47 |
$this->projetId = $requeteDonnees['id_projet'] ?? null;
|
|
|
48 |
}
|
1896 |
jpm |
49 |
|
3715 |
idir |
50 |
// Si c'est une obs Pl@ntNet
|
|
|
51 |
if (! empty($requeteDonnees['tag-obs']) && strpos(strtolower($requeteDonnees['tag-obs']), 'plantnet') !== false) {
|
3753 |
killian |
52 |
if (isset($requeteDonnees['origin']) && 'pullPlantnet' === $requeteDonnees['origin']) {
|
|
|
53 |
// on traite les obs PN qui viennent du script de pull
|
|
|
54 |
$this->isPlantnetPull = true;
|
|
|
55 |
} else {
|
|
|
56 |
// fake ID pour les obs PN provenant de PlantNet V1
|
|
|
57 |
$retour = (object) [
|
|
|
58 |
'msg' => 'observation Pl@ntNet non sauvegardée',
|
|
|
59 |
'id' => 'fake-' . uniqid(),
|
|
|
60 |
'images' => []
|
|
|
61 |
];
|
|
|
62 |
$this->envoyerJson($retour);
|
|
|
63 |
exit; // envoyerJson() ne termine pas le script !
|
|
|
64 |
}
|
3715 |
idir |
65 |
}
|
3753 |
killian |
66 |
// Si c'est une obs Sauvages de ma rue
|
3715 |
idir |
67 |
if (! empty($requeteDonnees['tag-obs']) && strpos(strtolower($requeteDonnees['tag-obs']), 'mobileSauvages') !== false) {
|
|
|
68 |
$this->isSauvages = true;
|
|
|
69 |
}
|
3111 |
mathias |
70 |
|
3715 |
idir |
71 |
// Traitements des tags multiples de projet
|
|
|
72 |
$this->traiterProjetTags();
|
1896 |
jpm |
73 |
|
3715 |
idir |
74 |
// Traitement des tags spécifiques aux obs
|
|
|
75 |
$this->traiterTagObs($requeteDonnees);
|
1896 |
jpm |
76 |
|
3715 |
idir |
77 |
// Traitement des tags spécifiques aux images
|
|
|
78 |
$this->traiterTagImg($requeteDonnees);
|
1896 |
jpm |
79 |
|
3715 |
idir |
80 |
// Traitement des observations et des images
|
|
|
81 |
if (isset($requeteDonnees['utilisateur']['courriel']) && filter_var($requeteDonnees['utilisateur']['courriel'], FILTER_VALIDATE_EMAIL)) {
|
|
|
82 |
$this->debug[] = 'Utilisateur : '.print_r($requeteDonnees['utilisateur'], true);
|
|
|
83 |
$utilisateur = $requeteDonnees['utilisateur'];
|
2342 |
mathias |
84 |
|
3715 |
idir |
85 |
// hop on récupère les infos de l'utilisateur
|
|
|
86 |
$infosUtilisateur = $this->infosInscritTela($utilisateur['courriel']);
|
|
|
87 |
if ($infosUtilisateur) {
|
|
|
88 |
$this->userId = $infosUtilisateur['id'];
|
|
|
89 |
$this->userIntitule = $infosUtilisateur['intitule'];
|
|
|
90 |
} else {
|
|
|
91 |
$this->userId = 0;
|
|
|
92 |
$this->userIntitule = $utilisateur['prenom'] . ' ' . $utilisateur['nom'];
|
|
|
93 |
}
|
|
|
94 |
$this->userEmail = $utilisateur['courriel'];
|
1068 |
jpm |
95 |
|
3715 |
idir |
96 |
$this->debug[] = 'Courriel : ' . $this->userEmail;
|
|
|
97 |
$requeteDonnees = $this->supprimerSlashesProfond($requeteDonnees);
|
|
|
98 |
// Triage et manipulation des données
|
|
|
99 |
$observations = array();
|
|
|
100 |
foreach ($requeteDonnees as $cle => $obs) {
|
|
|
101 |
if (preg_match('/^obsId[0-9]+$/', $cle)) {
|
|
|
102 |
$this->debug[] = 'commune_nom : '.$obs['commune_nom'];
|
|
|
103 |
$this->debug[] = 'commune_code_insee : '. (isset($obs['commune_code_insee']) ? $obs['commune_code_insee'] : 'n/a');
|
1350 |
aurelien |
104 |
|
3715 |
idir |
105 |
$obsAAjouter = array();
|
|
|
106 |
$obsAAjouter['user_id'] = $this->userId;
|
|
|
107 |
$obsAAjouter['user_email'] = $this->userEmail;
|
|
|
108 |
$obsAAjouter['user_pseudo'] = $this->userIntitule;
|
1350 |
aurelien |
109 |
|
3715 |
idir |
110 |
$obsAAjouter['user_sci_name'] = isset($obs['nom_sel']) ? $obs['nom_sel'] : null;
|
3717 |
idir |
111 |
$obsAAjouter['user_sci_name_id'] = isset($obs['num_nom_sel']) && '' !== $obs['num_nom_sel'] ? $obs['num_nom_sel'] : null;
|
3715 |
idir |
112 |
$obsAAjouter['accepted_sci_name'] = isset($obs['nom_ret']) ? $obs['nom_ret'] : null;
|
3717 |
idir |
113 |
$obsAAjouter['accepted_sci_name_id'] = isset($obs['num_nom_ret']) && '' !== $obs['num_nom_ret'] ? $obs['num_nom_ret'] : null;
|
3715 |
idir |
114 |
$obsAAjouter['family'] = isset($obs['famille']) ? $obs['famille'] : null;
|
3939 |
delphine |
115 |
$obsAAjouter['taxo_repo'] = isset($obs['referentiel']) ? ($obs['referentiel'] == 'bdtfxr') ? 'bdtfx' :
|
|
|
116 |
($obs['referentiel'] == 'autre') ? 'Autre/inconnu' : $obs['referentiel'] : null;
|
1350 |
aurelien |
117 |
|
3715 |
idir |
118 |
$obsAAjouter['date_observed'] = $this->transormerDateFrVersMysql($obs['date']);
|
|
|
119 |
$obsAAjouter['annotation'] = isset($obs['notes']) && trim($obs['notes']) !== "" ? $obs['notes'] : null;
|
1350 |
aurelien |
120 |
|
3715 |
idir |
121 |
// Pays est pour le moment sur un varchar(2) dans la base
|
|
|
122 |
// alors qu'il est envoyé complet par le script WidgetSaisie
|
|
|
123 |
$obsAAjouter['osm_country'] = (isset($obs['pays'])) ? $obs['pays'] : null;
|
3760 |
killian |
124 |
$obsAAjouter['osm_postcode'] = (isset($obs['code_postal'])) ? $obs['code_postal'] : null;
|
3759 |
killian |
125 |
$obsAAjouter['locality'] = isset($obs['commune_nom']) && trim($obs['commune_nom']) !== "" ? $obs['commune_nom'] : null;
|
|
|
126 |
$obsAAjouter['locality_insee_code'] = isset($obs['commune_code_insee']) && trim($obs['commune_code_insee']) !== "" ? $obs['commune_code_insee'] : null;
|
3715 |
idir |
127 |
$obsAAjouter['sublocality'] = isset($obs['lieudit']) && trim($obs['lieudit']) !== "" ? $obs['lieudit'] : null;
|
|
|
128 |
$obsAAjouter['station'] = isset($obs['station']) && trim($obs['station']) !== "" ? $obs['station'] : null;
|
|
|
129 |
$obsAAjouter['environment'] = isset($obs['milieu']) && trim($obs['milieu']) !== "" ? $obs['milieu'] : null;
|
|
|
130 |
$obsAAjouter['elevation'] = (! empty($obs['altitude'])) ? $obs['altitude'] : null;
|
|
|
131 |
$obsAAjouter['geometry'] = $obs['geometry'] ?? json_encode([
|
|
|
132 |
'type' => 'Point',
|
3759 |
killian |
133 |
'coordinates' => [
|
|
|
134 |
round((float)str_replace(',', '.', $obs['longitude']), 6),
|
|
|
135 |
round((float)str_replace(',', '.', $obs['latitude']), 6)
|
|
|
136 |
]
|
3715 |
idir |
137 |
]); // CONCAT('{\"type\":\"Point\",\"coordinates\":[', longitude, ',', latitude,']}'),
|
|
|
138 |
$obsAAjouter['geodatum'] = 'WGS84';
|
3743 |
delphine |
139 |
$obsAAjouter['published_location'] = ($this->tagsObs != null && in_array('sensible', $this->tagsObs) == true) ?
|
|
|
140 |
"localité" : "précise";
|
1896 |
jpm |
141 |
|
3715 |
idir |
142 |
$obsAAjouter['phenology'] = isset($obs['phenologie']) ? $obs['phenologie'] : null;
|
|
|
143 |
$obsAAjouter['coef'] = isset($obs['abondance']) ? $obs['abondance'] : null;
|
1350 |
aurelien |
144 |
|
3715 |
idir |
145 |
$obsAAjouter['is_public'] = '1';
|
|
|
146 |
$obsAAjouter['date_created'] = date('Y-m-d H:i:s');
|
|
|
147 |
$obsAAjouter['date_updated'] = $obsAAjouter['date_created'];
|
|
|
148 |
$obsAAjouter['date_published'] = $obsAAjouter['date_created'];
|
1565 |
jpm |
149 |
|
3715 |
idir |
150 |
$obsAAjouter['image_nom'] = $obs['image_nom'] ?? null;
|
|
|
151 |
$obsAAjouter['image_b64'] = $obs['image_b64'] ?? null;
|
3530 |
killian |
152 |
|
3743 |
delphine |
153 |
$obsAAjouter['certainty'] = null;
|
3715 |
idir |
154 |
if (isset($obs['certitude'])) {
|
|
|
155 |
switch ($obs['certitude']) {
|
|
|
156 |
case 'certaine':
|
|
|
157 |
$obsAAjouter['certainty'] = 'certain';
|
|
|
158 |
break;
|
|
|
159 |
case 'douteuse':
|
|
|
160 |
$obsAAjouter['certainty'] = 'douteux';
|
|
|
161 |
break;
|
|
|
162 |
default:
|
|
|
163 |
$obsAAjouter['certainty'] = $obs['certitude'];
|
|
|
164 |
break;
|
|
|
165 |
}
|
|
|
166 |
}
|
3743 |
delphine |
167 |
$obsAAjouter['certainty'] = ($this->projet == "aDeterminer") ? 'à déterminer' : $obsAAjouter['certainty'];
|
3715 |
idir |
168 |
$obsAAjouter['input_source'] = 'widget';
|
3925 |
delphine |
169 |
$obsAAjouter['project_id'] = ($this->projetId == 3) ? null : $this->projetId;
|
3743 |
delphine |
170 |
// racommodage en attendant mieux
|
3782 |
delphine |
171 |
$obsAAjouter['project'] = ($this->projetId == null || $this->projetId == 3) ? null : ($this->projetId == 53) ? "missions-flore" : $this->projet ;
|
3753 |
killian |
172 |
if ($this->isPlantnetPull) {
|
3715 |
idir |
173 |
$obsAAjouter['input_source'] = 'PlantNet';
|
|
|
174 |
$obsAAjouter['plantnet_id'] = $obs['obs_id'];
|
|
|
175 |
}
|
|
|
176 |
if ($this->isSauvages) {
|
|
|
177 |
$obsAAjouter['input_source'] = 'autre';
|
|
|
178 |
$obsAAjouter['project'] = 'sauvages';
|
|
|
179 |
}
|
3716 |
idir |
180 |
|
3715 |
idir |
181 |
$obsAAjouter['obs_etendue'] = isset($obs['obs_etendue']) ? $obs['obs_etendue'] : array();
|
1068 |
jpm |
182 |
|
3715 |
idir |
183 |
// Tentative d'enrichissement des données taxonomiques
|
|
|
184 |
// @TODO attention aux perfs, aux timeouts de WS etc.
|
|
|
185 |
$this->enrichirDonneesTaxonomiques($obsAAjouter);
|
1068 |
jpm |
186 |
|
3715 |
idir |
187 |
$observations[] = $obsAAjouter;
|
|
|
188 |
}
|
|
|
189 |
}
|
|
|
190 |
$this->debug[] = 'Nbre obs ajoutée : '.count($observations);
|
|
|
191 |
$this->debug[] = 'projet : '.$this->projet;
|
|
|
192 |
$this->debug[] = 'tagsObs : '.print_r($this->tagsObs, true);
|
|
|
193 |
$this->debug[] = 'tagsImg : '.print_r($this->tagsImg, true);
|
3553 |
killian |
194 |
|
3753 |
killian |
195 |
// début transaction car si insertions par le même utilisateur en parallèle,
|
|
|
196 |
// De plus, ça permet de ne pas conserver les données d'obs si l'image provoque une erreur
|
|
|
197 |
//Cel::db()->setAttribute(PDO::ATTR_AUTOCOMMIT, false);
|
|
|
198 |
Cel::db()->beginTransaction();
|
|
|
199 |
$erreursDurantTraitement = false;
|
|
|
200 |
$nomsOriginauxImagesTemp = array();
|
|
|
201 |
|
3715 |
idir |
202 |
// Insertion dans la base
|
|
|
203 |
$obs_a_taguer_ids = array();
|
|
|
204 |
$img_a_taguer_ids_noms = array();
|
|
|
205 |
$champsEtendusObs = array();
|
|
|
206 |
foreach ($observations as $obs) {
|
|
|
207 |
$fullObs = $obs;
|
|
|
208 |
unset($obs['obs_etendue']);
|
|
|
209 |
unset($obs['image_nom']);
|
|
|
210 |
unset($obs['image_b64']);
|
3072 |
mathias |
211 |
|
3715 |
idir |
212 |
$obs = $this->protegerTableau($obs);
|
3530 |
killian |
213 |
|
3715 |
idir |
214 |
$champs = implode(', ', array_keys($obs));
|
|
|
215 |
$valeurs = implode(', ', $obs);
|
|
|
216 |
$requete = "INSERT INTO occurrence ($champs) VALUES ($valeurs) ";
|
3552 |
killian |
217 |
|
3715 |
idir |
218 |
if (Cel::db()->executer($requete) === false) {
|
|
|
219 |
$erreursDurantTraitement = true;
|
|
|
220 |
$this->messages[] = "Un problème est survenu lors de l'insertion de l'obs dans la base de données.";
|
|
|
221 |
}
|
1068 |
jpm |
222 |
|
3715 |
idir |
223 |
// récupérer l'id de l'obs nouvellement insérée
|
|
|
224 |
$idNouvelleObs = Cel::db()->obtenirDernierId();
|
|
|
225 |
$obs_a_taguer_ids[] = $idNouvelleObs;
|
|
|
226 |
$champsEtendusObs[$idNouvelleObs] = $fullObs['obs_etendue'];
|
1068 |
jpm |
227 |
|
3715 |
idir |
228 |
$imgAAjouter = null;
|
|
|
229 |
if (isset($fullObs['image_nom'])) {
|
|
|
230 |
$imgAAjouter = $this->traiterImagesALierAObs($idNouvelleObs, $fullObs);
|
|
|
231 |
foreach ($imgAAjouter as $uneImgAAjouter) {
|
|
|
232 |
$nomsOriginauxImagesTemp[] = $uneImgAAjouter['nom'];
|
|
|
233 |
}
|
|
|
234 |
}
|
1350 |
aurelien |
235 |
|
3715 |
idir |
236 |
// si le formulaire contient une image on la traite
|
|
|
237 |
if (!empty($imgAAjouter)) {
|
|
|
238 |
$this->nettoyerImagesUploades();
|
|
|
239 |
$img_a_taguer_ids_noms = $this->stockerImagesEtLierAObs($idNouvelleObs, $imgAAjouter);
|
|
|
240 |
if (empty($img_a_taguer_ids_noms)) {
|
|
|
241 |
$erreursDurantTraitement = true;
|
|
|
242 |
$this->messages[] = "Au moins une des images n'a pas pu être enregistrée.";
|
|
|
243 |
} else {
|
|
|
244 |
$cmd = sprintf($this->config['cel']['commande_script_images'],implode(',', array_keys($img_a_taguer_ids_noms)));
|
|
|
245 |
pclose(popen($cmd,"r"));
|
|
|
246 |
}
|
|
|
247 |
}
|
|
|
248 |
}
|
1565 |
jpm |
249 |
|
3715 |
idir |
250 |
$this->gestionMotsClesObs = new GestionMotsClesChemin($this->config,'obs');
|
|
|
251 |
$this->gestionMotsClesImages = new GestionMotsClesChemin($this->config,'images');
|
2143 |
jpm |
252 |
|
3715 |
idir |
253 |
$this->taguerObs($obs_a_taguer_ids);
|
|
|
254 |
if (!empty($img_a_taguer_ids_noms)) {
|
|
|
255 |
$this->taguerImg(array_keys($img_a_taguer_ids_noms));
|
|
|
256 |
}
|
1565 |
jpm |
257 |
|
3715 |
idir |
258 |
// Les champs taggés sont des champs supplémentaires stockés sous forme de clé => valeur
|
|
|
259 |
$this->ajouterChampsEtendusObs($obs_a_taguer_ids, $champsEtendusObs);
|
|
|
260 |
// Fin de la transaction - on considère que commit() et rollback() ne ratent jamais
|
|
|
261 |
if ($erreursDurantTraitement === false) {
|
|
|
262 |
// Suppression des fichiers images temporaires
|
|
|
263 |
$this->nettoyerImagesUploades($nomsOriginauxImagesTemp);
|
|
|
264 |
Cel::db()->commit();
|
|
|
265 |
} else {
|
|
|
266 |
// On annule l'écriture des images enregistrées sur le disque dur - la transaction
|
|
|
267 |
// se charge de les retirer de la base de données
|
|
|
268 |
if ($img_a_taguer_ids_noms !== false) {
|
|
|
269 |
foreach (array_keys($img_a_taguer_ids_noms) as $idImageASupprimer) {
|
|
|
270 |
$this->effacerImageDuDd($idImageASupprimer);
|
|
|
271 |
}
|
|
|
272 |
}
|
|
|
273 |
Cel::db()->rollBack();
|
|
|
274 |
}
|
|
|
275 |
} else {
|
|
|
276 |
$this->messages[] = '[' . $requeteDonnees['utilisateur']['courriel'] . "] n'est pas une adresse email valide.";
|
|
|
277 |
}
|
|
|
278 |
} else {
|
|
|
279 |
$this->messages[] = "Les informations concernant le projet coopératif n'ont pas été transmises.";
|
|
|
280 |
}
|
|
|
281 |
if (count($this->messages) > 0) {
|
|
|
282 |
$this->debug[] = print_r($this->messages, true);
|
|
|
283 |
}
|
|
|
284 |
if (count($this->messages) > 0) {
|
|
|
285 |
$msg = 'erreur';
|
|
|
286 |
$idNouvelleObs = null;
|
|
|
287 |
} else {
|
|
|
288 |
$msg = 'ok';
|
|
|
289 |
}
|
|
|
290 |
// renvoi des infos d'images (id, nom) ordonnées, en plus des infos obs.
|
|
|
291 |
$infosImages = array();
|
|
|
292 |
if (! empty($img_a_taguer_ids_noms)) {
|
|
|
293 |
foreach ($img_a_taguer_ids_noms as $id => $nom) {
|
|
|
294 |
$infosImages[] = array(
|
|
|
295 |
'id' => $id,
|
|
|
296 |
'nom' => $nom
|
|
|
297 |
);
|
|
|
298 |
}
|
|
|
299 |
}
|
|
|
300 |
$retour = (object) array(
|
|
|
301 |
'msg' => $msg,
|
|
|
302 |
'id' => $idNouvelleObs,
|
|
|
303 |
'images' => $infosImages
|
|
|
304 |
);
|
|
|
305 |
$this->envoyerJson($retour);
|
|
|
306 |
exit;
|
|
|
307 |
}
|
1565 |
jpm |
308 |
|
3715 |
idir |
309 |
/**
|
|
|
310 |
* Retourne les infos du compte correspondant à $courriel
|
|
|
311 |
* si présent dans l'annuaire Tela,
|
|
|
312 |
* false sinon
|
|
|
313 |
*/
|
|
|
314 |
protected function infosInscritTela($courriel) {
|
|
|
315 |
if (empty($courriel)) {
|
|
|
316 |
return false;
|
|
|
317 |
}
|
|
|
318 |
// interrogation de l'annuaire
|
|
|
319 |
$url = sprintf($this->config['settings']['baseURLServicesAnnuaireTpl'], 'utilisateur/identite-par-courriel/' . $courriel);
|
|
|
320 |
$retour = file_get_contents($url);
|
|
|
321 |
if (! $retour) {
|
|
|
322 |
return false;
|
|
|
323 |
}
|
|
|
324 |
try {
|
|
|
325 |
$retour = json_decode($retour, true);
|
|
|
326 |
} catch (Exception $e) {
|
|
|
327 |
return false;
|
|
|
328 |
}
|
|
|
329 |
if (isset($retour['error'])) {
|
|
|
330 |
return false;
|
|
|
331 |
}
|
|
|
332 |
// le service annuaire a retourné qqch de valide
|
|
|
333 |
return array_shift($retour);
|
|
|
334 |
}
|
1565 |
jpm |
335 |
|
3715 |
idir |
336 |
/**
|
|
|
337 |
* Retourne true si les champs suivants sont présents dans le tableau :
|
|
|
338 |
* - obsId1[user_sci_name]
|
|
|
339 |
* - obsId1[latitude]' : obs.geoloc.lat || '',
|
|
|
340 |
'obsId1[longitude]' : obs.geoloc.lon || '',
|
|
|
341 |
* mot-clé "pn:referentiel"
|
|
|
342 |
*/
|
|
|
343 |
protected function estUneDonneeQualifiee($donnees) {
|
|
|
344 |
// vérifier date et géoloc
|
|
|
345 |
// lancer enrichirDonneesTaxonomiques et vérifier si ça a retrouvé un nn
|
|
|
346 |
}
|
3111 |
mathias |
347 |
|
3715 |
idir |
348 |
/**
|
|
|
349 |
* Si les données taxonomiques sont incomplètes dans $obs
|
|
|
350 |
* (clefs 'nom_sel_nn', 'user_sci_name', 'taxo_repo', 'accepted_sci_name_id',
|
|
|
351 |
* 'accepted_sci_name', 'family'), tente d'en récupérer un maximum à l'aide des
|
|
|
352 |
* services eFlore, à condition que soient mentionnés au moins :
|
|
|
353 |
* - un nom de référentiel
|
|
|
354 |
* - un nom_sel_nn OU un user_sci_name
|
|
|
355 |
*/
|
|
|
356 |
protected function enrichirDonneesTaxonomiques(&$obs) {
|
|
|
357 |
// sans référentiel, on ne peut rien faire
|
|
|
358 |
if (! empty($obs['taxo_repo'])) {
|
|
|
359 |
// copies locales pour ne pas abimer les données d'entrée
|
|
|
360 |
$nn = $obs['user_sci_name_id'];
|
|
|
361 |
$ref = $obs['taxo_repo'];
|
|
|
362 |
$ns = $obs['user_sci_name'];
|
|
|
363 |
$nr = $obs['accepted_sci_name'];
|
|
|
364 |
$nnr = $obs['accepted_sci_name_id'];
|
|
|
365 |
$fam = $obs['family'];
|
3111 |
mathias |
366 |
|
3715 |
idir |
367 |
// si j'ai un nn, tentative de retrouver le nnr, le user_sci_name,
|
|
|
368 |
// le accepted_sci_name et la famille, s'ils ne sont pas déjà présents (on
|
|
|
369 |
// pourrait les écraser systématiquement mais l'appel au service
|
|
|
370 |
// dégrade les perfs)
|
|
|
371 |
if ((! empty($nn) && is_numeric($nn))
|
|
|
372 |
// omission du test sur 'accepted_sci_name' car le service eFlore noms ne le retourne que sans auteur (pas bon)
|
|
|
373 |
&& (empty($ns) || empty($nnr) || empty($fam) /*|| empty($nr)*/)) {
|
|
|
374 |
// go
|
|
|
375 |
$this->enrichirDonneesTaxonomiquesParNN($ref, $nn, $obs);
|
|
|
376 |
} else {
|
|
|
377 |
// si j'ai un nom complet, avec un peu de bol il sera dans le référentiel
|
|
|
378 |
if ((! empty($ns))
|
|
|
379 |
&& (empty($nn) || empty($nnr) || empty($fam) /*|| empty($nr)*/)) {
|
|
|
380 |
// go
|
|
|
381 |
$this->enrichirDonneesTaxonomiquesParNS($ref, $ns, $obs);
|
|
|
382 |
}
|
|
|
383 |
} // sinon fuque
|
3072 |
mathias |
384 |
|
3715 |
idir |
385 |
}
|
|
|
386 |
}
|
3072 |
mathias |
387 |
|
3715 |
idir |
388 |
/**
|
|
|
389 |
* Enrichit le tableau $obs destiné à être inséré dans le BDD, en
|
|
|
390 |
* interrogeant le service eFlore/noms par référentiel + nom scientifique
|
|
|
391 |
* avec auteur
|
|
|
392 |
*/
|
|
|
393 |
protected function enrichirDonneesTaxonomiquesParNS($ref, $ns, &$obs) {
|
|
|
394 |
$url_nom = $this->config['eflore']['url_service_nom'];
|
|
|
395 |
$url_nom = str_replace('{referentiel}', $ref, $url_nom);
|
|
|
396 |
$url_nom .= '?recherche=etendue&ns.structure=au&masque=' . urlencode($ns);
|
|
|
397 |
// un horrible @ car les erreurs de file_get_contents() ne sont pas try/catchables
|
|
|
398 |
// @TODO mettre du cURL à l'occase
|
|
|
399 |
$infos_nom = @file_get_contents($url_nom);
|
|
|
400 |
if ($infos_nom != NULL) {
|
|
|
401 |
try {
|
|
|
402 |
$infos_nom = json_decode($infos_nom, true);
|
|
|
403 |
if (count($infos_nom['resultat']) > 0) {
|
|
|
404 |
$nn_trouve = null;
|
|
|
405 |
$ret_trouve = false;
|
|
|
406 |
// on prend le nom avec auteur correspondant exactement;
|
|
|
407 |
// s'il y en a plusieurs on prend le premier qui est retenu
|
|
|
408 |
foreach($infos_nom['resultat'] as $n => $nom) {
|
|
|
409 |
if (! $ret_trouve) {
|
|
|
410 |
if ($nom['nom_sci_complet'] == $ns) {
|
|
|
411 |
if ($nn_trouve == null || $nom['retenu'] == 'true') {
|
|
|
412 |
$nn_trouve = $n;
|
|
|
413 |
$ret_trouve = ($nom['retenu'] == 'true');
|
|
|
414 |
}
|
|
|
415 |
}
|
|
|
416 |
}
|
|
|
417 |
}
|
|
|
418 |
if ($nn_trouve != null) {
|
|
|
419 |
// gagné !
|
|
|
420 |
$obs['user_sci_name_id'] = $nn_trouve;
|
|
|
421 |
// et maintenant on recolle ce qu'on peut à partir du nn
|
|
|
422 |
$this->enrichirDonneesTaxonomiquesParNN($ref, $nn_trouve, $obs);
|
|
|
423 |
}
|
|
|
424 |
}
|
|
|
425 |
} catch(Exception $e) {
|
|
|
426 |
// échec silencieux
|
|
|
427 |
}
|
|
|
428 |
}
|
|
|
429 |
}
|
3072 |
mathias |
430 |
|
3715 |
idir |
431 |
/**
|
|
|
432 |
* Enrichit le tableau $obs destiné à être inséré dans le BDD, en
|
|
|
433 |
* interrogeant le service eFlore/noms par référentiel + nn
|
|
|
434 |
*/
|
|
|
435 |
protected function enrichirDonneesTaxonomiquesParNN($ref, $nn, &$obs) {
|
|
|
436 |
$url_nom = $this->config['eflore']['url_service_nom'];
|
|
|
437 |
$url_nom = str_replace('{referentiel}', $ref, $url_nom);
|
3753 |
killian |
438 |
$url_nom .= '/' . $nn . '?ns.structure=au,an';
|
3715 |
idir |
439 |
// un horrible @ car les erreurs de file_get_contents() ne sont pas try/catchables
|
|
|
440 |
// @TODO mettre du cURL à l'occase
|
|
|
441 |
$infos_nom = @file_get_contents($url_nom);
|
|
|
442 |
if ($infos_nom != NULL) {
|
|
|
443 |
try {
|
|
|
444 |
$infos_nom = json_decode($infos_nom, true);
|
|
|
445 |
// une fois qu'on a les infos, on écrase tout
|
|
|
446 |
if ($infos_nom['nom_sci_complet'] != null) {
|
|
|
447 |
$obs['user_sci_name'] = $infos_nom['nom_sci_complet'];
|
|
|
448 |
}
|
|
|
449 |
if ($infos_nom['nom_retenu_complet'] != null) {
|
|
|
450 |
$obs['accepted_sci_name'] = $infos_nom['nom_retenu_complet'];
|
|
|
451 |
}
|
|
|
452 |
if ($infos_nom['nom_retenu.id'] != null) {
|
|
|
453 |
$obs['accepted_sci_name_id'] = $infos_nom['nom_retenu.id'];
|
|
|
454 |
}
|
|
|
455 |
if ($infos_nom['famille'] != null) {
|
|
|
456 |
$obs['family'] = $infos_nom['famille'];
|
|
|
457 |
}
|
|
|
458 |
} catch(Exception $e) {
|
|
|
459 |
// échec silencieux
|
|
|
460 |
}
|
|
|
461 |
}
|
|
|
462 |
}
|
3072 |
mathias |
463 |
|
3715 |
idir |
464 |
private function traiterProjetTags() {
|
|
|
465 |
if (strpos($this->projet, ',') === false) {
|
|
|
466 |
$this->projetTags = array('Projets coopératifs>'.$this->projet);
|
|
|
467 |
} else {
|
|
|
468 |
$projetTagsTxt = explode(',', $this->projet);
|
|
|
469 |
foreach ($projetTagsTxt as $tag) {
|
|
|
470 |
$this->projetTags[] = 'Projets coopératifs>'.$tag;
|
|
|
471 |
}
|
|
|
472 |
}
|
|
|
473 |
}
|
3072 |
mathias |
474 |
|
3715 |
idir |
475 |
private function traiterTagObs($requeteDonnees) {
|
|
|
476 |
if (array_key_exists('tag-obs', $requeteDonnees) && $requeteDonnees['tag-obs'] != '') {
|
|
|
477 |
$this->tagsObs = explode(',', $requeteDonnees['tag-obs']);
|
|
|
478 |
}
|
|
|
479 |
foreach ($this->projetTags as $tag) {
|
|
|
480 |
$this->tagsObs[] = $tag;
|
|
|
481 |
}
|
|
|
482 |
}
|
1896 |
jpm |
483 |
|
3715 |
idir |
484 |
private function traiterTagImg($requeteDonnees) {
|
|
|
485 |
if (array_key_exists('tag-img', $requeteDonnees) && $requeteDonnees['tag-img'] != '') {
|
|
|
486 |
$this->tagsImg = explode(',', $requeteDonnees['tag-img']);
|
|
|
487 |
}
|
|
|
488 |
foreach ($this->projetTags as $tag) {
|
|
|
489 |
$this->tagsImg[] = $tag;
|
|
|
490 |
}
|
|
|
491 |
}
|
1896 |
jpm |
492 |
|
3715 |
idir |
493 |
private function ajouterChampsEtendusObs($obs_ids, $obs_a_champs_etendus) {
|
|
|
494 |
$champs_etendus_obs = array();
|
|
|
495 |
$gestionChampsEtendus = new GestionChampsEtendus($this->config, 'obs');
|
1896 |
jpm |
496 |
|
3715 |
idir |
497 |
foreach ($obs_ids as $id_obs) {
|
|
|
498 |
$champs = array_shift($obs_a_champs_etendus);
|
|
|
499 |
if ($champs != null && is_array($champs)) {
|
|
|
500 |
foreach ($champs as $infosChamp) {
|
|
|
501 |
$cle = isset($infosChamp['cle']) ? $infosChamp['cle'] : '';
|
|
|
502 |
$valeur = isset($infosChamp['valeur']) ? $infosChamp['valeur'] : '';
|
1565 |
jpm |
503 |
|
3715 |
idir |
504 |
if (!empty($cle) && $valeur !== '') {
|
|
|
505 |
$champEtendu = new ObsEtendue();
|
|
|
506 |
$champEtendu->id = $id_obs;
|
|
|
507 |
$champEtendu->cle = $cle;
|
|
|
508 |
$champEtendu->valeur = $valeur;
|
1565 |
jpm |
509 |
|
3715 |
idir |
510 |
$champs_etendus_obs[] = $champEtendu;
|
|
|
511 |
}
|
|
|
512 |
}
|
|
|
513 |
}
|
|
|
514 |
}
|
1565 |
jpm |
515 |
|
1903 |
raphael |
516 |
if(! $champs_etendus_obs) return TRUE;
|
|
|
517 |
|
3715 |
idir |
518 |
return $gestionChampsEtendus->ajouterParLots($champs_etendus_obs, $this->projet);
|
|
|
519 |
}
|
1565 |
jpm |
520 |
|
3715 |
idir |
521 |
private function traiterImagesALierAObs($idObs, $obs) {
|
|
|
522 |
$imgAAjouter = array();
|
|
|
523 |
if (is_array($obs['image_nom'])) {
|
|
|
524 |
foreach ($obs['image_nom'] as $index => $nom_image) {
|
|
|
525 |
$image = array();
|
|
|
526 |
$image['id_utilisateur'] = $this->userId;
|
|
|
527 |
$image['id_obs'] = $idObs;
|
|
|
528 |
$image['nom'] = $nom_image;
|
|
|
529 |
// on suppose que les b64 des images sont envoyés dans le même ordre que leurs noms
|
|
|
530 |
// TODO: indexer le tableau avec le nom des images
|
|
|
531 |
$image['b64'] = (is_array($obs['image_b64']) && isset($obs['image_b64'][$index])) ? $obs['image_b64'][$index] : null;
|
|
|
532 |
$this->debug[] = 'Contient B64 : '.(isset($obs['image_b64']) ? 'oui' : 'non');
|
|
|
533 |
$imgAAjouter[] = $image;
|
|
|
534 |
}
|
|
|
535 |
} else {
|
|
|
536 |
$image = array();
|
|
|
537 |
$image['id_utilisateur'] = $this->userId;
|
|
|
538 |
$image['id_obs'] = $idObs;
|
|
|
539 |
$image['nom'] = $obs['image_nom'];
|
|
|
540 |
$image['b64'] = $obs['image_b64'] ?? null;
|
|
|
541 |
$this->debug[] = 'Contient B64 : '.(isset($obs['image_b64']) ? 'oui' : 'non');
|
|
|
542 |
$imgAAjouter[] = $image;
|
|
|
543 |
}
|
1565 |
jpm |
544 |
|
3715 |
idir |
545 |
return $imgAAjouter;
|
|
|
546 |
}
|
1565 |
jpm |
547 |
|
3715 |
idir |
548 |
protected function stockerImagesEtLierAObs($id_obs, $img) {
|
|
|
549 |
$img_a_taguer_ids_noms = array();
|
|
|
550 |
foreach ($img as $image) {
|
|
|
551 |
$image['nom'] = trim(rtrim($image['nom'], "'"), "'");
|
|
|
552 |
$nomFichierImg = $this->traiterNomFichierImage($image['nom']);
|
|
|
553 |
$cheminImage = $this->config['cel']['chemin_stockage_temp']."/$nomFichierImg";
|
|
|
554 |
// Si l'image est transmise en base 64
|
|
|
555 |
if (isset($image['b64'])) {
|
|
|
556 |
$this->transformerBase64enFichier($cheminImage, $image['b64']);
|
|
|
557 |
}
|
1565 |
jpm |
558 |
|
3715 |
idir |
559 |
$this->debug[] = 'Nom fichier img debut :'.$nomFichierImg;
|
|
|
560 |
$idImg = $this->ajouterImageSurDdEtBdd($id_obs, $cheminImage, $nomFichierImg);
|
|
|
561 |
if ($idImg !== false) {
|
|
|
562 |
$img_a_taguer_ids_noms[$idImg] = $nomFichierImg;
|
|
|
563 |
if (isset($image['tags'])) {
|
|
|
564 |
$this->correspondanceIdImgTags[$idImg] = $image['tags'];
|
|
|
565 |
}
|
|
|
566 |
} else {
|
|
|
567 |
// L'image n'a pas pu être écrite.
|
|
|
568 |
// On annule l'écriture des précédentes et on s'arrête là - la transaction
|
|
|
569 |
// se chargera de les retirer de la base de données
|
|
|
570 |
foreach (array_keys($img_a_taguer_ids_noms) as $idImageASupprimer) {
|
|
|
571 |
$this->effacerImageDuDd($idImageASupprimer);
|
|
|
572 |
}
|
|
|
573 |
$img_a_taguer_ids_noms = array();
|
|
|
574 |
break;
|
|
|
575 |
}
|
|
|
576 |
}
|
|
|
577 |
return $img_a_taguer_ids_noms;
|
|
|
578 |
}
|
1565 |
jpm |
579 |
|
3715 |
idir |
580 |
private function supprimerSlashesProfond($valeur) {
|
|
|
581 |
$valeur = is_array($valeur) ? array_map(array($this, 'supprimerSlashesProfond'), $valeur) : stripslashes($valeur);
|
|
|
582 |
return $valeur;
|
|
|
583 |
}
|
1350 |
aurelien |
584 |
|
3715 |
idir |
585 |
/**
|
|
|
586 |
* Transforme une date au format français (jj/mm/aaaa) dans un format Mysql (aaaa-mm-jj).
|
|
|
587 |
* @param string $dateFr date au format français (jj/mm/aaaa)
|
|
|
588 |
* @return string date au format Mysql (aaaa-mm-jj)
|
|
|
589 |
*/
|
|
|
590 |
private function transormerDateFrVersMysql($dateFr) {
|
|
|
591 |
$dateMysql = '0000-00-00';
|
|
|
592 |
$morceauxDate = explode('/', $dateFr);
|
|
|
593 |
if (count($morceauxDate) == 3) {
|
|
|
594 |
$dateMysql = implode('-', array_reverse($morceauxDate));
|
|
|
595 |
}
|
|
|
596 |
return $dateMysql;
|
|
|
597 |
}
|
1068 |
jpm |
598 |
|
3715 |
idir |
599 |
private function taguerObs($obs_a_taguer_ids) {
|
|
|
600 |
if (count($obs_a_taguer_ids) > 0) {
|
|
|
601 |
foreach ($this->tagsObs as $hierarchieTag) {
|
|
|
602 |
$tagsALier = explode('>', $hierarchieTag);
|
|
|
603 |
$liaisonOk = $this->lierObsAMotsCles($obs_a_taguer_ids, $tagsALier);
|
|
|
604 |
if ($liaisonOk === false) {
|
|
|
605 |
$e = "Toutes les observations n'ont pas pu être liées aux mots-clés : $hierarchieTag";
|
|
|
606 |
$this->messages[] = $e;
|
|
|
607 |
}
|
|
|
608 |
}
|
|
|
609 |
}
|
|
|
610 |
}
|
1350 |
aurelien |
611 |
|
3715 |
idir |
612 |
private function lierObsAMotsCles($observations_ids, $tags) {
|
|
|
613 |
// pas de mots clés pour les non-inscrits
|
|
|
614 |
if ($this->userId == null) {
|
|
|
615 |
$this->userId = 0;
|
|
|
616 |
}
|
3520 |
killian |
617 |
|
3715 |
idir |
618 |
$chemin_parent = '/';
|
|
|
619 |
$listeIdsTags = array();
|
|
|
620 |
foreach ($tags as $tag) {
|
|
|
621 |
$tag = $this->nettoyerTag($tag);
|
|
|
622 |
if ($tag != '') {
|
|
|
623 |
$id_mot_cle = $this->gestionMotsClesObs->insererParCheminSiInexistant($tag, $chemin_parent, $this->userId);
|
|
|
624 |
if ($id_mot_cle !== false) {
|
|
|
625 |
$listeIdsTags[] = $id_mot_cle;
|
|
|
626 |
$chemin_parent .= $tag."/";
|
|
|
627 |
}
|
|
|
628 |
}
|
|
|
629 |
}
|
1400 |
aurelien |
630 |
|
3715 |
idir |
631 |
$liaison_ok = $this->gestionMotsClesObs->lierParTableaux($listeIdsTags, $observations_ids);
|
|
|
632 |
return $liaison_ok;
|
|
|
633 |
}
|
1068 |
jpm |
634 |
|
3715 |
idir |
635 |
private function taguerImg($img_a_taguer_ids) {
|
|
|
636 |
if (count($img_a_taguer_ids) > 0) {
|
|
|
637 |
$this->debug[] = "Tags img : ".print_r($this->tagsImg, true);
|
|
|
638 |
foreach ($this->tagsImg as $hierarchieTag) {
|
|
|
639 |
$tagsALier = explode('>', $hierarchieTag);
|
|
|
640 |
$liaisonOk = $this->lierImgAMotsCles($img_a_taguer_ids, $tagsALier);
|
|
|
641 |
if ($liaisonOk === false) {
|
|
|
642 |
$e = "Toutes les images n'ont pas pu être liées aux mots-clés : $hierarchieTag";
|
|
|
643 |
$this->messages[] = $e;
|
|
|
644 |
}
|
|
|
645 |
}
|
|
|
646 |
}
|
|
|
647 |
// Liaison des tags spécifiques à chaque image s'il y en a
|
|
|
648 |
if (count($this->correspondanceIdImgTags) > 0) {
|
|
|
649 |
foreach ($this->correspondanceIdImgTags as $id_img => $tags) {
|
|
|
650 |
if ($tags != null && !empty($tags)) {
|
|
|
651 |
$this->lierImgAMotsCles(array($id_img), $tags);
|
|
|
652 |
}
|
|
|
653 |
}
|
|
|
654 |
}
|
|
|
655 |
}
|
1350 |
aurelien |
656 |
|
3715 |
idir |
657 |
private function lierImgAMotsCles($images_ids, $tags) {
|
|
|
658 |
// pas de mots clés pour les non-inscrits
|
|
|
659 |
if ($this->userId == null) {
|
|
|
660 |
$this->userId = 0;
|
|
|
661 |
}
|
3520 |
killian |
662 |
|
3715 |
idir |
663 |
$chemin_parent = "/";
|
|
|
664 |
$listeIdsTags = array();
|
|
|
665 |
foreach ($tags as $tag) {
|
|
|
666 |
$tag = $this->nettoyerTag($tag);
|
|
|
667 |
if ($tag != '') {
|
|
|
668 |
$id_mot_cle = $this->gestionMotsClesImages->insererParCheminSiInexistant($tag, $chemin_parent, $this->userId);
|
|
|
669 |
if ($id_mot_cle !== false) {
|
|
|
670 |
$listeIdsTags[] = $id_mot_cle;
|
|
|
671 |
$chemin_parent .= $tag."/";
|
|
|
672 |
}
|
|
|
673 |
}
|
|
|
674 |
}
|
|
|
675 |
$liaison_ok = $this->gestionMotsClesImages->lierParTableaux($listeIdsTags, $images_ids);
|
|
|
676 |
return $liaison_ok;
|
|
|
677 |
}
|
1350 |
aurelien |
678 |
|
3715 |
idir |
679 |
private function nettoyerTag($tag) {
|
|
|
680 |
$tag = trim($tag);
|
|
|
681 |
$tag = preg_replace('/(?:\s+|[,]+)/', ' ', $tag);
|
|
|
682 |
return $tag;
|
|
|
683 |
}
|
1350 |
aurelien |
684 |
|
3715 |
idir |
685 |
private function traiterNomFichierImage($fichierNom) {
|
|
|
686 |
$fichierNom = preg_replace('/[.](jpeg|jpg)$/i', '.jpg', strtolower(trim($fichierNom)));
|
3743 |
delphine |
687 |
|
3715 |
idir |
688 |
return $fichierNom;
|
|
|
689 |
}
|
1068 |
jpm |
690 |
|
3715 |
idir |
691 |
/**
|
|
|
692 |
* Décode l'image en base64,enregistre celle-ci sous forme de fichier du type de l'image
|
|
|
693 |
* dans un dossier temporaire.
|
|
|
694 |
*/
|
|
|
695 |
private function transformerBase64enFichier($cheminImage, $imageInfosB64) {
|
|
|
696 |
// Enleve la partie data:image qui permet la previsalisation pour firefox de l'image en base64
|
|
|
697 |
$imageBase64 = explode(';', $imageInfosB64);
|
|
|
698 |
$dataBase64 = explode(',',$imageBase64[1]);
|
|
|
699 |
$dataImg = base64_decode($dataBase64[1]);
|
1068 |
jpm |
700 |
|
3715 |
idir |
701 |
$imageRessource = fopen($cheminImage, 'wb');
|
|
|
702 |
fwrite($imageRessource, $dataImg);
|
|
|
703 |
fclose($imageRessource);
|
1068 |
jpm |
704 |
|
3715 |
idir |
705 |
if (file_exists($cheminImage) == false) {
|
|
|
706 |
$this->messages[] = "Erreur lors de la création du fichier";
|
|
|
707 |
}
|
|
|
708 |
}
|
1068 |
jpm |
709 |
|
3715 |
idir |
710 |
/**
|
|
|
711 |
* Supprime toutes les images temporaires dont :
|
|
|
712 |
* - l'ancienneté est supérieure à DUREE_DE_VIE_IMG (si $nomsDeFichiers est vide, par défaut)
|
|
|
713 |
* - le nom correspond à un des éléments du tableau $nomsDeFichiers (s'il est spécifié et non vide)
|
|
|
714 |
*/
|
|
|
715 |
protected function nettoyerImagesUploades($nomsDeFichiers = array()) {
|
|
|
716 |
$dossierStockage = $this->config['cel']['chemin_stockage_temp'].'/';
|
|
|
717 |
if (is_dir($dossierStockage)) {
|
|
|
718 |
$objets = scandir($dossierStockage);
|
|
|
719 |
if (is_array($objets)) {
|
|
|
720 |
foreach ($objets as $objet) {
|
|
|
721 |
$chemin = $dossierStockage . $objet;
|
|
|
722 |
if (is_file($chemin)) {
|
|
|
723 |
// critère de suppression
|
|
|
724 |
if (count($nomsDeFichiers) > 0) {
|
|
|
725 |
$suppression = in_array($objet, $nomsDeFichiers);
|
|
|
726 |
} else {
|
|
|
727 |
$filemtime = @filemtime($chemin);
|
|
|
728 |
if ($filemtime !== false) {
|
|
|
729 |
$suppression = (time() - $filemtime >= self::DUREE_DE_VIE_IMG) ? true : false;
|
|
|
730 |
}
|
|
|
731 |
}
|
|
|
732 |
// suppression
|
|
|
733 |
if ($suppression === true) {
|
|
|
734 |
unlink($chemin);
|
|
|
735 |
}
|
|
|
736 |
}
|
|
|
737 |
}
|
|
|
738 |
}
|
|
|
739 |
}
|
|
|
740 |
}
|
1350 |
aurelien |
741 |
|
3715 |
idir |
742 |
/**
|
|
|
743 |
* Ajoute une image dans la base de données et stocke le fichier en fabriquant les miniatures,
|
|
|
744 |
* renvoie le nouvel id d'image en cas de succès
|
|
|
745 |
*
|
|
|
746 |
* @param string $id_obs l'id de l'obs
|
|
|
747 |
* @param string $cheminImage le chemin vers le fichier original de l'image
|
|
|
748 |
* @param string $nomFichierImage le nom du fichier original de l'image
|
|
|
749 |
*/
|
|
|
750 |
public function ajouterImageSurDdEtBdd($id_obs, $cheminImage, $nomFichierImage) {
|
|
|
751 |
$idImage = false;
|
|
|
752 |
if (file_exists($cheminImage)) {
|
|
|
753 |
$extracteurMetadonnees = new ExtracteurMetadonnees();
|
|
|
754 |
$metadonnees = $extracteurMetadonnees->extraireMetadonnees($cheminImage);
|
|
|
755 |
if ($metadonnees !== false) {
|
|
|
756 |
$infosImage = array();
|
|
|
757 |
$infosImage['date_shot'] = $metadonnees['date_shot'];
|
|
|
758 |
$infosImage['size'] = $metadonnees['size'];
|
|
|
759 |
$infosImage['occurrence_id'] = $id_obs;
|
|
|
760 |
$infosImage['original_name'] = $nomFichierImage;
|
|
|
761 |
$infosImage['user_id'] = $this->userId;
|
|
|
762 |
$infosImage['user_email'] = $this->userEmail;
|
|
|
763 |
$infosImage['user_pseudo'] = $this->userIntitule;
|
|
|
764 |
$infosImage['content_url'] = $cheminImage;
|
|
|
765 |
$infosImage['mime_type'] = mime_content_type($cheminImage);
|
|
|
766 |
// $infosImage['md5'] = md5_file($cheminImage);
|
|
|
767 |
$infosImage['date_created'] = 'NOW()';
|
|
|
768 |
$infosImage['date_updated'] = 'NOW()';
|
|
|
769 |
$infosImage['date_linked_to_occurrence'] = 'NOW()';
|
|
|
770 |
$this->debug[] = 'Nom fichier img meta :'.$nomFichierImage;
|
|
|
771 |
$requete = $this->construireRequeteInsertionImage($infosImage);
|
|
|
772 |
$resultat = Cel::db()->executer($requete);
|
|
|
773 |
if ($resultat !== false) {
|
3743 |
delphine |
774 |
$idImage = $this->traiterEtRecupererIdImage($nomFichierImage, $id_obs);
|
3715 |
idir |
775 |
if ($idImage !== false) {
|
|
|
776 |
$infosImage['url'] = 'https://api.tela-botanica.org/img:'.str_pad($idImage, 9, '0', STR_PAD_LEFT).'O';
|
1350 |
aurelien |
777 |
|
3715 |
idir |
778 |
$manipulateurImage = new ImageRecreation($this->config);
|
|
|
779 |
// Stocke le fichier en conservant les fichiers temporaires, ce qui permet de réessayer
|
|
|
780 |
// de les traiter en cas d'échec de la totalité du processus de traitement de l'obs
|
|
|
781 |
$stockageOk = $manipulateurImage->stockerFichierOriginal($cheminImage, $idImage, true);
|
|
|
782 |
if ($stockageOk) {
|
|
|
783 |
$miniatureChemin = str_replace('.jpg', '_min.jpg', $cheminImage);
|
|
|
784 |
if (file_exists($miniatureChemin)) {
|
|
|
785 |
if (@unlink($miniatureChemin) === false) {
|
|
|
786 |
$this->messages[] = "La miniature de l'image n'a pu être supprimée.";
|
|
|
787 |
}
|
|
|
788 |
}
|
3924 |
delphine |
789 |
$contentUrl = $manipulateurImage->obtenirCheminImageOriginale($idImage);
|
|
|
790 |
$this->modifierContentUrlPhoto($idImage, $contentUrl);
|
1068 |
jpm |
791 |
|
3715 |
idir |
792 |
} else {
|
|
|
793 |
$this->messages[] = "Une erreur s'est produite lors du stockage du fichier.";
|
|
|
794 |
// Remise à zéro d'idImage pour que l'erreur ne soit pas ignorée par l'appelant
|
|
|
795 |
$idImage = false;
|
|
|
796 |
}
|
|
|
797 |
} else {
|
|
|
798 |
$this->messages[] = "Impossible d'obtenir le nouvel identifiant de l'image";
|
|
|
799 |
}
|
|
|
800 |
} else {
|
|
|
801 |
$this->messages[] = "Echec de l'insertion dans la base de donnees des informations de l'image.";
|
|
|
802 |
}
|
|
|
803 |
} else {
|
|
|
804 |
$this->messages[] = "Erreur lors de l'extraction des metadonnées.";
|
|
|
805 |
}
|
|
|
806 |
} else {
|
|
|
807 |
$this->messages[] = "L'image originale est introuvable sur le serveur.";
|
|
|
808 |
}
|
|
|
809 |
return $idImage;
|
|
|
810 |
}
|
2370 |
mathias |
811 |
|
3924 |
delphine |
812 |
protected function modifierContentUrlPhoto($id_image, $chemin){
|
|
|
813 |
$requete = 'UPDATE photo'
|
|
|
814 |
. ' SET content_url = ' . Cel::db()->proteger($chemin)
|
|
|
815 |
. ' WHERE id = ' . Cel::db()->proteger($id_image);
|
|
|
816 |
$resultat = Cel::db()->requeter($requete);
|
|
|
817 |
}
|
3715 |
idir |
818 |
/**
|
|
|
819 |
* Supprime une image du disque dur. Ne touche pas à la base de données, on considère
|
|
|
820 |
* que c'est le rôle de la transaction d'annuler les écritures en cas de problème
|
|
|
821 |
*
|
|
|
822 |
* @param Integer $idImageASupprimer
|
|
|
823 |
* @return boolean $ok true si la suppression s'est bien passée, false s'il reste au moins un fichier
|
|
|
824 |
*/
|
|
|
825 |
protected function effacerImageDuDd($idImageASupprimer) {
|
|
|
826 |
$manipulateurImage = new ImageRecreation($this->config);
|
|
|
827 |
$ok = $manipulateurImage->detruireImageSurDisque($idImageASupprimer);
|
2370 |
mathias |
828 |
|
3715 |
idir |
829 |
return $ok;
|
|
|
830 |
}
|
1068 |
jpm |
831 |
|
3743 |
delphine |
832 |
private function traiterEtRecupererIdImage($original_name, $id_obs) {
|
3715 |
idir |
833 |
$original_name = Cel::db()->proteger($original_name);
|
3743 |
delphine |
834 |
$id_obs = Cel::db()->proteger($id_obs);
|
|
|
835 |
|
3715 |
idir |
836 |
$requete = 'SELECT id '.
|
|
|
837 |
'FROM photo '.
|
3743 |
delphine |
838 |
"WHERE occurrence_id = ".$id_obs.
|
3715 |
idir |
839 |
" AND original_name = $original_name ";
|
|
|
840 |
$resultat = Cel::db()->requeter($requete);
|
|
|
841 |
$id_image = $resultat[0]['id'] ?? false;
|
3561 |
killian |
842 |
|
3715 |
idir |
843 |
if ($id_image) {
|
|
|
844 |
$full_id_image = str_pad($id_image, 9, '0', STR_PAD_LEFT) . 'O';
|
|
|
845 |
$image_url = sprintf($this->config['settings']['celImgUrlTpl'], $full_id_image);
|
|
|
846 |
$requete = 'UPDATE photo'
|
|
|
847 |
. ' SET url = ' . Cel::db()->proteger($image_url)
|
|
|
848 |
. ' WHERE id = ' . Cel::db()->proteger($id_image);
|
|
|
849 |
$resultat = Cel::db()->requeter($requete);
|
|
|
850 |
}
|
3561 |
killian |
851 |
|
3715 |
idir |
852 |
return $id_image;
|
1068 |
jpm |
853 |
|
3715 |
idir |
854 |
}
|
1068 |
jpm |
855 |
|
3715 |
idir |
856 |
private function construireRequeteInsertionImage($informations) {
|
|
|
857 |
$champs = array();
|
|
|
858 |
$valeurs = array();
|
|
|
859 |
foreach ($informations as $champ => $valeur) {
|
|
|
860 |
$champs[] = $champ;
|
|
|
861 |
if (is_null($valeur)) {
|
|
|
862 |
$valeurs[$champ] = 'NULL';
|
|
|
863 |
} else if ($valeur === 'NOW()') {
|
|
|
864 |
$valeurs[$champ] = $valeur;
|
|
|
865 |
} else {
|
|
|
866 |
$valeurs[$champ] = Cel::db()->proteger($valeur);
|
|
|
867 |
}
|
|
|
868 |
}
|
|
|
869 |
$champsConcat = implode(', ', $champs);
|
|
|
870 |
$valeursConcat = implode(', ', $valeurs);
|
1068 |
jpm |
871 |
|
3715 |
idir |
872 |
$requete = "INSERT INTO photo ($champsConcat) VALUES ($valeursConcat) ".
|
|
|
873 |
' -- '.__FILE__.':'.__LINE__;
|
|
|
874 |
return $requete;
|
|
|
875 |
}
|
3019 |
killian |
876 |
}
|