Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev Author Line No. Line
272 delphine 1
<?php
2
// declare(encoding='UTF-8');
3
/**
4
 * Classe mère du module Liste.
5
 *
6
 * @category	PHP 5.2
7
 * @package		eflore-consultation
8
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
9
 * @author		Delphine CAUQUIL <delphine@tela-botanica.org>
10
 * @copyright	2011 Tela-Botanica
11
 * @license		http://www.gnu.org/licenses/gpl.html Licence GNU-GPL-v3
12
 * @license		http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL-v2
13
 * @version		$Id$
14
 */
15
class Nomenclature extends aControleur {
291 jpm 16
 
17
	private $conteneur = null;
294 delphine 18
	private $nomCourant = null;
291 jpm 19
	private $noms = null;
20
	private $meta = null;
952 delphine 21
	private $referentiel = 'bdtfx';
22
	private $donnees = array();
291 jpm 23
 
24
	public function __construct(Conteneur $conteneur) {
25
		$this->conteneur = $conteneur;
294 delphine 26
		$this->nomCourant = $this->conteneur->getNomCourant();
952 delphine 27
		$this->referentiel = $this->conteneur->getParametre('referentiel');
829 delphine 28
		$this->taxons = $this->conteneur->getApiTaxons();
291 jpm 29
		$this->noms = $this->conteneur->getApiNoms();
326 aurelien 30
		$this->meta = $this->conteneur->getApiMetaDonnees();
291 jpm 31
		$this->appUrls = $this->conteneur->getAppUrls();
463 delphine 32
		$this->wikini = $this->conteneur->getApiWikini();
944 delphine 33
		//print_r($_GET['niveau']);
34
		//Registre::set('parametres.niveau', 2);
272 delphine 35
	}
291 jpm 36
 
37
	public function obtenirDonnees() {
952 delphine 38
		$this->donnees['baseUrlIco'] = $this->appUrls->obtenirUrlBaseDossier();
39
		$this->donnees['referentiel'] = $this->referentiel;
40
		$this->getFlores();
1248 aurelien 41
		$this->donnees['synonymes']['noms'] = $this->trierSynonymesParBasionyme($this->getSynonymes());
952 delphine 42
		$this->donnees['date_maj'] = $this->nomCourant->getNomRetenu()->get('maj_modif');
326 aurelien 43
		$meta = $this->meta->getMetaDonnees();
1130 aurelien 44
		$this->donnees['synonymes']['meta'] = $meta[0];
955 delphine 45
		$this->donnees['synonymes']['meta']['url'] = $this->appUrls->obtenirUrlMetaDonnees($this->referentiel);
952 delphine 46
		$this->donnees['num_type'] = $this->nomCourant->getNomSelectionne()->get('num_type');
47
		$this->donnees['urls'] = $this->appUrls;
48
		$this->donnees['nom_retenu_formate'] = $this->nomCourant->getNomRetenu()->get('nom_sci_html_complet');
49
		$this->donnees['nom_retenu_nn'] = $this->nomCourant->getNomRetenu()->get('nom_retenu.id');
1391 delphine 50
		$this->donnees['nom_retenu_source'] = $this->nomCourant->getNomRetenu()->get('source_biblio');
952 delphine 51
		$this->donnees['basionyme_nom_retenu'] = $this->nomCourant->getNomRetenu()->get('basionyme_html_complet');
52
		$this->donnees['basionyme_nom_retenu_nn'] = $this->nomCourant->getNomRetenu()->get('basionyme.id');
1387 delphine 53
		$this->donnees['nom_selectionne'] = $this->nomCourant->getNomSelectionne()->get('nom_sci_html_complet');
952 delphine 54
		$this->donnees['nom_retenu'] = $this->nomCourant->getNomRetenu()->get('nom_sci');
55
		$this->donnees['wikini'] = $this->getWikini();
56
		$this->donnees['hybride_parent_01'] = $this->nomCourant->getNomRetenu()->get('hybride.parent_01_html_complet');
57
		$this->donnees['hybride_parent_02'] = $this->nomCourant->getNomRetenu()->get('hybride.parent_02_html_complet');
58
		$this->donnees['hybride_parent_01_nn'] = $this->nomCourant->getNomRetenu()->get('hybride.parent_01.id');
59
		$this->donnees['hybride_parent_02_nn'] = $this->nomCourant->getNomRetenu()->get('hybride.parent_02.id');
1391 delphine 60
 
914 delphine 61
 
829 delphine 62
 
952 delphine 63
		$this->donnees['taxons_sup'] = $this->nomCourant->taxons_sup;
64
		$this->donnees['taxon_courant']['rang.libelle'] = $this->nomCourant->getNomRetenu()->get('rang.libelle');
65
		$this->donnees['taxon_courant']['nom_sci'] = $this->nomCourant->getNomRetenu()->get('nom_sci');
66
		$this->donnees['taxon_courant']['num_nom'] = $this->nomCourant->getNomRetenu()->get('id');
67
		$this->donnees['taxons_inf'] = $this->getTaxonsInferieurs();
1248 aurelien 68
 
952 delphine 69
		return $this->donnees;
272 delphine 70
	}
712 mathilde 71
 
1248 aurelien 72
	private function trierSynonymesParBasionyme($synonymes) {
73
		$synonymes_t = array();
74
		$basionyme_inconnu = array();
75
		foreach($synonymes as $num_nom => $syn) {
1252 aurelien 76
			if($syn['num_type'] != "")  {
77
				$index = $syn['num_type'];
78
				// regroupement sous le 1er basionyme (num_type == num_nom)
1248 aurelien 79
				if(!isset($synonymes_t[$index]['infos_basionyme'])) {
80
					$synonymes_t[$index]['infos_basionyme'] = $this->extraireInfosBasionymeDuSynonyme($syn);
81
				}
1252 aurelien 82
				$synonymes_t[$index]['synonymes'][$num_nom] = $syn;
1248 aurelien 83
			} else {
84
				$basionyme_inconnu['synonymes'][$num_nom] = $syn;
1252 aurelien 85
			}
1248 aurelien 86
		}
87
		// mise à la fin du tableau des noms sans basionymes
1256 aurelien 88
		if(!empty($basionyme_inconnu)) {
89
			$synonymes_t['basionyme_inconnu'] = $basionyme_inconnu;
90
		}
1248 aurelien 91
 
92
		return $synonymes_t;
93
	}
829 delphine 94
 
1248 aurelien 95
	private function extraireInfosBasionymeDuSynonyme($synonyme) {
96
		return array(
97
			'basionyme.id' => $synonyme['basionyme.id'],
98
			'basionyme.libelle' => $synonyme['basionyme.libelle'],
99
			'basionyme_html' => $synonyme['basionyme_html'],
100
			'basionyme_complet' => $synonyme['basionyme_complet'],
101
			'basionyme_html_complet' => $synonyme['basionyme_html_complet'],
102
			'basionyme.href' => $synonyme['basionyme.href']
103
		);
104
	}
105
 
829 delphine 106
	private function getTaxonsInferieurs() {
944 delphine 107
		$num_nom = $this->nomCourant->getNomRetenu()->get('id');
108
		$resultat = $this->taxons->getTaxonsInf($num_nom);
1051 raphael 109
		// TODO: le webservice retourne le taxon demandé comme l'un des taxon inférieurs
110
		// workaround: on le supprime ici car l'on ignore si d'autre app' dépendent de ce comportement
111
		unset($resultat[$num_nom][$num_nom]);
944 delphine 112
		return $resultat[$num_nom];
829 delphine 113
	}
114
 
712 mathilde 115
	public function obtenirVersionDonnees() {
116
		$meta = $this->meta->getMetaDonnees();
952 delphine 117
		$this->donnees['version'] = $meta[0]['code'].' v.'.$meta[0]['version'];
118
		return $this->donnees;
712 mathilde 119
	}
120
 
291 jpm 121
 
122
	public function getBloc() {
977 delphine 123
		$this->donnees['urls'] = $this->appUrls;
952 delphine 124
		$this->donnees['nom_selectionne'] = $this->nomCourant->getNomSelectionne()->get('nom_sci_html_complet');
125
		$this->donnees['nom_retenu_formate'] = $this->nomCourant->getNomRetenu()->get('nom_sci_html_complet');
126
		$this->donnees['basionyme_nom_retenu'] = $this->nomCourant->getNomRetenu()->get('basionyme_html_complet');
291 jpm 127
		$synonymes = $this->getSynonymes();
952 delphine 128
		$this->donnees['synonymes'] = array_slice($synonymes, 0, 3);
129
		$this->donnees['autresSynonymesNbre'] = count($synonymes) - 3;
829 delphine 130
 
952 delphine 131
		$this->donnees['taxons_sup'] = $this->nomCourant->taxons_sup;
132
		$this->donnees['taxons_inf'] = $this->getTaxonsInferieurs();
133
		$this->donnees['taxons_sup'] = is_array($this->donnees['taxons_sup']) ? array_slice($this->donnees['taxons_sup'], -3 , 3) : array();
134
		$this->donnees['taxons_inf'] = is_array($this->donnees['taxons_inf']) ? array_slice($this->donnees['taxons_inf'], 0 , 3) : array();
977 delphine 135
 
952 delphine 136
		return $this->donnees;
291 jpm 137
	}
498 jpm 138
 
336 aurelien 139
	private function getFlores() {
952 delphine 140
		if (Config::get($this->referentiel.'.baseFloresRef') != "") {
141
			$nnr = $this->nomCourant->getNnr();
142
			$flores = $this->noms->getFlores($nnr);
143
			$this->donnees['flores_synonymes'] =  (isset($flores['resultat']) && is_array($flores['resultat'])) ? $flores['resultat'] : array();
144
		}
336 aurelien 145
	}
291 jpm 146
 
147
	private function getSynonymes() {
294 delphine 148
		$nns = $this->nomCourant->getNns();
498 jpm 149
		$synonymesReponse = $this->noms->getSynonymes($nns);
150
 
151
		$synonymes = array();
565 delphine 152
		if (isset($synonymesReponse['resultat']) && is_array($synonymesReponse['resultat'])) {
498 jpm 153
			$synonymes = $synonymesReponse['resultat'];
154
			if (array_key_exists($this->nomCourant->getNnr(), $synonymes)) {
155
				unset($synonymes[$this->nomCourant->getNnr()]);
156
			}
469 delphine 157
		}
498 jpm 158
		return $synonymes;
291 jpm 159
	}
498 jpm 160
 
463 delphine 161
	private function getWikini() {
162
		$wikini = array();
163
		$wikini['titre'] = 'Wikini';
164
		$num_tax = $this->nomCourant->getNomSelectionne()->get('num_taxonomique');
952 delphine 165
		$page_wiki = $this->wikini->getPageWikiPourRefEtNumTax($this->referentiel, $num_tax);
463 delphine 166
		$wikini['nomenclature'] = $this->wikini->getTexteFormate($page_wiki, 'nomenclature');
167
		return $wikini;
168
	}
272 delphine 169
}
170
?>