1026 |
alex |
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 Repartition extends aControleur {
|
|
|
16 |
|
|
|
17 |
private $conteneur = null;
|
|
|
18 |
private $nomCourant = null;
|
|
|
19 |
private $referentiel = 'bdtfx';
|
|
|
20 |
private $donnees = array();
|
|
|
21 |
private $tailleBloc = "190x178";
|
|
|
22 |
private $serviceChorodep = null;
|
|
|
23 |
private $cartes;
|
|
|
24 |
private $meta;
|
|
|
25 |
private $appUrls;
|
|
|
26 |
|
|
|
27 |
public function __construct(Conteneur $conteneur) {
|
|
|
28 |
$this->conteneur = $conteneur;
|
|
|
29 |
$this->nomCourant = $this->conteneur->getNomCourant();
|
|
|
30 |
$this->referentiel = $this->conteneur->getParametre('referentiel');
|
|
|
31 |
$this->cartes = $this->conteneur->getApiCartes();
|
|
|
32 |
$this->meta = $this->conteneur->getApiMetaDonnees();
|
|
|
33 |
$this->appUrls = $this->conteneur->getAppUrls();
|
|
|
34 |
}
|
|
|
35 |
|
|
|
36 |
public function obtenirDonnees() {
|
|
|
37 |
$this->getRepartition();
|
|
|
38 |
$this->getMoissonnage();
|
1217 |
aurelien |
39 |
$this->getFloreProbable();
|
1026 |
alex |
40 |
$this->donnees['widget']['nt'] = $this->nomCourant->getNt();
|
|
|
41 |
$this->donnees['widget']['nn'] = $this->nomCourant->getNnr();
|
|
|
42 |
$this->donnees['widget']['referentiel'] = $this->referentiel;
|
|
|
43 |
return $this->donnees;
|
|
|
44 |
}
|
|
|
45 |
|
|
|
46 |
public function obtenirDonneesExport() {
|
1028 |
raphael |
47 |
$this->getRepartition();
|
|
|
48 |
$donnees['chorodep'] = $this->donnees['repartition'];
|
|
|
49 |
$this->getMoissonnageExport();
|
|
|
50 |
// TODO: renommer l'index "eflore" en moissonnage
|
|
|
51 |
// et renommer dans pdf_export/squelettes/pdf_repartition.tpl.html
|
|
|
52 |
$donnees['eflore'] = $this->donnees['moissonnage'];
|
1026 |
alex |
53 |
return $donnees;
|
|
|
54 |
}
|
|
|
55 |
|
|
|
56 |
private function getRepartition() {
|
|
|
57 |
$projetRepartition = Config::get($this->referentiel.'.baseRepartition');
|
1028 |
raphael |
58 |
// eg: eflore ou chorodep
|
|
|
59 |
// cf: bdtfx.ini, bdtxa.ini
|
1026 |
alex |
60 |
if ($projetRepartition != "") {
|
|
|
61 |
$this->cartes->setProjet($projetRepartition);
|
|
|
62 |
$this->cartes->setLargeur('630');
|
|
|
63 |
|
|
|
64 |
//TODO: démochir ce code
|
|
|
65 |
// Chargement des nn des synonymes pour obtenir une carte plus complète
|
|
|
66 |
$noms = $this->conteneur->getApiNoms();
|
|
|
67 |
$syns = $noms->getSynonymes($this->nomCourant->getNnr());
|
|
|
68 |
$nns_syns = array_keys($syns['resultat']);
|
|
|
69 |
$nns_syns[] = $this->nomCourant->getNnr();
|
|
|
70 |
$id = 'nn:'.implode(',', $nns_syns);
|
|
|
71 |
|
|
|
72 |
$this->cartes->setId($id);
|
|
|
73 |
$repartition['svgUrl'] = $this->cartes->getUrlDataSvg();
|
|
|
74 |
$repartition['pngUrl'] = $this->cartes->getUrlPng();
|
|
|
75 |
$repartition['legende'] = $this->cartes->getLegendeId();
|
|
|
76 |
$this->meta->setProjet($projetRepartition);
|
|
|
77 |
$meta = $this->meta->getMetaDonnees();
|
1130 |
aurelien |
78 |
$repartition['meta'] = $meta[0];
|
1026 |
alex |
79 |
$repartition['meta']['url'] = $this->appUrls->obtenirUrlMetaDonnees($projetRepartition);
|
|
|
80 |
$this->donnees['repartition'] = $repartition;
|
|
|
81 |
}
|
|
|
82 |
}
|
|
|
83 |
|
|
|
84 |
private function getMoissonnage() {
|
|
|
85 |
$projetMoissonnage = Config::get($this->referentiel.'.baseMoissonnage');
|
1028 |
raphael |
86 |
if (! $projetMoissonnage) return;
|
|
|
87 |
$this->cartes->setProjet('moissonnage');
|
|
|
88 |
$this->cartes->setLargeur('600');
|
|
|
89 |
$this->cartes->setInfoNom($this->nomCourant->getNt());
|
|
|
90 |
$this->cartes->setInfoReferentiel($this->referentiel);
|
|
|
91 |
$eflore['mapUrl'] = $this->cartes->getUrlMapSvg();
|
1112 |
aurelien |
92 |
$eflore['mapTelechargementUrls'] = array('png' => $this->cartes->getUrlTelechargementMapPng(),
|
|
|
93 |
'html' => $this->cartes->getUrlTelechargementMapHtml());
|
1028 |
raphael |
94 |
$eflore['legende'] = $this->cartes->getLegende();
|
|
|
95 |
$this->donnees['moissonnage'] = $eflore;
|
1026 |
alex |
96 |
}
|
|
|
97 |
|
|
|
98 |
private function getMoissonnageExport() {
|
1028 |
raphael |
99 |
$projetMoissonnage = Config::get($this->referentiel.'.baseMoissonnage');
|
|
|
100 |
if (! $projetMoissonnage) return;
|
|
|
101 |
$this->cartes->setProjet($projetMoissonnage);
|
1026 |
alex |
102 |
$this->cartes->setLargeur('min');
|
|
|
103 |
$this->cartes->setInfoNom($this->nomCourant->getNomRetenu());
|
|
|
104 |
$eflore['min'] = $this->cartes->getUrlEflorePng();
|
|
|
105 |
$eflore['legende'] = $this->cartes->getLegende();
|
1028 |
raphael |
106 |
$this->donnees['moissonnage'] = $eflore;
|
1026 |
alex |
107 |
}
|
1217 |
aurelien |
108 |
|
|
|
109 |
private function getFloreProbable() {
|
1219 |
aurelien |
110 |
$projetFloreProbable = Config::get($this->referentiel.'.baseFloreProbable');
|
1217 |
aurelien |
111 |
if (! $projetFloreProbable) return;
|
|
|
112 |
$this->cartes->setProjet($projetFloreProbable);
|
|
|
113 |
$this->meta->setProjet($projetFloreProbable);
|
|
|
114 |
$this->cartes->setId($this->referentiel.'.nt:'.$this->nomCourant->getNt());
|
|
|
115 |
// TODO: url téléchargement de la carte lorsqu'on sera sur que c'est possible
|
|
|
116 |
// dans ['carte']['telechargement'] par exemple
|
|
|
117 |
$this->donnees['flore_probable'] = array('carte' => array(), 'meta' => array());
|
1236 |
aurelien |
118 |
$this->meta->setProjet($projetFloreProbable);
|
|
|
119 |
$meta = $this->meta->getMetaDonnees();
|
|
|
120 |
$this->donnees['flore_probable']['meta'] = $meta[0];
|
1217 |
aurelien |
121 |
$this->donnees['flore_probable']['meta']['url'] = $this->appUrls->obtenirUrlMetaDonnees($projetFloreProbable);
|
|
|
122 |
$this->donnees['flore_probable']['carte']['url'] = $this->cartes->getUrlFloreProbablePng();
|
|
|
123 |
}
|
|
|
124 |
|
1026 |
alex |
125 |
public function getBloc() {
|
|
|
126 |
$donnees['chorodep'] = $this->getChorodepMiniature();
|
|
|
127 |
$donnees['eflore'] = $this->getMoissonnageMiniature();
|
1049 |
raphael |
128 |
|
|
|
129 |
// TODO: moche, comment gérer le fait que l'onglet "synthèse", en "bdtxa", doive
|
|
|
130 |
// afficher la carte chorologie, et non la carte chorodep.
|
|
|
131 |
// workaround: écrasement de l'URL dans ['répartition']['chorodep']:
|
|
|
132 |
if($this->referentiel == 'bdtxa') {
|
|
|
133 |
$syns = $this->conteneur->getApiNoms()->getSynonymes($this->nomCourant->getNnr());
|
|
|
134 |
$nns_syns = array_keys($syns['resultat']);
|
|
|
135 |
$nns_syns[] = $this->nomCourant->getNnr();
|
|
|
136 |
$donnees['chorodep'] = Cartes::getCarteUrlPng(Config::get($this->referentiel.'.baseRepartition'),
|
|
|
137 |
'nn:'.implode(',', $nns_syns),
|
|
|
138 |
'190x178');
|
|
|
139 |
}
|
|
|
140 |
|
1026 |
alex |
141 |
return $donnees;
|
|
|
142 |
}
|
|
|
143 |
|
|
|
144 |
private function getChorodepMiniature() {
|
1165 |
aurelien |
145 |
$projetRepartition = Config::get($this->referentiel.'.baseRepartition');
|
|
|
146 |
$url = null;
|
|
|
147 |
if ($projetRepartition != "") {
|
|
|
148 |
$this->cartes->setProjet($projetRepartition);
|
|
|
149 |
$this->cartes->setProjet('chorodep');
|
|
|
150 |
$this->cartes->setLargeur('190x178');
|
|
|
151 |
//TODO: démochir ce code
|
|
|
152 |
// Chargement des nn des synonymes pour obtenir une carte plus complète
|
|
|
153 |
$noms = $this->conteneur->getApiNoms();
|
|
|
154 |
$syns = $noms->getSynonymes($this->nomCourant->getNnr());
|
|
|
155 |
$nns_syns = array_keys($syns['resultat']);
|
|
|
156 |
$nns_syns[] = $this->nomCourant->getNnr();
|
|
|
157 |
$id = 'nn:'.implode(',', $nns_syns);
|
|
|
158 |
$this->cartes->setId($id);
|
|
|
159 |
$url = $this->cartes->getUrlPng();
|
|
|
160 |
}
|
|
|
161 |
return $url;
|
1026 |
alex |
162 |
}
|
|
|
163 |
|
|
|
164 |
private function getMoissonnageMiniature() {
|
1165 |
aurelien |
165 |
$projetMoissonnage = Config::get($this->referentiel.'.baseMoissonnage');
|
|
|
166 |
$url = null;
|
1180 |
aurelien |
167 |
if ($projetMoissonnage != "") {
|
1165 |
aurelien |
168 |
$this->cartes->setProjet('moissonnage');
|
|
|
169 |
$this->cartes->setLargeur('190');
|
|
|
170 |
$this->cartes->setInfoReferentiel($this->referentiel);
|
|
|
171 |
$this->cartes->setInfoNom($this->nomCourant->getNt());
|
|
|
172 |
$url = $this->cartes->getUrlMapPng();
|
|
|
173 |
}
|
|
|
174 |
return $url;
|
1026 |
alex |
175 |
}
|
|
|
176 |
}
|
|
|
177 |
?>
|