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 {
|
1056 |
jpm |
22 |
|
712 |
jpm |
23 |
const DS = DIRECTORY_SEPARATOR;
|
1209 |
jpm |
24 |
const PROJET_DEFAUT = 'defaut';
|
1056 |
jpm |
25 |
const WS_SAISIE = "CelWidgetSaisie";
|
1209 |
jpm |
26 |
const WS_NOM = "noms";
|
|
|
27 |
const NS_PROJET = "bdtfx";
|
1215 |
jpm |
28 |
const NS_PROJET_VERSION = "1.01";
|
1209 |
jpm |
29 |
const EFLORE_API_VERSION = "0.1";
|
1056 |
jpm |
30 |
|
719 |
jpm |
31 |
private $projet = null;
|
|
|
32 |
private $configProjet = null;
|
1056 |
jpm |
33 |
|
712 |
jpm |
34 |
/**
|
|
|
35 |
* Méthode appelée par défaut pour charger ce widget.
|
|
|
36 |
*/
|
|
|
37 |
public function executer() {
|
|
|
38 |
$retour = null;
|
|
|
39 |
extract($this->parametres);
|
|
|
40 |
|
1209 |
jpm |
41 |
$this->projet = isset($projet) ? $projet : self::PROJET_DEFAUT;
|
719 |
jpm |
42 |
$this->chargerConfigProjet();
|
1056 |
jpm |
43 |
|
1209 |
jpm |
44 |
$service = isset($service) ? $service : 'widget';
|
719 |
jpm |
45 |
$methode = $this->traiterNomMethodeExecuter($service);
|
712 |
jpm |
46 |
if (method_exists($this, $methode)) {
|
|
|
47 |
$retour = $this->$methode();
|
|
|
48 |
} else {
|
|
|
49 |
$this->messages[] = "Ce type de service '$methode' n'est pas disponible.";
|
|
|
50 |
}
|
|
|
51 |
|
1056 |
jpm |
52 |
$contenu = null;
|
|
|
53 |
$mime = null;
|
|
|
54 |
if (is_array($retour) && array_key_exists('squelette', $retour)) {
|
719 |
jpm |
55 |
$ext = (isset($retour['squelette_ext'])) ? $retour['squelette_ext'] : '.tpl.html';
|
|
|
56 |
$squelette = dirname(__FILE__).self::DS.'squelettes'.self::DS.$this->projet.self::DS.$retour['squelette'].$ext;
|
712 |
jpm |
57 |
$contenu = $this->traiterSquelettePhp($squelette, $retour['donnees']);
|
1056 |
jpm |
58 |
$mime = isset($retour['mime']) ? $retour['mime'] : null;
|
|
|
59 |
} else {
|
|
|
60 |
if (count($this->messages) == 0) {
|
|
|
61 |
$this->messages[] = "La méthode du sous-service ne renvoie pas les données dans le bon format.";
|
|
|
62 |
}
|
|
|
63 |
$contenu = 'Un problème est survenu : '.print_r($this->messages, true);
|
712 |
jpm |
64 |
}
|
1056 |
jpm |
65 |
|
|
|
66 |
$this->envoyer($contenu, $mime);
|
712 |
jpm |
67 |
}
|
1056 |
jpm |
68 |
|
719 |
jpm |
69 |
private function chargerConfigProjet() {
|
|
|
70 |
$fichier_config = dirname(__FILE__).self::DS.'configurations'.self::DS.$this->projet.'.ini';
|
|
|
71 |
if (file_exists($fichier_config)) {
|
|
|
72 |
if (!$this->configProjet = parse_ini_file($fichier_config)) {
|
|
|
73 |
$this->messages[] = "Le fichier ini '$fichier_config' du projet n'a pu être chargé.";
|
1056 |
jpm |
74 |
}
|
719 |
jpm |
75 |
} else {
|
1245 |
jpm |
76 |
$this->debug[] = "Le fichier ini '$fichier_config' du projet n'existe pas.";
|
719 |
jpm |
77 |
}
|
|
|
78 |
}
|
1056 |
jpm |
79 |
|
1209 |
jpm |
80 |
public function executerWidget() {
|
1056 |
jpm |
81 |
$widget['squelette'] = $this->projet;
|
|
|
82 |
$widget['donnees'] = array();
|
|
|
83 |
$widget['donnees']['url_base'] = sprintf($this->config['chemins']['baseURLAbsoluDyn'], '');
|
|
|
84 |
$widget['donnees']['url_ws_saisie'] = sprintf($this->config['chemins']['baseURLServicesCelTpl'], self::WS_SAISIE);
|
|
|
85 |
|
1215 |
jpm |
86 |
|
1209 |
jpm |
87 |
if ($this->projet == 'defaut') {
|
|
|
88 |
$urlWsNsTpl = $this->config['chemins']['baseURLServicesEfloreTpl'];
|
|
|
89 |
$urlWsNs = sprintf($urlWsNsTpl, self::EFLORE_API_VERSION, self::NS_PROJET, self::WS_NOM);
|
|
|
90 |
$widget['donnees']['url_ws_autocompletion_ns'] = $urlWsNs;
|
1215 |
jpm |
91 |
$widget['donnees']['ns_referentiel'] = self::NS_PROJET.':'.self::NS_PROJET_VERSION;
|
|
|
92 |
$widget['donnees']['ns_version'] = self::NS_PROJET_VERSION;
|
712 |
jpm |
93 |
} else {
|
1209 |
jpm |
94 |
$widget['donnees']['taxons'] = $this->recupererListeTaxon();
|
|
|
95 |
$widget['donnees']['milieux'] = $this->parserMilieux();
|
712 |
jpm |
96 |
}
|
1209 |
jpm |
97 |
return $widget;
|
1056 |
jpm |
98 |
}
|
|
|
99 |
|
1209 |
jpm |
100 |
public function executerTaxons() {
|
|
|
101 |
$widget['squelette'] = $this->projet.'_taxons';
|
|
|
102 |
$widget['squelette_ext'] = '.tpl.js';
|
|
|
103 |
$widget['donnees'] = array();
|
|
|
104 |
$taxons = $this->recupererListeTaxon();
|
|
|
105 |
$taxons_tries = array();
|
|
|
106 |
foreach ($taxons as $taxon) {
|
|
|
107 |
$taxons_tries[$taxon['num_nom_sel']] = $taxon;
|
|
|
108 |
}
|
|
|
109 |
$widget['donnees']['taxons'] = json_encode($taxons_tries);
|
|
|
110 |
return $widget;
|
|
|
111 |
}
|
|
|
112 |
|
|
|
113 |
private function recupererListeTaxon() {
|
|
|
114 |
$taxons = null;
|
|
|
115 |
$fichier_tsv = dirname(__FILE__).self::DS.'configurations'.self::DS.$this->projet.'_taxons.tsv';
|
|
|
116 |
if (file_exists($fichier_tsv) && is_readable($fichier_tsv)) {
|
1245 |
jpm |
117 |
$taxons = $this->decomposerFichierTsv($fichier_tsv);
|
|
|
118 |
$taxons = self::trierTableauMd($taxons, array('nom_fr' => SORT_ASC));
|
1209 |
jpm |
119 |
} else {
|
|
|
120 |
$this->debug[] = "Impossible d'ouvrir le fichier '$fichier_tsv'.";
|
|
|
121 |
}
|
1245 |
jpm |
122 |
return $taxons;
|
1209 |
jpm |
123 |
}
|
|
|
124 |
|
|
|
125 |
private function decomposerFichierTsv($fichier, $delimiter = "\t"){
|
|
|
126 |
$header = NULL;
|
|
|
127 |
$data = array();
|
|
|
128 |
if (($handle = fopen($fichier, 'r')) !== FALSE) {
|
|
|
129 |
while (($row = fgetcsv($handle, 1000, $delimiter)) !== FALSE) {
|
|
|
130 |
if (!$header) {
|
|
|
131 |
$header = $row;
|
|
|
132 |
} else {
|
|
|
133 |
$data[] = array_combine($header, $row);
|
|
|
134 |
}
|
|
|
135 |
}
|
|
|
136 |
fclose($handle);
|
|
|
137 |
}
|
|
|
138 |
return $data;
|
1056 |
jpm |
139 |
}
|
|
|
140 |
|
1209 |
jpm |
141 |
private function parserMilieux() {
|
1056 |
jpm |
142 |
$infosMilieux = array();
|
|
|
143 |
$milieux = explode('|', $this->configProjet['milieux']);
|
|
|
144 |
foreach ($milieux as $milieu) {
|
|
|
145 |
$details = explode(';', $milieu);
|
|
|
146 |
if (isset($details[1])) {
|
|
|
147 |
$infosMilieux[$details[0]] = $details[1];
|
|
|
148 |
} else {
|
|
|
149 |
$infosMilieux[$details[0]] = '';
|
|
|
150 |
}
|
|
|
151 |
}
|
1209 |
jpm |
152 |
ksort($infosMilieux);
|
1056 |
jpm |
153 |
return $infosMilieux;
|
|
|
154 |
}
|
|
|
155 |
|
1209 |
jpm |
156 |
public function executerUploadImage() {
|
|
|
157 |
$retour = array(
|
|
|
158 |
'squelette' => $this->projet.'_image',
|
|
|
159 |
'squelette_ext' => '.tpl.xml',
|
|
|
160 |
'mime' => 'text/xml',
|
|
|
161 |
'donnees' => array(
|
|
|
162 |
'urlMiniature' => '',
|
|
|
163 |
'imageNom' => '',
|
|
|
164 |
'message' => '',
|
|
|
165 |
'debogage' => ''));
|
|
|
166 |
$message = '';
|
|
|
167 |
$debogage = '';
|
|
|
168 |
if ($_FILES['fichier']['error'] == UPLOAD_ERR_OK) {
|
|
|
169 |
if (is_uploaded_file($_FILES['fichier']['tmp_name'])) {
|
|
|
170 |
if ($_FILES['fichier']['type'] == 'image/jpeg') {
|
|
|
171 |
$dossierStockage = $this->config['chemins']['imagesTempDossier'];
|
|
|
172 |
|
|
|
173 |
$nomFichierOriginal = preg_replace('/[.](jpeg|jpg)$/i', '.jpg', strtolower($_FILES['fichier']['name']));
|
|
|
174 |
$originalChemin = $dossierStockage.$nomFichierOriginal;
|
|
|
175 |
$deplacementOk = move_uploaded_file($_FILES['fichier']['tmp_name'], $originalChemin);
|
|
|
176 |
|
|
|
177 |
if ($deplacementOk === true) {
|
|
|
178 |
$miniatureFichier = str_replace('.jpg', '_min.jpg', $nomFichierOriginal);
|
|
|
179 |
$miniatureChemin = $dossierStockage.$miniatureFichier;
|
|
|
180 |
|
|
|
181 |
// Parametres
|
|
|
182 |
$largeurIdeale = 100;
|
|
|
183 |
$hauteurIdeale = 100;
|
|
|
184 |
$qualite = 85;
|
|
|
185 |
|
|
|
186 |
// Calcul de la hauteur et de la largeur optimale de la miniature
|
|
|
187 |
$taillesImgOriginale = getimagesize($originalChemin);
|
|
|
188 |
$largeurOrigine = $taillesImgOriginale[0];
|
|
|
189 |
$hauteurOrigine = $taillesImgOriginale[1];
|
|
|
190 |
|
|
|
191 |
$largeurMin = $largeurIdeale;
|
|
|
192 |
$hauteurMin = (int) ($hauteurOrigine * ($largeurIdeale / $largeurOrigine));
|
|
|
193 |
if ($hauteurMin > $hauteurIdeale) {
|
|
|
194 |
$hauteurMin = $hauteurIdeale;
|
|
|
195 |
$largeurMin = (int)($largeurOrigine * ($hauteurMin / $hauteurOrigine));
|
|
|
196 |
}
|
|
|
197 |
|
|
|
198 |
// Création de la miniature
|
|
|
199 |
$imageOriginale = imagecreatefromjpeg($originalChemin);
|
|
|
200 |
$imageMiniature = imagecreatetruecolor($largeurMin, $hauteurMin);
|
|
|
201 |
$couleurFond = imagecolorallocate($imageMiniature, 255, 255, 255);
|
|
|
202 |
imagefill($imageMiniature, 0, 0, $couleurFond);
|
|
|
203 |
imagecopyresized($imageMiniature, $imageOriginale, 0, 0, 0, 0, $largeurMin, $hauteurMin, $largeurOrigine, $hauteurOrigine);
|
|
|
204 |
imagejpeg($imageMiniature, $miniatureChemin, $qualite);
|
|
|
205 |
imagedestroy($imageMiniature);
|
|
|
206 |
imagedestroy($imageOriginale);
|
|
|
207 |
|
|
|
208 |
// Retour des infos
|
|
|
209 |
$retour['donnees']['urlMiniature'] = sprintf($this->config['chemins']['imagesTempUrlTpl'], $miniatureFichier);
|
|
|
210 |
$retour['donnees']['imageNom'] = $nomFichierOriginal;
|
|
|
211 |
} else {
|
|
|
212 |
$message = "L'image n'a pu être déplacé sur le serveur.";
|
|
|
213 |
}
|
|
|
214 |
} else {
|
|
|
215 |
$message = "L'image n'est pas au format JPEG.";
|
|
|
216 |
}
|
|
|
217 |
} else {
|
|
|
218 |
$message = "L'image n'a pu être téléversée.";
|
|
|
219 |
$debogage = $message.print_r($_FILES, true);
|
|
|
220 |
}
|
|
|
221 |
} else {
|
|
|
222 |
if ($_FILES['fichier']['error'] == UPLOAD_ERR_FORM_SIZE) {
|
|
|
223 |
$message = "L'image téléversée excède la taille maximum autorisée.".
|
|
|
224 |
"Veuillez modifier votre image avant de la téléverser à nouveau.";
|
|
|
225 |
} else {
|
|
|
226 |
$message = "Une erreur de transfert a eu lieu (téléversement interrompu).";
|
|
|
227 |
}
|
|
|
228 |
$debogage = "Code erreur : {$_FILES['fichier']['error']}. ".
|
|
|
229 |
"Voir : http://php.net/manual/fr/features.file-upload.errors.php";
|
|
|
230 |
}
|
|
|
231 |
// Retour des infos
|
|
|
232 |
$retour['donnees']['message'] = $message;
|
|
|
233 |
$retour['donnees']['debogage'] = $debogage;
|
|
|
234 |
return $retour;
|
712 |
jpm |
235 |
}
|
1209 |
jpm |
236 |
}
|
|
|
237 |
?>
|