Subversion Repositories eFlore/Projets.eflore-projets

Rev

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

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