Subversion Repositories eFlore/Projets.eflore-projets

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1323 delphine 1
<?php
2
// declare(encoding='UTF-8');
3
/**
4
* Description :
5
* Classe CommunNomsTaxons.php
6
* Encodage en entrée : utf8
7
* Encodage en sortie : utf8
8
* @package framework-v3
9
* @author Jennifer Dhé <jennifer.dhe@tela-botanica.org>
10
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
11
* @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
12
* @version 1.0
13
* @copyright 1999-2011 Tela Botanica (accueil@tela-botanica.org)
14
*/
15
 
16
 
17
abstract class CommunNomsTaxons extends Commun {
18
 
19
	/** Tableau de correspondance entre les noms des champs et les codes de l'ontologie.*/
20
	private $relationsChampsCodesOntologie = null;
21
	protected $table_retour; //Permet de stocker le tableau de résultat (non encodé en json)
22
	protected $resultat_req; // Permet de stocker le résultat de la requete principale.
23
	protected $compo_nom = null; //Stocke sous forme de tableau les composant du nom à ajouter au nom scientifique
24
	protected $table;// Nom de la table dans laquelle on récupèrera les données dans les requetes SQL
25
	protected $total_resultat = null;
26
	 /** Stocke le service appelé correspondant. Est utilisé principalement lors de l'affichage du href d'un synonyme
27
	  (ex id=12, basionyme num 25 est un synonyme) dans le service taxon */
28
	protected $service_href = null;
29
	protected $erreursParametres = null;
30
	protected $sans_nom_sci = array('gen','sp','ssp','fam','au_ss','bib_ss');
31
	private $bib_traitees = array();
32
	private $ontologie = array();
33
 
34
//+------------------------------- PARAMÈTRES ---------------------------------------------------------------+
35
 
36
	public function traiterParametres() {
37
		$this->definirParametresParDefaut();
38
		$this->verifierParametres();
39
 
40
		if (isset($this->parametres) && count($this->parametres) > 0) {
41
			foreach ($this->parametres as $param => $val) {
42
				switch ($param) {
43
					case 'ns.structure' :
44
						$this->remplirTableCompositionNom($val);
45
						if (in_array($val,$this->sans_nom_sci)){
46
							$this->requete_champ = implode(', ',$this->compo_nom);
47
						}else {
48
							$this->requete_champ .= ' ,'.implode(', ',$this->compo_nom);
49
						}
50
						break;
51
					case 'navigation.depart' :
52
							$this->limite_requete['depart'] = $val;
53
						break;
54
					case 'navigation.limite' :
55
							$this->limite_requete['limite'] = $val;
56
						break;
57
				}
58
			}
59
			$this->traiterParametresSpecifiques();
60
		}
61
	}
62
 
63
	protected function definirParametresParDefaut() {
64
		if (empty($this->parametres['recherche'])) {
65
			$this->parametres['recherche'] = 'stricte';
66
		}
67
		if (empty($this->parametres['ns.format'])) {
68
			$this->parametres['ns.format'] =  'txt';
69
		}
70
		if (empty($this->parametres['retour.format'])) {
71
			$this->parametres['retour.format'] = 'max';
72
		}
73
		if (empty($this->parametres['ns.structure']) &&
74
			$this->parametres['retour.format'] != 'oss') {
75
			$this->parametres['ns.structure'] = 'au,an,bib';
76
		}
77
	}
78
 
79
 
80
	public function verifierParametres() {
81
		//$this->verifierParametresAPI();
82
 
83
		$this->verifierParametre('recherche', 'stricte|floue|etendue|complete');
84
		$this->verifierParametre('ns.format', 'htm|txt');
85
		$this->verifierParametre('retour.format', 'min|max|oss|perso');
86
		$this->verifierParametreAvecValeurMultipe('ns.structure', 'an|au|bib|ad|gen|sp|ssp|fam|au_ss|bib_ss');
87
 
88
		/*if (count($this->erreursParametres) > 0) {
89
			$m = 'Erreur dans votre requête : '.implode('<br/>', $this->erreursParametres);
90
			$this->renvoyerErreur(RestServeur::HTTP_CODE_MAUVAISE_REQUETE, $m);
91
		}*/
92
	}
93
 
94
	public function verifierParametresAPI() {
95
		$parametresApi = $this->recupererTableauConfig('parametresAPI');
96
		while (!is_null($parametre = key($this->parametres))) {
97
			if (!in_array($parametre, $parametresApi)) {
98
				$this->erreursParametres[] = "Le paramètre '$parametre' n'est pas pris en compte par cette version de l'API.";
99
			}
100
			next($this->parametres);
101
		}
102
	}
103
 
104
	public function verifierParametre($parametre, $valeursPermises) {
105
		if (isset($this->parametres[$parametre]) && !empty($this->parametres[$parametre])) {
106
			$valeur = $this->parametres[$parametre];
107
			$this->verifierValeursPermises($parametre, $valeur, $valeursPermises);
108
		}
109
	}
110
 
111
	public function verifierParametreAvecValeurMultipe($parametre, $valeursPermises) {
112
		if (isset($this->parametres[$parametre]) && !empty($this->parametres[$parametre])) {
113
			$valeursConcatenees = $this->parametres[$parametre];
114
			$valeurs = explode(',', $valeursConcatenees);
115
			foreach ($valeurs as $valeur) {
116
				$this->verifierValeursPermises($parametre, $valeur, $valeursPermises);
117
			}
118
		}
119
	}
120
 
121
	private function verifierValeursPermises($parametre, $valeur, $valeursPermises) {
122
		if (!in_array($valeur, explode('|', $valeursPermises))) {
123
			$this->erreursParametres[] = "Le paramètre '$parametre' ne peut pas prendre la valeur '$valeur'. Valeurs permises : $valeursPermises";
124
		}
125
	}
126
 
127
	public function traiterParametresCommuns() {
128
 
129
	}
130
 
131
	public function ajouterFiltreMasque($nom_champ, $valeur) {
132
		$valeur = explode(',',$valeur);
133
		$conditions = array();
134
		if ($nom_champ == 'annee' || $nom_champ == 'rang') {
135
			foreach ($valeur as $val) {
136
				 $conditions[] = "$nom_champ = ".$this->getBdd()->proteger($val);
137
			}
138
		}  elseif ($nom_champ == 'referentiel') {
139
			$conditions[] = 'presence_'.$valeur[0].'="P"';
140
		} else {
141
			if ($this->parametres['recherche'] == 'etendue') {
142
				foreach ($valeur as $val) {
143
					$val = $this->modifierValeur($val);
144
					$conditions[] = "$nom_champ LIKE ".$this->getBdd()->proteger($val);
145
				}
146
 
147
			} elseif ($this->parametres['recherche'] == 'floue') {
148
				foreach ($valeur as $val) {
149
					$val = $this->getBdd()->proteger($val);
150
					$conditions[] = "( SOUNDEX($nom_champ) = SOUNDEX($val))".
151
											" OR ( SOUNDEX(REVERSE($nom_champ)) = SOUNDEX(REVERSE($val)))";
152
				}
153
			} else {
154
				foreach ($valeur as $val) {
155
					$conditions[] = "$nom_champ LIKE ".$this->getBdd()->proteger($val);
156
				}
157
			}
158
		}
159
		$this->requete_condition[]= '('.implode(' OR ', $conditions ).')';
160
		$this->masque[$nom_champ] = $nom_champ.'='.implode(',',$valeur);
161
	}
162
 
163
	private function modifierValeur($valeur) {
164
		$valeur = $this->remplacerCaractereHybrideEtChimere($valeur);
165
		$valeur = $this->preparerChainePourRechercheEtendue($valeur);
166
		return $valeur;
167
	}
168
 
169
	private function remplacerCaractereHybrideEtChimere($valeur) {
170
		$caracteres = array('×', '%D7', '+', '%2B');
171
		$remplacements = array('x ','x ', '+', '+');
172
		$valeur = str_replace($caracteres, $remplacements, $valeur);
173
		return $valeur;
174
	}
175
 
176
	private function preparerChainePourRechercheEtendue($valeur) {
177
		$valeur = str_replace(' ', '% ', trim($valeur));
178
		$valeur = $valeur.'%';
179
		return $valeur;
180
	}
181
 
182
	//+-------------------------------Fonctions d'analyse des ressources-------------------------------------+
183
 
184
	private function etreRessourceId() {
185
		$ok = false;
186
		if ($this->estUnIdentifiant() && count($this->ressources) == 1) {
187
			$ok = true;
188
		}
189
		return $ok;
190
	}
191
 
192
	public function traiterRessources() {
193
		if (isset($this->ressources) && count($this->ressources) > 0) {
194
			if ($this->ressources[0] == 'relations') {
195
				$this->traiterRessourceRelations();
196
			} elseif ($this->estUnIdentifiant()) { //l'identifiant peut etre de type /#id ou /nt:#id
197
				$this->traiterRessourcesIdentifiant(); // dans le service noms ou taxons
198
			} elseif ($this->ressources[0] == 'stats') { //ressource = noms/stats
199
				$this->traiterRessourcesStats();
200
			} else {
201
				$e = 'Erreur dans votre requete </br> Ressources disponibles : <br/>
202
					 <li> /'.$this->service.'/#id (id : L\'identifiant du nom rechercher)</li>
203
					 <li> /'.$this->service.'/nt:#id (id : Numero du taxon recherche)</li>
204
					 <li> /'.$this->service.'/stats </li>';
205
				$this->renvoyerErreur(RestServeur::HTTP_CODE_MAUVAISE_REQUETE, $e);
206
			}
207
		}
208
	}
209
 
210
	public function traiterRessourcesStats() {
211
		$this->format_reponse = $this->service.'/stats';
212
 
213
		$e = "Erreur dans votre requête </br> Ressources disponibles : $this->service/stats/[annees|rangs|initiales]";
214
		if (isset($this->ressources[1]) && !empty($this->ressources[1])) {
215
			switch ($this->ressources[1]) {
216
				case 'annees' :
217
					$this->traiterRessourceStatsAnnees();
218
					break;
219
				case 'rangs' :
220
					$this->traiterRessourceStatsRangs();
221
					break;
222
				case 'initiales' :
223
					$this->traiterRessourceStatsInitiales();
224
					break;
225
				default :
226
					$this->renvoyerErreur(RestServeur::HTTP_CODE_MAUVAISE_REQUETE, $e);
227
					break;
228
			}
229
		} else {
230
			$this->renvoyerErreur(RestServeur::HTTP_CODE_MAUVAISE_REQUETE, $e);
231
		}
232
	}
233
 
234
	/** Vérifie si la première valeur de la table de ressource est un identifiant :
235
	 * un numerique ou un numéro taxonomique sous la forme nt:xx */
236
	public function estUnIdentifiant() {
237
		return (is_numeric($this->ressources[0]) || (strrpos($this->ressources[0],'nt:') !== false
238
				&& is_numeric(str_replace('nt:','',$this->ressources[0]))));
239
	}
240
 
241
	//+------------------------------------------------------------------------------------------------------+
242
	// Fonction d'analyse des parametres
243
 
244
	/** Permet de remplir le tableau compo_nom. Il comprendra en fct du paramètre ns.structure les éléments à rajouter
245
	 * au nom_sci (annee, auteur, biblio ou addendum). */
246
	public function remplirTableCompositionNom($valeur) {
247
		$structure_nom = explode(',', $valeur);
248
		foreach ($structure_nom as $structure) {
249
			$structure = trim($structure);
250
			$patterns = array('/^an$/', '/^au$/', '/^bib$/', '/^ad$/', '/^sp$/', '/^gen$/', '/^ssp$/','/^fam$/',
251
					'/^au_ss$/','/^bib_ss$/');
252
			$champs = array('annee', 'auteur', 'biblio_origine', 'nom_addendum', 'epithete_sp', 'genre',
253
					'epithete_infra_sp','famille','auteur', 'biblio_origine');
254
 
255
			// avec str_replace() 'sp' est inclu dans 'ssp', et la conversion pour 'ssp' est mauvaise
256
			$this->compo_nom[$structure] = preg_replace($patterns, $champs, $structure);
257
		}
258
	}
259
 
260
	public function mettreAuFormat() {
261
		if ($this->parametres['ns.format'] == 'htm') {
262
			if (strrpos($this->requete_champ, 'nom_sci_html as nom_sci') === false) {
263
				$this->requete_champ = str_replace('nom_sci', 'nom_sci_html as nom_sci', $this->requete_champ);
264
			}
265
		}
266
	}
267
 
268
	//+------------------------------------------------------------------------------------------------------+
269
	// Fonctions de formatage
270
 
271
	/** Fonction permettant de creer la table dont le nom est passé en paramètre (champs_api, champs_bdtfx,
272
	 * correspondance_champs...). Les données de chaque table sont présentes dans le fichier de configuration config.ini
273
	 * @param String $table : Peut contenir plusieurs nom de table dont on souhaite récupérer les données : table,table,table. */
274
	public function recupererTableSignification($table) {
275
		$tables = explode(',', $table);
276
		foreach ($tables as $tab) {
277
			if ($tab == 'champs_comp') {
278
				$champ_bdnff_api = array_keys($this->champs_api); //on recupère le nom des champ ds la bdd
279
				$this->champs_comp = array_diff($this->champs_table, $champ_bdnff_api);
280
			} elseif ($tab == 'champs_api') {
281
				foreach ($this->correspondance_champs as $key => $val) {
282
					preg_match('/(hybride[.]parent_0[12](?:[.]notes)?|nom_sci[.][^.]+|[^.]+)(?:[.](id|code))?/', $val, $match);
283
					$val = $match[1];
284
					$this->champs_api[$key] = $val;
285
				}
286
			} else {
287
				$this->$tab = $this->recupererTableauConfig($tab);
288
			}
289
		}
290
	}
291
 
292
	public function formaterEnOss($resultat) {
293
		$table_nom = array();
294
		$oss = '';
295
		foreach ($resultat as $tab) {
296
			if (isset($tab['nom_sci']) ) {
297
				if (!in_array($tab['nom_sci'], $table_nom)) {
298
					$table_nom[] = $tab['nom_sci'];
299
					$oss[] = $tab['nom_sci'].' '.$this->ajouterCompositionNom($tab);
300
				}
301
			}else {
302
				$res = $this->ajouterCompositionNom($tab);
303
				if($res) {
304
					$oss[] = $res;
305
				}
306
			}
307
 
308
		}
309
 
310
		if (isset($this->masque)) $masque = implode('&', $this->masque);
311
		else $masque = 'Pas de masque';
312
		$table_retour_oss = array($masque, $oss);
313
		return $table_retour_oss;
314
	}
315
 
316
	public function afficherEnteteResultat($url_service) {
317
		$this->table_retour['depart'] = $this->limite_requete['depart'];
318
		$this->table_retour['limite'] = $this->limite_requete['limite'];
319
		$this->table_retour['total']  = $this->total_resultat;
320
		$url = $this->formulerUrl($this->total_resultat, $url_service);
321
		if (isset($url['precedent']) && $url['precedent'] != '') {
322
			$this->table_retour['href.precedent'] = $url['precedent'];
323
		}
324
		if (isset($url['suivant']) && $url['suivant']   != '') {
325
			$this->table_retour['href.suivant']   = $url['suivant'];
326
		}
327
	}
328
 
329
	public function afficherNomHrefRetenu($tab, $num) {
330
		$this->resultat_req = $tab;
331
		$this->afficherDonnees('num_nom', $num);
332
		if ($this->parametres['retour.format'] == 'min') { // sinon est affiché ds afficherDonnees(num_nom, $val) ci-dessus
333
			 $this->table_retour['nom_sci'] = $tab['nom_sci'];
334
			 $this->table_retour['nom_sci_complet'] = $tab['nom_sci'].' '.$this->ajouterCompositionNom($tab);
335
		}
336
		if ($tab['num_nom_retenu'] != '') {
337
			$retenu = ($tab['num_nom_retenu'] == $num) ? 'true' : 'false';
338
		} else {
339
			$retenu = 'absent';
340
		}
341
		$this->table_retour['retenu'] = $retenu;
342
		unset($this->table_retour['id']);
343
	}
344
 
345
 
346
	//+------------------------------------------------------------------------------------------------------+
347
	// Fonction de formatage pour les services /#id/
348
 
349
	public function formaterId($resultat) {
350
		$this->recupererTableSignification('correspondance_champs,champs_api,champs_comp');
351
		$this->resultat_req = $resultat;
352
 
353
		foreach ($resultat as $cle => $valeur) {
354
			if ($valeur != '') {
355
				$this->afficherDonnees($cle, $valeur);
356
			}
357
		}
358
		if (isset($this->parametres['retour.champs']) && $this->format_reponse == 'noms/id') {
359
			$retour = $this->table_retour;
360
			$this->table_retour = array();
361
			$champs = explode(',', $this->parametres['retour.champs']);
362
			$this->ajouterChampsPersonnalises($champs, $retour);
363
		}
364
		unset($this->table_retour['href']);
365
		return $this->table_retour;
366
	}
367
 
368
	public function formaterIdChamp($resultat) {
369
		$this->recupererTableSignification('correspondance_champs,champs_api,champs_comp');
370
		$reponse_id = $this->formaterId($resultat);
371
		$this->table_retour = array();
372
		$champs = explode(' ', $this->ressources[1]);
373
		$this->ajouterChampsPersonnalises($champs, $reponse_id);
374
		return $this->table_retour;
375
	}
376
 
377
	protected function ajouterChampsPersonnalises($champs, $reponse_id) {
378
		$champs_a_libeller = array('nom_retenu', 'rang', 'num_basionyme', 'hybride', 'hybride.parent_01',
379
			 'hybride.parent_02', 'presence', 'tax_sup', 'statut_origine', 'statut_culture', 'statut_introduction');
380
		$champs_forces = array('rang'); // même s'ils sont dans "à libeller", on les prend quand même en brut, en plus
381
		if (! is_null($champs) && is_array($champs) && count($champs) > 0) {
382
			foreach ($champs as $champ) {
383
				if ($this->verifierValiditeChamp($champ)) {
384
					if (strrpos($champ, '.*') !== false) {
385
						$this->afficherPointEtoile($champ, $reponse_id);
386
					} elseif (in_array($champ, $champs_a_libeller)) {
387
						$this->table_retour[$champ.'.libelle'] =
388
							(isset($reponse_id[$champ.'.libelle'])) ? $reponse_id[$champ.'.libelle'] : null;
389
					} else {
390
						$champ = $this->trouverChampBddCorrespondant($champ);
391
						$this->table_retour[$champ] = (isset($reponse_id[$champ])) ? $reponse_id[$champ] : null;
392
					}
393
					// champs bruts en plus, ajouté pour obtenir le rang, mais retourne rang.code avec du kk dedans :-/
394
					if (in_array($champ, $champs_forces)) {
395
						$champ = $this->trouverChampBddCorrespondant($champ);
396
						$this->table_retour[$champ] = (isset($reponse_id[$champ])) ? $reponse_id[$champ] : null;
397
					}
398
				}
399
			}
400
		}
401
	}
402
 
403
	public function afficherPointEtoile($champ, $reponse) {
404
		preg_match('/^([^.]+\.)\*$/', $champ, $match);
405
		if ($match[1] == 'nom_sci') {
406
			$this->afficherNomSciPointEpithete($this->resultat_req);
407
		} else {
408
			foreach ($reponse as $chp => $valeur) {
409
				if (strrpos($chp, $match[1]) !== false) {
410
					if ($valeur != '') {
411
						$this->table_retour[$chp] = $valeur;
412
					} else {
413
						$this->table_retour[$chp] = null;
414
					}
415
				}
416
			}
417
		}
418
	}
419
 
420
	public function decomposerNomChamp($champ) {
421
		$decomposition = false;
422
		if (preg_match('/^(?:([^.]+\.parent_0[12]|[^.]+))(?:\.(.+))?$/', $champ, $match)) {
423
			$radical_champ = $match[1];
424
			$suffixe = (isset($match[2])) ? $match[2] : "";
425
			$decomposition = array($radical_champ, $suffixe);
426
		}
427
		return $decomposition;
428
	}
429
 
430
	public function verifierValiditeChamp($champ) {
431
		$decomposition = $this->decomposerNomChamp($champ);
432
		$validite_ressource = true;
433
		if ($decomposition) {
434
			list($radical, $suffixe) = $decomposition;
435
			$champs_complementaire = array('nom_retenu_complet', 'basionyme_complet');
436
			// on verifie si le nom du champ existe bien
437
			if (!$this->estChampApi($radical) && !$this->estChampComplementaire($radical)) {
438
				if (!in_array($radical, $champs_complementaire)) {
439
					$validite_ressource = false;
440
					$e = 'Le champ "'.$radical.'" n\'existe pas dans la base. <br/><br/>';
441
					$this->renvoyerErreur( RestServeur::HTTP_CODE_MAUVAISE_REQUETE, $e);
442
				}
443
			} elseif ($this->estUnPoint($champ)) {
444
				$validite_ressource = $this->verifierValiditeSuffixe($suffixe, $radical);
445
			}
446
		}
447
		return $validite_ressource;
448
	}
449
 
450
	public function estChampApi($radical_champ) {
451
		$champ_api_ok = false;
452
		if (in_array($radical_champ, $this->champs_api) || in_array($radical_champ, $this->correspondance_champs)) {
453
			$champ_api_ok = true;
454
		}
455
		return $champ_api_ok;
456
	}
457
 
458
	public function estChampComplementaire($radical_champ) {
459
		$champ_complementaire_ok = in_array($radical_champ, $this->champs_comp) ? true : false;
460
		return	$champ_complementaire_ok;
461
	}
462
 
463
	public function verifierValiditeSuffixe($suffixe, $radical_champ) {
464
		$validite_ressource = true;
465
		if ($this->correspondAUnId($radical_champ) || $radical_champ == 'id') {
466
			$this->verificationSuffixesIdentifiant($suffixe, $radical_champ, $validite_ressource);
467
		} elseif ($this->correspondAUnCode($radical_champ)) {
468
			$this->verificationSuffixesCodes($suffixe, $radical_champ, $validite_ressource);
469
		} elseif ($radical_champ == 'nom_sci') {
470
			if ($suffixe != '*') {
471
				$validite_ressource = false;
472
				$m = 'Erreur : Le suffixe demandé n\'existe pas pour le champ "'.$radical_champ.'".<br/>
473
					Les suffixes possibles sont les suivants : <li> * </li>';
474
				$this->renvoyerErreur( RestServeur::HTTP_CODE_MAUVAISE_REQUETE, $m);
475
			}
476
		} else {
477
			$validite_ressource = false;
478
			$m = 'Erreur : Le paramètre "'.$radical_champ.'" ne peut pas présenter de suffixe. <br/><br/>';
479
			$this->renvoyerErreur( RestServeur::HTTP_CODE_MAUVAISE_REQUETE, $m);
480
		}
481
		return $validite_ressource;
482
	}
483
 
484
	public function verificationSuffixesCodes(&$suffixe, &$radical_champ, &$validite_ressource ) {
485
		if (!in_array($suffixe, array('*', 'code', 'href', 'details'))) {
486
			$validite_ressource = false;
487
			$e = 'Erreur : Le suffixe demandé n\'existe pas pour le champ "'.$radical_champ.'.<br/> Les suffixes '
488
				.'possibles sont les suivants : <li> .* </li><li> .code </li><li> .href </li><li> .details </li>';
489
			$this->renvoyerErreur( RestServeur::HTTP_CODE_MAUVAISE_REQUETE, $e);
490
		}
491
	}
492
 
493
	public function verificationSuffixesIdentifiant(&$suffixe, &$radical_champ, &$validite_ressource) {
494
		if ((strrpos($radical_champ, 'parent') !== false && !in_array($suffixe, array('*', 'id', 'href', 'details', 'notes')))
495
			|| !in_array($suffixe, array('*', 'id', 'href', 'details')) && strrpos($radical_champ, 'parent') === false) {
496
			$validite_ressource = false;
497
			$e = 'Erreur : Le suffixe demandé n\'existe pas pour le champ "'.$radical_champ.'".<br/> Les suffixes '
498
				.'possibles sont les suivants : <li> .* </li><li> .id </li><li> .href </li><li> .details </li>'
499
				.'<li> .notes (seulement pour les hybride.parent)';
500
			$this->renvoyerErreur( RestServeur::HTTP_CODE_MAUVAISE_REQUETE, $e);
501
		}
502
	}
503
 
504
 
505
//------------------------------fonction de formatage pour les services /stats/-----------------------------------------
506
 
507
	public function formaterStatsAnnee($resultat) {
508
		foreach ($resultat as $cle_annee) {
509
			$annee = ($cle_annee['annee'] != '') ? $cle_annee['annee'] : 'ND';
510
			$nb = $cle_annee['nombre'];
511
			$retour_stats_annee[$annee] = $nb;
512
		}
513
		return $retour_stats_annee;
514
	}
515
 
516
	public function formaterStatsRang($resultat) {
517
		foreach ($resultat as $rangs) {
518
			if ($rangs['rang'] != 0) {
519
				$rang = $rangs['rang'];
520
				if ($this->parametres['retour.format'] == 'max') {
521
					$retour_rang[$rang]['rang'] = $this->ajouterSignificationCode('rang',$rang);
522
				}
523
				$nombre = $rangs['nombre'];
524
				$retour_rang[$rang]['nombre'] = $nombre;
525
			}
526
		}
527
		return $retour_rang;
528
	}
529
 
530
	public function formaterStatsInitiales($resultat) {
531
		$rang = null;
532
		$table_rang = array();
533
		foreach ($resultat as $tuple) {
534
			if ($tuple['rang'] != 0) {
535
				$this->memoriserRang($table_rang, $tuple, $rang);
536
				if ($tuple['lettre'] == 'x ') {
537
					$this->ajouterHybrideChimere('hybride', $rang, $tuple);
538
				} elseif ($tuple['lettre'] == '+ ') {
539
					$this->ajouterHybrideChimere('chimere', $rang, $tuple);
540
				} else {
541
					$l = substr($tuple['lettre'], 0, 1);
542
					if (isset($this->table_retour[$rang][$l])) {
543
						$this->table_retour[$rang][substr($tuple['lettre'], 0, 1)] += floatval($tuple['nb']);
544
					} else {
545
						$this->table_retour[$rang][substr($tuple['lettre'], 0, 1)] = floatval($tuple['nb']);
546
					}
547
				}
548
			}
549
		}
550
		return $this->table_retour;
551
	}
552
 
553
	public function memoriserRang(&$table_rang, $tuple, &$rang) {
554
		if (is_array($table_rang)) {
555
			if (!in_array($tuple['rang'], $table_rang)) {
556
				$rang = $tuple['rang'];
557
				$table_rang[] = $rang;
558
				if ($this->parametres['retour.format'] == 'max') {
559
					$rang = $this->ajouterSignificationCode('rang', $rang);
560
				}
561
			}
562
		}
563
	}
564
 
565
	public function ajouterHybrideChimere($groupe, &$rang, &$tuple) {
566
		if (isset($this->table_retour[$rang][str_replace('hybride', 'hyb', $groupe)])) {
567
			$this->table_retour[$rang][$groupe] += floatval($tuple['nb']);
568
		} else {
569
			$this->table_retour[$rang][$groupe] = floatval($tuple['nb']);
570
		}
571
	}
572
 
573
	//-----------------------------Fonctions d'affichage utiliser dans les fonctions de formatage---------------------------
574
 
575
	public function afficherDonnees($champApi, $valeur) {
576
		$champBdd = $this->trouverChampBddCorrespondant($champApi);
577
		if ($this->parametres['retour.format'] == 'min') {
578
			if ($champApi == 'nom_sci') {
579
				$valeur = $valeur.' '.$this->ajouterCompositionNom($this->resultat_req);
580
			}
581
			if ($champApi == 'nom_sci_html') {
582
				$valeur = $valeur.' '.$this->ajouterCompositionNom($this->resultat_req, 'htm');
583
			}
584
			$this->table_retour[$champBdd] = $valeur;
585
		} else {
586
			$this->afficherToutesLesInfos($champBdd, $valeur);
587
		}
588
	}
589
 
590
	public function trouverChampBddCorrespondant($champApi) {
591
		if (array_key_exists($champApi, $this->champs_api)) {
592
			$champBdd = $this->correspondance_champs[$champApi];
593
		} else {
594
			$champBdd = $champApi;
595
		}
596
		return $champBdd;
597
	}
598
 
599
	public function afficherToutesLesInfos($nom_champ_api, $valeur) {
600
		if ($this->presentePlusieursId($nom_champ_api, $valeur)) {
601
			preg_match('/^([^.]+\.parent_0[12]|[^.]+)(?:\.id)?$/', $nom_champ_api, $match);
602
			$this->afficherInfosPrecises($match[1], 'details', $valeur);
603
			$this->table_retour[$nom_champ_api] = $valeur;
604
 
605
		} elseif (strrpos($nom_champ_api, 'parent') !== false && strrpos($nom_champ_api, 'notes') !== false) {
606
			$this->table_retour[$nom_champ_api] = $valeur;
607
 
608
		} elseif (($this->correspondAUnId($nom_champ_api) || $nom_champ_api == 'id' && $valeur != '0')) {
609
			preg_match('/^([^.]+\.parent_0[12]|[^.]+)(?:\.id)?$/', $nom_champ_api, $match);
610
			$this->afficherInfosPrecises($match[1], 'id,signification,href', $valeur);
611
 
612
		} elseif ($this->correspondAUnCode($nom_champ_api)) {
613
			preg_match('/^([^.]+)(?:\.code)?$/', $nom_champ_api, $match);
614
			$this->afficherInfosPrecises($match[1], 'code,signification,href', $valeur);
615
 
616
		} elseif ($nom_champ_api == 'nom_sci_html') {
617
			$this->table_retour['nom_sci_html'] = $valeur;
618
			$this->table_retour['nom_sci_html_complet'] = $valeur.' '.$this->ajouterCompositionNom($this->resultat_req, 'htm');
619
		}elseif ($nom_champ_api != 'nom_sci') {
620
			$this->table_retour[$nom_champ_api] = $valeur;
621
		}
622
	}
623
 
624
	public function presentePlusieursId($ressource, $valeur = null) {
625
		if ($valeur) {
626
			$presente = strrpos($ressource, 'proparte') !== false && strrpos($valeur, ',') !== false;
627
		} else { //pour la vérification du champ, on ignore alors la valeur de la ressource
628
			$presente = strrpos($ressource, 'proparte') !== false;
629
		}
630
		return $presente;
631
	}
632
 
633
	public function afficherInfosPrecises($champ, $suffixe, $valeur) {
634
		$suffixes = explode(',', $suffixe);
635
		//on initialise au service appelé. Sera potentiellement modifié dans la fonction afficherSignification()
636
		$this->service_href = $this->service;
637
		foreach ($suffixes  as $suffixe) {
638
			switch ($suffixe) {
639
				case 'id' 			 :
640
					$this->table_retour[str_replace('id.id', 'id', $champ.'.id')] = $valeur;
641
					break;
642
				case 'details' 		 :
643
					$this->afficherTableDetails($champ, $valeur);
644
					break;
645
				case 'signification' :
646
					$this->afficherSignification($champ, $valeur);
647
					break;
648
				case 'href' 		 :
649
					$url = $this->creerUrl($champ, $valeur);
650
					$this->table_retour[str_replace('id.href', 'href', $champ.'.href')] = $url;
651
					break;
652
				case 'code' 		 :
653
					$this->table_retour[$champ.'.code'] = $this->obtenirCode($champ, $valeur);
654
					break;
655
				case 'notes' 		 :
656
					$this->table_retour[$champ.'.notes'] = $this->resultat_req[str_replace('.', '_', $champ).'_notes'];
657
					break;
658
				default : break;
659
			}
660
		}
661
	}
662
 
663
	public function afficherTableDetails($nom_champ_api, $valeur) {
664
		$tab_id = explode(',', $valeur);
665
		$tab_res = $this->table_retour;
666
		$this->table_retour = array();
667
		foreach ($tab_id as $id) {
668
			$this->afficherInfosPrecises($nom_champ_api, 'id,signification,href', $id);
669
			$tab_res[$nom_champ_api.'.details'][] = $this->table_retour;
670
			$this->table_retour = array();
671
		}
672
		$this->table_retour = $tab_res;
673
	}
674
 
675
	private function obtenirCode($champ, $valeur) {
676
		$code = $this->transformerChampEnCode($champ);
677
		return "bdnt.$code:$valeur";
678
	}
679
 
680
	private function transformerChampEnCode($champ) {
681
		if (is_null($this->relationsChampsCodesOntologie)) {
682
			$this->relationsChampsCodesOntologie = Outils::recupererTableauConfig('ChampsCodesOntologie');
683
		}
684
 
685
		$code = $champ;
686
		if (array_key_exists($champ, $this->relationsChampsCodesOntologie)) {
687
			$code = $this->relationsChampsCodesOntologie[$champ];
688
		}
689
		return $code;
690
	}
691
 
692
	public function creerUrl($champ, $valeur) {
693
		if ($this->correspondAUnId($champ) || $champ == 'id') {
694
			$service = $this->service_href;
695
			$url = $this->ajouterHref($service, $valeur);
696
		} else {
697
			$code = $this->transformerChampEnCode($champ);
698
			$url = $this->ajouterHrefAutreProjet('ontologies', "$code:", $valeur, 'bdnt');
699
		}
700
		return $url;
701
	}
702
 
703
	public function afficherSignification($champ, $valeur) {
704
		if ($champ == 'id' && isset($this->resultat_req['nom_sci']) && $this->resultat_req['num_nom'] == $valeur) {
705
			//si le nom_sci du num_nom que l'on veut afficher est déjà dans la table de résultat :
706
			$this->table_retour['nom_sci'] = $this->resultat_req['nom_sci'];
707
			$this->table_retour['nom_sci_complet'] = $this->resultat_req['nom_sci'].' '.
708
				$this->ajouterCompositionNom($this->resultat_req);
709
		} elseif ($this->correspondAUnId($champ) || $champ == 'id') {
710
			$nom = $this->recupererNomSci($valeur);
711
			if ($nom != array()) {
712
				$this->table_retour[$champ.'.libelle'] = $nom['nom_sci'];
713
				$this->table_retour[$champ.'_html'] = $nom['nom_sci_html'];
714
				$this->table_retour[$champ.'_complet'] = $nom['nom_sci_complet'];
715
				$this->table_retour[$champ.'_html_complet'] = $nom['nom_sci_complet_html'];
716
				$this->service_href = $nom['service'];
717
			}
718
		} elseif ($this->correspondAUnCode($champ)) {
719
			$this->table_retour[$champ.'.libelle'] = $this->ajouterSignificationCode($champ, $valeur);
720
		}
721
	}
722
 
723
	/** Permet d'afficher les élements nomenclatural du nom_sci lors de l'appel dans le service noms/id/champ du champ^nom_sci.*/
724
	public function afficherNomSciPointEpithete($resultat) {
725
		$tab_nom_sci   = array('nom_supra_generique', 'genre', 'epithete_infra_generique', 'epithete_sp',
726
		'type_epithete', 'epithete_infra_sp', 'cultivar_groupe', 'cultivar', 'nom_commercial');
727
		foreach ($tab_nom_sci as $compo_nom) {
728
			if (isset($resultat[$compo_nom]) && !empty($resultat[$compo_nom])) {
729
				$this->table_retour['nom_sci.'.$compo_nom] = $resultat[$compo_nom];
730
			}
731
		}
732
	}
733
 
734
	public function ajouterSignificationCode($champ, $valeur) {
735
		if($this->termeOntologieEstEnCache($champ, $valeur)) {
736
			$nom_code = $this->obtenirTermeOntologieParCache($champ, $valeur);
737
		} else {
738
			$code = $this->transformerChampEnCode($champ);
739
			if (preg_match('/^([^_-]+)(?:_|-)([^_-]+)$/', $code, $match)) {
740
				$code = $match[1].ucfirst($match[2]);
741
			}
742
			$url = Config::get('url_ontologie').$code.':'.$valeur.'/nom';
743
			$res = $this->consulterHref($url); //dans commun.php
744
			$nom_code = $valeur;
745
			if (is_object($res)) {
746
				$nom_code = $res->nom;
747
			}
748
			$this->mettreEnCacheOntologie($champ, $valeur, $nom_code);
749
		}
750
		return $nom_code;
751
	}
752
 
753
	public function recupererNomSci($id) {
754
		$nom = array();
755
		if ($id != 0) {
756
			if ($this->compo_nom == null) {
757
				$req = 'SELECT nom_sci, num_nom_retenu, nom_sci_html FROM '.$this->table.' WHERE num_nom = '.$id;
758
			} else { //on ajoute à la requete sql, les champs de ns.structure
759
				//print_r($this->compo_nom);
760
				$req = 'SELECT nom_sci, num_nom_retenu, nom_sci_html, '.implode(', ', $this->compo_nom)
761
						.' FROM '.$this->table
762
						.' WHERE num_nom = '.$id;
763
			}
764
			if ($this->parametres['ns.format'] == 'htm') {
765
				$req = str_replace('nom_sci', 'nom_sci_html as nom_sci', $req);
766
			}
767
			$res = $this->getBdd()->recuperer($req);
768
			if ($res) {
769
				$nom['nom_sci']	= $res['nom_sci'];
770
				$nom['nom_sci_html']	= $res['nom_sci_html'];
771
				$nom['nom_sci_complet']	= $res['nom_sci'].' '.$this->ajouterCompositionNom($res);
772
				$nom['nom_sci_complet_html']	= $res['nom_sci_html'].' '.$this->ajouterCompositionNom($res, 'htm');
773
				$nom['service'] = ($res['num_nom_retenu'] == $id && $this->service == 'taxons') ? 'taxons' : 'noms';
774
			}
775
		}
776
		return $nom;
777
	}
778
 
779
	/** Permet de retourner une chaine de caractère composée des parametres du nom (ns.structure : annnée, auteur,
780
	 * bibilio et addendum). A ajouter au nom scientifique */
781
	public function ajouterCompositionNom($tab_res, $format = '') {
782
		$format = ($format == '') ? $this->parametres['ns.format'] : $format;
783
 
784
		$nom = '';
785
		if (isset($this->compo_nom)) {
786
			if ($format == 'htm') {
787
				$format = array(
788
					'au' => '<span class="auteur">%s</span>',
789
					'an' => '[<span class="annee">%s</span>]',
790
					'an_bib' => '[<span class="annee">%s</span>, <span class="biblio">%s</span>]',
791
					'bib' => '[<span class="biblio">%s</span>]',
792
					'ad' => '[<span class="adendum">%s</span>]');
793
			} else {
794
				$format = array(
795
					'au' => '%s',
796
					'an' => '[%s]',
797
					'an_bib' => '[%s, %s]',
798
					'bib' => '[%s]',
799
					'ad' => '[%s]',
800
					'gen' => '%s',
801
					'sp' => '%s',
802
					'ssp' => '%s',
803
					'fam' => '%s',
804
					'au_ss' => '%s',
805
					'bib_ss' => '%s');
806
			}
807
			$compo_nom = array();
808
 
809
			foreach ($this->compo_nom as $key => $champ) {
810
				if (isset($tab_res[$champ]) && !empty($tab_res[$champ])) {
811
					$compo_nom[$key] = $tab_res[$champ];
812
				}
813
			}
814
			$nom_complet = $this->formerNomComplet($compo_nom, $format);
815
			$nom = implode(' ', $nom_complet);
816
		}
817
		return rtrim($nom, ' ');
818
	}
819
 
820
 
821
	public function formerNomComplet($compo_nom, $format) {
822
		$nom_complet = array();
823
		extract($compo_nom);
824
		if (isset($au)) $nom_complet[] = sprintf($format['au'], $au);
825
		if (isset($an)) {
826
			if (isset($bib)) {
827
				$nom_complet[] = sprintf($format['an_bib'], $an, $bib);
828
			} else {
829
				$nom_complet[] = sprintf($format['an'], $an);
830
			}
831
		} elseif (isset($bib)) {
832
			$nom_complet[] = sprintf($format['bib'], $bib);
833
		}
834
		if (isset($ad)) $nom_complet[] = sprintf($format['ad'], $ad);
835
		if (isset($gen)) $nom_complet[] = sprintf($format['gen'], $gen);
836
		if (isset($ssp)) $nom_complet[] = sprintf($format['ssp'], $ssp);
837
		if (isset($sp)) $nom_complet[] = sprintf($format['sp'], $sp);
838
		if (isset($fam)) $nom_complet[] = sprintf($format['fam'], $fam);
839
		if (isset($au_ss)) $nom_complet[] = sprintf($format['au_ss'], $au_ss);
840
		if (isset($bib_ss)) {
841
			$bibl = $this->tronquerBiblio($bib_ss);
842
			//simule un 'select distinct' sur les biblio tronquées
843
			if (!isset($this->bib_traitees[$bibl])) {
844
				$nom_complet[] = sprintf($format['bib_ss'],$bibl );
845
				$this->bib_traitees[$bibl] = 1;
846
			}
847
		}
848
		return $nom_complet;
849
	}
850
 
851
	public function tronquerBiblio($valeur){
852
		$bib = '';
853
		if(strpos($valeur,',') !== false) {
854
			$bib = explode(',',$valeur);
855
		}
856
		if(strpos($bib[0],';') !== false) {
857
 
858
			$bib[0] = strstr($bib[0],';');
859
			$bib[0] = str_replace('; ','',$bib[0]);
860
		}
861
		return $bib[0];
862
	}
863
 
864
 
865
 
866
	public function correspondAUnCode($key) {
867
		return (strrpos($key, '.code') !== false) || (in_array($key.'.code', $this->correspondance_champs));
868
	}
869
 
870
	public function correspondAUnId($key) {
871
		return (strrpos($key, '.id') !== false) || (in_array($key.'.id', $this->correspondance_champs));
872
	}
873
 
874
	public function estUnPoint($key) {
875
		if (strrpos($key, 'hybride.parent') !== false) {
876
			$key = str_replace('hybride.parent', 'hybride_parent', $key);
877
		}
878
		return (strrpos($key, '.') !== false);
879
	}
880
 
881
	public function recupererMasquePrincipal() {
882
		$masque = null;
883
		$tab_masque   = array(
884
			'masque' => 'nom_sci',
885
			'masque_sg' => 'nom_supra_generique',
886
			'masque_gen' => 'genre',
887
			'masque_sp' => 'epithete_sp',
888
			'masque_ssp' => 'epithete_infra_sp',
889
			'masque_au' => 'auteur',
890
			'masque_an' => 'annee',
891
			'masque_bib' => 'biblio_origine',
892
			'masque_ad' => 'addendum',
893
			'masque_rg' => 'rang');
894
		$liste_masque = array();
895
 
896
		if (isset($this->masque['num_nom'])) {
897
			$liste_masque[] = $this->masque['num_nom'];
898
		}
899
 
900
		foreach ($tab_masque as $key => $filtre) {
901
            if (isset($this->masque[$filtre])) {
902
            	if (!isset($masque) && !in_array($filtre, array('rang', 'annee'))) {
903
            		$masque = array($key, $filtre);
904
            	}
905
                $liste_masque[] = $this->masque[$filtre];
906
            }
907
        }
908
        $this->masque = $liste_masque;
909
        return $masque;
910
	}
911
 
912
	private function mettreEnCacheOntologie($categorie, $valeur, $correspondance) {
913
		if(!isset($this->ontologie[$categorie])) {
914
			$this->ontologie[$categorie] = array();
915
		}
916
		if(!isset($this->ontologie[$categorie][$valeur])) {
917
			$this->ontologie[$categorie][$valeur] = array();
918
		}
919
		$this->ontologie[$categorie][$valeur] = $correspondance;
920
	}
921
 
922
	private function termeOntologieEstEnCache($categorie, $valeur) {
923
		return array_key_exists($categorie, $this->ontologie) && array_key_exists($valeur, $this->ontologie[$categorie]);
924
	}
925
 
926
	private function obtenirTermeOntologieParCache($categorie, $valeur) {
927
		return $this->ontologie[$categorie][$valeur];
928
	}
929
}
930
?>