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