Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 1486 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1486 Rev 1489
Line 11... Line 11...
11
 * @license		http://www.gnu.org/licenses/gpl.html Licence GNU-GPL-v3
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
12
 * @license http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL-v2
13
 * @version		$Id$
13
 * @version $Id$
14
 */
14
 */
15
class Description extends aControleur {
15
class Description extends aControleur {
16
 
-
 
17
	private $conteneur = null;
16
	private $conteneur = null;
18
	private $nomCourant = null;
17
	private $nomCourant = null;
19
	private $textes = null;
18
	private $textes = null;
20
	private $meta = null;
19
	private $meta = null;
21
	private $wikini = null;
20
	private $wikini = null;
22
	private $informations = null;
21
	private $informations = null;
23
	static $mois = array(
22
	static $mois = array (
-
 
23
			'janvier',
24
        'janvier', 'février', 'mars', 'avril', 'mai', 'juin', 'juillet',
24
			'février',
-
 
25
			'mars',
-
 
26
			'avril',
-
 
27
			'mai',
-
 
28
			'juin',
-
 
29
			'juillet',
-
 
30
			'août',
25
        'août', 'septembre', 'octobre', 'novembre', 'décembre');
31
			'septembre',
-
 
32
			'octobre',
-
 
33
			'novembre',
-
 
34
			'décembre' 
-
 
35
	);
26
	private $CosteFormate;
36
	private $CosteFormate;
27
	private $CosteTexte;
37
	private $CosteTexte;
28
 
-
 
29
	private $referentiel = 'bdtfx';
38
	private $referentiel = 'bdtfx';
30
	private $donnees = array();
39
	private $donnees = array ();
31
 
-
 
32
	public function __construct(Conteneur $conteneur) {
40
	public function __construct(Conteneur $conteneur) {
33
		$this->conteneur = $conteneur;
41
		$this->conteneur = $conteneur;
34
		$this->nomCourant = $this->conteneur->getNomCourant();
42
		$this->nomCourant = $this->conteneur->getNomCourant ();
35
		$this->referentiel = $this->conteneur->getParametre('referentiel');
43
		$this->referentiel = $this->conteneur->getParametre ( 'referentiel' );
36
		$this->textes = $this->conteneur->getApiTextes();
44
		$this->textes = $this->conteneur->getApiTextes ();
37
		$this->wikini = $this->conteneur->getApiWikini();
45
		$this->wikini = $this->conteneur->getApiWikini ();
38
		$this->meta = $this->conteneur->getApiMetaDonnees();
46
		$this->meta = $this->conteneur->getApiMetaDonnees ();
39
		$this->informations = $this->conteneur->getApiInformations();
47
		$this->informations = $this->conteneur->getApiInformations ();
40
		$this->appUrls = $this->conteneur->getAppUrls();
48
		$this->appUrls = $this->conteneur->getAppUrls ();
41
	}
49
	}
42
 
-
 
43
	public function obtenirDonnees() {
50
	public function obtenirDonnees() {
44
		$donnees = array();
51
		$donnees = array ();
45
		$this->getWikipedia();
52
		$this->getWikipedia ();
46
		$this->getWikini();
53
		$this->getWikini ();
47
		$this->getDescriptionsDependantesReferentiel($this->referentiel);
54
		$this->getDescriptionsDependantesReferentiel ( $this->referentiel );
48
		if ($this->referentiel == 'bdtfx') {
55
		if ($this->referentiel == 'bdtfx') {
49
			$this->getCoste();
56
			$this->getCoste ();
50
		}
57
		}
51
		return $this->donnees;
58
		return $this->donnees;
52
	}
59
	}
53
 
-
 
54
	public function obtenirDonneesExport() {
60
	public function obtenirDonneesExport() {
55
		$donnees = array();
61
		$donnees = array ();
56
		$this->getWikini();
62
		$this->getWikini ();
57
		$this->getDescriptionsDependantesReferentiel($this->referentiel);
63
		$this->getDescriptionsDependantesReferentiel ( $this->referentiel );
58
		return $this->donnees;
64
		return $this->donnees;
59
	}
65
	}
60
 
-
 
61
	private function getDescriptionsDependantesReferentiel($ref) {
66
	private function getDescriptionsDependantesReferentiel($ref) {
62
		if(trim(Config::get($ref . '.baseDescription')) != "") {
67
		if (trim ( Config::get ( $ref . '.baseDescription' ) ) != "") {
63
        	// eg: [bdtfx]baseDescription = coste,baseflor dans bdtfx.ini
68
			// eg: [bdtfx]baseDescription = coste,baseflor dans bdtfx.ini
64
        	$bases_descriptions = explode(',', Config::get($ref . '.baseDescription'));
69
			$bases_descriptions = explode ( ',', Config::get ( $ref . '.baseDescription' ) );
65
			foreach ($bases_descriptions as $base) {
70
			foreach ( $bases_descriptions as $base ) {
66
        	    $fonction = 'get'.ucfirst($base);
71
				$fonction = 'get' . ucfirst ( $base );
67
       	     $this->$fonction();
72
				$this->$fonction ();
68
			}
73
			}
69
		}
74
		}
70
	}
75
	}
71
 
-
 
72
	public function getBloc() {
76
	public function getBloc() {
73
		// prend la première description disponible dans l'ordre indiqué dans le fichier
77
		// prend la première description disponible dans l'ordre indiqué dans le fichier
74
		// de config, et prend la description wiki sinon
78
		// de config, et prend la description wiki sinon
75
		if(Config::get($this->referentiel.'.baseDescription') != "") {
79
		if (Config::get ( $this->referentiel . '.baseDescription' ) != "") {
76
            $bases_descriptions = explode(',', Config::get($this->referentiel.'.baseDescription'));
80
			$bases_descriptions = explode ( ',', Config::get ( $this->referentiel . '.baseDescription' ) );
Line 98... Line 102...
98
            unset($this->donnees['wikini']);
102
			unset ( $this->donnees ['wikini'] );
99
		}
103
		}
Line 100... Line 104...
100
 
104
		
101
		return $this->donnees;
105
		return $this->donnees;
102
	}
-
 
103
 
106
	}
104
	private function getBaseflor() {
107
	private function getBaseflor() {
105
		$baseflor = array();
108
		$baseflor = array ();
106
		$this->informations ->setProjet('baseflor');
109
		$this->informations->setProjet ( 'baseflor' );
107
		$this->informations ->setBdnt($this->conteneur->getParametre('referentiel'));
110
		$this->informations->setBdnt ( $this->conteneur->getParametre ( 'referentiel' ) );
Line 127... Line 130...
127
			$baseflor['meta'] = $meta[0];
130
			$baseflor ['meta'] = $meta [0];
128
			$baseflor['meta']['url'] = $this->appUrls->obtenirUrlMetaDonnees('baseflor');
131
			$baseflor ['meta'] ['url'] = $this->appUrls->obtenirUrlMetaDonnees ( 'baseflor' );
129
		}
132
		}
130
		$this->donnees['baseflor'] = $baseflor;
133
		$this->donnees ['baseflor'] = $baseflor;
131
	}
134
	}
