Subversion Repositories eFlore/Applications.moissonnage

Rev

Rev 26 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 26 Rev 31
Line 29... Line 29...
29
 * @version $Id$
29
 * @version $Id$
30
 * @copyright 2013 Tela Botanica (accueil@tela-botanica.org)
30
 * @copyright 2013 Tela Botanica (accueil@tela-botanica.org)
31
 * 
31
 * 
32
 */
32
 */
Line 33... Line -...
33
 
-
 
34
define("RANG_FAMILLE", 180);
-
 
Line 35... Line 33...
35
 
33
 
Line 36... Line 34...
36
 
34
 
37
 
35
 
38
class Referentiel {
-
 
39
	
36
class Referentiel {
40
	private $nomComplet;
37
	
41
	private $nomCourt;
-
 
42
	
38
	private $nomComplet;
43
	private $taxon;
39
	private $nomCourt;
44
	private $bdd = null;
40
	private $taxon;
Line 45... Line -...
45
	
-
 
46
	private $nomsChampsBdtfx = array('nn' => 'num_nom_retenu', 'nt' => 'num_taxonomique', 'ns' => 'nom_sci');
41
	private $bdd = null;
47
	private $nomsChampsBdtxa = array('nn' => 'num_nom_retenu', 'nt' => 'num_tax', 'ns' => 'nom_sci');
42
	private $nomsChampsBdtfx = array('nn' => 'num_nom_retenu', 'nt' => 'num_taxonomique', 'ns' => 'nom_sci');
48
	private $champs;
43
	private $nomsChampsBdtxa = array('nn' => 'num_nom_retenu', 'nt' => 'num_tax', 'ns' => 'nom_sci');
49
	
44
	private $champs;
50
	
45
	
51
	
46
	
52
	public function __construct($nomReferentiel, $taxon = null) {
47
	public function __construct($nomReferentiel, $taxon = null) {
53
		$this->nomComplet = $nomReferentiel;
48
		$this->nomComplet = $nomReferentiel;
54
		$this->nomCourt = current(explode('_', $nomReferentiel));
49
		$this->nomCourt = current(explode('_', $nomReferentiel));
55
		$proprieteChamps = 'nomsChamps' . ucfirst($this->nomCourt);
-
 
56
		foreach ($this->$proprieteChamps as $nomCourt => $nomChamp) {
50
		$proprieteChamps = 'nomsChamps' . ucfirst($this->nomCourt);
57
			$this->champs[$nomCourt] = $nomChamp;
-
 
58
		}
51
		foreach ($this->$proprieteChamps as $nomCourt => $nomChamp) {
59
		$this->taxon = $taxon;
52
			$this->champs[$nomCourt] = $nomChamp;
60
	}
53
		}
Line 61... Line 54...
61
	
54
		$this->taxon = $taxon;
62
	
55
	}
63
	
56
		
Line 64... Line 57...
64
	public function renvoyerNomCompletReferentiel() {
57
	public function renvoyerNomCompletReferentiel() {
65
		return $this->nomComplet;
58
		return $this->nomComplet;
66
	}
59
	}
67
	
60
	
68
	public function renvoyerTaxon() {
61
	public function renvoyerTaxon() {
-
 
62
		return $this->taxon;
69
		return $this->taxon;
63
	}
70
	}
64
	
71
	
65
	public function chargerTaxon($typeNumero, $numTaxon) {
72
	public function chargerTaxon($numTaxon) {
66
		$taxon = null;
73
		$taxon = null;
67
		// verifier que le numero de taxon soit bien une chaine de caracteres composee uniquement
74
		// verifier que le numero de taxon soit bien une chaine de caracteres composee uniquement
68
		// que de nombres entiers avant de construire la requete SQL a executer
75
		// que de nombres entiers avant de construire la requete SQL a executer
69
		if (preg_match('/^\d+$/', $numTaxon) == 1) {
76
		if (preg_match('/^\d+$/', $numTaxon) == 1) {
70
			$champWhere = $typeNumero == 'nt' ? $this->champs['nt']: 'num_nom';
77
			$requete = 
71
			$requete = 
Line 87... Line 81...
87
			}
81
			}
88
		}
82
		}
89
		$this->taxon = $taxon;
83
		$this->taxon = $taxon;
90
	}
84
	}
