3 |
jpm |
1 |
<?php
|
|
|
2 |
/**
|
|
|
3 |
* Description :
|
|
|
4 |
* Classe MetaDonnees.php fournit des informations sur le projet.
|
8 |
jpm |
5 |
* Le but étant de fournir un ensemble minimal d'information comprenant :
|
3 |
jpm |
6 |
* la version, la langue, le nom, le créateur et l'éditeur du projet.
|
|
|
7 |
* Si l'url finit par /meta-donnees on retourne une liste de termes (seulement les 100 premières par défaut).
|
|
|
8 |
* L'url peut contenir des paramètres optionnels passés après le ? : /meta-donnees?param1=val1¶m2=val2&...
|
8 |
jpm |
9 |
*
|
|
|
10 |
* Les paramètres de requête disponibles sont : masque, , recherche,
|
3 |
jpm |
11 |
* distinct, retour.format, navigation.depart et navigation.limite.
|
8 |
jpm |
12 |
*
|
3 |
jpm |
13 |
* Encodage en entrée : utf8
|
|
|
14 |
* Encodage en sortie : utf8
|
|
|
15 |
* @package framework-v3
|
|
|
16 |
* @author Jennifer Dhé <jennifer.dhe@tela-botanica.org>
|
|
|
17 |
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
|
|
|
18 |
* @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
|
|
|
19 |
* @version 1.0
|
|
|
20 |
* @copyright 1999-${year} Tela Botanica (accueil@tela-botanica.org)
|
|
|
21 |
*/
|
|
|
22 |
|
|
|
23 |
class MetaDonnees extends Commun {
|
8 |
jpm |
24 |
|
3 |
jpm |
25 |
protected $requete_champ = '*';
|
|
|
26 |
protected $requete_condition = null;
|
|
|
27 |
protected $retour_format = 'max';
|
|
|
28 |
protected $table_retour = array();
|
|
|
29 |
protected $format_reponse = 'metaDonnees';
|
|
|
30 |
protected $table_ressources;
|
8 |
jpm |
31 |
|
|
|
32 |
|
3 |
jpm |
33 |
public function consulter($ressources, $parametres) {
|
236 |
delphine |
34 |
$this->ressources = $ressources;
|
|
|
35 |
$this->parametres = $parametres;
|
536 |
gduche |
36 |
$this->service = 'meta-donnees';
|
278 |
jpm |
37 |
|
236 |
delphine |
38 |
$resultats = '';
|
3 |
jpm |
39 |
// on traite en premier la version dans le cas ou un langage est demandé pr une version
|
236 |
delphine |
40 |
$this->traiterVersionProjet();
|
3 |
jpm |
41 |
$this->traiterParametres($parametres);
|
|
|
42 |
$this->traiterRessources($ressources);
|
|
|
43 |
if ($this->corps_http == '' && $this->entete_http == '') {
|
8 |
jpm |
44 |
$requete_meta = $this->assemblerLaRequete();
|
|
|
45 |
$resultat_meta = $this->getBdd()->recupererTous($requete_meta);
|
236 |
delphine |
46 |
$resultats = $this->formerResultat($resultat_meta, $requete_meta);
|
3 |
jpm |
47 |
}
|
236 |
delphine |
48 |
return $resultats;
|
3 |
jpm |
49 |
}
|
8 |
jpm |
50 |
|
236 |
delphine |
51 |
public function formerResultat($resultat_meta, $requete_meta) {
|
3 |
jpm |
52 |
if ($resultat_meta == '') {
|
|
|
53 |
$e = 'La requête formée comporte une erreur!';
|
|
|
54 |
$this->renvoyerErreur(RestServeur::HTTP_CODE_RESSOURCE_INTROUVABLE,$e);
|
|
|
55 |
Debug::printr($requete);
|
|
|
56 |
} elseif ($resultat_meta) {
|
236 |
delphine |
57 |
$resultat_formate = $this->retournerResultatFormate($resultat_meta);
|
3 |
jpm |
58 |
} else {
|
|
|
59 |
$m = "Données introuvables dans la base $this->table";
|
|
|
60 |
$this->renvoyerErreur(RestServeur::HTTP_CODE_RESSOURCE_INTROUVABLE, $m);
|
|
|
61 |
Debug::printr($requete_meta);
|
|
|
62 |
}
|
|
|
63 |
return $resultat_formate;
|
|
|
64 |
}
|
8 |
jpm |
65 |
|
3 |
jpm |
66 |
//--------------------FONCTIONS TRAITEMENT DES PARAMETRES---------------------------------------------------------------
|
8 |
jpm |
67 |
|
3 |
jpm |
68 |
public function traiterParametres($parametres) {
|
|
|
69 |
if (isset($parametres) && !empty($parametres)) {
|
|
|
70 |
foreach ($parametres as $param => $val) {
|
8 |
jpm |
71 |
switch ($param) {
|
239 |
delphine |
72 |
case 'version.projet' : $this->ajouterFiltreVersion($val); break;
|
8 |
jpm |
73 |
case 'retour.langue' : $this->rechercherLangueDispo($val); break;
|
|
|
74 |
case 'retour.format' : $this->retour_format = $val; break;
|
|
|
75 |
default :
|
3 |
jpm |
76 |
$e = 'Erreur dans les paramètres de recherche de votre requête : </br> Le paramètre " '
|
|
|
77 |
.$param.' " n\'existe pas.';
|
|
|
78 |
$this->renvoyerErreur(RestServeur::HTTP_CODE_MAUVAISE_REQUETE, $e);
|
|
|
79 |
break;
|
|
|
80 |
}
|
|
|
81 |
}
|
|
|
82 |
}
|
|
|
83 |
}
|
8 |
jpm |
84 |
|
239 |
delphine |
85 |
/** Détermine quelles métadonnées doivent etre retournées :
|
|
|
86 |
* - "*" : (/#projet/* /meta-donnees) Renvoi les meta-données de toutes les versions du projet
|
|
|
87 |
* - "numero de la version" : (/#projet/2.00/meta-donnees) Renvoi les meta-données de la version 2.00 du projet
|
|
|
88 |
* - non renseignée : (/#projet/meta-donnees) Renvoi les meta-données de la dernière version du projet
|
|
|
89 |
* Cette info est stockée dans par la classe RestServeur dans la variable $ressources ($ressources[0])
|
|
|
90 |
*/
|
|
|
91 |
public function ajouterFiltreVersion($val) {
|
|
|
92 |
if (preg_match('/(?:[0-9]+(?:_|[.])[0-9]+|[*]| )/', $val)) {
|
|
|
93 |
$this->version_projet = ($val == ' ') ? '+' : $val;
|
3 |
jpm |
94 |
}
|
239 |
delphine |
95 |
switch ($this->version_projet) {
|
|
|
96 |
case '+' :
|
|
|
97 |
$this->requete_condition[] = 'version = (SELECT MAX(version) FROM '.Config::get('bdd_table_meta').')';
|
|
|
98 |
break;
|
|
|
99 |
case '*' :
|
|
|
100 |
break;
|
|
|
101 |
default :
|
|
|
102 |
if (is_numeric($this->version_projet)) {
|
|
|
103 |
$versions_dispo = $this->rechercherVersionsDispos();
|
|
|
104 |
if (in_array($val, $versions_dispo)) {
|
|
|
105 |
$this->requete_condition[] = 'version = '.$this->getBdd()->proteger($val);
|
|
|
106 |
} else {
|
|
|
107 |
$e = 'La version demandée n\'existe pas actuellement. </br>Les versions disponibles sont : '
|
|
|
108 |
.implode(', ', $versions_dispo);
|
|
|
109 |
$this->renvoyerErreur(RestServeur::HTTP_CODE_RESSOURCE_INTROUVABLE, $e);
|
3 |
jpm |
110 |
}
|
239 |
delphine |
111 |
}
|
|
|
112 |
break;
|
3 |
jpm |
113 |
}
|
|
|
114 |
}
|
278 |
jpm |
115 |
|
3 |
jpm |
116 |
/**
|
239 |
delphine |
117 |
* Vérifie que le numéro de la version passée en paramètre correspond à une version existante.
|
|
|
118 |
* Si oui remplit la condition de la requete SQL
|
|
|
119 |
*/
|
|
|
120 |
public function rechercherVersionsDispos() {
|
236 |
delphine |
121 |
$val = str_replace('_', '.', $this->version_projet);
|
3 |
jpm |
122 |
$req_version = 'SELECT version FROM '.Config::get('bdd_table_meta');
|
|
|
123 |
$res_version = $this->getBdd()->recupererTous($req_version);
|
|
|
124 |
foreach ($res_version as $version) {
|
|
|
125 |
$versions_dispo[] = $version['version'];
|
|
|
126 |
}
|
239 |
delphine |
127 |
return $versions_dispo;
|
3 |
jpm |
128 |
}
|
278 |
jpm |
129 |
|
3 |
jpm |
130 |
/** Vérifie que les meta-donnees existe dans la langue passée en paramètre, Si oui remplit la condition de la requete SQL */
|
|
|
131 |
public function rechercherLangueDispo($val) {
|
|
|
132 |
//on recherche les langues_meta disponibles pour la version demandée : (d'ou ajout de la condition)
|
|
|
133 |
$req_langue = 'SELECT langue_meta FROM '
|
239 |
delphine |
134 |
.Config::get('bdd_table_meta')
|
|
|
135 |
.$this->formerRequeteCondition();
|
3 |
jpm |
136 |
$res_langue = $this->getBdd()->recupererTous($req_langue);
|
|
|
137 |
foreach ($res_langue as $langue) {
|
|
|
138 |
$langue_dispo[] = $langue['langue_meta'];
|
|
|
139 |
}
|
|
|
140 |
if (in_array($val, $langue_dispo)) {
|
8 |
jpm |
141 |
$this->requete_condition[] = 'langue_meta = '.$this->getBdd()->proteger($val);
|
3 |
jpm |
142 |
} else {
|
|
|
143 |
$e = 'La langue demandée n\'existe pas actuellement. </br>Les langues disponibles sont : '
|
239 |
delphine |
144 |
.implode($langue_dispo);
|
3 |
jpm |
145 |
$this->renvoyerErreur(RestServeur::HTTP_CODE_RESSOURCE_INTROUVABLE, $e);
|
|
|
146 |
}
|
|
|
147 |
}
|
239 |
delphine |
148 |
//----------------------FONCTIONS TRAITEMENT DES RESSOURCES-------------------------------------------------------------
|
8 |
jpm |
149 |
|
239 |
delphine |
150 |
public function traiterRessources($ressources) {
|
|
|
151 |
// /meta-donnees (liste des meta-données. Toutes les info de la table sont affichées) ou /meta-donnees/#champ
|
|
|
152 |
if (isset($ressources) && !empty($ressources)) {
|
|
|
153 |
$this->table_ressources = $ressources;
|
|
|
154 |
if (isset($ressources) && !empty($ressources)) {
|
|
|
155 |
$this->format_reponse = 'metaDonnees/champ';
|
|
|
156 |
}
|
|
|
157 |
}
|
|
|
158 |
}
|
|
|
159 |
|
3 |
jpm |
160 |
//------------------------------Fonction d'assemblage de la requete------------------------------------------------------
|
8 |
jpm |
161 |
|
3 |
jpm |
162 |
public function assemblerLaRequete() {
|
239 |
delphine |
163 |
$req = 'SELECT '.$this->requete_champ.' FROM '.Config::get('bdd_table_meta').$this->formerRequeteCondition();
|
|
|
164 |
return $req;
|
|
|
165 |
}
|
278 |
jpm |
166 |
|
239 |
delphine |
167 |
public function formerRequeteCondition() {
|
3 |
jpm |
168 |
$condition = '';
|
239 |
delphine |
169 |
if ($this->requete_condition != null) {
|
3 |
jpm |
170 |
$condition = ' WHERE '.implode(' AND ', $this->requete_condition);
|
8 |
jpm |
171 |
}
|
239 |
delphine |
172 |
return $condition;
|
3 |
jpm |
173 |
}
|
8 |
jpm |
174 |
|
3 |
jpm |
175 |
//--------------------------------------Fonction de formatage des resultats ---------------------------------------------
|
8 |
jpm |
176 |
|
236 |
delphine |
177 |
public function retournerResultatFormate($resultat) {
|
3 |
jpm |
178 |
switch ($this->format_reponse) {
|
|
|
179 |
case 'metaDonnees/champ' : $reponse = $this->formaterMetaDonneesChamp($resultat); break;
|
|
|
180 |
case 'metaDonnees' : $reponse = $this->formaterMetaDonnees($resultat); break;
|
|
|
181 |
default : break;
|
|
|
182 |
}
|
236 |
delphine |
183 |
return $reponse;
|
8 |
jpm |
184 |
}
|
|
|
185 |
|
3 |
jpm |
186 |
//--------------------------------------Fonction de formatage des resultats de /metaDonnees/----------------------------
|
8 |
jpm |
187 |
|
3 |
jpm |
188 |
public function formaterMetaDonnees($resultat) {
|
|
|
189 |
foreach ($resultat as $version) {
|
|
|
190 |
foreach ($version as $key => $val) {
|
|
|
191 |
if ($val != '') {
|
|
|
192 |
$this->afficherDonnees($key, $val);
|
8 |
jpm |
193 |
}
|
3 |
jpm |
194 |
}
|
|
|
195 |
if ($this->retour_format == 'max' && $this->version_projet == '*') {
|
|
|
196 |
$this->table_retour['href'] = Config::get('url_service_base').Config::get('nom_projet')
|
236 |
delphine |
197 |
.'/'.$version['version'].'/'.$this->serviceNom;
|
8 |
jpm |
198 |
}
|
3 |
jpm |
199 |
$table[] = $this->table_retour;
|
|
|
200 |
$this->table_retour = array();
|
|
|
201 |
}
|
|
|
202 |
return $table;
|
|
|
203 |
}
|
8 |
jpm |
204 |
|
|
|
205 |
|
3 |
jpm |
206 |
public function afficherDonnees($key, $valeur) {
|
|
|
207 |
if ($valeur != '') {
|
|
|
208 |
$tab = array();
|
|
|
209 |
if ($this->retour_format == 'min') {
|
|
|
210 |
if (in_array($key, array('editeur','createurs', 'contributeurs','couverture_spatiale','couverture_temporelle'))) {
|
8 |
jpm |
211 |
//Pour les données comprenant plusieurs infos (...=...,...=...;...)
|
3 |
jpm |
212 |
$tab = $this->recupererTableauResultat($valeur);
|
|
|
213 |
$this->afficherConcatenationValeur($key, $tab);
|
|
|
214 |
} else {
|
8 |
jpm |
215 |
$this->table_retour[$key] = trim($valeur);
|
3 |
jpm |
216 |
}
|
|
|
217 |
} else {
|
8 |
jpm |
218 |
if (in_array($key, array('editeur','createurs', 'contributeurs','couverture_spatiale','couverture_temporelle','langue','langue_meta'))) {
|
|
|
219 |
$tab = $this->recupererTableauResultat($valeur);
|
3 |
jpm |
220 |
$this->afficherConcatenationValeur($key, $tab);
|
|
|
221 |
$this->afficherDonneesMax($key,$valeur,$tab);
|
|
|
222 |
} else {
|
|
|
223 |
$this->table_retour[$key] = trim($valeur);
|
8 |
jpm |
224 |
}
|
3 |
jpm |
225 |
}
|
|
|
226 |
}
|
|
|
227 |
}
|
8 |
jpm |
228 |
|
3 |
jpm |
229 |
/**
|
|
|
230 |
* Recupère à partir de la valeur du champ les différentes informations séparées par ';' (stocke ds un tableau)
|
|
|
231 |
* pour éditeurs, créateurs, contributeurs,...
|
|
|
232 |
* (ex : nom=Tela Botanica,guid=urn:lsid:tela-botanica.org,courriel=accueil@tela-botanica.org,...
|
8 |
jpm |
233 |
*/
|
3 |
jpm |
234 |
public function recupererTableauResultat($val) {
|
8 |
jpm |
235 |
$tab = array();
|
3 |
jpm |
236 |
$num_entite = 0;
|
|
|
237 |
// découpe chaque participant
|
8 |
jpm |
238 |
$tab_entites = explode(';', $val);
|
3 |
jpm |
239 |
foreach ($tab_entites as $entite) {
|
|
|
240 |
$tab[$num_entite] = array();
|
|
|
241 |
if ($entite != '') { // découpe les informations du participant
|
8 |
jpm |
242 |
$entite_detail = explode(',', $entite);
|
3 |
jpm |
243 |
foreach ($entite_detail as $detail) {
|
|
|
244 |
if ($detail != '') {
|
|
|
245 |
if (preg_match('/^([^=]+)=([^=]*)$/', $detail, $match)) {
|
|
|
246 |
$tab[$num_entite][$match[1]] = $match[2];
|
|
|
247 |
} else {
|
|
|
248 |
$tab[$num_entite][] = $detail;
|
|
|
249 |
}
|
|
|
250 |
}
|
|
|
251 |
}
|
|
|
252 |
}
|
|
|
253 |
$num_entite++;
|
|
|
254 |
}
|
|
|
255 |
return $tab;
|
|
|
256 |
}
|
8 |
jpm |
257 |
|
|
|
258 |
|
|
|
259 |
/** Retourne :
|
|
|
260 |
* - le nom de l'editeur
|
3 |
jpm |
261 |
* - les coordonnées de l'éditeur sous la forme [latitude]N,[longitude]S [datum]
|
|
|
262 |
* - la couverture temporelle sous la forme xxxx à xxxx
|
|
|
263 |
* - la concaténation des noms pour les contributeurs et les créateurs (machin chouette, truc bidule...)
|
|
|
264 |
* - la liste des liste des couvertures spatiales (le nom et pas le code) (France, allemagne..) */
|
|
|
265 |
public function afficherConcatenationValeur($champ, $tab) {
|
|
|
266 |
if (strrpos($champ, '.coordonnees') !== false) {
|
|
|
267 |
if (isset($tab[0]['latitude']) && isset($tab[0]['longitude']) && isset($tab[0]['datum'])) {
|
|
|
268 |
$this->table_retour[$champ] = $tab[0]['latitude'].' N, '.$tab[0]['longitude'].' S ['.$tab[0]['datum'].']';
|
|
|
269 |
}
|
|
|
270 |
} else {
|
|
|
271 |
$concat = '';
|
|
|
272 |
foreach ($tab as $entite) {
|
|
|
273 |
foreach ($entite as $key => $val) {
|
|
|
274 |
if ($champ == 'couverture_spatiale') {
|
|
|
275 |
$concat .= ', '.$this->ajouterSignification($champ, $val);
|
|
|
276 |
} else {
|
|
|
277 |
if (strrpos($key, '.prenom') !== false) {
|
8 |
jpm |
278 |
$concat .= ', '.$val;
|
3 |
jpm |
279 |
} elseif (strrpos($key, 'nom') !== false) {
|
8 |
jpm |
280 |
|
|
|
281 |
$concat .= ' '.$val;
|
3 |
jpm |
282 |
break;
|
|
|
283 |
}
|
|
|
284 |
}
|
|
|
285 |
}
|
|
|
286 |
}
|
|
|
287 |
$res = trim($concat, ',');
|
|
|
288 |
$res = trim($res);
|
|
|
289 |
if ($champ == 'couverture_temporelle') $res = str_replace(' ', ' à ',$res);
|
|
|
290 |
$this->table_retour[$champ] = $res;
|
|
|
291 |
}
|
|
|
292 |
}
|
|
|
293 |
|
8 |
jpm |
294 |
|
3 |
jpm |
295 |
public function afficherDonneesMax($champ,$valeur,$tab) {
|
|
|
296 |
switch ($champ) {
|
|
|
297 |
case 'couverture_temporelle' : $this->afficherInfosPrecises($champ, 'start,end', $valeur, $tab); break;
|
|
|
298 |
case 'langue' : $this->afficherInfosPrecises($champ,'signification,code,href', $valeur); break;
|
|
|
299 |
case 'langue_meta' : $this->afficherInfosPrecises($champ,'signification,code,href', $valeur); break;
|
|
|
300 |
case 'couverture_spatiale' : $this->afficherInfosPrecises($champ, 'details', $valeur, $tab); break;
|
|
|
301 |
case 'createurs' : $this->afficherInfosPrecises($champ, 'details', $valeur, $tab); break;
|
|
|
302 |
case 'contributeurs' : $this->afficherInfosPrecises($champ, 'details', $valeur, $tab); break;
|
|
|
303 |
case 'editeur' : $this->afficherEditeur($champ, $tab); break;
|
|
|
304 |
default : $this->table_retour[$champ] = $valeur; break;
|
|
|
305 |
}
|
|
|
306 |
}
|
8 |
jpm |
307 |
|
|
|
308 |
|
|
|
309 |
public function afficherEditeur($key, $tab) {
|
|
|
310 |
// infos générales sur l'éditeur
|
3 |
jpm |
311 |
foreach ($tab[0] as $k => $val) {
|
|
|
312 |
if ((strrpos($k, 'contact.') === false) && (strrpos($k, '.wgs84') === false)) {
|
8 |
jpm |
313 |
$this->table_retour[$key.'.'.$k] = $val;
|
3 |
jpm |
314 |
}
|
8 |
jpm |
315 |
}
|
|
|
316 |
//on récupère dans un premier temps les tableaux des coordonnées.
|
3 |
jpm |
317 |
$table_coordonnees = $this->recupererTableCoordonnees($tab);
|
8 |
jpm |
318 |
//on affiche les informations sur les coordonnees : concaténation + détails
|
3 |
jpm |
319 |
if ($table_coordonnees[0] != array()) {
|
|
|
320 |
$this->afficherConcatenationValeur($key.'.coordonnees', $table_coordonnees);
|
|
|
321 |
if (isset($table_coordonnees[0]['datum'])) {
|
8 |
jpm |
322 |
$this->afficherInfosPrecises($key.'.coordonnees.datum',
|
3 |
jpm |
323 |
'signification,code,href',$table_coordonnees[0]['datum'],
|
|
|
324 |
$table_coordonnees);
|
|
|
325 |
}
|
8 |
jpm |
326 |
}
|
|
|
327 |
$table_contact = $this->recupererTableContact($tab);
|
3 |
jpm |
328 |
//on affiche le premier contact en dehors de la table de détail:
|
|
|
329 |
if ($table_contact[0] != array()) {
|
8 |
jpm |
330 |
$this->table_retour[$key.'.contact'] = '';
|
3 |
jpm |
331 |
foreach ($table_contact as $info => $valeur) {
|
|
|
332 |
$this->table_retour[$key.'.contact'] .= $valeur['contact.prenom']." ".$valeur['contact.nom'];
|
|
|
333 |
}
|
8 |
jpm |
334 |
//on affiche les détails des autres contacts :
|
|
|
335 |
$this->afficherTableDetails($key.'.contact', $table_contact);
|
|
|
336 |
}
|
3 |
jpm |
337 |
}
|
8 |
jpm |
338 |
|
|
|
339 |
|
|
|
340 |
|
3 |
jpm |
341 |
public function afficherInfosPrecises($champ, $pts, $val, $tab = null) {
|
|
|
342 |
//permet d'afficher les informations précises telles que les .details, .start, .end...
|
|
|
343 |
$pts = explode(',', $pts);
|
|
|
344 |
foreach ($pts as $pt) {
|
|
|
345 |
switch ($pt) {
|
278 |
jpm |
346 |
case 'start' :
|
|
|
347 |
if (isset($this->table_retour[$champ.'.start'])) {
|
|
|
348 |
$this->table_retour[$champ.'.start'] = $tab['start'];
|
|
|
349 |
}
|
|
|
350 |
break;
|
|
|
351 |
case 'end' :
|
|
|
352 |
if (isset($this->table_retour[$champ.'.end'])) {
|
|
|
353 |
$this->table_retour[$champ.'.end'] = $tab['end'];
|
|
|
354 |
}
|
|
|
355 |
break;
|
|
|
356 |
case 'code' :
|
|
|
357 |
$this->table_retour[$champ.'.code'] = $val;
|
|
|
358 |
break;
|
|
|
359 |
case 'href' :
|
|
|
360 |
$this->table_retour[$champ.'.href'] = $this->ajouterHrefAutreProjet($champ, '', $val);
|
|
|
361 |
break;
|
|
|
362 |
case 'signification' :
|
|
|
363 |
$this->table_retour[$champ] = $this->ajouterSignification($champ, $val);
|
|
|
364 |
break;
|
|
|
365 |
case 'details' :
|
|
|
366 |
if ($champ == 'couverture_spatiale') {
|
|
|
367 |
$this->afficherCouvertureSpatiale($champ, $tab);
|
|
|
368 |
} else {
|
|
|
369 |
$this->afficherTableDetails($champ, $tab);
|
|
|
370 |
}
|
|
|
371 |
break;
|
|
|
372 |
default :
|
|
|
373 |
$this->table_retour[$champ.'.'.$pt] = $tab[$pt];
|
3 |
jpm |
374 |
}
|
|
|
375 |
}
|
|
|
376 |
}
|
8 |
jpm |
377 |
|
|
|
378 |
|
|
|
379 |
|
3 |
jpm |
380 |
public function afficherCouvertureSpatiale($key, $tab) {
|
|
|
381 |
$res = $this->table_retour;
|
|
|
382 |
$this->table_retour = array();
|
|
|
383 |
foreach ($tab as $iso) {
|
|
|
384 |
foreach ($iso as $val) {
|
8 |
jpm |
385 |
$this->afficherInfosPrecises($key, 'signification,code,href',$val);
|
3 |
jpm |
386 |
$res[$key.'.detail'][] = $this->table_retour;
|
|
|
387 |
$this->table_retour = array();
|
|
|
388 |
}
|
|
|
389 |
}
|
|
|
390 |
$this->table_retour = $res;
|
|
|
391 |
}
|
8 |
jpm |
392 |
|
3 |
jpm |
393 |
public function afficherTableDetails($champ, $tab) {
|
|
|
394 |
$res = $this->table_retour;
|
|
|
395 |
$this->table_retour = array();
|
|
|
396 |
foreach ($tab as $num_entite => $entite) { // $t et $type valent p ou o
|
|
|
397 |
$t = '';
|
8 |
jpm |
398 |
$type = '.';
|
3 |
jpm |
399 |
foreach ($entite as $key => $infos) {
|
|
|
400 |
list($type, $info) = explode('.', trim($key));
|
8 |
jpm |
401 |
if ($type == 'contact') $type = 'p';
|
3 |
jpm |
402 |
if ($type != $t) { // cherche et ajoute la signification du type
|
|
|
403 |
$this->afficherInfosPrecises('type', 'signification,code,href', trim($type));
|
|
|
404 |
foreach ($this->table_retour as $k => $val) {
|
|
|
405 |
$res[$champ.'.details'][$num_entite][$type.'.'.$k] = $val;
|
|
|
406 |
}
|
|
|
407 |
$table_retour = array();
|
|
|
408 |
$this->table_retour = array(); // rempli par afficherInfosPrecises
|
|
|
409 |
$t = $type;
|
8 |
jpm |
410 |
}
|
3 |
jpm |
411 |
$res[$champ.'.details'][$num_entite][$key] = $infos;
|
|
|
412 |
}
|
|
|
413 |
}
|
|
|
414 |
$this->table_retour = $res;
|
|
|
415 |
}
|
|
|
416 |
|
|
|
417 |
public function ajouterSignification($champ, $val, $nom = 'nom') {
|
|
|
418 |
$url = $this->ajouterHrefAutreProjet($champ, '', $val);
|
|
|
419 |
if (in_array($champ, array('langue', 'langue_meta', 'couverture_spatiale'))) {
|
|
|
420 |
$url .= '/'.$nom;
|
|
|
421 |
}
|
|
|
422 |
$signification = $this->consulterHref($url);
|
|
|
423 |
if (isset($signification->$nom)) {
|
|
|
424 |
$res = $signification->$nom;
|
|
|
425 |
} else {
|
|
|
426 |
$nom = 'nom.fr';
|
|
|
427 |
$res = $signification->$nom;
|
|
|
428 |
}
|
|
|
429 |
return $res ;
|
|
|
430 |
}
|
|
|
431 |
|
8 |
jpm |
432 |
|
3 |
jpm |
433 |
public function recupererTableContact(&$tab) {
|
|
|
434 |
$res = array();
|
|
|
435 |
foreach ($tab[0] as $key => $val) {
|
|
|
436 |
if (strrpos($key, 'contact.') !== false) {
|
|
|
437 |
while (array_key_exists($key, $res)) { $key = ' '.$key; }
|
|
|
438 |
$res[$key] = $val;
|
|
|
439 |
unset($tab[0][$key]); //suppression des premiers contacts qui seront affichés après
|
|
|
440 |
}
|
|
|
441 |
}
|
|
|
442 |
$resultat[0] = $res;
|
|
|
443 |
return $resultat;
|
|
|
444 |
}
|
8 |
jpm |
445 |
|
|
|
446 |
|
3 |
jpm |
447 |
public function recupererTableCoordonnees(&$tab) {
|
|
|
448 |
$res = array();
|
|
|
449 |
foreach ($tab[0] as $key => $val) {
|
|
|
450 |
if (strrpos($key, 'latitude') !== false || strrpos($key, 'longitude') !== false) {
|
|
|
451 |
list ($coord, $datum) = explode('.', $key);
|
|
|
452 |
$res[$coord] = $val;
|
|
|
453 |
$res['datum'] = $datum;
|
|
|
454 |
}
|
|
|
455 |
}
|
|
|
456 |
$resultat[0] = $res;
|
|
|
457 |
return $resultat;
|
|
|
458 |
}
|
8 |
jpm |
459 |
|
3 |
jpm |
460 |
//-------------------------------------Fonction de formatage des resultats de /metaDonnees/#champs+champs----------------
|
8 |
jpm |
461 |
|
3 |
jpm |
462 |
public function formaterMetaDonneesChamp($resultat) {
|
|
|
463 |
$this->recupererNomChamp(Config::get('bdd_table_meta'));
|
|
|
464 |
//On récupère dans un premier temps toutes les données existantes puis on pioche les champs recherchés
|
|
|
465 |
$table_Meta = $this->formaterMetaDonnees($resultat);
|
|
|
466 |
foreach ($table_Meta as $version) {
|
|
|
467 |
//on affiche les informations par defaut : la version, la langue_meta et le guid :
|
|
|
468 |
$this->afficherVersionLangueMetaGuid($version);
|
|
|
469 |
$tab_ress = explode(' ', $this->table_ressources[0]);
|
8 |
jpm |
470 |
foreach ($tab_ress as $champ) {//on recupere le radical pour comparaison avec les nom des champs de la bdd :
|
3 |
jpm |
471 |
$this->afficherChampRecherche($champ, $version);
|
|
|
472 |
}
|
|
|
473 |
$table[] = $this->table_retour;
|
|
|
474 |
$this->table_retour = array();
|
|
|
475 |
}
|
|
|
476 |
return $table;
|
|
|
477 |
}
|
8 |
jpm |
478 |
|
3 |
jpm |
479 |
public function afficherChampRecherche(&$champ, &$version) {
|
|
|
480 |
preg_match('/^([^.]+)(?:[.][^.]+)?$/', $champ, $match);
|
|
|
481 |
if (preg_match('/(.+)[.][*]$/', $champ, $match_2)) {
|
|
|
482 |
$this->afficherPointEtoile($match_2, $version, $champ);
|
|
|
483 |
} elseif (array_key_exists($champ, $version)) {
|
|
|
484 |
$this->table_retour[$champ] = $version[$champ];
|
8 |
jpm |
485 |
} elseif (in_array($match[1], $this->champs_table)) {
|
3 |
jpm |
486 |
//si le champ est vide dans cette version on retourne null (comparaison avec les champs existants)
|
8 |
jpm |
487 |
$this->table_retour[$champ] = null;
|
3 |
jpm |
488 |
} else {
|
|
|
489 |
$champs = implode('</li><li>', array_keys($version));
|
|
|
490 |
$e = 'Erreur dans votre requête : </br> Le champ "'.$champ.'" n\'existe pas'.
|
|
|
491 |
'. Les champs disponibles sont : <li>'.$champs.'</li>';
|
|
|
492 |
$this->renvoyerErreur(RestServeur::HTTP_CODE_MAUVAISE_REQUETE, $e);
|
|
|
493 |
}
|
|
|
494 |
}
|
8 |
jpm |
495 |
|
3 |
jpm |
496 |
public function afficherPointEtoile($match, $version, $ressource) {
|
|
|
497 |
$existe = false;
|
|
|
498 |
foreach ($version as $key => $valeur) {
|
|
|
499 |
if (strrpos($key, $match[1].'.') !== false) {
|
|
|
500 |
$this->table_retour[$key] = $valeur;
|
|
|
501 |
$existe = true;
|
|
|
502 |
}
|
8 |
jpm |
503 |
}
|
3 |
jpm |
504 |
if (!$existe) {
|
|
|
505 |
$champs = implode('</li><li>', array_keys($version));
|
|
|
506 |
$e = 'Erreur dans votre requête : </br> Le champ " '.$ressource.' " n\'existe pas dans la version '
|
|
|
507 |
.$version['version'].'. Les champs disponibles sont : <li>'.$champs.'</li>';
|
|
|
508 |
$this->renvoyerErreur(RestServeur::HTTP_CODE_MAUVAISE_REQUETE, $e);
|
|
|
509 |
}
|
|
|
510 |
}
|
8 |
jpm |
511 |
|
3 |
jpm |
512 |
public function afficherVersionLangueMetaGuid(&$version) {
|
8 |
jpm |
513 |
$this->table_retour['version'] = $version['version'];
|
3 |
jpm |
514 |
$this->table_retour['langue_meta'] = $version['langue_meta'];
|
8 |
jpm |
515 |
$this->table_retour['guid'] = $version['guid'];
|
3 |
jpm |
516 |
}
|
|
|
517 |
|
|
|
518 |
|
|
|
519 |
|
|
|
520 |
|
|
|
521 |
}
|
|
|
522 |
|
|
|
523 |
?>
|