132
 
-
 
133
	static function changerFloraisonEnChaine($floraison){
135
	static function changerFloraisonEnChaine($floraison) {
134
		$chaine = "";
136
		$chaine = "";
135
		if ($floraison != ""){
137
		if ($floraison != "") {
136
			$mois_fleurs=preg_match('/-/',$floraison) ? preg_split('/-/',$floraison) : $floraison;
138
			$mois_fleurs = preg_match ( '/-/', $floraison ) ? preg_split ( '/-/', $floraison ) : $floraison;
137
			if (is_array($mois_fleurs)){
139
			if (is_array ( $mois_fleurs )) {
138
				$chaine = "de ".self::$mois[(int)$mois_fleurs[0]-1]." à ".self::$mois[(int)$mois_fleurs[1]-1];
140
				$chaine = "de " . self::$mois [( int ) $mois_fleurs [0] - 1] . " à " . self::$mois [( int ) $mois_fleurs [1] - 1];
139
 
141
			} else {
140
			}else { $chaine = "en ".self::$mois[(int)$mois_fleurs];
142
				$chaine = "en " . self::$mois [( int ) $mois_fleurs - 1];
141
			}
143
			}
142
		}
144
		}
143
		return $chaine;
145
		return $chaine;
144
	}
146
	}
145
 
-
 
146
	public function getUrlWikipedia() {
147
	public function getUrlWikipedia() {
147
		if(!isset($this->donnees['wp'])) {
148
		if (! isset ( $this->donnees ['wp'] )) {
148
			$this->getWikipedia();
149
			$this->getWikipedia ();
149
		}
150
		}
150
		return $this->donnees['wp'];
151
		return $this->donnees ['wp'];
151
	}
152
	}
152
 
-
 
