Subversion Repositories eFlore/Applications.cel

Rev

Rev 1638 | Rev 1642 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1630 raphael 1
<?php
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
 
12
/**
13
 * Service d'export de données d'observation du CEL au format XLS
14
 *
15
 * Format du service :
16
 * POST /ExportXLS
17
 * POST /ExportXLS/<Utilisateur>
18
 * TODO: GET /ExportXLS/<Utilisateur> [ sans "range" ? ]
19
 *
20
 * Les données POST acceptées sont:
21
 * range (obligatoire): un range d'id_observation sous la forme d'entier ou d'intervalles d'entiers
22
 *						séparés par des virgules ou bien '*' (pour toutes)
23
 * TODO: limit
24
 * TODO: départ
25
 * TODO: sets (ou colonnes, ou extended)
26
 * TODO: + les critères supportés par fabriquerSousRequeteRecherche()
27
 *
28
 * Si <Utilisateur> est fourni, celui-ci doit être authentifié
29
 * TODO: export des données public et non-sensible d'un utilisateur
30
 *
31
 * Si <Utilisateur> est fourni, le observations seront le résultat de l'intersection des 2 contraintes
32
 *
33
 */
34
set_include_path(get_include_path() . PATH_SEPARATOR . dirname(dirname(realpath(__FILE__))) . '/lib');
1634 raphael 35
// TERM
36
ini_set('html_errors', 0);
37
ini_set('xdebug.cli_color', 2);
38
require_once('lib/PHPExcel/Classes/PHPExcel.php');
1630 raphael 39
 
1639 raphael 40
define('SEPARATEUR_IMAGES', ",");
41
 
1633 raphael 42
// si getNomCommun_v2 ou getNomCommun_v3 sont utilisés
43
/*require_once('/home/raphael/eflore/framework/framework/Framework.php');
44
Framework::setCheminAppli("/home/raphael/eflore/projets/services/index.php");
45
Framework::setInfoAppli(Config::get('info'));
46
require_once('/home/raphael/eflore/projets/services/modules/0.1/Projets.php');*/
47
 
