Subversion Repositories eFlore/Projets.eflore-projets

Rev

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

Rev Author Line No. Line
6 jpm 1
<?php
2
/**
1111 mathias 3
* Retourne des infos sur une espèce : noms vernaculaires français, statuts de
4
 * protection, num_nom, num_tax, nom_sci, et nombre de zones dans lesquelles elle
5
 * est présente.
6
 * Interrogeable par nn ou nt
7
 *
8
 * Il faudrait appeler les services correspondants pour obtenir les infos sur les
9
 * noms vernaculaires et les statuts de protection, mais c'est pas performant.
10
 * Néanmoins ce serait une arcitecture plus solide en cas de changement - pas le
11
 * temps d'y réfléchir mieux.
6 jpm 12
*
1103 mathias 13
* @package chorodep
1111 mathias 14
* @author Mathias Chouet <mathias@tela-botanica.org>
15
* @author Aurélien Perronnet <aurelien@tela-botanica.org>
6 jpm 16
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
17
* @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
18
* @version 1.0
1103 mathias 19
* @copyright 1999-2014 Tela Botanica (accueil@tela-botanica.org)
6 jpm 20
*/
21
 
1111 mathias 22
class InfosEspece extends Commun {
6 jpm 23
 
1111 mathias 24
	protected $serviceNom = 'InfosEspece';
25
	protected $masque;
26
	protected $navigation;
1103 mathias 27
	protected $table;
1111 mathias 28
	protected $tableNomsVernaculaires;
29
	protected $urlStatutsProtection;
1103 mathias 30
 
1111 mathias 31
	public function init() {
1103 mathias 32
		$this->masque = array();
33
		$this->traiterVersionProjet();
34
		$this->table = $this->table_version[0];
1111 mathias 35
		$this->tableNomsVernaculaires = $this->config['table_nv'];
36
		$this->urlStatutsProtection = $this->config['url_service_sptb'];
6 jpm 37
	}
1111 mathias 38
 
39
	public function consulter($ressources, $parametres) {
1103 mathias 40
 
1111 mathias 41
		$retour = null;
42
		if(preg_match("/^(nt|nn):([0-9]+)$/", $ressources[0], $matches)) {
43
			$champ_nt_ou_nn = ($matches[1] == "nn") ? "num_nom" : "num_tax";
44
 
45
			if(count($ressources) == 1) {
46
				// toutes les infos
47
				$infos_espece = $this->getInfosEspece($champ_nt_ou_nn, $matches[2]);
48
				$retour = array_merge($infos_espece, $this->getInfosPresence($champ_nt_ou_nn, $matches[2]));
49
				$statuts_protection = array(
50
					'statuts_protection' => $this->getStatutsProtection($champ_nt_ou_nn, $matches[2])
51
				);
52
				$retour = array_merge($retour, $statuts_protection);
53
				$noms_vernaculaires = array(
54
					'noms_vernaculaires_fr' => $this->getNomsVernaculaires($champ_nt_ou_nn, $matches[2])
55
				);
56
				$retour = array_merge($retour, $noms_vernaculaires);
57
			} else {
58
				// sous action du service
59
				$retour = array();
60
				switch($ressources[1]) {
61
					case "noms-vernaculaires":
62
						$retour = array('noms_vernaculaires_fr' => $this->getNomsVernaculaires($champ_nt_ou_nn, $matches[2]));
63
					break;
64
					case "statuts-protection":
65
						$retour = array('statuts_protection' => $this->getStatutsProtection($champ_nt_ou_nn, $matches[2]));
66
					break;
67
					case "presence":
68
						$retour = $this->getInfosPresence($champ_nt_ou_nn, $matches[2]);
69
					break;
70
					default:
71
						$retour = "Actions possibles: noms-vernaculaires, statuts-protection, presence";
72
				}
73
			}
74
		} else {
75
			// TODO : envoyer message erreur;
6 jpm 76
		}
1111 mathias 77
		return $retour;
6 jpm 78
	}
1103 mathias 79
 
80
	/**
1111 mathias 81
	 * Toutes les infos sauf noms vernaculaires et statuts de protection
6 jpm 82
	 */
1111 mathias 83
	protected function getInfosEspece($champ_nt_ou_nn, $nt_ou_nn) {
84
		$req = "SELECT DISTINCT num_nom, num_tax, nom_sci"
85
			. " FROM " . $this->table
86
			. " WHERE $champ_nt_ou_nn = " . $this->getBdd()->proteger($nt_ou_nn);
87
 
88
		$resultat = $this->getBdd()->recuperer($req);
89
 
90
		return $resultat;
6 jpm 91
	}
1100 mathias 92
 
93
	/**
1111 mathias 94
	 * Construit une opération d'addition entre toutes les colonnes de la table
95
	 * chorodep représentant un département
1100 mathias 96
	 */
1111 mathias 97
	protected function construireSommeColonnes() {
98
		$colonnes = array();
99
		for ($i=1; $i <= 95; $i++) {
100
			$colonnes[] = '`' . ($i > 9 ? $i : "0$i") . '`';
6 jpm 101
		}
1111 mathias 102
		$somme = implode('+', $colonnes);
103
		return $somme;
6 jpm 104
	}
1103 mathias 105
 
1111 mathias 106
	protected function getInfosPresence($champ_nt_ou_nn, $nt_ou_nn) {
107
		$req = "SELECT " . $this->construireSommeColonnes() . " as nb_presence_zones".
108
				" FROM ".$this->table.
109
				" WHERE ".$champ_nt_ou_nn." = ".$this->getBdd()->proteger($nt_ou_nn);
1103 mathias 110
 
1111 mathias 111
		$resultat = $this->getBdd()->recuperer($req);
112
		return $resultat;
113
	}
1103 mathias 114
 
1111 mathias 115
	/**
116
	 * Appelle le WS sptb car la table ne contient pas toutes les infos (il faut
117
	 * agréger les taxons supérieurs)
118
	 */
119
	protected function getStatutsProtection($champ_nt_ou_nn, $nt_ou_nn) {
120
		$num_noms = array();
121
		if ($champ_nt_ou_nn == "num_tax") {
122
			// le service sptb n'accepte pas les nt (on croit que si mais en fait
123
			// non) alors on chope les nn associés à ce nt dans chorodep - c'est
124
			// moisi mais c'est toujours mieux que si c'était pire
125
			$numTaxP  = $this->getBdd()->proteger($nt_ou_nn);
126
			$req = "SELECT DISTINCT num_nom"
127
				. " FROM " . $this->table
128
				. " WHERE num_tax = $numTaxP";
1103 mathias 129
 
1111 mathias 130
			$resultat = $this->getBdd()->recupererTous($req);
131
			foreach($resultat as $res) {
132
				$num_noms[] = $res['num_nom'];
133
			}
134
		} else {
135
			$num_noms[] = $nt_ou_nn;
6 jpm 136
		}
1103 mathias 137
 
1111 mathias 138
		$statuts = array();
139
		// récupération des statuts pour chaque num_nom
140
		foreach ($num_noms as $nn) {
141
			$url = sprintf($this->urlStatutsProtection, $nn);
142
			$donnees = $this->getRestClient()->consulter($url);
143
			$donnees = json_decode($donnees, true);
144
			foreach ($donnees as $d) {
145
				$statuts[] = array(
146
					'zone' => $d['code_zone_application'],
147
					'lien' => $d['hyperlien_legifrance']
148
				);
149
			}
1100 mathias 150
		}
1103 mathias 151
 
1111 mathias 152
		return $statuts;
251 delphine 153
	}
1103 mathias 154
 
1111 mathias 155
	// @TODO faire un appel au WS nvjfl "for the sake of non-nodebagging" ?
156
	protected function getNomsVernaculaires($champ_nt_ou_nn, $nt_ou_nn) {
157
		$numP  = $this->getBdd()->proteger($nt_ou_nn);
158
		$req = "SELECT DISTINCT nv.nom_vernaculaire"
159
			. " FROM " . $this->tableNomsVernaculaires . " nv";
160
		if ($champ_nt_ou_nn == "num_nom") {
161
			$req .= " LEFT JOIN " . $this->table . " c ON nv.num_taxon = c.num_tax"
162
				. " WHERE c.num_nom = $numP";
163
		} else {
164
			$req .= " WHERE nv.num_taxon = $numP";
1105 mathias 165
		}
1111 mathias 166
		$req .= " AND nv.code_langue = 'fra'";
1103 mathias 167
 
168
		$resultat = $this->getBdd()->recupererTous($req);
169
 
1111 mathias 170
		$resultat_fmt = array();
171
		foreach($resultat as $nv) {
172
			$resultat_fmt[] = $nv['nom_vernaculaire'];
173
		}
1103 mathias 174
 
1111 mathias 175
		return $resultat_fmt;
6 jpm 176
	}
177
}
178
?>