Subversion Repositories eFlore/Applications.moissonnage

Rev

Rev 31 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
26 alex 1
<?php
2
 
3
 
4
/**
5
 * Classe qui va effectuer toutes les operations liees aux referentiels ou rechercher
6
 * des informations sur les taxons dans les tables des referentiels dans la base de donnees
7
 *
8
 * Operations a utiliser :
9
 *   - recupererListeReferentielsDisponibles (statique) : recherche dans les fichiers de configuration
10
 *     la liste des referentiels disponibles et les renvoie dans un tableau
11
 *
12
 *   - chargerTaxon : recherche dans la table possedant le meme nom que le nom du referentiel en attribut
13
 *     les informations generales sur un taxon (numero nomenclatural retenu, numero taxonomique,
14
 *     nom scientifique, rang) a partir de son numero taxonomique
15
 *     On stockera dans un attribut un tableau associatif contenant ces informations + le nom du referentiel,
16
 *     ou la valeur nulle si aucun taxon n'a ete trouve
17
 *
18
 *   - recupererSousTaxons : a partir du numero nomenclatural d'un taxon, la fonction va recuperer
19
 *     tous les taxons de rang inferieur de maniere recursive jusqu'en ne plus en trouver de nouveaux
20
 *     la recherche s'effectuera seulement au niveau des rangs famille, genre, espece et sous-espece
21
 *     pour limiter le nombre d'informations qui sera a la fin renvoye
22
 *
23
 *   - obtenirNumeroNomenclatural : recherche le numero nomenclatural d'un taxon a partir de son nom scientifique
24
 *
25
 * @package framework-0.3
26
 * @author Alexandre GALIBERT <alexandre.galibert@tela-botanica.org>
27
 * @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
28
 * @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
29
 * @version $Id$
30
 * @copyright 2013 Tela Botanica (accueil@tela-botanica.org)
31
 *
32
 */
33
 
34
 
35
 