1630 raphael 48
class ExportXLS extends Cel  {
49
 
1633 raphael 50
	private $cache = Array();
1639 raphael 51
	private $id_utilisateur = NULL;
1633 raphael 52
 
1630 raphael 53
	function ExportXLS($config) {
54
		parent::__construct($config);
55
	}
56
 
57
	/*
58
	 * Process $_POST et $_GET
59
	 * TODO: changer JRest pour pouvoir disposer d'un nom de méthode plus représentatif que "updateXXX"
60
	 * en POST
61
	 */
62
	function updateElement($uid, $pairs) {
1632 raphael 63
		$params = Array('uid' => $uid[0]);
1630 raphael 64
		// TODO: pas de range mais un utilisateur: possible
65
		if(!isset($_POST['range'])) {
66
			header('HTTP/1.0 204 No Content');
67
			exit;
68
		}
1632 raphael 69
		// trim() car: `POST http://url<<<"range=*"`
70
		elseif(trim($_POST['range']) == '*') {
1638 raphael 71
			$obs_ids = Array('*');
1630 raphael 72
		}
73
		else {
1638 raphael 74
			$obs_ids = self::rangeToList(trim($_POST['range']));
1630 raphael 75
		}
1638 raphael 76
		$this->export($obs_ids, NULL, $params);
1630 raphael 77
		exit;
78
	}
79
 
80
	/*
81
	 * $param: Tableau associatif, indexes supportés:
82
	 * 		   - widget: le nom du widget d'origine (utilisé pour les méta-données du tableur)
83
	 *
84
	 */
1638 raphael 85
	function export(Array $obs_ids, String $fieldSets = NULL, Array $params = Array()) {
86
		$colonnes = self::nom_d_ensemble_vers_liste_de_colonnes($fieldSets);
87
		// $colonne_abbrev = array_keys($colonnes);
1630 raphael 88
		$chercheur_observations = new RechercheObservation($this->config);
89
 
90
		$objPHPExcel = new PHPExcel();
91
 
92
		// TODO: $params['part'] pour le multi-part
93
		$params['widget'] = isset($params['widget']) ? $params['widget'] : 'CEL';
94
		// TODO: controleUtilisateur()
1632 raphael 95
		if(! $params['uid']) { // || ! $this->controleUtilisateur($params['uid'])) {
1630 raphael 96
			$params['uid'] = NULL;
97
		}
1639 raphael 98
		if($params['uid']) $this->id_utilisateur = intval($params['uid']);
1630 raphael 99
 
100
		$criteres = Array();
1638 raphael 101
		if(! $obs_ids || count($obs_ids) == 1 && $obs_ids[0] == '*') {
1630 raphael 102
			unset($criteres['raw']);
103
		}
104
		else {
105
			$criteres = Array('raw' =>
1638 raphael 106
							  sprintf('id_observation IN (%s)', implode(',', $obs_ids)));
1630 raphael 107
		}
108
 
109
		$criteres['debut'] = isset($_GET['debut']) ? intval($_GET['debut']) : 0;
110
		$criteres['limite'] = isset($_GET['limite']) ? intval($_GET['limite']) : 0;
1632 raphael 111
		$observations = $chercheur_observations
1634 raphael 112
			->rechercherObservations($params['uid'], $criteres, $criteres['debut'], $criteres['limite'], TRUE)
1632 raphael 113
			->get();
114
 
115
		// debug //echo ($chercheur_observations->requete_selection_observations);
1630 raphael 116
		// XXX: malheureusement l'instance de JRest n'est pas accessible ici
117
		if(!$observations) {
118
			header('HTTP/1.0 204 No Content');
119
			exit;
120
		}
121
 
122
		$objPHPExcel->getProperties()->setCreator($params['widget']) // ou $uid ?
123
			->setLastModifiedBy("XX") // TODO: $uid
124
			->setTitle("YY") // TODO
125
			->setSubject("ZZ") // TODO
126
			->setDescription("Export blah");
127
			//->setKeywords("office PHPExcel php")
128
			//->setCategory("Test result file")
129
 
130
		$objPHPExcel->getActiveSheet()->setTitle("Observations");
1638 raphael 131
		$feuille = $objPHPExcel->setActiveSheetIndex(0);
1630 raphael 132
		$colid = 0;
133
		foreach($colonnes as $colonne) {
1639 raphael 134
			if($colonne['extra'] == 2) continue;
135
 
1638 raphael 136
			$feuille->setCellValueByColumnAndRow($colid, 1, $colonne['nom']);
1639 raphael 137
			if($colonne['extra'] == 1) {
1638 raphael 138
				$feuille->getStyleByColumnAndRow($colid, 1)->getBorders()->applyFromArray(
1630 raphael 139
					array(
140
						'allborders' => array(
141
							'style' => PHPExcel_Style_Border::BORDER_DASHDOT,
142
							'color' => array('rgb' => PHPExcel_Style_Color::COLOR_BLUE)
143
						)
144
					)
145
				);
146
			}
147
			$colid++;
148
		}
149
 
150
		$objPHPExcel->getActiveSheet()->getDefaultColumnDimension()->setWidth(12);
151
 
1638 raphael 152
		$ligne = 2;
1630 raphael 153
		foreach ($observations as $obs) {
154
			$colid = 0;
1638 raphael 155
			foreach($colonnes as $abbrev => $colonne) {
1639 raphael 156
				if($colonne['extra'] == 2) continue;
157
 
1632 raphael 158
				// valeur direct depuis cel_obs ?
1638 raphael 159
				if(isset($obs[$abbrev])) $valeur = $obs[$abbrev];
1630 raphael 160
 
1632 raphael 161
				// pré-processeur de la champs
162
				if(function_exists($colonne['fonction'])) {
163
					$valeur = $colonne['fonction']($valeur);
164
				} elseif(method_exists(__CLASS__, $colonne['fonction'])) {
165
					$valeur = call_user_func(array(__CLASS__, $colonne['fonction']), $valeur);
166
				} elseif($colonne['fonction']) {
167
					die("méthode {$colonne['fonction']} introuvable");
1630 raphael 168
				}
1632 raphael 169
				// fonction pour obtenir des champs (étendus)
170
				elseif(function_exists($colonne['fonction_data'])) {
171
					$valeur = $colonne['fonction_data']($obs);
172
				}
173
				elseif(method_exists(__CLASS__, $colonne['fonction_data'])) {
174
					$valeur = call_user_func(array(__CLASS__, $colonne['fonction_data']), $obs);
175
				}
1630 raphael 176
 
1632 raphael 177
 
1630 raphael 178
				// // cette section devrait être vide:
179
				// // cas particuliers ingérable avec l'architecture actuelle:
1638 raphael 180
				if(false && $abbrev == 'date_observation' && $valeur == "0000-00-00") { /* blah */ }
1630 raphael 181
				// // fin de section "cas particuliers"
182
 
1638 raphael 183
				$feuille->setCellValueByColumnAndRow($colid, $ligne, $valeur);
1630 raphael 184
				$colid++;
185
			}
1638 raphael 186
			$ligne++;
1630 raphael 187
		}
188
 
189
		header("Content-Type: application/vnd.ms-excel");
190
		header("Content-Disposition: attachment; filename=\"liste.xls\"; charset=utf-8");
191
		header("Cache-Control: max-age=0");
192
		// Le format Excel2007 utilise un fichier temporaire
1638 raphael 193
		$generateur = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');
194
		// $generateur = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5');
195
		$generateur->save('php://output');
1630 raphael 196
		exit;
197
	}
198
 
199
	/*
200
	 * @param $fieldSets: un range, eg: 1-5,8,32,58-101
201
	 * @return un tableau trié, eg: 1,2,3,4,5,8,32,58,...,101
1638 raphael 202
	 * http://stackoverflow.com/questions/7698664/converting-a-range-or-partial-array-in-the-form-3-6-or-3-6-12-into-an-arra
1630 raphael 203
	 */
204
	static function rangeToList($in = '') {
205
		$inSets = explode(',', $in);
206
		$outSets = array();
1632 raphael 207
 
1630 raphael 208
		foreach($inSets as $inSet) {
209
			list($start,$end) = explode('-', $inSet . '-' . $inSet);
1634 raphael 210
			// ignore les ranges trop importants
211
			if($start > 10000000 || $end > 10000000 || abs($start-$end) > 10000) continue;
1630 raphael 212
			$outSets = array_merge($outSets,range($start,$end));
213
		}
214
		$outSets = array_unique($outSets);
215
		$outSets = array_filter($outSets, 'is_numeric');
216
		sort($outSets);
217
		return $outSets;
218
	}
219
 
220
	/*
221
	 * @param $fieldSets: un liste de noms de colonnes ou de sets de colonnes
222
	 *		séparés par des virgules
223
	 * 		eg: "espece" ou "champs-etendus", ...
224
	 *
225
	 * @return: un tableau associatif déjà ordonné
1638 raphael 226
	 * 		clé: abbrev [machine-name] de la colonne (eg: "espece" ou "mot-clef")
1630 raphael 227
	 * 		valeur: des données relative à cette colonne, cf GenColInfo
228
	 *
229
	 * @TODO: fonction commune à la génération en CSV
1638 raphael 230
	 *
1630 raphael 231
	 */
1638 raphael 232
	static function nom_d_ensemble_vers_liste_de_colonnes($groupe_de_champs = 'standard') {
233
		if(! $groupe_de_champs) $groupe_de_champs = 'standard';
234
		$groupe_de_champs = array_flip(explode(',', $groupe_de_champs));
1630 raphael 235
		$colonnes = Array();
236
 
1638 raphael 237
		if(isset($groupe_de_champs['standard'])) {
1630 raphael 238
		   $colonnes += Array(
239
			   'nom_sel'			=> self::GenColInfo('nom_sel', 'Espèce'),
1632 raphael 240
			   'nom_sel_nn'			=> self::GenColInfo('nom_sel_nn', 'Numéro nomenclatural'),
1630 raphael 241
			   'nom_ret'			=> self::GenColInfo('nom_ret', 'Nom retenu'),
1632 raphael 242
			   'nom_ret_nn'			=> self::GenColInfo('nom_ret_nn', 'Numéro nomenclatural nom retenu'),
243
			   'nt'					=> self::GenColInfo('nt', 'Numéro taxonomique'),
1630 raphael 244
			   'famille'			=> self::GenColInfo('famille', 'Famille'),
245
			   'nom_referentiel'	=> self::GenColInfo('nom_referentiel', 'Referentiel taxonomique'),
246
			   'zone_geo'			=> self::GenColInfo('zone_geo', 'Commune'),
247
			   'ce_zone_geo'		=> self::GenColInfo('ce_zone_geo', 'Identifiant Commune', 0, 'convertirCodeZoneGeoVersDepartement'),
248
			   'date_observation'	=> self::GenColInfo('date_observation', 'Date', 0, 'formaterDate'),
249
			   'lieudit'			=> self::GenColInfo('lieudit', 'Lieu-dit'),
250
			   'station'			=> self::GenColInfo('station', 'Station'),
251
			   'milieu'				=> self::GenColInfo('milieu', 'Milieu'),
252
			   'commentaire'		=> self::GenColInfo('commentaire', 'Notes'),
253
			   'latitude'			=> self::GenColInfo('latitude', 'Latitude', 1),
254
			   'longitude'			=> self::GenColInfo('longitude', 'Longitude', 1),
1632 raphael 255
			   'geodatum'			=> self::GenColInfo('geodatum', 'Référentiel Géographique', 1),
1630 raphael 256
 
1635 raphael 257
			   // TODO: importable = FALSE car pas de merge de données importées
258
			   'ordre'				=> self::GenColInfo('ordre', 'Ordre', 1, NULL, NULL, FALSE),
259
			   'id_observation'		=> self::GenColInfo('id_observation', 'Identifiant', 1, NULL, NULL, FALSE),
1630 raphael 260
 
261
			   'mots_cles_texte'	=> self::GenColInfo('mots_cles_texte', 'Mots Clés', 1),
262
			   'commentaire'		=> self::GenColInfo('commentaire', 'Commentaires', 1),
263
			   'date_creation'		=> self::GenColInfo('date_creation', 'Date Création', 1),
264
			   'date_modification'	=> self::GenColInfo('date_modification', 'Date Modification', 1),
1639 raphael 265
 
266
			   // rappel transmission = 1, signifie simplement "public"
267
			   // des données importées peuvent être d'emblée "publiques"
268
			   // "importable" = TRUE
269
			   'transmission'		=> self::GenColInfo('transmission', 'Transmis', 1),
1630 raphael 270
			   'date_transmission'	=> self::GenColInfo('date_transmission', 'Date Transmission', 1),
1635 raphael 271
			   'abondance'			=> self::GenColInfo('abondance', 'Abondance', 1, NULL, NULL, FALSE),
272
			   'certitude'			=> self::GenColInfo('certitude', 'Certitude', 1, NULL, NULL, FALSE),
273
			   'phenologie'			=> self::GenColInfo('phenologie', 'Phénologie', 1, NULL, NULL, FALSE),
1632 raphael 274
 
1639 raphael 275
			   'nom_commun'			=> self::GenColInfo('nom_commun', 'Nom Commun', 1, NULL, 'getNomCommun', FALSE),
276
			   //'nom-commun'			=> self::GenColInfo('nom-commun', 'Nom Commun', 1, NULL, 'getNomCommun_v2'),
277
			   //'nom-commun'			=> self::GenColInfo('nom-commun', 'Nom Commun', 1, NULL, 'getNomCommun_v3'),
278
 
279
			   'images'				=> self::GenColInfo('image', 'Image(s)', 1, NULL, 'getImages', TRUE),
1630 raphael 280
		   );
281
		}
282
 
283
		return $colonnes;
284
	}
285
 
286
	/*
287
	 * Wrapper générant un tableau associatif:
1639 raphael 288
 
289
	 * @param $abbrev (obligatoire): nom court de colonne, largement utilisé lors de l'import.
290
	 *		  En effet chaque ligne importée est accessible à l'aide du `define` de $abbrev en majuscule, préfixé de "C_"
291
	 *		  Exemple: $ligne[C_LONGITUDE] pour "longitude".
292
	 *		  cf: ImportXLS::detectionEntete()
293
 
294
	 * @param $nom (obligatoire): nom complet de colonne (utilisé pour la ligne d'en-tête)
295
 
296
	 * @param $is_extra:
297
	 * Si 0, la colonne est une colonne standard
298
	 * Si 1, la colonne est extra [le plus souvent générée automatiquement]
299
	 *		 (auquel cas une bordure bleue entoure son nom dans la ligne d'entête)
300
	 * Si 2, la colonne n'est pas traité à l'export, mais une définition peut lui être donnée
301
	 *		 qui pourra être utilisée à l'import, exemple: "image"
302
 
1632 raphael 303
	 * @param $fonction (optionnel): un nom d'un fonction de préprocessing
304
	 * 		  $fonction doit prendre comme seul argument la valeur d'origine et retourner la valeur transformée
1639 raphael 305
 
1632 raphael 306
	 * @param $fonction_data (optionnel): une *méthode* d'obtention de donnée
1639 raphael 307
	 * 		  $fonction_data doit prendre comme premier argument le tableau des champs de l'enregistrement existant
1632 raphael 308
	 *		  $fonction_data doit retourner une valeur
309
 
1639 raphael 310
	 * @param $importable (optionnel): défini si la colonne est traitée (ou absolument ignorée par PHPExcel) lors de
311
	 *		  l'import.
312
 
1630 raphael 313
	 */
1638 raphael 314
	static function GenColInfo($abbrev, $nom, $is_extra = 0, $fonction = NULL, $fonction_data = NULL, $importable = TRUE) {
315
		return Array('abbrev' => $abbrev,
1630 raphael 316
					 'nom' => $nom,
317
					 'extra' => $is_extra ? 1 : 0,
1632 raphael 318
					 'fonction' => $fonction,
1635 raphael 319
					 'fonction_data' => $fonction_data,
320
					 'importable' => $importable
1630 raphael 321
		);
322
	}
323
 
324
	protected function formaterDate($date_heure_mysql, $format = NULL) {
325
		if (!$date_heure_mysql || $date_heure_mysql == "0000-00-00 00:00:00") return "00/00/0000";
1632 raphael 326
		$timestamp = DateTime::createFromFormat("Y-m-d H:i:s", $date_heure_mysql)->getTimestamp();
1630 raphael 327
		if(!$timestamp) return "00/00/0000";
328
		// TODO: les widget ne font malheureusement pas usage de l'heure dans le CEL
1639 raphael 329
		// TODO: si modification, ne pas oublier de modifier le format d'import correspondant
330
		//		 dans ImportXLS (actuellement: "d/m/Y")
331
		$date_formatee = strftime('%d/%m/%Y', $timestamp);
1630 raphael 332
		if(!$date_formatee) return "00/00/0000";
333
		return $date_formatee;
334
	}
1633 raphael 335
 
336
 
1639 raphael 337
	// TODO: mettre en static + param "id_utilisateur"
338
	function getImages($obs) {
339
		if(! $this->id_utilisateur) return NULL;
340
 
341
		$rec = $this->requeter(
342
			sprintf("SELECT GROUP_CONCAT(nom_original SEPARATOR '%s') FROM cel_images i"
343
					. " LEFT JOIN cel_obs_images oi ON (i.id_image = oi.id_image)"
344
					. " LEFT JOIN cel_obs o ON (oi.id_observation = o.id_observation)"
345
					. " WHERE ce_utilisateur = %d",
346
 
347
					SEPARATEUR_IMAGES,
348
					$this->id_utilisateur));
349
		return $rec ? array_pop($rec) : NULL;
350
 
351
	}
352
 
353
 
1633 raphael 354
	// TODO: référentiel ne devrait pas être généré au moment d'un Config::get,
355
	// comme dans Config::get('nomsVernaRechercheLimiteeTpl')
356
	// Par exemple, la variable pour "nva" ?
357
	function getNomCommun($obs) {
358
		$langue = 'fra';
359
		list($referentiel) = explode(':', strtolower($obs['nom_referentiel']));
360
		if($referentiel == 'bdtfx') $referentiel = 'nvjfl';
361
		else return '';
362
 
363
		$cache_id = $referentiel . '-' . $obs['nt'] . '-' . $langue;
364
		if(isset($this->cache['getNomCommun'][$cache_id])) {
365
			//debug: error_log("require url_service_nom_attribution: OK ! (pour \"{$obs['nom_ret']}\")");
366
			return $this->cache['getNomCommun'][$cache_id];
367
		}
368
		// pas de cache:
369
		//debug: error_log("require url_service_nom_attribution pour \"{$obs['nom_ret']}\"");
370
 
371
		// pour bdtfx:
372
		// /service:eflore:0.1/nvjfl/noms-vernaculaires/attributions?masque.nt=X&masque.lg=fra&retour.champs=num_statut
373
		// /projet/services/modules/0.1/nvjfl/NomsVernaculaires.php
374
		$url = str_replace(Array('{referentiel}', '{valeur}', '{langue}'),
375
						   Array($referentiel, $obs['nt'], $langue),
376
						   $this->config['eflore']['url_service_nom_attribution']) .
377
			"&retour.champs=num_statut";
378
		$noms = @json_decode(file_get_contents($url));
379
		if(! $noms) return '';
380
		$noms = array_filter((array)($noms->resultat), function($item) { return ($item->num_statut == 1); });
381
		$nom = array_pop($noms)->nom_vernaculaire;
382
 
383
		// cache
384
		$this->cache['getNomCommun'][$cache_id] = $nom;
385
		return $nom;
386
	}
387
 
388
 
389
	/* Tente de bootstraper le framework au plus court et d'initialiser une instance de
390
	   NomsVernaculaires pour obtenir le nom commun */
391
	function getNomCommun_v2($obs) {
392
		static $service;
393
		$service = new Projets();
394
 
395
		$langue = 'fra';
396
		list($referentiel) = explode(':', strtolower($obs['nom_referentiel']));
397
		if($referentiel == 'bdtfx') $referentiel = 'nvjfl';
398
		else return '';
399
 
400
		$cache_id = $referentiel . '-' . $obs['nt'] . '-' . $langue;
401
		if(isset($this->cache['getNomCommun'][$cache_id])) {
402
			error_log("require NomsVernaculaires.php: OK ! (pour \"{$obs['nom_ret']}\")");
403
			return $this->cache['getNomCommun'][$cache_id];
404
		}
405
		// pas de cache:
406
		error_log("require NomsVernaculaires.php pour \"{$obs['nom_ret']}\"");
407
 
1638 raphael 408
		$donnees = Array('masque.nt' => $obs['nt'],
1633 raphael 409
							 'masque.lg' => $langue,
410
							 'retour.champs' => 'num_statut');
1638 raphael 411
		$noms = $service->consulter(Array('nvjfl', 'noms-vernaculaires'), $donnees);
1633 raphael 412
 
413
		if(! $noms) return '';
414
		$noms = array_filter((array)($noms->resultat), function($item) { return ($item->num_statut == 1); });
415
		$nom = array_pop($noms)->nom_vernaculaire;
416
 
417
		// cache
418
		$this->cache['getNomCommun'][$cache_id] = $nom;
419
		return $nom;
420
	}
421
 
422
 
423
	/* Effectue un bootstraping plus sage que ci-dessus, mais le gain d'efficacité
424
	   n'est pas aussi retentissant qu'espéré */
425
	static $service;
426
	function getNomCommun_v3($obs) {
427
		if(! $this->service) $this->service = new Projets();
428
 
429
		$langue = 'fra';
430
		list($referentiel) = explode(':', strtolower($obs['nom_referentiel']));
431
		if($referentiel == 'bdtfx') $referentiel = 'nvjfl';
432
		else return '';
433
 
434
		$cache_id = $referentiel . '-' . $obs['nt'] . '-' . $langue;
435
		if(isset($this->cache['getNomCommun'][$cache_id])) {
436
			error_log("require NomsVernaculaires.php: OK ! (pour \"{$obs['nom_ret']}\")");
437
			return $this->cache['getNomCommun'][$cache_id];
438
		}
439
		// pas de cache:
440
		error_log("require NomsVernaculaires.php pour \"{$obs['nom_ret']}\"");
441
 
1638 raphael 442
		$donnees = Array('masque.nt' => $obs['nt'],
1633 raphael 443
					  'masque.lg' => $langue,
444
					  'retour.champs' => 'conseil_emploi');
1638 raphael 445
		$this->service->initialiserRessourcesEtParametres(Array('nvjfl', 'noms-vernaculaires', 'attributions'), $donnees);
1633 raphael 446
		try {
447
			$noms = $this->service->traiterRessources();
448
		} catch(Exception $e) { return ''; }
449
		if(! $noms) return '';
450
		$noms = array_filter($noms['resultat'], function($item) { return ($item['num_statut'] == 1); });
451
		$nom = array_pop($noms)['nom_vernaculaire'];
452
 
453
		// cache
454
		$this->cache['getNomCommun'][$cache_id] = $nom;
455
		return $nom;
456
	}
457
 
458
}