153
	public function getWikipedia() {
153
	public function getWikipedia() {
154
		$wp = array();
154
		$wp = array ();
155
		$this->textes->setProjet('wikipedia');
155
		$this->textes->setProjet ( 'wikipedia' );
156
		$this->textes->setId(self::getIdWp($this->nomCourant->getNomRetenu()->get('nom_sci')));
156
		$this->textes->setId ( self::getIdWp ( $this->nomCourant->getNomRetenu ()->get ( 'nom_sci' ) ) );
157
		$wp['titre'] = $donnees['titre'] = "Description de wikipedia";
157
		$wp ['titre'] = $donnees ['titre'] = "Description de wikipedia";
158
		$wp['lien'] = $this->textes->getPageUrl();
158
		$wp ['lien'] = $this->textes->getPageUrl ();
159
		$wp['meta']['url'] = $this->appUrls->obtenirUrlMetaDonnees('wikipedia');
159
		$wp ['meta'] ['url'] = $this->appUrls->obtenirUrlMetaDonnees ( 'wikipedia' );
160
		$this->donnees['wp'] = $wp;
160
		$this->donnees ['wp'] = $wp;
161
	}
161
	}
162
 
-
 
163
	private static function getIdWp($nomSci) {
162
	private static function getIdWp($nomSci) {
164
		return urlencode(str_replace(' ', '_', $nomSci));
163
		return urlencode ( str_replace ( ' ', '_', $nomSci ) );
165
	}
164
	}
166
 
-
 
167
	private function getWikini() {
165
	private function getWikini() {
168
		$wikini = array();
166
		$wikini = array ();
169
		$wikini['titre'] = 'Wikini';
167
		$wikini ['titre'] = 'Wikini';
170
		$referentiel = $this->conteneur->getParametre('referentiel');
168
		$referentiel = $this->conteneur->getParametre ( 'referentiel' );
171
		$num_tax = $this->nomCourant->getNomSelectionne()->get('num_taxonomique');
169
		$num_tax = $this->nomCourant->getNomSelectionne ()->get ( 'num_taxonomique' );
172
		$page_wiki = $this->wikini->getPageWikiPourRefEtNumTax($referentiel, $num_tax);
170
		$page_wiki = $this->wikini->getPageWikiPourRefEtNumTax ( $referentiel, $num_tax );
173
		$wikini['description'] = $this->wikini->getTexteFormate($page_wiki, 'description');
171
		$wikini ['description'] = $this->wikini->getTexteFormate ( $page_wiki, 'description' );
174
		$this->donnees['wikini'] = $wikini;
172
		$this->donnees ['wikini'] = $wikini;
175
	}
173
	}
176
 
-
 
177
	public function getLienWikini() {
174
	public function getLienWikini() {
178
		$referentiel = $this->conteneur->getParametre('referentiel');
175
		$referentiel = $this->conteneur->getParametre ( 'referentiel' );
179
		$num_tax = $this->nomCourant->getNomSelectionne()->get('num_taxonomique');
176
		$num_tax = $this->nomCourant->getNomSelectionne ()->get ( 'num_taxonomique' );
180
		return $this->wikini->getUrlPageWiki($referentiel, $num_tax);
177
		return $this->wikini->getUrlPageWiki ( $referentiel, $num_tax );
181
	}
178
	}
182
 
-
 
183
	private function getCoste() {
179
	private function getCoste() {
184
		$coste = array();
180
		$coste = array ();
185
		$this->textes->setProjet('coste');
181
		$this->textes->setProjet ( 'coste' );
186
		$this->textes->setId('bdtfx.nt:'.$this->nomCourant->getNt());
182
		$this->textes->setId ( 'bdtfx.nt:' . $this->nomCourant->getNt () );
187
		$texte = $this->textes->getTexte();
183
		$texte = $this->textes->getTexte ();
Line 196... Line 192...
196
		$meta = $this->meta->getMetaDonnees();
192
		$meta = $this->meta->getMetaDonnees ();
197
		$coste['meta'] = $meta[0];
193
		$coste ['meta'] = $meta [0];
198
		$coste['meta']['url'] = $this->appUrls->obtenirUrlMetaDonnees('coste');
194
		$coste ['meta'] ['url'] = $this->appUrls->obtenirUrlMetaDonnees ( 'coste' );
199
		$this->donnees['coste'] = $coste;
195
		$this->donnees ['coste'] = $coste;
200
	}
196
	}
201
 
-
 
