Subversion Repositories eFlore/Applications.del

Rev

Rev 754 | Rev 782 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
702 gduche 1
<?php
2
/**
3
* Description :
4
* Classe principale de chargement des services d'eFlore.
5
*
6
* Encodage en entrée : utf8
7
* Encodage en sortie : utf8
8
* @package eflore-projets
9
* @author Jennifer DHÉ <jennifer.dhe@tela-botanica.org>
10
* @author Delphine CAUQUIL <delphine@tela-botanica.org>
11
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
12
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
13
* @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
14
* @version 0.1
15
* @copyright 1999-2011 Tela Botanica (accueil@tela-botanica.org)
16
*/
746 gduche 17
class Images extends RestService {
702 gduche 18
 
746 gduche 19
 
20
	/*
21
	 * url possibles :
22
	 * http://localhost/del/services/0.1/images/ => toutes les images, appel à la classe ListeImages
23
	 * http://localhost/del/services/0.1/images/#id => une image donnée => non utilisé sur DEL pour l'instant
24
	 * http://localhost/del/services/0.1/images/#id/votes/ => tous les votes d'une image classés par protocole
25
	 * http://localhost/del/services/0.1/images/#id/votes/protocole/#id => tous les votes d'une image et d'un protocole donné
26
	 * http://localhost/del/services/0.1/images/#id/votes/#id => un vote donné pour une image donnée.
27
	 * */
28
 
702 gduche 29
	private $parametres = array();
30
	private $ressources = array();
31
	private $projetNom = array();
32
	private $serviceNom = array();
718 gduche 33
	private $cheminCourant = null;
34
 
35
	private $conteneur;
36
 
37
	/** Indique si oui (true) ou non (false), on veut utiliser les paramètres bruts. */
702 gduche 38
	protected $utilisationParametresBruts = true;
39
 
40
	public function __construct() {
718 gduche 41
		$this->cheminCourant = dirname(__FILE__).DS;
702 gduche 42
	}
43
 
44
	public function consulter($ressources, $parametres) {
718 gduche 45
 
702 gduche 46
		$resultat = '';
47
		$reponseHttp = new ReponseHttp();
48
		try {
49
			$this->initialiserRessourcesEtParametres($ressources, $parametres);
718 gduche 50
			$this->conteneur = new Conteneur($this->parametres);
702 gduche 51
			$resultat = $this->traiterRessources();
52
			$reponseHttp->setResultatService($resultat);
53
		} catch (Exception $e) {
54
			$reponseHttp->ajouterErreur($e);
55
		}
56
		$reponseHttp->emettreLesEntetes();
57
		$corps = $reponseHttp->getCorps();
58
		return $corps;
59
	}
60
 
61
	private function initialiserRessourcesEtParametres($ressources, $parametres) {
62
		$this->ressources = $ressources;
63
		$this->parametres = $parametres;
64
	}
65
 
66
	private function traiterRessources() {
67
		$retour = '';
751 delphine 68
		$this->initialiserProjet();
69
		if ($this->avoirRessourceService()) {
70
			$retour = $this->initialiserService();
702 gduche 71
		}
72
		return $retour;
73
	}
751 delphine 74
 
758 delphine 75
 
751 delphine 76
	/*------------------------------------------------------------------------------------------------------------------
77
										CONFIGURATION DU PROJET
78
	------------------------------------------------------------------------------------------------------------------*/
702 gduche 79
	private function initialiserProjet() {
80
		$this->chargerNomDuProjet();
81
		$this->chargerConfigProjet();
82
 
83
	}
84
 
85
	private function chargerNomDuProjet() {
746 gduche 86
		$this->projetNom = 'images';
702 gduche 87
	}
88
 
89
	private function chargerConfigProjet() {
90
		$projet = $this->projetNom;
91
		$chemin = Config::get('chemin_configurations')."config_$projet.ini";
92
		Config::charger($chemin);
93
	}
94
 
751 delphine 95
	/*------------------------------------------------------------------------------------------------------------------
96
								CONFIGURATION DU SERVICE
97
	------------------------------------------------------------------------------------------------------------------*/
702 gduche 98
	private function avoirRessourceService() {
751 delphine 99
		/*
100
		* url possibles :
101
		* http://localhost/del/services/0.1/images/ => toutes les images, appel à la classe ListeImages
102
		* http://localhost/del/services/0.1/images/#id => une image donnée => non utilisé sur DEL pour l'instant
103
		* http://localhost/del/services/0.1/images/#id/votes/ => tous les votes d'une image classés par protocole
104
		* http://localhost/del/services/0.1/images/#id/votes/protocole/#id => tous les votes d'une image et d'un protocole donné
105
		* http://localhost/del/services/0.1/images/#id/votes/#id => un vote donné pour une image donnée.
106
		* */
702 gduche 107
		$presenceRessourceService = false;
754 delphine 108
		if (isset($this->ressources[0])) {
758 delphine 109
			if ($this->etreRessourceIdentifiant(0)) {
754 delphine 110
				if (isset($this->ressources[1])) {
758 delphine 111
					$presenceRessourceService = $this->avoirRessourceSousService();
751 delphine 112
				} else {
758 delphine 113
					$this->editerMessageErreurRessource();
751 delphine 114
				}
758 delphine 115
			}
702 gduche 116
		} else {
751 delphine 117
			$presenceRessourceService = true;
118
			$this->serviceNom = 'liste-images';
702 gduche 119
		}
120
		return $presenceRessourceService;
121
	}
754 delphine 122
 
123
	private function avoirRessourceSousService() {
124
		$presenceRessourceService = false;
758 delphine 125
		if (sizeof($this->ressources) == 2) {
126
			if ($this->ressources[1] == 'votes') {
127
				$presenceRessourceService = true;
128
				$this->serviceNom = 'votes-image';
129
			} else {
130
				$this->editerMessageErreurRessource();
131
			}
754 delphine 132
		} else {
758 delphine 133
			if (isset($this->ressources[2]) && $this->etreRessourceIdentifiant(2)) {
134
				$presenceRessourceService = true;
135
				$this->serviceNom = 'vote-image';
136
			} else {
137
				$this->editerMessageErreurRessource();
138
			}
139
		}
140
		return $presenceRessourceService;
141
	}
142
 
143
	private function editerMessageErreurRessource() {
144
		$message = "Le service demandé '".$this->projetNom.'/'.implode('/', $this->ressources).
145
					"' n'est pas disponible pour le projet ".$this->projetNom." !\n".
146
					"Les services disponibles sont : images, images/#id/votes, images/#id/vote/#id_vote";
147
		$code = RestServeur::HTTP_CODE_RESSOURCE_INTROUVABLE;
148
		throw new Exception($message, $code);
149
	}
150
 
151
	private function etreRessourceIdentifiant($num) {
152
		$presenceId = false;
153
		if (is_numeric($this->ressources[$num])) {
154
			$presenceId = true;
155
		} else {
156
			$message = "Le service demandé '$service' nécessite d'avoir un identifiant d'image valide";
754 delphine 157
			$code = RestServeur::HTTP_CODE_RESSOURCE_INTROUVABLE;
158
			throw new Exception($message, $code);
159
		}
758 delphine 160
		return $presenceId;
754 delphine 161
	}
702 gduche 162
 
163
	private function initialiserService() {
751 delphine 164
		//$this->chargerNomDuService();
746 gduche 165
 
702 gduche 166
		$classe = $this->obtenirNomClasseService($this->serviceNom);
167
		$chemins = array();
718 gduche 168
		$chemins[] = $this->cheminCourant.$this->projetNom.DS.$classe.'.php';
169
		$chemins[] = $this->cheminCourant.'commun'.DS.$classe.'.php';
702 gduche 170
		$retour = '';
171
		$service = null;
172
		foreach ($chemins as $chemin) {
173
			if (file_exists($chemin)) {
718 gduche 174
				$this->conteneur->chargerConfiguration('config_'.$this->projetNom.'.ini');
751 delphine 175
				require_once $chemin;
724 gduche 176
				$service = new $classe($this->conteneur);
751 delphine 177
				$retour = $service->consulter($this->ressources, $this->parametres);
702 gduche 178
			}
179
		}
746 gduche 180
 
702 gduche 181
		if (is_null($service)) {
751 delphine 182
			$message = "Le service demandé '{$this->serviceNom}' n'existe pas dans le projet {$this->projetNom} !";
702 gduche 183
			$code = RestServeur::HTTP_CODE_RESSOURCE_INTROUVABLE;
184
			throw new Exception($message, $code);
185
		}
186
		return $retour;
187
	}
188
 
189
	private function obtenirNomClasseService($mot) {
190
		$classeNom = str_replace(' ', '', ucwords(strtolower(str_replace('-', ' ', $mot))));
191
		return $classeNom;
192
	}
193
 
751 delphine 194
 
702 gduche 195
}
196
?>