Line -... Line 85...
-
 
85
	
-
 
86
	private function getBdd() {
-
 
87
		if (is_null($this->bdd)) {
-
 
88
			$this->bdd = new Bdd();
-
 
89
		}
-
 
90
		$nomBdd = Config::get('bdd_eflore');
-
 
91
		if (is_null($nomBdd)) {
-
 
92
			$nomBdd = Config::get('bdd_nom');
-
 
93
		}
-
 
94
		$this->bdd->requeter("USE ".$nomBdd);
-
 
95
		return $this->bdd;
Line 91... Line 96...
91
	
96
	}
92
	
97
	
93
	public function recupererSousTaxons($listeNn = null) {
98
	public function recupererTaxonsSousEspeces($listeNn = null) {
94
		$sousTaxons = array();
99
		$sousTaxons = array();
95
		if (!is_null($this->taxon) && $this->taxon['rang'] >= RANG_FAMILLE) {
100
		if (!is_null($this->taxon) && $this->taxon['rang'] == Config::get('rang.espece')) {
96
			if (is_null($listeNn)) {
101
			if (is_null($listeNn)) {
97
				$listeNn = $this->taxon['nn'];
102
				$listeNn = $this->taxon['nn'];
98
			}
103
			}
Line 107... Line 112...
107
				$sousTaxons[] = $sousTaxon;
112
				$sousTaxons[] = $sousTaxon;
108
				$nouvelleListeNn .= (strlen($nouvelleListeNn) == 0 ? '' : ',') . $sousTaxon['nn'];
113
				$nouvelleListeNn .= (strlen($nouvelleListeNn) == 0 ? '' : ',') . $sousTaxon['nn'];
109
			}
114
			}
110
			// recherche de sous taxons au niveau inferieur (parcours recursif de la methode)
115
			// recherche de sous taxons au niveau inferieur (parcours recursif de la methode)
111
			if (count($resultats) > 0) {
116
			if (count($resultats) > 0) {
112
				$sousTaxons = array_merge($sousTaxons, $this->recupererSousTaxons($nouvelleListeNn));
117
				$sousTaxons = array_merge($sousTaxons, $this->recupererTaxonsSousEspeces($nouvelleListeNn));
113
			}
118
			}
114
		}
119
		}
115
		
-
 
116
		return $sousTaxons;
120
		return $sousTaxons;
117
	}
121
	}
Line 118... Line -...
118
	
-
 
119
	
122
	
120
	private function getBdd() {
123
	public function recupererTaxonsFamilles() {
121
		if (is_null($this->bdd)) {
124
		$sousTaxons = array();
122
			$this->bdd = new Bdd();
125
		if (!is_null($this->taxon) && $this->taxon['rang'] == Config::get('rang.genre')) {
-
 
126
			$requete =
123
		}
127
				"SELECT ".$this->champs['nn']." AS nn, ".$this->champs['nt']." AS nt, ".
124
		$nomBdd = Config::get('bdd_eflore');
128
				$this->champs['ns']." AS nom, rang FROM ".$this->nomComplet." WHERE ".
125
		if (is_null($nomBdd)) {
129
				"num_tax_sup=".$this->taxon['nn']." AND num_nom=".$this->champs['nn'];
126
			$nomBdd = Config::get('bdd_nom');
130
			$sousTaxons = $this->getBdd()->recupererTous($requete);
127
		}
-
 
128
		$this->bdd->requeter("USE ".$nomBdd);
131
		}
129
		return $this->bdd;
132
		return $sousTaxons;
Line 130... Line -...
130
	}
-
 
131
	
-
 
132
	
133
	}
133
	
134
	
134
	public static function recupererListeReferentielsDisponibles() {
135
	public static function recupererListeReferentielsDisponibles() {
135
		$tableau = array();
136
		$tableau = array();
136
		$tableauPartiel = explode(',', Config::get('referentiels_dispo'));
137
		$tableauPartiel = explode(',', Config::get('referentiels_dispo'));