31 |
aurelien |
1 |
<?php
|
|
|
2 |
// declare(encoding='UTF-8');
|
|
|
3 |
/**
|
|
|
4 |
* Modèle d'accès à la base de données de saisies pour le module stations.
|
|
|
5 |
*
|
|
|
6 |
* @package ODS_saisie
|
|
|
7 |
* @category php 5.2
|
|
|
8 |
* @author Aurélien Peronnet <aurelien@tela-botanica.org>
|
|
|
9 |
* @copyright 2010 Tela-Botanica
|
|
|
10 |
* @license http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
|
|
|
11 |
* @license http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
|
|
|
12 |
* @version SVN: $Id: StationDao.php 154 2010-09-13 12:15:11Z aurelien $
|
|
|
13 |
*
|
|
|
14 |
*/
|
|
|
15 |
class StationDao extends Dao {
|
|
|
16 |
|
|
|
17 |
const SERVICE_STATION = 'OdsStation';
|
|
|
18 |
|
|
|
19 |
/**
|
|
|
20 |
* Retourne l'ensemble des stations d'un participant.
|
|
|
21 |
*
|
|
|
22 |
* @return array un tableau contenant les informations sur les stations du participant.
|
|
|
23 |
*/
|
|
|
24 |
public function getListeStations() {
|
|
|
25 |
|
|
|
26 |
$url = $this->url_jrest.self::SERVICE_STATION.'/'.AppControleur::getIdUtilisateur().'/*/';
|
|
|
27 |
$json = $this->envoyerRequeteConsultation($url);
|
|
|
28 |
$donnees = json_decode($json, true);
|
|
|
29 |
|
|
|
30 |
return $donnees;
|
|
|
31 |
}
|
|
|
32 |
|
|
|
33 |
public function getInformationsStation($id_station) {
|
|
|
34 |
|
|
|
35 |
$url = $this->url_jrest.self::SERVICE_STATION.'/'.AppControleur::getIdUtilisateur().'/'.$id_station.'/';
|
|
|
36 |
$json = $this->envoyerRequeteConsultation($url);
|
|
|
37 |
$donnees = json_decode($json, true);
|
|
|
38 |
|
|
|
39 |
return $donnees;
|
|
|
40 |
}
|
|
|
41 |
|
|
|
42 |
public function ajouterStation($valeurs_station_verifiees) {
|
|
|
43 |
|
|
|
44 |
$donnees = $valeurs_station_verifiees;
|
|
|
45 |
$donnees['id_participant'] = AppControleur::getIdUtilisateur();
|
|
|
46 |
|
|
|
47 |
$url = $this->url_jrest.self::SERVICE_STATION."/";
|
|
|
48 |
$json = $this->envoyerRequeteAjout($url, $donnees);
|
|
|
49 |
|
45 |
aurelien |
50 |
$donnees_retour = json_decode($json, true);
|
31 |
aurelien |
51 |
|
45 |
aurelien |
52 |
return $donnees_retour;
|
31 |
aurelien |
53 |
}
|
|
|
54 |
|
|
|
55 |
public function modifierStation($id_station, $valeurs_station_verifiees) {
|
|
|
56 |
|
|
|
57 |
$donnees = $valeurs_station_verifiees;
|
|
|
58 |
$donnees['id_participant'] = AppControleur::getIdUtilisateur();
|
|
|
59 |
|
|
|
60 |
if (is_numeric($id_station)) {
|
|
|
61 |
$url = $this->url_jrest.self::SERVICE_STATION."/$id_station";
|
|
|
62 |
$json = $this->envoyerRequeteModif($url, $donnees);
|
98 |
aurelien |
63 |
|
|
|
64 |
$donnees_retour = json_decode($json, true);
|
|
|
65 |
|
|
|
66 |
if($donnees_retour['reponse'] == 'OK') {
|
|
|
67 |
return true;
|
|
|
68 |
}
|
|
|
69 |
|
31 |
aurelien |
70 |
}
|
|
|
71 |
|
98 |
aurelien |
72 |
return false;
|
31 |
aurelien |
73 |
}
|
|
|
74 |
}
|
91 |
aurelien |
75 |
?>
|