36
class Referentiel {
37
 
38
	private $nomComplet;
39
	private $nomCourt;
40
	private $taxon;
41
	private $bdd = null;
34 alex 42
 
26 alex 43
	private $nomsChampsBdtfx = array('nn' => 'num_nom_retenu', 'nt' => 'num_taxonomique', 'ns' => 'nom_sci');
44
	private $nomsChampsBdtxa = array('nn' => 'num_nom_retenu', 'nt' => 'num_tax', 'ns' => 'nom_sci');
45
	private $champs;
46
 
47
 
48
	public function __construct($nomReferentiel, $taxon = null) {
49
		$this->nomComplet = $nomReferentiel;
50
		$this->nomCourt = current(explode('_', $nomReferentiel));
51
		$proprieteChamps = 'nomsChamps' . ucfirst($this->nomCourt);
52
		foreach ($this->$proprieteChamps as $nomCourt => $nomChamp) {
53
			$this->champs[$nomCourt] = $nomChamp;
54
		}
55
		$this->taxon = $taxon;
56
	}
31 alex 57
 
26 alex 58
	public function renvoyerNomCompletReferentiel() {
59
		return $this->nomComplet;
60
	}
61
 
62
	public function renvoyerTaxon() {
63
		return $this->taxon;
64
	}
65
 
31 alex 66
	public function chargerTaxon($typeNumero, $numTaxon) {
26 alex 67
		$taxon = null;
68
		// verifier que le numero de taxon soit bien une chaine de caracteres composee uniquement
69
		// que de nombres entiers avant de construire la requete SQL a executer
70
		if (preg_match('/^\d+$/', $numTaxon) == 1) {
31 alex 71
			$champWhere = $typeNumero == 'nt' ? $this->champs['nt']: 'num_nom';
26 alex 72
			$requete =
73
				"SELECT ".$this->champs['nn']." AS nn, ".$this->champs['nt']." AS nt, ".
74
				$this->champs['ns']." AS nom, rang FROM ".$this->nomComplet." WHERE ".
31 alex 75
				$champWhere."={$numTaxon} AND num_nom=".$this->champs['nn']." ".
26 alex 76
				"ORDER BY rang, If(num_nom=".$this->champs['nn'].", 0, 1) LIMIT 0, 1";
77
			$taxon = $this->getBdd()->recuperer($requete);
78
			if ($taxon == false) {
79
				$taxon = null;
80
			} else {
81
				$taxon['referentiel'] = $this->nomComplet;
82
			}
83
		}
84
		$this->taxon = $taxon;
85
	}
86
 
31 alex 87
	private function getBdd() {
88
		if (is_null($this->bdd)) {
89
			$this->bdd = new Bdd();
90
		}
34 alex 91
		$nomBdd = Config::get('bdd_nom');
31 alex 92
		$this->bdd->requeter("USE ".$nomBdd);
93
		return $this->bdd;
94
	}
26 alex 95
 
34 alex 96
	public function recupererSynonymesEtSousEspeces() {
26 alex 97
		$sousTaxons = array();
34 alex 98
		if (!is_null($this->taxon) && $this->taxon['rang'] >= Config::get('rang.espece')) {
26 alex 99
			$requete =
34 alex 100
			"SELECT ".$this->champs['nn']." AS nn, ".$this->champs['nt']." AS nt, ".
101
			$this->champs['ns']." AS nom, rang FROM ".$this->nomComplet. " WHERE ".
102
			$this->champs['nt']."=".$this->taxon['nt']." OR hierarchie LIKE '%-".$this->champs['nn']."-%'";
103
			$sousTaxons = $this->getBdd()->recupererTous($requete);
26 alex 104
		}
105
		return $sousTaxons;
106
	}
107
 
34 alex 108
	public function recupererGenres() {
31 alex 109
		$sousTaxons = array();
34 alex 110
		if (!is_null($this->taxon) && $this->taxon['rang'] == Config::get('rang.famille')) {
31 alex 111
			$requete =
34 alex 112
			"SELECT ".$this->champs['nn']." AS nn, ".$this->champs['nt']." AS nt, ".
113
			$this->champs['ns']." AS nom, rang FROM ".$this->nomComplet. " WHERE ".
114
			"num_tax_sup=".$this->taxon['nn']." AND num_nom=".$this->champs['nn'];
31 alex 115
			$sousTaxons = $this->getBdd()->recupererTous($requete);
26 alex 116
		}
31 alex 117
		return $sousTaxons;
26 alex 118
	}
119
 
120
	public static function recupererListeReferentielsDisponibles() {
121
		$tableau = array();
122
		$tableauPartiel = explode(',', Config::get('referentiels_dispo'));
123
		$tableauPartiel = array_map('trim', $tableauPartiel);
124
		foreach ($tableauPartiel as $champ) {
125
			if (strpos($champ, '=') === false) {
126
				$tableau[] = $champ;
127
			} else {
128
				list($cle, $val) = explode('=', $champ);
129
				$clePropre = trim($cle);
130
				$valeurPropre = trim($val);
131
				$tableau[$clePropre] = $valeurPropre;
132
			}
133
		}
134
		return $tableau;
135
	}
136
 
34 alex 137
	public function obtenirNumeroNomenclatural($nomScientifique, $numeroNomenclatural = null) {
26 alex 138
		$aProteger = $this->getBdd()->proteger(trim($nomScientifique) . '%');
139
		$requete = "SELECT ".$this->champs['nn']." AS nn FROM ".$this->nomComplet." ".
140
			"WHERE ".$this->champs['ns']." LIKE ".$aProteger;
34 alex 141
		if (!is_null($numeroNomenclatural) || strlen($numeroNomenclatural) > 0) {
142
			$requete .= " OR ".$this->champs['nn']."={$numeroNomenclatural}";
143
		}
26 alex 144
		$taxon = $this->getBdd()->recuperer($requete);
145
		if ($taxon == false) {
146
			$taxon = null;
147
		} else {
148
			$taxon['referentiel'] = $this->nomComplet;
149
		}
150
		return $taxon;
151
	}
152
 
153
}
34 alex 154
 
26 alex 155
?>