1654 |
aurelien |
1 |
<?php
|
1656 |
raphael |
2 |
|
|
|
3 |
/**
|
|
|
4 |
* @category PHP
|
|
|
5 |
* @package jrest
|
|
|
6 |
* @author Raphaël Droz <raphael@tela-botania.org>
|
|
|
7 |
* @copyright 2013 Tela-Botanica
|
|
|
8 |
* @license http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
|
|
|
9 |
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
|
|
|
10 |
*/
|
|
|
11 |
define('SEPARATEUR_IMAGES', ",");
|
|
|
12 |
|
1654 |
aurelien |
13 |
Class FormateurGroupeColonne {
|
1656 |
raphael |
14 |
|
1702 |
raphael |
15 |
// cache pour les données des fonctions
|
1656 |
raphael |
16 |
static $cache = Array();
|
|
|
17 |
|
1702 |
raphael |
18 |
// test sur la table cel_references, mis à TRUE si la table existe
|
|
|
19 |
static $is_table = false;
|
|
|
20 |
|
|
|
21 |
// les données baseflor à récupérer: colonnes présentes dans cel_references
|
|
|
22 |
// et intitulés associés
|
|
|
23 |
static $baseflor_col = array(
|
|
|
24 |
"ve_lumiere" => "Lumière",
|
|
|
25 |
"ve_temperature" => "Température",
|
|
|
26 |
"ve_continentalite" => "Continentalité",
|
|
|
27 |
"ve_humidite_atmos" => "Humidité Atmosphérique",
|
|
|
28 |
"ve_humidite_edaph" => "Humidité",
|
|
|
29 |
"ve_reaction_sol" => "Réaction (pH)",
|
|
|
30 |
"ve_nutriments_sol" => "Nutriments",
|
|
|
31 |
"ve_salinite" => "Salinité",
|
|
|
32 |
"ve_texture_sol" => "Texture" ,
|
|
|
33 |
"ve_mat_org_sol" => "Matière Organique",
|
|
|
34 |
"catminat_code" => "Code Catminat",
|
|
|
35 |
"syntaxon" => "Syntaxon",
|
|
|
36 |
);
|
|
|
37 |
|
1654 |
aurelien |
38 |
/*
|
|
|
39 |
* @param $fieldSets: un liste de noms de colonnes ou de sets de colonnes
|
|
|
40 |
* séparés par des virgules
|
|
|
41 |
* eg: "espece" ou "champs-etendus", ...
|
|
|
42 |
*
|
|
|
43 |
* @return: un tableau associatif déjà ordonné
|
|
|
44 |
* clé: abbrev [machine-name] de la colonne (eg: "espece" ou "mot-clef")
|
|
|
45 |
* valeur: des données relative à cette colonne, cf GenColInfo
|
|
|
46 |
*
|
|
|
47 |
* @TODO: fonction commune à la génération en CSV
|
|
|
48 |
*
|
|
|
49 |
*/
|
|
|
50 |
static function nomEnsembleVersListeColonnes($groupe_de_champs = 'standard') {
|
|
|
51 |
if(! $groupe_de_champs) $groupe_de_champs = 'standard';
|
|
|
52 |
$groupe_de_champs = array_flip(explode(',', $groupe_de_champs));
|
1656 |
raphael |
53 |
$colonnes = Array();
|
1654 |
aurelien |
54 |
|
|
|
55 |
if(isset($groupe_de_champs['standard'])) {
|
|
|
56 |
$colonnes += Array(
|
|
|
57 |
'nom_sel' => self::GenColInfo('nom_sel', 'Espèce'),
|
|
|
58 |
'nom_sel_nn' => self::GenColInfo('nom_sel_nn', 'Numéro nomenclatural', 0, NULL, NULL, FALSE),
|
1656 |
raphael |
59 |
'nom_ret' => self::GenColInfo('nom_ret', 'Nom retenu', 0, NULL, NULL, FALSE),
|
|
|
60 |
'nom_ret_nn' => self::GenColInfo('nom_ret_nn', 'Numéro nomenclatural nom retenu', 0, NULL, NULL, FALSE),
|
|
|
61 |
'nt' => self::GenColInfo('nt', 'Numéro taxonomique', 0, NULL, NULL, FALSE),
|
|
|
62 |
'famille' => self::GenColInfo('famille', 'Famille', 0, NULL, NULL, FALSE),
|
|
|
63 |
'nom_referentiel' => self::GenColInfo('nom_referentiel', 'Referentiel taxonomique'),
|
|
|
64 |
'zone_geo' => self::GenColInfo('zone_geo', 'Commune'),
|
1654 |
aurelien |
65 |
'ce_zone_geo' => self::GenColInfo('ce_zone_geo', 'Identifiant Commune', 0, 'convertirCodeZoneGeoVersDepartement'),
|
1656 |
raphael |
66 |
'date_observation' => self::GenColInfo('date_observation', 'Date', 0, 'formaterDate'),
|
|
|
67 |
'lieudit' => self::GenColInfo('lieudit', 'Lieu-dit'),
|
|
|
68 |
'station' => self::GenColInfo('station', 'Station'),
|
|
|
69 |
'milieu' => self::GenColInfo('milieu', 'Milieu'),
|
|
|
70 |
'commentaire' => self::GenColInfo('commentaire', 'Notes'),
|
|
|
71 |
'latitude' => self::GenColInfo('latitude', 'Latitude', 1),
|
1654 |
aurelien |
72 |
'longitude' => self::GenColInfo('longitude', 'Longitude', 1),
|
1699 |
raphael |
73 |
'altitude' => self::GenColInfo('altitude', 'Altitude', 1),
|
1654 |
aurelien |
74 |
'geodatum' => self::GenColInfo('geodatum', 'Référentiel Géographique', 1, NULL, NULL, FALSE),
|
|
|
75 |
);
|
|
|
76 |
}
|
|
|
77 |
|
|
|
78 |
if(isset($groupe_de_champs['avance'])) {
|
1656 |
raphael |
79 |
$colonnes += array(
|
|
|
80 |
// TODO: importable = FALSE car pas de merge de données importées
|
|
|
81 |
'ordre' => self::GenColInfo('ordre', 'Ordre', 1, NULL, NULL, FALSE),
|
|
|
82 |
'id_observation' => self::GenColInfo('id_observation', 'Identifiant', 1, NULL, NULL, FALSE),
|
|
|
83 |
|
|
|
84 |
'mots_cles_texte' => self::GenColInfo('mots_cles_texte', 'Mots Clés', 1),
|
|
|
85 |
'commentaire' => self::GenColInfo('commentaire', 'Commentaires', 1),
|
|
|
86 |
'date_creation' => self::GenColInfo('date_creation', 'Date Création', 1, NULL, NULL, FALSE),
|
|
|
87 |
'date_modification' => self::GenColInfo('date_modification', 'Date Modification', 1, NULL, NULL, FALSE),
|
|
|
88 |
|
|
|
89 |
// rappel transmission = 1, signifie simplement "public"
|
|
|
90 |
// des données importées peuvent être d'emblée "publiques"
|
|
|
91 |
// "importable" = TRUE
|
|
|
92 |
'transmission' => self::GenColInfo('transmission', 'Transmis', 1),
|
|
|
93 |
'date_transmission' => self::GenColInfo('date_transmission', 'Date Transmission', 1, NULL, NULL, FALSE),
|
|
|
94 |
'abondance' => self::GenColInfo('abondance', 'Abondance', 1),
|
|
|
95 |
'certitude' => self::GenColInfo('certitude', 'Certitude', 1),
|
|
|
96 |
'phenologie' => self::GenColInfo('phenologie', 'Phénologie', 1),
|
|
|
97 |
|
|
|
98 |
// XXX: getImages() dépend du contexte de Cel, et doit être appelée comme cas particulier
|
|
|
99 |
// cf ExportXLS::traiterLigneObservation()
|
1687 |
raphael |
100 |
'images' => self::GenColInfo('images', 'Image(s)', 1, NULL, NULL /* cas particulier 'getImages' */, TRUE),
|
1685 |
raphael |
101 |
|
|
|
102 |
/* 'nom_commun' => self::GenColInfo('nom_commun', 'Nom Commun', 1, NULL, 'getNomCommun', FALSE),
|
|
|
103 |
'nom-commun' => self::GenColInfo('nom-commun', 'Nom Commun', 1, NULL, 'getNomCommun_v2'),
|
|
|
104 |
'nom-commun' => self::GenColInfo('nom-commun', 'Nom Commun', 1, NULL, 'getNomCommun_v3'), */
|
1702 |
raphael |
105 |
'nom-commun' => self::GenColInfo('nom-commun', 'Nom Commun', 1, NULL, NULL /* cas particu 'getNomCommun_v4' */, TRUE, array(__CLASS__, 'getNomCommun_preload')),
|
|
|
106 |
);
|
|
|
107 |
}
|
1685 |
raphael |
108 |
|
1702 |
raphael |
109 |
if(isset($groupe_de_champs['baseflor'])) {
|
|
|
110 |
$colonnes += array(
|
|
|
111 |
// champ dynamique
|
|
|
112 |
'baseflor' => self::GenColInfo('baseflor', '', 1, NULL, NULL, FALSE, array(__CLASS__, 'baseflor_preload'), array(__CLASS__, 'baseflor_ligne')),
|
1654 |
aurelien |
113 |
);
|
1702 |
raphael |
114 |
}
|
1656 |
raphael |
115 |
|
1654 |
aurelien |
116 |
return $colonnes;
|
|
|
117 |
}
|
1694 |
raphael |
118 |
|
|
|
119 |
static function preload($colonnes, $cel, $ids) {
|
|
|
120 |
$result = array();
|
|
|
121 |
foreach($colonnes as $abbrev => $colonne) {
|
|
|
122 |
if(!$colonne['preload']) continue;
|
1702 |
raphael |
123 |
$result[$abbrev] = call_user_func($colonne['preload'], $cel, $ids);
|
1694 |
raphael |
124 |
}
|
|
|
125 |
return $result;
|
|
|
126 |
}
|
1654 |
aurelien |
127 |
|
1656 |
raphael |
128 |
public static function getIntitulesColonnes($colonnes) {
|
1702 |
raphael |
129 |
// array_filter pour supprimer les colonnes "dynamique" n'ayant pas défini $nom (cf GenColInfo())
|
|
|
130 |
return array_filter(array_map(array('FormateurGroupeColonne', 'retournerNomItem'), $colonnes));
|
1654 |
aurelien |
131 |
}
|
|
|
132 |
|
1671 |
aurelien |
133 |
public static function retournerNomItem(&$item) {
|
|
|
134 |
return $item['nom'];
|
|
|
135 |
}
|
1694 |
raphael |
136 |
|
1656 |
raphael |
137 |
public static function getLigneObservation(&$obs, &$colonnes, $cel = false) {
|
1659 |
aurelien |
138 |
|
1654 |
aurelien |
139 |
$ligne_formatee = array();
|
|
|
140 |
foreach($colonnes as $abbrev => $colonne) {
|
|
|
141 |
$valeur = null;
|
1702 |
raphael |
142 |
if($colonne['extra'] == 2 || ! is_null($colonne['dyna'])) continue;
|
1654 |
aurelien |
143 |
|
|
|
144 |
// valeur direct depuis cel_obs ?
|
|
|
145 |
if(isset($obs[$abbrev])) $valeur = $obs[$abbrev];
|
|
|
146 |
|
|
|
147 |
// pré-processeur de la champs
|
|
|
148 |
if(function_exists($colonne['fonction'])) {
|
|
|
149 |
$valeur = $colonne['fonction']($valeur);
|
|
|
150 |
} elseif(method_exists(__CLASS__, $colonne['fonction'])) {
|
|
|
151 |
$valeur = call_user_func(array(__CLASS__, $colonne['fonction']), $valeur);
|
|
|
152 |
} elseif($colonne['fonction']) {
|
|
|
153 |
die("méthode {$colonne['fonction']} introuvable");
|
|
|
154 |
}
|
|
|
155 |
// fonction pour obtenir des champs (étendus)
|
|
|
156 |
elseif(function_exists($colonne['fonction_data'])) {
|
|
|
157 |
$valeur = $colonne['fonction_data']($obs);
|
|
|
158 |
}
|
1687 |
raphael |
159 |
elseif(method_exists(__CLASS__, $colonne['fonction_data'])) {
|
1654 |
aurelien |
160 |
$valeur = call_user_func(array(__CLASS__, $colonne['fonction_data']), $obs);
|
|
|
161 |
}
|
|
|
162 |
|
|
|
163 |
// // cette section devrait être vide:
|
|
|
164 |
// // cas particuliers ingérable avec l'architecture actuelle:
|
|
|
165 |
if(false && $abbrev == 'date_observation' && $valeur == "0000-00-00") {
|
|
|
166 |
/* blah */
|
|
|
167 |
}
|
1685 |
raphael |
168 |
// ici à cause du passage de $cel ($this), TODO: DB en Singleton !
|
1656 |
raphael |
169 |
if($abbrev == 'images') {
|
|
|
170 |
$valeur = FormateurGroupeColonne::getImages($obs, $cel->id_utilisateur, $cel);
|
|
|
171 |
}
|
1685 |
raphael |
172 |
if($abbrev == 'nom-commun') {
|
|
|
173 |
$valeur = FormateurGroupeColonne::getNomCommun_v4($obs, $cel);
|
|
|
174 |
}
|
1654 |
aurelien |
175 |
|
|
|
176 |
if($valeur == null) {
|
|
|
177 |
$valeur = "";
|
|
|
178 |
}
|
|
|
179 |
|
|
|
180 |
// // fin de section "cas particuliers"
|
|
|
181 |
$ligne_formatee[] = $valeur;
|
|
|
182 |
}
|
1694 |
raphael |
183 |
|
1702 |
raphael |
184 |
// uniquement les champŝ dynamiques
|
|
|
185 |
foreach($colonnes as $abbrev => $colonne) {
|
|
|
186 |
$valeur = null;
|
|
|
187 |
if(is_null($colonne['dyna'])) continue;
|
1706 |
raphael |
188 |
// XXX: PHP-5.3
|
|
|
189 |
call_user_func_array($colonne['dyna'],
|
|
|
190 |
array($cel, $obs, &$ligne_formatee));
|
1702 |
raphael |
191 |
}
|
1694 |
raphael |
192 |
|
1654 |
aurelien |
193 |
return $ligne_formatee;
|
|
|
194 |
}
|
|
|
195 |
|
|
|
196 |
/*
|
|
|
197 |
* Wrapper générant un tableau associatif:
|
1694 |
raphael |
198 |
* Ne pas changer les valeurs par défaut du prototype sans réflexion sur l'implication pour nomEnsembleVersListeColonnes()
|
1654 |
aurelien |
199 |
|
|
|
200 |
* @param $abbrev (obligatoire): nom court de colonne, largement utilisé lors de l'import.
|
|
|
201 |
* En effet chaque ligne importée est accessible à l'aide du `define` de $abbrev en majuscule, préfixé de "C_"
|
|
|
202 |
* Exemple: $ligne[C_LONGITUDE] pour "longitude".
|
|
|
203 |
* cf: ImportXLS::detectionEntete()
|
|
|
204 |
|
|
|
205 |
* @param $nom (obligatoire): nom complet de colonne (utilisé pour la ligne d'en-tête)
|
1702 |
raphael |
206 |
* Les définition de champs dynamique (correspondant à de multiples colonnes) doivent laisser cette valeur
|
|
|
207 |
* vide afin de ne pas créer une colonne supplémentaire erronée.
|
1654 |
aurelien |
208 |
|
|
|
209 |
* @param $is_extra:
|
|
|
210 |
* Si 0, la colonne est une colonne standard
|
|
|
211 |
* Si 1, la colonne est extra [le plus souvent générée automatiquement]
|
|
|
212 |
* (auquel cas une bordure bleue entoure son nom dans la ligne d'entête)
|
|
|
213 |
* Si 2, la colonne n'est pas traité à l'export, mais une définition peut lui être donnée
|
|
|
214 |
* qui pourra être utilisée à l'import, exemple: "image"
|
|
|
215 |
|
|
|
216 |
* @param $fonction (optionnel): un nom d'un fonction de préprocessing
|
|
|
217 |
* $fonction doit prendre comme seul argument la valeur d'origine et retourner la valeur transformée
|
|
|
218 |
|
|
|
219 |
* @param $fonction_data (optionnel): une *méthode* d'obtention de donnée
|
|
|
220 |
* $fonction_data doit prendre comme premier argument le tableau des champs de l'enregistrement existant
|
|
|
221 |
* $fonction_data doit retourner une valeur
|
|
|
222 |
|
|
|
223 |
* @param $importable (optionnel): défini si la colonne est traitée (ou absolument ignorée par PHPExcel) lors de
|
|
|
224 |
* l'import.
|
1694 |
raphael |
225 |
|
|
|
226 |
* @param $preload (optionnel): défini une fonction de préchargement massif de donnée potentiellement utilisable par $fonction_data.
|
|
|
227 |
* Utile, notamment, dans le cadre de l'export
|
1702 |
raphael |
228 |
|
|
|
229 |
* @param $fonction_dynamique (optionnel): défini une fonction ajoutant un nombre arbitraire de colonnes à une ligne donnée
|
|
|
230 |
* Utile, notamment, dans le cadre de l'export des champs étendus ou des données baseflor
|
|
|
231 |
* La fonction doit TOUJOURS alterer la ligne en lui ajoutant une nombre CONSTANT d'éléments (NULL ou non)
|
|
|
232 |
* La fonction doit prendre comme arguments ($cel, $obs, &$ligne_formatee)
|
1654 |
aurelien |
233 |
*/
|
1702 |
raphael |
234 |
static function GenColInfo($abbrev, $nom, $is_extra = 0, $fonction = NULL, $fonction_data = NULL, $importable = TRUE, $preload = NULL, $fonction_dynamique = NULL) {
|
1654 |
aurelien |
235 |
return Array('abbrev' => $abbrev,
|
1656 |
raphael |
236 |
'nom' => $nom,
|
|
|
237 |
'extra' => $is_extra ? 1 : 0,
|
|
|
238 |
'fonction' => $fonction,
|
|
|
239 |
'fonction_data' => $fonction_data,
|
1694 |
raphael |
240 |
'importable' => $importable,
|
|
|
241 |
'preload' => $preload,
|
1702 |
raphael |
242 |
'dyna' => $fonction_dynamique,
|
1654 |
aurelien |
243 |
);
|
|
|
244 |
}
|
|
|
245 |
|
1656 |
raphael |
246 |
static function formaterDate($date_heure_mysql) {
|
1671 |
aurelien |
247 |
//return "";
|
1654 |
aurelien |
248 |
if (!$date_heure_mysql || $date_heure_mysql == "0000-00-00 00:00:00") return "00/00/0000";
|
1671 |
aurelien |
249 |
// malheureusement pas disponible en php < 5.3
|
|
|
250 |
//$date_format = DateTime::createFromFormat("Y-m-d H:i:s", $date_heure_mysql);
|
|
|
251 |
$val = explode(' ', $date_heure_mysql);
|
|
|
252 |
$date = explode('-', $val[0]);
|
|
|
253 |
$heure = explode(':', $val[1]);
|
|
|
254 |
$timestamp = mktime((int) $heure[0], (int) $heure[1], (int) $heure[2], (int) $date[1], (int) $date[2], (int) $date[0]);
|
1654 |
aurelien |
255 |
if(!$timestamp) return "00/00/0000";
|
1656 |
raphael |
256 |
// TODO: les widgets ne font malheureusement pas usage de l'heure dans le CEL
|
|
|
257 |
// TODO: si modification, ne pas oublier de modifier le format d'import correspondant
|
1698 |
raphael |
258 |
// dans ImportXLS, traiterDateObs() (actuellement: "Y/m/d" car utilisation de strtotime() qui ne lit pas tout)
|
|
|
259 |
// $date_formatee = strftime('%d/%m/%Y', $timestamp);
|
|
|
260 |
$date_formatee = strftime('%Y/%m/%d', $timestamp);
|
1654 |
aurelien |
261 |
if(!$date_formatee) return "00/00/0000";
|
|
|
262 |
return $date_formatee;
|
|
|
263 |
}
|
|
|
264 |
|
1656 |
raphael |
265 |
static function getImages($obs, $id_utilisateur, $cel) {
|
|
|
266 |
if(! $id_utilisateur) return NULL;
|
|
|
267 |
$rec = $cel->requeter(
|
1654 |
aurelien |
268 |
sprintf("SELECT GROUP_CONCAT(nom_original SEPARATOR '%s') FROM cel_images i"
|
1656 |
raphael |
269 |
." LEFT JOIN cel_obs_images oi ON (i.id_image = oi.id_image)"
|
|
|
270 |
." LEFT JOIN cel_obs o ON (oi.id_observation = o.id_observation)"
|
|
|
271 |
." WHERE ce_utilisateur = %d",
|
|
|
272 |
SEPARATEUR_IMAGES,
|
|
|
273 |
$id_utilisateur));
|
|
|
274 |
return $rec ? array_pop($rec) : NULL;
|
1654 |
aurelien |
275 |
}
|
|
|
276 |
|
|
|
277 |
public static function convertirCodeZoneGeoVersDepartement($code_zone_geo) {
|
|
|
278 |
$code_departement = '';
|
|
|
279 |
if(self::estUnCodeInseeDepartement($code_zone_geo)) {
|
|
|
280 |
$code_departement = substr(ltrim($code_zone_geo,'INSEE-C:'),0,2);
|
|
|
281 |
}
|
|
|
282 |
|
|
|
283 |
return $code_departement;
|
|
|
284 |
}
|
|
|
285 |
|
|
|
286 |
public static function estUnCodeInseeDepartement($code_a_tester) {
|
|
|
287 |
return preg_match('/^INSEE-C:[0-9]{5}/',$code_a_tester);
|
|
|
288 |
}
|
|
|
289 |
|
|
|
290 |
|
|
|
291 |
// TODO: référentiel ne devrait pas être généré au moment d'un Config::get,
|
|
|
292 |
// comme dans Config::get('nomsVernaRechercheLimiteeTpl')
|
|
|
293 |
// Par exemple, la variable pour "nva" ?
|
|
|
294 |
function getNomCommun($obs) {
|
|
|
295 |
$langue = 'fra';
|
|
|
296 |
list($referentiel) = explode(':', strtolower($obs['nom_referentiel']));
|
|
|
297 |
if($referentiel == 'bdtfx') $referentiel = 'nvjfl';
|
|
|
298 |
else return '';
|
|
|
299 |
|
|
|
300 |
$cache_id = $referentiel . '-' . $obs['nt'] . '-' . $langue;
|
1657 |
raphael |
301 |
if(isset(self::$cache['getNomCommun'][$cache_id])) {
|
1656 |
raphael |
302 |
//debug: error_log("require url_service_nom_attribution: OK ! (pour \"{$obs['nom_ret']}\")");
|
1657 |
raphael |
303 |
return self::$cache['getNomCommun'][$cache_id];
|
1654 |
aurelien |
304 |
}
|
|
|
305 |
// pas de cache:
|
|
|
306 |
//debug: error_log("require url_service_nom_attribution pour \"{$obs['nom_ret']}\"");
|
|
|
307 |
|
|
|
308 |
// pour bdtfx:
|
|
|
309 |
// /service:eflore:0.1/nvjfl/noms-vernaculaires/attributions?masque.nt=X&masque.lg=fra&retour.champs=num_statut
|
|
|
310 |
// /projet/services/modules/0.1/nvjfl/NomsVernaculaires.php
|
|
|
311 |
$url = str_replace(Array('{referentiel}', '{valeur}', '{langue}'),
|
1656 |
raphael |
312 |
Array($referentiel, $obs['nt'], $langue),
|
1657 |
raphael |
313 |
self::$config['eflore']['url_service_nom_attribution']) . // TODO !
|
1656 |
raphael |
314 |
"&retour.champs=num_statut";
|
1654 |
aurelien |
315 |
$noms = @json_decode(file_get_contents($url));
|
|
|
316 |
if(! $noms) return '';
|
1673 |
raphael |
317 |
$noms = array_filter((array)($noms->resultat), array($this, retournerNumStatutUn)); // XXX: php 5.3
|
1654 |
aurelien |
318 |
$nom = array_pop($noms)->nom_vernaculaire;
|
|
|
319 |
|
|
|
320 |
// cache
|
1657 |
raphael |
321 |
self::$cache['getNomCommun'][$cache_id] = $nom;
|
1654 |
aurelien |
322 |
return $nom;
|
|
|
323 |
}
|
|
|
324 |
|
1671 |
aurelien |
325 |
private function retournerNumStatutUn(&$item) {
|
|
|
326 |
return ($item->num_statut == 1);
|
|
|
327 |
}
|
1673 |
raphael |
328 |
|
|
|
329 |
private function retournerNumStatutUnArr(&$item) {
|
|
|
330 |
return ($item['num_statut'] == 1);
|
|
|
331 |
}
|
1671 |
aurelien |
332 |
|
1656 |
raphael |
333 |
// si getNomCommun_v2 ou getNomCommun_v3 sont utilisés
|
|
|
334 |
/* require_once('/home/raphael/eflore/framework/framework/Framework.php');
|
|
|
335 |
Framework::setCheminAppli("/home/raphael/eflore/projets/services/index.php");
|
|
|
336 |
Framework::setInfoAppli(Config::get('info'));
|
|
|
337 |
require_once('/home/raphael/eflore/projets/services/modules/0.1/Projets.php');*/
|
1654 |
aurelien |
338 |
|
|
|
339 |
/* Tente de bootstraper le framework au plus court et d'initialiser une instance de
|
1656 |
raphael |
340 |
NomsVernaculaires pour obtenir le nom commun */
|
1654 |
aurelien |
341 |
function getNomCommun_v2($obs) {
|
|
|
342 |
static $service;
|
1656 |
raphael |
343 |
$service = new Projets();
|
1654 |
aurelien |
344 |
|
|
|
345 |
$langue = 'fra';
|
|
|
346 |
list($referentiel) = explode(':', strtolower($obs['nom_referentiel']));
|
|
|
347 |
if($referentiel == 'bdtfx') $referentiel = 'nvjfl';
|
|
|
348 |
else return '';
|
|
|
349 |
|
|
|
350 |
$cache_id = $referentiel . '-' . $obs['nt'] . '-' . $langue;
|
1657 |
raphael |
351 |
if(isset(self::$cache['getNomCommun'][$cache_id])) {
|
1656 |
raphael |
352 |
error_log("require NomsVernaculaires.php: OK ! (pour \"{$obs['nom_ret']}\")");
|
1657 |
raphael |
353 |
return self::$cache['getNomCommun'][$cache_id];
|
1654 |
aurelien |
354 |
}
|
|
|
355 |
// pas de cache:
|
|
|
356 |
error_log("require NomsVernaculaires.php pour \"{$obs['nom_ret']}\"");
|
|
|
357 |
|
1656 |
raphael |
358 |
$donnees = Array('masque.nt' => $obs['nt'],
|
|
|
359 |
'masque.lg' => $langue,
|
|
|
360 |
'retour.champs' => 'num_statut');
|
1654 |
aurelien |
361 |
$noms = $service->consulter(Array('nvjfl', 'noms-vernaculaires'), $donnees);
|
|
|
362 |
|
|
|
363 |
if(! $noms) return '';
|
1673 |
raphael |
364 |
$noms = array_filter((array)($noms->resultat), array($this, retournerNumStatutUn)); // XXX: php 5.3
|
1654 |
aurelien |
365 |
$nom = array_pop($noms)->nom_vernaculaire;
|
|
|
366 |
|
1656 |
raphael |
367 |
// cache
|
1657 |
raphael |
368 |
self::$cache['getNomCommun'][$cache_id] = $nom;
|
1654 |
aurelien |
369 |
return $nom;
|
|
|
370 |
}
|
|
|
371 |
|
|
|
372 |
|
|
|
373 |
/* Effectue un bootstraping plus sage que ci-dessus, mais le gain d'efficacité
|
1656 |
raphael |
374 |
n'est pas aussi retentissant qu'espéré */
|
1654 |
aurelien |
375 |
static $service;
|
|
|
376 |
function getNomCommun_v3($obs) {
|
|
|
377 |
if(! $this->service) $this->service = new Projets();
|
|
|
378 |
|
|
|
379 |
$langue = 'fra';
|
|
|
380 |
list($referentiel) = explode(':', strtolower($obs['nom_referentiel']));
|
|
|
381 |
if($referentiel == 'bdtfx') $referentiel = 'nvjfl';
|
|
|
382 |
else return '';
|
|
|
383 |
|
|
|
384 |
$cache_id = $referentiel . '-' . $obs['nt'] . '-' . $langue;
|
1657 |
raphael |
385 |
if(isset(self::$cache['getNomCommun'][$cache_id])) {
|
1656 |
raphael |
386 |
error_log("require NomsVernaculaires.php: OK ! (pour \"{$obs['nom_ret']}\")");
|
1657 |
raphael |
387 |
return self::$cache['getNomCommun'][$cache_id];
|
1654 |
aurelien |
388 |
}
|
|
|
389 |
// pas de cache:
|
1656 |
raphael |
390 |
error_log("require NomsVernaculaires.php pour \"{$obs['nom_ret']}\"");
|
1654 |
aurelien |
391 |
|
|
|
392 |
$donnees = Array('masque.nt' => $obs['nt'],
|
1656 |
raphael |
393 |
'masque.lg' => $langue,
|
|
|
394 |
'retour.champs' => 'conseil_emploi');
|
|
|
395 |
$this->service->initialiserRessourcesEtParametres(Array('nvjfl', 'noms-vernaculaires', 'attributions'), $donnees);
|
1654 |
aurelien |
396 |
try {
|
1656 |
raphael |
397 |
$noms = $this->service->traiterRessources();
|
|
|
398 |
} catch(Exception $e) {
|
|
|
399 |
return '';
|
1654 |
aurelien |
400 |
}
|
1656 |
raphael |
401 |
if(! $noms) return '';
|
1673 |
raphael |
402 |
$noms = array_filter($noms['resultat'], array($this, retournerNumStatutUnArr)); // XXX: php 5.3
|
1656 |
raphael |
403 |
$premier_nom = array_pop($noms);
|
1654 |
aurelien |
404 |
$nom = $premier_nom['nom_vernaculaire'];
|
|
|
405 |
|
|
|
406 |
// cache
|
1657 |
raphael |
407 |
self::$cache['getNomCommun'][$cache_id] = $nom;
|
1654 |
aurelien |
408 |
return $nom;
|
|
|
409 |
}
|
1685 |
raphael |
410 |
|
1694 |
raphael |
411 |
/* Cette fonction initialise le cache des noms communs en 1 fois, sur la liste des observations à exporter.
|
1702 |
raphael |
412 |
Ainsi, les appels successifs à getNomCommun_v4() ne sont pas couteux (pas de requête SQL) */
|
1694 |
raphael |
413 |
static function getNomCommun_preload($cel, $obsids) {
|
|
|
414 |
if(!$obsids) return;
|
1702 |
raphael |
415 |
if(!self::referenceTableExiste($cel)) return NULL;
|
1694 |
raphael |
416 |
|
|
|
417 |
// CREATE INDEX i_nom_referentiel ON cel_obs (nom_referentiel(5));
|
|
|
418 |
$req = sprintf("SELECT r.referentiel, r.num_taxon, r.nom_commun FROM cel_references r" .
|
|
|
419 |
" INNER JOIN cel_obs c ON (r.referentiel = substring_index(c.nom_referentiel, ':', 1) and r.num_taxon = c.nt)" .
|
|
|
420 |
" WHERE c.id_observation IN (%s)",
|
|
|
421 |
implode(',', $obsids));
|
|
|
422 |
$res = $cel->requeter($req);
|
|
|
423 |
foreach($res as $v) {
|
|
|
424 |
self::$cache['getNomCommun'][$v['referentiel'] . '-' . $v['num_taxon'] . '-' . 'fra'] = $v['nom_commun'];
|
|
|
425 |
}
|
|
|
426 |
return NULL;
|
|
|
427 |
}
|
1702 |
raphael |
428 |
|
|
|
429 |
static function referenceTableExiste($cel) {
|
|
|
430 |
if(!self::$is_table) {
|
|
|
431 |
// une seule fois
|
|
|
432 |
if(! $cel->executerRequete("SHOW TABLES LIKE 'cel_references'", Cel::SQL_RETOUR_LIGNE)) return FALSE;
|
|
|
433 |
self::$is_table = TRUE;
|
|
|
434 |
}
|
|
|
435 |
return TRUE;
|
|
|
436 |
}
|
1694 |
raphael |
437 |
|
1685 |
raphael |
438 |
static function getNomCommun_v4($obs, $cel) {
|
|
|
439 |
if(! $obs['nt']) return NULL;
|
1702 |
raphael |
440 |
if(! self::referenceTableExiste($cel)) return NULL;
|
1689 |
raphael |
441 |
|
1685 |
raphael |
442 |
$langue = 'fra';
|
|
|
443 |
list($referentiel) = explode(':', strtolower($obs['nom_referentiel']));
|
|
|
444 |
$cache_id = $referentiel . '-' . $obs['nt'] . '-' . $langue;
|
|
|
445 |
|
|
|
446 |
if(isset(self::$cache['getNomCommun'][$cache_id])) return self::$cache['getNomCommun'][$cache_id];
|
1695 |
raphael |
447 |
// XXX: problème de valeurs NULL ?
|
|
|
448 |
if(array_key_exists($cache_id, self::$cache['getNomCommun'])) return self::$cache['getNomCommun'][$cache_id];
|
1685 |
raphael |
449 |
|
|
|
450 |
// pas de cache:
|
|
|
451 |
$nom = $cel->executerRequete(sprintf("SELECT nom_commun FROM cel_references " .
|
|
|
452 |
"WHERE referentiel = '%s' AND num_taxon = %d LIMIT 1",
|
|
|
453 |
$referentiel,
|
|
|
454 |
$obs['nt']),
|
|
|
455 |
Cel::SQL_RETOUR_LIGNE);
|
|
|
456 |
|
|
|
457 |
if(! $nom) return NULL;
|
|
|
458 |
$nom = $nom["nom_commun"];
|
|
|
459 |
|
|
|
460 |
// cache
|
|
|
461 |
self::$cache['getNomCommun'][$cache_id] = $nom;
|
|
|
462 |
return $nom;
|
|
|
463 |
}
|
1702 |
raphael |
464 |
|
|
|
465 |
|
|
|
466 |
/* Cette fonction initialise le cache des données baseflor en 1 fois, sur la liste des observations à exporter.
|
|
|
467 |
Ainsi, les appels successifs à baseflor_ligne() ne sont pas couteux (pas de requête SQL) */
|
|
|
468 |
static function baseflor_preload($cel, $obsids) {
|
|
|
469 |
if(!$obsids) return;
|
|
|
470 |
if(!self::referenceTableExiste($cel)) return NULL;
|
|
|
471 |
|
|
|
472 |
$req = sprintf("SELECT referentiel, num_nom_retenu, %s FROM cel_references r" .
|
|
|
473 |
" INNER JOIN cel_obs c ON (r.num_nom_retenu = c.nom_ret_nn)" .
|
|
|
474 |
" WHERE c.id_observation IN (%s)",
|
|
|
475 |
//" AND catminat_code IS NOT NULL", // TODO: suppression des NULL ici signifie que le cache sera partiel...
|
|
|
476 |
implode(',', array_keys(self::$baseflor_col)),
|
|
|
477 |
implode(',', $obsids));
|
|
|
478 |
$res = $cel->requeter($req);
|
1706 |
raphael |
479 |
if(!$res) return NULL;
|
1702 |
raphael |
480 |
|
|
|
481 |
foreach($res as $v) {
|
|
|
482 |
$data = $v;
|
|
|
483 |
unset($data['referentiel']); // non nécessaire
|
|
|
484 |
unset($data['num_nom_retenu']); // non nécessaire
|
|
|
485 |
self::$cache['getBaseflor'][$v['referentiel'] . '-' . $v['num_nom_retenu']] = $data;
|
|
|
486 |
}
|
|
|
487 |
|
|
|
488 |
return NULL;
|
|
|
489 |
}
|
1654 |
aurelien |
490 |
|
1685 |
raphael |
491 |
|
1702 |
raphael |
492 |
static function baseflor_ligne($cel, $obs, &$ligne) {
|
|
|
493 |
|
|
|
494 |
if(! $obs['nom_ret_nn']) {
|
1706 |
raphael |
495 |
$ligne = array_merge($ligne, array_fill(0, count(self::$baseflor_col), NULL));
|
1702 |
raphael |
496 |
return;
|
|
|
497 |
}
|
|
|
498 |
|
|
|
499 |
if(! self::referenceTableExiste($cel)) {
|
1706 |
raphael |
500 |
$ligne = array_merge($ligne, array_fill(0, count(self::$baseflor_col), NULL));
|
1702 |
raphael |
501 |
return;
|
|
|
502 |
}
|
|
|
503 |
|
|
|
504 |
list($referentiel) = explode(':', strtolower($obs['nom_referentiel']));
|
|
|
505 |
$cache_id = $referentiel . '-' . $obs['nom_ret_nn'];
|
|
|
506 |
|
|
|
507 |
// XXX: problème de valeurs NULL pour utiliser simplement isset() ?
|
|
|
508 |
// @ car getBaseflor[] n'est peut-être pas encore initialisé
|
|
|
509 |
if(@array_key_exists($cache_id, self::$cache['getBaseflor'])) {
|
|
|
510 |
$ligne = array_merge($ligne, self::$cache['getBaseflor'][$cache_id]);
|
|
|
511 |
return;
|
|
|
512 |
}
|
|
|
513 |
|
|
|
514 |
// pas de cache:
|
|
|
515 |
$data = $cel->executerRequete(sprintf("SELECT %s FROM cel_references " .
|
|
|
516 |
"WHERE referentiel = '%s' AND num_nom_retenu = %d LIMIT 1",
|
|
|
517 |
implode(', ', array_keys(self::$baseflor_col)),
|
|
|
518 |
$referentiel,
|
|
|
519 |
$obs['nom_ret_nn']),
|
|
|
520 |
Cel::SQL_RETOUR_LIGNE);
|
|
|
521 |
|
|
|
522 |
if(! $data) {
|
1706 |
raphael |
523 |
$ligne = array_merge($ligne, array_fill(0, count(self::$baseflor_col), NULL));
|
1702 |
raphael |
524 |
return;
|
|
|
525 |
}
|
|
|
526 |
|
|
|
527 |
// cache
|
|
|
528 |
self::$cache['getBaseflor'][$cache_id] = $data;
|
|
|
529 |
$ligne = array_merge($ligne, $data);
|
|
|
530 |
}
|
1654 |
aurelien |
531 |
}
|