429 |
jpm |
1 |
<?php
|
|
|
2 |
/**
|
|
|
3 |
* Widget fournissant des stats graphiques du CEL.
|
|
|
4 |
* Encodage en entrée : utf8
|
|
|
5 |
* Encodage en sortie : utf8
|
|
|
6 |
*
|
|
|
7 |
* @author Jean-Pascal MILCENT <jpm@clapas.org>
|
|
|
8 |
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
|
|
|
9 |
* @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
|
|
|
10 |
* @version $Id$
|
|
|
11 |
* @copyright © 2010, Jean-Pascal MILCENT
|
|
|
12 |
*/
|
|
|
13 |
class Stats extends WidgetCommun {
|
700 |
jpm |
14 |
const PAGE_DEFAUT = 'defaut';
|
|
|
15 |
const MODE_DEFAUT = 'defaut';
|
|
|
16 |
const MODE_UTILISATEUR = 'utilisateur';
|
|
|
17 |
private $page;
|
|
|
18 |
private $mode;
|
565 |
jpm |
19 |
|
429 |
jpm |
20 |
/**
|
|
|
21 |
* Méthode appelée avec une requête de type GET.
|
|
|
22 |
*/
|
|
|
23 |
public function executer() {
|
|
|
24 |
$retour = null;
|
565 |
jpm |
25 |
|
|
|
26 |
extract($this->parametres);
|
700 |
jpm |
27 |
$this->mode = (isset($mode)) ? $mode : self::MODE_DEFAUT;
|
|
|
28 |
$this->page = (isset($page)) ? $page : self::PAGE_DEFAUT;
|
|
|
29 |
|
|
|
30 |
$methode = $this->traiterNomMethodeExecuter($this->page);
|
429 |
jpm |
31 |
if (method_exists($this, $methode)) {
|
|
|
32 |
$retour = $this->$methode();
|
|
|
33 |
} else {
|
|
|
34 |
$this->messages[] = "Ce type de carte '$methode' n'est pas disponible.";
|
|
|
35 |
}
|
|
|
36 |
|
|
|
37 |
if (is_null($retour)) {
|
|
|
38 |
$info = 'Un problème est survenu : '.print_r($this->messages, true);
|
|
|
39 |
$this->envoyer($info);
|
|
|
40 |
} else {
|
|
|
41 |
$squelette = dirname(__FILE__).DIRECTORY_SEPARATOR.'squelettes'.DIRECTORY_SEPARATOR.$retour['squelette'].'.tpl.html';
|
|
|
42 |
$html = $this->traiterSquelettePhp($squelette, $retour['donnees']);
|
|
|
43 |
$this->envoyer($html);
|
|
|
44 |
}
|
|
|
45 |
}
|
|
|
46 |
|
|
|
47 |
/**
|
|
|
48 |
* Stats par défaut
|
|
|
49 |
*/
|
|
|
50 |
public function executerDefaut() {
|
|
|
51 |
$widget = null;
|
704 |
jpm |
52 |
|
|
|
53 |
switch ($this->mode) {
|
|
|
54 |
case self::MODE_DEFAUT :
|
|
|
55 |
$widget['donnees'] = (array) $this->recupererStatsTxtNombres();
|
|
|
56 |
$widget['squelette'] = 'stats';
|
|
|
57 |
break;
|
|
|
58 |
case self::MODE_UTILISATEUR :
|
|
|
59 |
if ($this->authentifierUtilisateur()) {
|
|
|
60 |
$widget['donnees'] = (array) $this->recupererStatsTxtNombres();
|
|
|
61 |
$widget['donnees']['utilisateur'] = $this->getAuthIdentifiant();
|
|
|
62 |
$widget['donnees']['utilisateur_nom_prenom'] = $this->recupererPrenomNomIdentifie();
|
|
|
63 |
$widget['squelette'] = 'stats_utilisateur';
|
|
|
64 |
}
|
|
|
65 |
break;
|
|
|
66 |
default :
|
|
|
67 |
$this->messages[] = "Le mode '{$this->mode}' est inconnu.";
|
700 |
jpm |
68 |
}
|
703 |
jpm |
69 |
|
|
|
70 |
if (!is_null($widget)) {
|
|
|
71 |
$widget['donnees']['url_service'] = sprintf($this->config['chemins']['baseURLServicesCelTpl'], 'CelStatistique');
|
|
|
72 |
$widget['donnees']['filtres'] = $this->parametres;
|
|
|
73 |
}
|
429 |
jpm |
74 |
return $widget;
|
|
|
75 |
}
|
565 |
jpm |
76 |
|
700 |
jpm |
77 |
private function recupererPrenomNomIdentifie() {
|
|
|
78 |
$nom = '';
|
|
|
79 |
if ($this->getAuthIdentifiant() != null) {
|
1360 |
aurelien |
80 |
$infos_utilisateur = $this->recupererUtilisateursNomPrenom(array($this->getAuthIdentifiant()));
|
700 |
jpm |
81 |
if (array_key_exists($this->getAuthIdentifiant(), $infos_utilisateur)) {
|
1360 |
aurelien |
82 |
$utilisateur = (array) $infos_utilisateur[$this->getAuthIdentifiant()];
|
|
|
83 |
$nom = $utilisateur['prenom'].' '.$utilisateur['nom'];
|
700 |
jpm |
84 |
} else {
|
|
|
85 |
$nom = $this->getAuthIdentifiant();
|
|
|
86 |
}
|
|
|
87 |
}
|
|
|
88 |
return $nom;
|
|
|
89 |
}
|
|
|
90 |
|
|
|
91 |
public function executerNombres() {
|
565 |
jpm |
92 |
$widget = null;
|
700 |
jpm |
93 |
|
704 |
jpm |
94 |
switch ($this->mode) {
|
|
|
95 |
case self::MODE_DEFAUT :
|
|
|
96 |
$widget['donnees'] = (array) $this->recupererStatsTxtNombres();
|
|
|
97 |
break;
|
|
|
98 |
case self::MODE_UTILISATEUR :
|
|
|
99 |
if ($this->authentifierUtilisateur()) {
|
|
|
100 |
$widget['donnees'] = (array) $this->recupererStatsTxtNombres();
|
|
|
101 |
$widget['donnees']['utilisateur_nom_prenom'] = $this->recupererPrenomNomIdentifie();
|
|
|
102 |
}
|
|
|
103 |
break;
|
|
|
104 |
default:
|
|
|
105 |
$this->messages[] = "Le mode '{$this->mode}' est inconnu.";
|
565 |
jpm |
106 |
}
|
700 |
jpm |
107 |
|
|
|
108 |
if (!is_null($widget)) {
|
|
|
109 |
$widget['squelette'] = 'stats_nbres';
|
703 |
jpm |
110 |
$widget['donnees']['filtres'] = $this->parametres;
|
700 |
jpm |
111 |
}
|
|
|
112 |
|
565 |
jpm |
113 |
return $widget;
|
|
|
114 |
}
|
695 |
jpm |
115 |
|
|
|
116 |
private function recupererStatsTxtNombres() {
|
|
|
117 |
// Récupération des données au format Json
|
|
|
118 |
$service = "CelStatistiqueTxt/Nombres";
|
|
|
119 |
|
|
|
120 |
$parametres = array();
|
700 |
jpm |
121 |
if (isset($this->parametres['mode']) && $this->parametres['mode'] == self::MODE_UTILISATEUR && $this->getAuthIdentifiant() != null) {
|
695 |
jpm |
122 |
$parametres[] = 'utilisateur='.$this->getAuthIdentifiant();
|
|
|
123 |
}
|
|
|
124 |
if (isset($this->parametres['num_taxon'])) {
|
|
|
125 |
$parametres[] = 'num_taxon='.$this->parametres['num_taxon'];
|
|
|
126 |
}
|
700 |
jpm |
127 |
if (isset($this->parametres['taxon'])) {
|
|
|
128 |
$parametres[] = 'taxon='.$this->parametres['taxon'];
|
|
|
129 |
}
|
695 |
jpm |
130 |
$service .= (count($parametres) > 0) ? '?'.implode('&', $parametres) : '';
|
|
|
131 |
|
|
|
132 |
$url = sprintf($this->config['chemins']['baseURLServicesCelTpl'], $service);
|
700 |
jpm |
133 |
$json = $this->getDao()->consulter($url);
|
|
|
134 |
return (array) json_decode($json);
|
695 |
jpm |
135 |
}
|
700 |
jpm |
136 |
|
|
|
137 |
public function executerListeTaxonsNbrePhotos() {
|
|
|
138 |
$widget = null;
|
|
|
139 |
$widget['donnees']['taxons'] = $this->recupererStatsTxtListeTaxonsNbrePhotos();
|
|
|
140 |
$widget['donnees']['utilisateur'] = $this->getAuthIdentifiant();
|
703 |
jpm |
141 |
$widget['donnees']['filtres'] = $this->parametres;
|
700 |
jpm |
142 |
$widget['squelette'] = 'liste_taxons_nbre_photos';
|
|
|
143 |
return $widget;
|
|
|
144 |
}
|
|
|
145 |
|
|
|
146 |
private function recupererStatsTxtListeTaxonsNbrePhotos() {
|
|
|
147 |
// Récupération des données au format Json
|
|
|
148 |
$service = "CelStatistiqueTxt/ListeTaxonsNbrePhotos";
|
|
|
149 |
|
|
|
150 |
$parametres = array();
|
|
|
151 |
if (isset($this->parametres['mode']) && $this->parametres['mode'] == self::MODE_UTILISATEUR && $this->getAuthIdentifiant() != null) {
|
|
|
152 |
$parametres[] = 'utilisateur='.$this->getAuthIdentifiant();
|
|
|
153 |
}
|
|
|
154 |
if (isset($this->parametres['num_taxon'])) {
|
|
|
155 |
$parametres[] = 'num_taxon='.$this->parametres['num_taxon'];
|
|
|
156 |
}
|
|
|
157 |
if (isset($this->parametres['taxon'])) {
|
|
|
158 |
$parametres[] = 'taxon='.$this->parametres['taxon'];
|
|
|
159 |
}
|
|
|
160 |
if (isset($this->parametres['start'])) {
|
|
|
161 |
$parametres[] = 'start='.$this->parametres['start'];
|
|
|
162 |
}
|
|
|
163 |
if (isset($this->parametres['limit'])) {
|
|
|
164 |
$parametres[] = 'limit='.$this->parametres['limit'];
|
|
|
165 |
}
|
|
|
166 |
$service .= (count($parametres) > 0) ? '?'.implode('&', $parametres) : '';
|
|
|
167 |
|
|
|
168 |
$url = sprintf($this->config['chemins']['baseURLServicesCelTpl'], $service);
|
|
|
169 |
$json = $this->getDao()->consulter($url);
|
|
|
170 |
return (array) json_decode($json);
|
|
|
171 |
}
|
|
|
172 |
|
|
|
173 |
public function executerListeUtilisateursNbrePhotos() {
|
|
|
174 |
$widget = null;
|
|
|
175 |
$utilisateurs = $this->recupererStatsTxtListeUtilisateursNbrePhotos();
|
707 |
jpm |
176 |
if (isset($utilisateurs)) {
|
1360 |
aurelien |
177 |
$noms = $this->recupererUtilisateursNomPrenom(array_keys($utilisateurs));
|
707 |
jpm |
178 |
foreach ($utilisateurs as $courriel => $infos) {
|
|
|
179 |
if (array_key_exists($courriel, $noms)) {
|
|
|
180 |
$nom_infos = (array) $noms[$courriel];
|
1360 |
aurelien |
181 |
$nom_fmt = $nom_infos['prenom'].' '.$nom_infos['nom'];
|
707 |
jpm |
182 |
$widget['donnees']['utilisateurs'][$nom_fmt] = $infos;
|
|
|
183 |
}
|
700 |
jpm |
184 |
}
|
|
|
185 |
}
|
703 |
jpm |
186 |
$widget['donnees']['filtres'] = $this->parametres;
|
700 |
jpm |
187 |
$widget['squelette'] = 'liste_utilisateurs_nbre_photos';
|
|
|
188 |
return $widget;
|
|
|
189 |
}
|
|
|
190 |
|
|
|
191 |
private function recupererStatsTxtListeUtilisateursNbrePhotos() {
|
|
|
192 |
// Récupération des données au format Json
|
|
|
193 |
$service = "CelStatistiqueTxt/ListeUtilisateursNbrePhotos";
|
|
|
194 |
|
|
|
195 |
if (isset($this->parametres['mode']) && $this->parametres['mode'] == self::MODE_UTILISATEUR && $this->getAuthIdentifiant() != null) {
|
707 |
jpm |
196 |
$this->getDao()->ajouterParametre('utilisateur', $this->getAuthIdentifiant());
|
700 |
jpm |
197 |
}
|
|
|
198 |
if (isset($this->parametres['num_taxon'])) {
|
707 |
jpm |
199 |
$this->getDao()->ajouterParametre('num_taxon', $this->parametres['num_taxon']);
|
700 |
jpm |
200 |
}
|
|
|
201 |
if (isset($this->parametres['taxon'])) {
|
707 |
jpm |
202 |
$this->getDao()->ajouterParametre('taxon', $this->parametres['taxon']);
|
700 |
jpm |
203 |
}
|
|
|
204 |
if (isset($this->parametres['start'])) {
|
707 |
jpm |
205 |
$this->getDao()->ajouterParametre('start', $this->parametres['start']);
|
700 |
jpm |
206 |
}
|
|
|
207 |
if (isset($this->parametres['limit'])) {
|
707 |
jpm |
208 |
$this->getDao()->ajouterParametre('limit', $this->parametres['limit']);
|
700 |
jpm |
209 |
}
|
707 |
jpm |
210 |
if (isset($this->parametres['tag'])) {
|
|
|
211 |
$this->getDao()->ajouterParametre('tag', $this->parametres['tag']);
|
|
|
212 |
}
|
700 |
jpm |
213 |
|
|
|
214 |
$url = sprintf($this->config['chemins']['baseURLServicesCelTpl'], $service);
|
707 |
jpm |
215 |
|
700 |
jpm |
216 |
$json = $this->getDao()->consulter($url);
|
|
|
217 |
return (array) json_decode($json);
|
|
|
218 |
}
|
1360 |
aurelien |
219 |
}
|
|
|
220 |
?>
|