202
	static function mettreEnFormeCoste($texte) {
197
	static function mettreEnFormeCoste($texte) {
203
		$txt_fmt = array();
198
		$txt_fmt = array ();
204
		//decouper elements remarquables avant le texte
199
		// decouper elements remarquables avant le texte
205
		self::separerNomScientifique_a_NomCommun($texte, $txt_fmt);
200
		self::separerNomScientifique_a_NomCommun ( $texte, $txt_fmt );
206
		$texte = preg_replace('/\//','',$texte);
201
		$texte = preg_replace ( '/\//', '', $texte );
Line 210... Line 205...
210
		$texte = str_replace(';','</br> -','- '.$texte);
205
		$texte = str_replace ( ';', '</br> -', '- ' . $texte );
211
		$texte = str_replace('–','',$texte);
206
		$texte = str_replace ( '–', '', $texte );
212
		$txt_fmt['texte'] = $texte;
207
		$txt_fmt ['texte'] = $texte;
213
		return $txt_fmt;
208
		return $txt_fmt;
214
	}
209
	}
215
 
-
 
216
 
-
 
217
	static function separerNomScientifique_a_NomCommun(&$txt, &$txt_fmt){
210
	static function separerNomScientifique_a_NomCommun(&$txt, &$txt_fmt) {
218
		if ( preg_match('/\*\*(.+)\*\*([^–]*)–/', $txt, $retour)){
211
		if (preg_match ( '/\*\*(.+)\*\*([^–]*)–/', $txt, $retour )) {
219
			/* !! attention on enlève un tiret cadratin – pas un trait d'union - !! */
212
			/* !! attention on enlève un tiret cadratin – pas un trait d'union - !! */
220
			$a_enlever  = array('/–/','/\./' );
213
			$a_enlever = array (
-
 
214
					'/–/',
-
 
215
					'/\./' 
-
 
216
			);
221
			$txt_fmt['nom_scientifique'] = preg_replace($a_enlever,'',$retour[1]);
217
			$txt_fmt ['nom_scientifique'] = preg_replace ( $a_enlever, '', $retour [1] );
222
			if(preg_match('/\((.+)\)/',$retour[2],$synonymes)){
218
			if (preg_match ( '/\((.+)\)/', $retour [2], $synonymes )) {
223
				$txt_fmt['synonymes'] = $synonymes[1];
219
				$txt_fmt ['synonymes'] = $synonymes [1];
224
			} else {
220
			} else {
225
				$txt_fmt['nom_scientifique'] .=  $retour[2];
221
				$txt_fmt ['nom_scientifique'] .= $retour [2];
226
			}
222
			}
227
			$txt = str_replace($retour[0],'',$txt);
223
			$txt = str_replace ( $retour [0], '', $txt );
228
		}
224
		}
229
		/* !! attention il y a un espace avant les // du début !! */
225
		/* !! attention il y a un espace avant les // du début !! */
230
		if ( preg_match('/^ \/\/([^\/\/]+)\/\//', $txt, $retour)){
226
		if (preg_match ( '/^ \/\/([^\/\/]+)\/\//', $txt, $retour )) {
231
			$a_enlever = array('/–/','/\./' );
227
			$a_enlever = array (
-
 
228
					'/–/',
-
 
229
					'/\./' 
-
 
230
			);
232
			$txt_fmt['nom_commun'] = preg_replace($a_enlever,'',$retour[1]);
231
			$txt_fmt ['nom_commun'] = preg_replace ( $a_enlever, '', $retour [1] );
233
			$txt = str_replace($retour[0],'',$txt);
232
			$txt = str_replace ( $retour [0], '', $txt );
234
		}
233
		}
235
	}
234
	}
236
 
-
 
237
 
-
 
238
	static function separerEcologie_a_Usages(&$txt, &$txt_fmt) {
235
	static function separerEcologie_a_Usages(&$txt, &$txt_fmt) {
239
		if (preg_match('/\.\s*([A-ZÉÀÈ].+)$/',$txt, $retour)) {
236
		if (preg_match ( '/\.\s*([A-ZÉÀÈ].+)$/', $txt, $retour )) {
240
			$txt_fmt['ecologie'] = $retour[1];
237
			$txt_fmt ['ecologie'] = $retour [1];
241
			$txt = str_replace($retour[0],'.',$txt);
238
			$txt = str_replace ( $retour [0], '.', $txt );
242
			if (isset($txt_fmt['ecologie']) && preg_match('/–(.+)/', $txt_fmt['ecologie'] , $retour)){
239
			if (isset ( $txt_fmt ['ecologie'] ) && preg_match ( '/–(.+)/', $txt_fmt ['ecologie'], $retour )) {