712 |
jpm |
1 |
<?php
|
|
|
2 |
// declare(encoding='UTF-8');
|
|
|
3 |
/**
|
|
|
4 |
* Widget fournissant des interfaces de saisies simplifiée pour différent projets.
|
|
|
5 |
* Encodage en entrée : utf8
|
|
|
6 |
* Encodage en sortie : utf8
|
|
|
7 |
*
|
|
|
8 |
* Cas d'utilisation et documentation :
|
|
|
9 |
* @link http://www.tela-botanica.org/wikini/eflore/wakka.php?wiki=AideCELWidgetSaisie
|
|
|
10 |
*
|
|
|
11 |
* Paramètres :
|
|
|
12 |
* ===> projet = chaine [par défaut : Biodiversite34]
|
|
|
13 |
* Indique quel projet nous voulons charger
|
|
|
14 |
*
|
|
|
15 |
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
|
|
16 |
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
|
|
|
17 |
* @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
|
|
|
18 |
* @version $Id$
|
|
|
19 |
* @copyright Copyright (c) 2010, Tela Botanica (accueil@tela-botanica.org)
|
|
|
20 |
*/
|
|
|
21 |
class Saisie extends WidgetCommun {
|
1050 |
jpm |
22 |
|
712 |
jpm |
23 |
const DS = DIRECTORY_SEPARATOR;
|
1345 |
aurelien |
24 |
const PROJET_DEFAUT = 'defaut';
|
1050 |
jpm |
25 |
const WS_SAISIE = "CelWidgetSaisie";
|
1345 |
aurelien |
26 |
const WS_NOM = "noms";
|
1476 |
aurelien |
27 |
private $NS_PROJET_VERSION = "1.01";
|
1345 |
aurelien |
28 |
const EFLORE_API_VERSION = "0.1";
|
1476 |
aurelien |
29 |
private $NS_PROJET = "bdtfx";
|
1050 |
jpm |
30 |
|
1476 |
aurelien |
31 |
private $projetsVersions = array();
|
719 |
jpm |
32 |
private $projet = null;
|
|
|
33 |
private $configProjet = null;
|
1050 |
jpm |
34 |
|
712 |
jpm |
35 |
/**
|
|
|
36 |
* Méthode appelée par défaut pour charger ce widget.
|
|
|
37 |
*/
|
|
|
38 |
public function executer() {
|
|
|
39 |
$retour = null;
|
|
|
40 |
extract($this->parametres);
|
|
|
41 |
|
1345 |
aurelien |
42 |
$this->projet = isset($projet) ? $projet : self::PROJET_DEFAUT;
|
719 |
jpm |
43 |
$this->chargerConfigProjet();
|
1476 |
aurelien |
44 |
$this->chargerProjetsVersion();
|
1050 |
jpm |
45 |
|
1345 |
aurelien |
46 |
$service = isset($service) ? $service : 'widget';
|
719 |
jpm |
47 |
$methode = $this->traiterNomMethodeExecuter($service);
|
712 |
jpm |
48 |
if (method_exists($this, $methode)) {
|
|
|
49 |
$retour = $this->$methode();
|
|
|
50 |
} else {
|
|
|
51 |
$this->messages[] = "Ce type de service '$methode' n'est pas disponible.";
|
|
|
52 |
}
|
|
|
53 |
|
1050 |
jpm |
54 |
$contenu = null;
|
|
|
55 |
$mime = null;
|
|
|
56 |
if (is_array($retour) && array_key_exists('squelette', $retour)) {
|
719 |
jpm |
57 |
$ext = (isset($retour['squelette_ext'])) ? $retour['squelette_ext'] : '.tpl.html';
|
1475 |
aurelien |
58 |
if($this->projetASquelette()) {
|
|
|
59 |
$squelette = dirname(__FILE__).self::DS.'squelettes'.self::DS.$this->projet.self::DS.$retour['squelette'].$ext;
|
|
|
60 |
} else {
|
|
|
61 |
$squelette = dirname(__FILE__).self::DS.'squelettes'.self::DS.'defaut'.self::DS.'defaut'.$ext;
|
|
|
62 |
}
|
712 |
jpm |
63 |
$contenu = $this->traiterSquelettePhp($squelette, $retour['donnees']);
|
1050 |
jpm |
64 |
$mime = isset($retour['mime']) ? $retour['mime'] : null;
|
|
|
65 |
} else {
|
|
|
66 |
if (count($this->messages) == 0) {
|
|
|
67 |
$this->messages[] = "La méthode du sous-service ne renvoie pas les données dans le bon format.";
|
|
|
68 |
}
|
|
|
69 |
$contenu = 'Un problème est survenu : '.print_r($this->messages, true);
|
712 |
jpm |
70 |
}
|
1050 |
jpm |
71 |
|
|
|
72 |
$this->envoyer($contenu, $mime);
|
712 |
jpm |
73 |
}
|
1050 |
jpm |
74 |
|
719 |
jpm |
75 |
private function chargerConfigProjet() {
|
|
|
76 |
$fichier_config = dirname(__FILE__).self::DS.'configurations'.self::DS.$this->projet.'.ini';
|
|
|
77 |
if (file_exists($fichier_config)) {
|
|
|
78 |
if (!$this->configProjet = parse_ini_file($fichier_config)) {
|
|
|
79 |
$this->messages[] = "Le fichier ini '$fichier_config' du projet n'a pu être chargé.";
|
1050 |
jpm |
80 |
}
|
719 |
jpm |
81 |
} else {
|
1345 |
aurelien |
82 |
$this->debug[] = "Le fichier ini '$fichier_config' du projet n'existe pas.";
|
719 |
jpm |
83 |
}
|
|
|
84 |
}
|
1476 |
aurelien |
85 |
|
|
|
86 |
private function chargerProjetsVersion() {
|
|
|
87 |
foreach ($this->configProjet as $config => $valeur) {
|
|
|
88 |
if(strstr($config,'.version')) {
|
|
|
89 |
$this->projetsVersions[str_replace('.version', '', $config)] = $valeur;
|
|
|
90 |
}
|
|
|
91 |
}
|
|
|
92 |
}
|
1050 |
jpm |
93 |
|
1345 |
aurelien |
94 |
public function executerWidget() {
|
1476 |
aurelien |
95 |
$referentiel_impose = false;
|
|
|
96 |
if(isset($_GET['referentiel']) && $_GET['referentiel'] != '') {
|
|
|
97 |
$this->NS_PROJET = isset($_GET['referentiel']) && $_GET['referentiel'] != '' ? $_GET['referentiel'] : $this->NS_PROJET;
|
|
|
98 |
$this->NS_PROJET_VERSION = $this->projetsVersions[$this->NS_PROJET];
|
|
|
99 |
$referentiel_impose = true;
|
|
|
100 |
}
|
|
|
101 |
|
1050 |
jpm |
102 |
$widget['squelette'] = $this->projet;
|
|
|
103 |
$widget['donnees'] = array();
|
|
|
104 |
$widget['donnees']['url_base'] = sprintf($this->config['chemins']['baseURLAbsoluDyn'], '');
|
|
|
105 |
$widget['donnees']['url_ws_saisie'] = sprintf($this->config['chemins']['baseURLServicesCelTpl'], self::WS_SAISIE);
|
1516 |
aurelien |
106 |
|
|
|
107 |
$widget['donnees']['logo'] = isset($_GET['logo']) ? $_GET['logo'] : 'defaut';
|
|
|
108 |
$widget['donnees']['titre'] = isset($_GET['titre']) ? $_GET['titre'] : 'defaut';
|
|
|
109 |
$widget['donnees']['titre'] = ($widget['donnees']['titre'] == '0') ? '' : $widget['donnees']['titre'];
|
|
|
110 |
|
1475 |
aurelien |
111 |
// cas du projet par défaut ou bien d'un projet n'ayant pas de squelette spécifique
|
|
|
112 |
if ($this->projet == 'defaut' || !$this->projetASquelette()) {
|
1345 |
aurelien |
113 |
$urlWsNsTpl = $this->config['chemins']['baseURLServicesEfloreTpl'];
|
1476 |
aurelien |
114 |
$urlWsNs = sprintf($urlWsNsTpl, self::EFLORE_API_VERSION, $this->NS_PROJET, self::WS_NOM);
|
|
|
115 |
$urlWsNsSansRef = sprintf($urlWsNsTpl, self::EFLORE_API_VERSION, '{referentiel}', self::WS_NOM);
|
1345 |
aurelien |
116 |
$widget['donnees']['url_ws_autocompletion_ns'] = $urlWsNs;
|
1476 |
aurelien |
117 |
$widget['donnees']['url_ws_autocompletion_ns_tpl'] = $urlWsNsSansRef;
|
|
|
118 |
$widget['donnees']['ns_referentiel'] = $this->NS_PROJET.':'.$this->NS_PROJET_VERSION;
|
|
|
119 |
$widget['donnees']['ns_projet'] = $this->NS_PROJET;
|
|
|
120 |
$widget['donnees']['ns_version'] = $this->NS_PROJET_VERSION;
|
|
|
121 |
$widget['donnees']['referentiel_impose'] = $referentiel_impose;
|
|
|
122 |
$widget['donnees']['projets_versions'] = $this->projetsVersions;
|
1418 |
aurelien |
123 |
if(self::especeEstImposee()) {
|
|
|
124 |
$nom = self::executerChargementInfosTaxon($_GET['num_nom']);
|
|
|
125 |
$widget['donnees']['espece_imposee'] = true;
|
|
|
126 |
$widget['donnees']['nn_espece_defaut'] = $_GET['num_nom'];
|
1419 |
aurelien |
127 |
$widget['donnees']['nom_sci_espece_defaut'] = $nom['nom_sci'];
|
|
|
128 |
$widget['donnees']['infos_espece'] = $this->array2js($nom, true);
|
1418 |
aurelien |
129 |
} else {
|
|
|
130 |
$widget['donnees']['espece_imposee'] = false;
|
|
|
131 |
$widget['donnees']['nn_espece_defaut'] = '';
|
|
|
132 |
$widget['donnees']['nom_sci_espece_defaut'] = '';
|
1422 |
delphine |
133 |
$widget['donnees']['infos_espece'] = array();
|
1418 |
aurelien |
134 |
}
|
1345 |
aurelien |
135 |
} else {
|
|
|
136 |
$widget['donnees']['taxons'] = $this->recupererListeTaxon();
|
|
|
137 |
$widget['donnees']['milieux'] = $this->parserMilieux();
|
719 |
jpm |
138 |
}
|
1345 |
aurelien |
139 |
return $widget;
|
719 |
jpm |
140 |
}
|
1475 |
aurelien |
141 |
|
|
|
142 |
private function projetASquelette() {
|
|
|
143 |
// fonction très simple qui ne teste que si le dossier du projet courant
|
|
|
144 |
// existe, mais elle suffit pour le moment.
|
|
|
145 |
return file_exists(dirname(__FILE__).self::DS.'squelettes'.self::DS.$this->projet);
|
|
|
146 |
}
|
1050 |
jpm |
147 |
|
1345 |
aurelien |
148 |
public function executerTaxons() {
|
|
|
149 |
$widget['squelette'] = $this->projet.'_taxons';
|
|
|
150 |
$widget['squelette_ext'] = '.tpl.js';
|
|
|
151 |
$widget['donnees'] = array();
|
|
|
152 |
$taxons = $this->recupererListeTaxon();
|
|
|
153 |
$taxons_tries = array();
|
|
|
154 |
foreach ($taxons as $taxon) {
|
|
|
155 |
$taxons_tries[$taxon['num_nom_sel']] = $taxon;
|
|
|
156 |
}
|
|
|
157 |
$widget['donnees']['taxons'] = json_encode($taxons_tries);
|
|
|
158 |
return $widget;
|
|
|
159 |
}
|
|
|
160 |
|
|
|
161 |
private function recupererListeTaxon() {
|
|
|
162 |
$taxons = null;
|
|
|
163 |
$fichier_tsv = dirname(__FILE__).self::DS.'configurations'.self::DS.$this->projet.'_taxons.tsv';
|
|
|
164 |
if (file_exists($fichier_tsv) && is_readable($fichier_tsv)) {
|
712 |
jpm |
165 |
$taxons = $this->decomposerFichierTsv($fichier_tsv);
|
1345 |
aurelien |
166 |
$taxons = self::trierTableauMd($taxons, array('nom_fr' => SORT_ASC));
|
|
|
167 |
} else {
|
|
|
168 |
$this->debug[] = "Impossible d'ouvrir le fichier '$fichier_tsv'.";
|
|
|
169 |
}
|
|
|
170 |
return $taxons;
|
|
|
171 |
}
|
|
|
172 |
|
|
|
173 |
private function decomposerFichierTsv($fichier, $delimiter = "\t"){
|
|
|
174 |
$header = NULL;
|
|
|
175 |
$data = array();
|
|
|
176 |
if (($handle = fopen($fichier, 'r')) !== FALSE) {
|
|
|
177 |
while (($row = fgetcsv($handle, 1000, $delimiter)) !== FALSE) {
|
|
|
178 |
if (!$header) {
|
|
|
179 |
$header = $row;
|
|
|
180 |
} else {
|
|
|
181 |
$data[] = array_combine($header, $row);
|
|
|
182 |
}
|
|
|
183 |
}
|
|
|
184 |
fclose($handle);
|
|
|
185 |
}
|
|
|
186 |
return $data;
|
712 |
jpm |
187 |
}
|
1050 |
jpm |
188 |
|
1345 |
aurelien |
189 |
private function parserMilieux() {
|
1050 |
jpm |
190 |
$infosMilieux = array();
|
|
|
191 |
$milieux = explode('|', $this->configProjet['milieux']);
|
|
|
192 |
foreach ($milieux as $milieu) {
|
|
|
193 |
$details = explode(';', $milieu);
|
|
|
194 |
if (isset($details[1])) {
|
|
|
195 |
$infosMilieux[$details[0]] = $details[1];
|
|
|
196 |
} else {
|
|
|
197 |
$infosMilieux[$details[0]] = '';
|
|
|
198 |
}
|
|
|
199 |
}
|
1345 |
aurelien |
200 |
ksort($infosMilieux);
|
1050 |
jpm |
201 |
return $infosMilieux;
|
|
|
202 |
}
|
1418 |
aurelien |
203 |
|
|
|
204 |
private function especeEstImposee() {
|
|
|
205 |
return isset($_GET['num_nom']) && $_GET['num_nom'] != '';
|
|
|
206 |
}
|
|
|
207 |
|
|
|
208 |
private function executerChargementInfosTaxon($num_nom) {
|
1476 |
aurelien |
209 |
$url_service_infos = sprintf($this->config['chemins']['infosTaxonUrl'], $this->NS_PROJET, $num_nom);
|
1418 |
aurelien |
210 |
$infos = json_decode(file_get_contents($url_service_infos));
|
1419 |
aurelien |
211 |
$resultat = array();
|
|
|
212 |
if(isset($infos) && !empty($infos)) {
|
|
|
213 |
$infos = (array)$infos;
|
|
|
214 |
$resultat = (isset($infos['nom_sci']) && $infos['nom_sci'] != '') ? $infos : array();
|
|
|
215 |
}
|
1418 |
aurelien |
216 |
return $resultat;
|
|
|
217 |
}
|
1050 |
jpm |
218 |
|
1345 |
aurelien |
219 |
public function executerUploadImage() {
|
|
|
220 |
$retour = array(
|
|
|
221 |
'squelette' => $this->projet.'_image',
|
|
|
222 |
'squelette_ext' => '.tpl.xml',
|
|
|
223 |
'mime' => 'text/xml',
|
|
|
224 |
'donnees' => array(
|
|
|
225 |
'urlMiniature' => '',
|
|
|
226 |
'imageNom' => '',
|
|
|
227 |
'message' => '',
|
|
|
228 |
'debogage' => ''));
|
|
|
229 |
$message = '';
|
|
|
230 |
$debogage = '';
|
|
|
231 |
if ($_FILES['fichier']['error'] == UPLOAD_ERR_OK) {
|
|
|
232 |
if (is_uploaded_file($_FILES['fichier']['tmp_name'])) {
|
1355 |
aurelien |
233 |
if ($this->verifierFormatJpeg($_FILES['fichier']['tmp_name'])) {
|
1345 |
aurelien |
234 |
$dossierStockage = $this->config['chemins']['imagesTempDossier'];
|
|
|
235 |
|
|
|
236 |
$nomFichierOriginal = preg_replace('/[.](jpeg|jpg)$/i', '.jpg', strtolower($_FILES['fichier']['name']));
|
|
|
237 |
$originalChemin = $dossierStockage.$nomFichierOriginal;
|
|
|
238 |
$deplacementOk = move_uploaded_file($_FILES['fichier']['tmp_name'], $originalChemin);
|
|
|
239 |
|
|
|
240 |
if ($deplacementOk === true) {
|
|
|
241 |
$miniatureFichier = str_replace('.jpg', '_min.jpg', $nomFichierOriginal);
|
|
|
242 |
$miniatureChemin = $dossierStockage.$miniatureFichier;
|
|
|
243 |
|
|
|
244 |
// Parametres
|
|
|
245 |
$largeurIdeale = 100;
|
|
|
246 |
$hauteurIdeale = 100;
|
|
|
247 |
$qualite = 85;
|
|
|
248 |
|
|
|
249 |
// Calcul de la hauteur et de la largeur optimale de la miniature
|
|
|
250 |
$taillesImgOriginale = getimagesize($originalChemin);
|
|
|
251 |
$largeurOrigine = $taillesImgOriginale[0];
|
|
|
252 |
$hauteurOrigine = $taillesImgOriginale[1];
|
|
|
253 |
|
|
|
254 |
$largeurMin = $largeurIdeale;
|
|
|
255 |
$hauteurMin = (int) ($hauteurOrigine * ($largeurIdeale / $largeurOrigine));
|
|
|
256 |
if ($hauteurMin > $hauteurIdeale) {
|
|
|
257 |
$hauteurMin = $hauteurIdeale;
|
|
|
258 |
$largeurMin = (int)($largeurOrigine * ($hauteurMin / $hauteurOrigine));
|
|
|
259 |
}
|
|
|
260 |
|
|
|
261 |
// Création de la miniature
|
|
|
262 |
$imageOriginale = imagecreatefromjpeg($originalChemin);
|
|
|
263 |
$imageMiniature = imagecreatetruecolor($largeurMin, $hauteurMin);
|
|
|
264 |
$couleurFond = imagecolorallocate($imageMiniature, 255, 255, 255);
|
|
|
265 |
imagefill($imageMiniature, 0, 0, $couleurFond);
|
|
|
266 |
imagecopyresized($imageMiniature, $imageOriginale, 0, 0, 0, 0, $largeurMin, $hauteurMin, $largeurOrigine, $hauteurOrigine);
|
|
|
267 |
imagejpeg($imageMiniature, $miniatureChemin, $qualite);
|
|
|
268 |
imagedestroy($imageMiniature);
|
|
|
269 |
imagedestroy($imageOriginale);
|
|
|
270 |
|
|
|
271 |
// Retour des infos
|
|
|
272 |
$retour['donnees']['urlMiniature'] = sprintf($this->config['chemins']['imagesTempUrlTpl'], $miniatureFichier);
|
|
|
273 |
$retour['donnees']['imageNom'] = $nomFichierOriginal;
|
|
|
274 |
} else {
|
|
|
275 |
$message = "L'image n'a pu être déplacé sur le serveur.";
|
|
|
276 |
}
|
1475 |
aurelien |
277 |
} else {
|
1345 |
aurelien |
278 |
$message = "L'image n'est pas au format JPEG.";
|
|
|
279 |
}
|
|
|
280 |
} else {
|
|
|
281 |
$message = "L'image n'a pu être téléversée.";
|
|
|
282 |
$debogage = $message.print_r($_FILES, true);
|
|
|
283 |
}
|
|
|
284 |
} else {
|
|
|
285 |
if ($_FILES['fichier']['error'] == UPLOAD_ERR_FORM_SIZE) {
|
|
|
286 |
$message = "L'image téléversée excède la taille maximum autorisée.".
|
|
|
287 |
"Veuillez modifier votre image avant de la téléverser à nouveau.";
|
|
|
288 |
} else {
|
|
|
289 |
$message = "Une erreur de transfert a eu lieu (téléversement interrompu).";
|
|
|
290 |
}
|
|
|
291 |
$debogage = "Code erreur : {$_FILES['fichier']['error']}. ".
|
|
|
292 |
"Voir : http://php.net/manual/fr/features.file-upload.errors.php";
|
|
|
293 |
}
|
|
|
294 |
// Retour des infos
|
|
|
295 |
$retour['donnees']['message'] = $message;
|
|
|
296 |
$retour['donnees']['debogage'] = $debogage;
|
|
|
297 |
return $retour;
|
1050 |
jpm |
298 |
}
|
1355 |
aurelien |
299 |
|
|
|
300 |
// Il ne faut pas utiliser l'index type du tableau files pour tester
|
|
|
301 |
// si une image est en jpeg car le type renvoyé par les navigateurs
|
|
|
302 |
// peut varier (ex. sous ie qui renvoie image/pjpeg
|
|
|
303 |
private function verifierFormatJpeg($chemin) {
|
|
|
304 |
// get imagesize renvoie un résultat consistant par contre
|
|
|
305 |
$infos = getimagesize($chemin, $infos);
|
|
|
306 |
return (isset($infos["mime"]) && $infos["mime"] == "image/jpeg");
|
|
|
307 |
}
|
1419 |
aurelien |
308 |
|
|
|
309 |
private function array2js($array,$show_keys)
|
|
|
310 |
{
|
|
|
311 |
$dimensions = array();
|
|
|
312 |
$valeurs = array();
|
|
|
313 |
|
|
|
314 |
$total = count ($array)-1;
|
|
|
315 |
$i=0;
|
|
|
316 |
foreach($array as $key=>$value){
|
|
|
317 |
if (is_array($value)) {
|
|
|
318 |
$dimensions[$i] = array2js($value,$show_keys);
|
|
|
319 |
if ($show_keys) $dimensions[$i] = '"'.$key.'":'.$dimensions[$i];
|
|
|
320 |
} else {
|
|
|
321 |
$dimensions[$i] = '"'.addslashes($value).'"';
|
|
|
322 |
if ($show_keys) $dimensions[$i] = '"'.$key.'":'.$dimensions[$i];
|
|
|
323 |
}
|
|
|
324 |
if ($i==0) $dimensions[$i] = '{'.$dimensions[$i];
|
|
|
325 |
if ($i==$total) $dimensions[$i].= '}';
|
|
|
326 |
$i++;
|
|
|
327 |
}
|
|
|
328 |
return implode(',',$dimensions);
|
|
|
329 |
}
|
1345 |
aurelien |
330 |
}
|
|
|
331 |
?>
|