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 {
|
565 |
jpm |
14 |
|
|
|
15 |
const SERVICE_DEFAUT = 'defaut';
|
|
|
16 |
|
429 |
jpm |
17 |
/**
|
|
|
18 |
* Méthode appelée avec une requête de type GET.
|
|
|
19 |
*/
|
|
|
20 |
public function executer() {
|
|
|
21 |
$retour = null;
|
565 |
jpm |
22 |
|
|
|
23 |
extract($this->parametres);
|
|
|
24 |
if (!isset($mode)) {
|
|
|
25 |
$mode = self::SERVICE_DEFAUT;
|
|
|
26 |
}
|
429 |
jpm |
27 |
|
565 |
jpm |
28 |
$methode = $this->traiterNomMethodeExecuter($mode);
|
429 |
jpm |
29 |
if (method_exists($this, $methode)) {
|
|
|
30 |
$retour = $this->$methode();
|
|
|
31 |
} else {
|
|
|
32 |
$this->messages[] = "Ce type de carte '$methode' n'est pas disponible.";
|
|
|
33 |
}
|
|
|
34 |
|
|
|
35 |
if (is_null($retour)) {
|
|
|
36 |
$info = 'Un problème est survenu : '.print_r($this->messages, true);
|
|
|
37 |
$this->envoyer($info);
|
|
|
38 |
} else {
|
|
|
39 |
$squelette = dirname(__FILE__).DIRECTORY_SEPARATOR.'squelettes'.DIRECTORY_SEPARATOR.$retour['squelette'].'.tpl.html';
|
|
|
40 |
$html = $this->traiterSquelettePhp($squelette, $retour['donnees']);
|
|
|
41 |
$this->envoyer($html);
|
|
|
42 |
}
|
|
|
43 |
}
|
|
|
44 |
|
|
|
45 |
/**
|
|
|
46 |
* Stats par défaut
|
|
|
47 |
*/
|
|
|
48 |
public function executerDefaut() {
|
|
|
49 |
$widget = null;
|
695 |
jpm |
50 |
$widget['donnees'] = (array) $this->recupererStatsTxtNombres();
|
429 |
jpm |
51 |
$widget['donnees']['url_service'] = sprintf($this->config['chemins']['baseURLServicesCelTpl'], 'CelStatistique');
|
|
|
52 |
$widget['squelette'] = 'stats';
|
|
|
53 |
return $widget;
|
|
|
54 |
}
|
565 |
jpm |
55 |
|
|
|
56 |
public function executerUtilisateur() {
|
|
|
57 |
$widget = null;
|
|
|
58 |
if ($this->authentifierUtilisateur()) {
|
695 |
jpm |
59 |
$widget['donnees'] = (array) $this->recupererStatsTxtNombres();
|
565 |
jpm |
60 |
$widget['donnees']['url_service'] = sprintf($this->config['chemins']['baseURLServicesCelTpl'], 'CelStatistique');
|
|
|
61 |
$widget['donnees']['utilisateur'] = $this->getAuthIdentifiant();
|
|
|
62 |
$widget['squelette'] = 'stats_utilisateur';
|
|
|
63 |
}
|
|
|
64 |
return $widget;
|
|
|
65 |
}
|
695 |
jpm |
66 |
|
|
|
67 |
private function recupererStatsTxtNombres() {
|
|
|
68 |
// Récupération des données au format Json
|
|
|
69 |
$service = "CelStatistiqueTxt/Nombres";
|
|
|
70 |
|
|
|
71 |
$parametres = array();
|
|
|
72 |
if (isset($this->parametres['mode']) && $this->parametres['mode'] == 'utilisateur' && $this->getAuthIdentifiant() != null) {
|
|
|
73 |
$parametres[] = 'utilisateur='.$this->getAuthIdentifiant();
|
|
|
74 |
}
|
|
|
75 |
if (isset($this->parametres['num_taxon'])) {
|
|
|
76 |
$parametres[] = 'num_taxon='.$this->parametres['num_taxon'];
|
|
|
77 |
}
|
|
|
78 |
$service .= (count($parametres) > 0) ? '?'.implode('&', $parametres) : '';
|
|
|
79 |
|
|
|
80 |
$url = sprintf($this->config['chemins']['baseURLServicesCelTpl'], $service);
|
|
|
81 |
$json = $this->getDao()->envoyerRequeteConsultation($url);
|
|
|
82 |
return json_decode($json);
|
|
|
83 |
}
|
429 |
jpm |
84 |
}
|