Subversion Repositories eFlore/Applications.cel

Rev

Rev 2209 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2209 Rev 2461
Line 1... Line 1...
1
<?php
1
<?php
-
 
2
// declare(encoding='UTF-8');
-
 
3
/**
-
 
4
 * Service fournissant permettant de visualiser ou télécharger des images du CEL.
-
 
5
 *
-
 
6
 * @internal   Mininum PHP version : 5.2
-
 
7
 * @category   CEL
-
 
8
 * @package    Services
-
 
9
 * @subpackage Images
-
 
10
 * @version    0.1
-
 
11
 * @author     Mathias CHOUET <mathias@tela-botanica.org>
-
 
12
 * @author     Jean-Pascal MILCENT <jpm@tela-botanica.org>
-
 
13
 * @author     Aurelien PERONNET <aurelien@tela-botanica.org>
-
 
14
 * @license    GPL v3 <http://www.gnu.org/licenses/gpl.txt>
-
 
15
 * @license    CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
-
 
16
 * @copyright  1999-2014 Tela Botanica <accueil@tela-botanica.org>
-
 
17
 */
2
class CelImageFormat {
18
class CelImageFormat {
3
	
19
 
4
	private $config;
20
	private $config;
5
	private $formats = array('CRX2S','CRXS','CXS','CS','CRS','XS','S','M','L','XL','X2L','X3L','O');
21
	private $formats = array('CRX2S', 'CRXS', 'CXS', 'CS', 'CRS', 'XS', 'S', 'M', 'L', 'XL', 'X2L', 'X3L', 'O');
6
	const METHODE_TELECHARGEMENT = "telecharger";
22
	const METHODE_TELECHARGEMENT = 'telecharger';
7
	const METHODE_AFFICHAGE = "afficher";
23
	const METHODE_AFFICHAGE = 'afficher';
8
	
24
 
9
	// Pas besoin d'étendre Cel ici, surtout que le constructeur 
25
	// Pas besoin d'étendre Cel ici, surtout que le constructeur
10
	// de la classe Cel instancie toujours une connexion à la bdd
26
	// de la classe Cel instancie toujours une connexion à la bdd
11
	// dont on a pas besoin ici. Ceci évite de planter le service
27
	// dont on a pas besoin ici. Ceci évite de planter le service
12
	// quand la bdd est surchargée.
28
	// quand la bdd est surchargée.
13
	public function __construct($config) {
29
	public function __construct($config) {
14
		$this->config = $config;
30
		$this->config = $config;
15
	}
31
	}
16
	
32
 
17
	public function getRessource() {
33
	public function getRessource() {
18
		header('Content-Type: application/json');
34
		header('Content-Type: application/json');
19
		echo json_encode($this->obtenirDescriptionService()); 	
35
		echo json_encode($this->obtenirDescriptionService());
20
	}
36
	}
21
	
37
 
22
	/**
38
	/**
23
	* Méthode appelée avec une requête de type GET.
39
	* Méthode appelée avec une requête de type GET.
24
	*/
40
	*/
25
	public function getElement($params) {
41
	public function getElement($params) {
26
		
-
 
27
		// suppression des 0 non significatifs à gauche
42
		// suppression des 0 non significatifs à gauche
28
		$id = ltrim($params[0],'0');
43
		$id = ltrim($params[0], '0');
29
		$format = isset($_GET['format']) ? $_GET['format'] : 'M';	
44
		$format = isset($_GET['format']) ? $_GET['format'] : 'M';
30
		$methode_livraison = isset($_GET['methode']) ? $_GET['methode'] : self::METHODE_AFFICHAGE;
45
		$methode_livraison = isset($_GET['methode']) ? $_GET['methode'] : self::METHODE_AFFICHAGE;
31
		
46
 
32
		if($this->verifierParametres($id, $format, $methode_livraison)) {
47
		if($this->verifierParametres($id, $format, $methode_livraison)) {
33
			$gestion_formats_images = new ImageRecreation($this->config);
48
			$gestion_formats_images = new ImageRecreation($this->config);
34
			$image_binaire = $gestion_formats_images->creerOuRenvoyerImage($params[0], $format);
49
			$image_binaire = $gestion_formats_images->creerOuRenvoyerImage($params[0], $format);
35
			
50
 
36
			if($image_binaire) {
51
			if($image_binaire) {
37
				$this->envoyerImage($id, $image_binaire, $format, $methode_livraison);
52
				$this->envoyerImage($id, $image_binaire, $format, $methode_livraison);
38
			} else {
53
			} else {
39
				header("HTTP/1.0 404 Not Found");
54
				header("HTTP/1.0 404 Not Found");
40
				echo 'Aucune image ne correspond à cet identifiant';
55
				echo 'Aucune image ne correspond à cet identifiant';
41
			}
56
			}
42
		}
57
		}
43
	}
58
	}
44
	
59
 
45
	private function verifierParametres($id, $format, $methode_livraison) {
60
	private function verifierParametres($id, $format, $methode_livraison) {
46
		$ok = true;
61
		$ok = true;
47
		$message = '';
62
		$message = '';
48
		if(!is_numeric($id)) {
63
		if(!is_numeric($id)) {
49
			$message .= "L'identifiant de format doit être un entier. ";
64
			$message .= "L'identifiant de format doit être un entier. ";
50
			$ok = false;
65
			$ok = false;
51
		}
66
		}
52
		
67
 
53
		if(!in_array($format, $this->formats)) {
68
		if(!in_array($format, $this->formats)) {
54
			$message .= "Le format d'image est inconnu, les formats acceptés sont ".implode(',', $this->formats).". ";
69
			$message .= "Le format d'image est inconnu, les formats acceptés sont ".implode(',', $this->formats).". ";
55
			$ok = false;
70
			$ok = false;
56
		}
71
		}
Line 57... Line 72...
57
 
72
 
58
		$types_methode_livraison = array(self::METHODE_AFFICHAGE, self::METHODE_TELECHARGEMENT);
73
		$types_methode_livraison = array(self::METHODE_AFFICHAGE, self::METHODE_TELECHARGEMENT);
59
		if (!in_array($methode_livraison, $types_methode_livraison)) {
74
		if (!in_array($methode_livraison, $types_methode_livraison)) {
60
			$message .= "Le format de methode de livraison ".$methode_livraison." n'est pas acceptée par le service. ".
75
			$message .= "Le format de methode de livraison ".$methode_livraison." n'est pas acceptée par le service. ".
61
					" Seuls les methodes suivantes sont gérés : ".implode(',', $types_methode_livraison);
76
					" Seuls les methodes suivantes sont gérés : ".implode(',', $types_methode_livraison);
62
			$ok = false;
77
			$ok = false;
Line 63... Line 78...
63
		}
78
		}
64
 
79
 
65
		if(!empty($message)) {
80
		if(!empty($message)) {
66
			header("HTTP/1.0 400 Bad Request");
81
			header("HTTP/1.0 400 Bad Request");
67
			echo $message;
-
 
68
		}
82
			echo $message;
69
 
83
		}
70
		return $ok;
84
		return $ok;
71
	}
85
	}
72
	
-
 
73
	private function envoyerImage($id, $image_binaire, $format, $methode) {
86
 
74
		
87
	private function envoyerImage($id, $image_binaire, $format, $methode) {
75
		if($methode == self::METHODE_AFFICHAGE) {
88
		if ($methode == self::METHODE_AFFICHAGE) {
76
			header('Content-Type: image/jpeg');
89
			header('Content-Type: image/jpeg');
77
		} else {
90
		} else {
78
			$this->envoyerHeadersTelechargement($id, $image_binaire, $format);	
91
			$this->envoyerHeadersTelechargement($id, $image_binaire, $format);
79
		}
92
		}
80
		
93
 
81
		echo $image_binaire;
94
		echo $image_binaire;
82
		exit;
95
		exit();
83
	}
96
	}
84
	
-
 
85
	private function envoyerHeadersTelechargement($id, $image_binaire, $format) {
97
 
86
		
98
	private function envoyerHeadersTelechargement($id, $image_binaire, $format) {
87
		if (function_exists('mb_strlen')) {
99
		if (function_exists('mb_strlen')) {
88
			$taille = mb_strlen($image_binaire, '8bit');
100
			$taille = mb_strlen($image_binaire, '8bit');
89
		} else {
101
		} else {
90
			$taille = strlen($image_binaire);
102
			$taille = strlen($image_binaire);
91
		}
103
		}
92
		
104
 
93
		// creation du format original
105
		// creation du format original
94
		$id_avec_zeros = sprintf('%09s', $id) ;
106
		$id_avec_zeros = sprintf('%09s', $id) ;
95
		$id_avec_zeros_underscores = wordwrap($id_avec_zeros, 3 , '_', true) ;	
107
		$id_avec_zeros_underscores = wordwrap($id_avec_zeros, 3 , '_', true) ;
96
		$nom_fichier = $id_avec_zeros_underscores.'_'.$format.'.jpg';
108
		$nom_fichier = $id_avec_zeros_underscores.'_'.$format.'.jpg';
97
	
109
 
98
		header('Content-Description: File Transfer');
110
		header('Content-Description: File Transfer');
99
		header('Content-Type: application/octet-stream');
111
		header('Content-Type: application/octet-stream');
100
		header('Content-Disposition: attachment; filename="'.$nom_fichier.'"');
112
		header('Content-Disposition: attachment; filename="'.$nom_fichier.'"');
101
		header('Content-Transfer-Encoding: binary');
113
		header('Content-Transfer-Encoding: binary');
102
		header('Connection: Keep-Alive');
114
		header('Connection: Keep-Alive');
103
		header('Expires: 0');
115
		header('Expires: 0');
104
		header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
116
		header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
105
		header('Pragma: public');
117
		header('Pragma: public');
106
		header('Content-Length: '.$taille);
118
		header('Content-Length: '.$taille);
107
	}
119
	}
108
	
120
 
109
	private function obtenirDescriptionService() {
121
	private function obtenirDescriptionService() {
110
		$retour = array('description' => 'Ce service peut être appelé afin de visualiser ou bien télécharger les images du cel',
122
		$retour = array('description' => 'Ce service peut être appelé afin de visualiser ou bien télécharger les images du cel',
-
 
123
			'formats' => $this->formats,
111
				'formats' => $this->formats,
124
			'utilisation' => 'http://'.$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI']."/{id} où {id} est l'identifiant numérique de l'image désirée",
112
				'utilisation' => "http://".$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI']."/{id} où {id} est l'identifiant numérique de l'image désirée",
125
			'parametres' => array(
113
				'parametres' => array("methode" => "Valeurs : afficher, telecharger. Permet de préciser si l'image doit être affichée ou téléchargée",
126
				'methode' => "Valeurs : afficher, telecharger. Permet de préciser si l'image doit être affichée ou téléchargée",
114
						"format" => "Valeurs : voir la liste ci dessous. Permet de demander un format précis de l'image parmi ceux disponibles ")
127
				'format' => "Valeurs : voir la liste ci dessous. Permet de demander un format précis de l'image parmi ceux disponibles ")
115
		);
128
		);
116
		
129
 
117
		// ^^ c'est marrant non ?
130
		// ^^ c'est marrant non ?
118
		$format_formates = array();
131
		$format_formates = array();
119
		foreach ($this->formats as $format) {
132
		foreach ($this->formats as $format) {
120
			if($format == "O") {
133
			if ($format == "O") {
121
				$format_formates["O"] = array("hauteur" => "dépend de l'image originale",
134
				$format_formates["O"] = array("hauteur" => "dépend de l'image originale",
122
						"largeur" => "dépend de l'image originale",
135
						"largeur" => "dépend de l'image originale",
123
						"notes"	=> "Image dans son ratio et sa résolution originale (elle peut éventuellement avoir été compressée en qualité)"
136
						"notes"	=> "Image dans son ratio et sa résolution originale (elle peut éventuellement avoir été compressée en qualité)"
124
				);
137
				);
125
			} else {
138
			} else {
126
				$description = array();
139
				$description = array();
127
				if(strpos($format, 'R') !== false) {
140
				if (strpos($format, 'R') !== false) {
128
					$description[] = "Format carré, rogné pour ne garder que le centre de l'image.";
141
					$description[] = "Format carré, rogné pour ne garder que le centre de l'image.";
129
				}
142
				}
130
				if(strpos($format, 'C') !== false) {
143
				if (strpos($format, 'C') !== false) {
131
					$description[] = "Format carré, si le format contient R, il est rogné, sinon des bandes blanches sont ajoutées pour conserver le ratio.";
144
					$description[] = "Format carré, si le format contient R, il est rogné, sinon des bandes blanches sont ajoutées pour conserver le ratio.";
132
				}
145
				}
133
		
146
 
134
				if(empty($description)) {
147
				if (empty($description)) {
135
					$description[] = "Format standard, le ratio original de l'image est conservé";
148
					$description[] = "Format standard, le ratio original de l'image est conservé";
136
				}
149
				}
137
		
150
 
138
				$resolution = $this->config['cel']['format_'.$format];
151
				$resolution = $this->config['cel']['format_'.$format];
139
				$resolution = explode("_", $resolution);
152
				$resolution = explode("_", $resolution);
140
				$format_formates[$format] = array("hauteur" => $resolution[0],
153
				$format_formates[$format] = array("hauteur" => $resolution[0],
141
						"largeur" => $resolution[1],
154
						"largeur" => $resolution[1],
142
						"notes"	=> implode(' ', $description)
155
						"notes"	=> implode(' ', $description)
143
				);
156
				);
144
			}
157
			}
145
		}
158
		}
146
		
159
 
147
		$retour['resolutions'] = $format_formates;
160
		$retour['resolutions'] = $format_formates;
148
		return $retour;
161
		return $retour;
149
	}
162
	}