-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCDN.php
executable file
·304 lines (256 loc) · 8.4 KB
/
CDN.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
<?php
/**
* proyectoComunidad
*
* @package proyectoComunidad
*/
require_once('CDNInterface.php');
require_once('S3/S3.php');
/**
* CDN
*
* Wrapper que utiliza los nombres y firmas de metodos legacy de la API de Cloudfiles
* para no tener que cambiar la implementacion en las clases y facilitar
* la integracion de la API de Amazon S3
*
* @example http://en.wikipedia.org/wiki/Adapter_pattern
* @package CDN
* @uses S3 class
*/
class CDN implements CDNInterface {
/**
* Instancia de S3
*
* @var object $cdn instancia de S3
*/
private $cdn;
/**
* En Amazon S3 es el primer nivel de directorios.
* En Cloudfiles serian los containers. En Amazon S3 tenemos un solo "container", llamado bucket
* El nombre del bucket lo obtenemos de un atributo de la instancia S3 publico a traves de un metodo
*
* @var string $container
*/
public $seudoContainer;
/**
* URL publica del bucket de Amazon S3
*
* @var string $s3BucketUrl
*/
public $s3BucketUrl;
/**
* Total de instancias creadas
*
* @static int $instances cantidad de instancias creadas
* @example http://php.net/manual/es/language.oop5.cloning.php
*/
static $instances = 0;
/**
* Almacenamos el numero de la instancia que se esta ejecutando
*
* @var int $instance numero de la instancia ejecutandose en este momento
* @example http://php.net/manual/es/language.oop5.cloning.php
*/
public $instance;
/**
* __construct
*
* @return void
*/
public function __construct() {
$this->instance = ++self::$instances;
$this->cdn = new S3;
$this->cdn->connect();
$this->cdn->setBucketPublicUrl();
$this->s3BucketUrl = $this->cdn->getBucketPublicUrl();
}
/**
* set_container
*
* Definimos el nombre del directorio que utilizaremos para subir objetos
* Esto vendria a ser lo que un container en Cloudfiles
* Guardamos el nombre del directorio
* Clonamos el objeto y creamos una nueva instancia y mantenemos la apariencia
* de conectarnos a diferentes containers, como se hacia en Cloudfiles
*
* @exampĺe http://php.net/manual/es/language.oop5.cloning.php
* @param string $name nombre del directorio a utilizar y que representa a un "container" en Amazon S3
*/
public function set_container($name) {
$this->seudoContainer = $name;
$this->cdn_uri = $this->s3BucketUrl . $this->seudoContainer;
return clone $this;
}
/**
* create_container
*
* En Amazon S3 no se pueden crear buckets adicionales por lo que para suplir esta
* carencia creamos directorios en el root del bucket que imitaran a los containers de Cloudfiles
* Como no podemos crear directorios vacios, almacenamos el nombre en el atributo
* self::seudoContainer, en el metodo self::set_container, y luego cuando se crea un objeto se
* creara añadiendole este prefijo lo que reflejara la creacion del directorio en Amazon S3
*
* @see self::seudoContainer valor almacenado del prefijo
* @see self::set_container() almacena el prefijo
* @param string $name solo presente por compatibilidad con la interface, no se utiliza
* @return null
*/
public function create_container($name) {
return null;
}
/**
* delete_container
*
* @throws ObjectOperationException
* @param string $name solo presente por compatibilidad con la interface, no se utiliza
*/
public function delete_container($name) {
try {
$objects = $this->cdn->getObjectList($this->seudoContainer);
if (!empty($objects)) {
foreach ($objects as $object) {
$this->cdn->deleteObject($object);
}
}
} catch (ObjectOperationException $e) {
echo $e->getMessage();
}
}
/**
* list_containers
*
* @todo este metodo deberia retornar un array con el primer nivel de directorios de S3
* @return null
*/
public function list_containers() {
return null;
}
/**
* list_container_objects
*
* @return array
*/
public function list_container_objects() {
return $this->cdn->getObjectList($this->seudoContainer);
}
/**
* write_file
*
* @param string $file path al archivo
* @param string $filename nombre del archivo con el que se va a guardar en Amazon S3
* @param string $filetype solo presente por compatibilidad con la interface, no se utiliza
*/
public function write_file($file, $filename = null, $filetype = null) {
$response = $this->cdn->createObjectFromFile(
$this->seudoContainer . '/' . $filename, fopen($file, 'r'), array(), array()
);
if ($response) {
return $response;
} else {
return false;
}
}
/**
* get_object
*
* @param string $file nombre del objeto del cual se desea obtener informacion
* @return array
*/
public function get_object($file) {
return $this->cdn->getObject($file);
}
/**
* getContentType
*
* Este metodo no se utiliza, ya que la clase AmazonS3 ya tiene
* un metodo que hace lo mismo. Se conserva para compatibilidad con la interfaz
*
* @param string $filename
* @return null
*/
public function getContentType($filename) {
return null;
}
/**
* deleteObject
*
* Eliminamos el objeto del bucket de Amazon S3
*
* @param string $object nombre del archivo a eliminar
* @return bool
*/
public function deleteObject($object) {
try {
$response = $this->cdn->deleteObject($this->seudoContainer . '/' . $object);
return $response->isOK();
} catch (ObjectOperationException $e) {
echo $e->getMessage();
}
}
/**
* Manejamos los accesos a los atributos de la clase, definidos o no
* Solo permitimos el acceso a atributos de la clase publicos
*
* @trows UnsupportedOperationException
* @param string $name nombre del atributo al cual se quiere acceder
* @return mixed
*/
public function __get($name) {
try {
$reflect = new ReflectionClass($this);
$props = $reflect->getProperties(ReflectionProperty::IS_PUBLIC);
$response = false;
foreach ($props as $prop) {
if ($name == $prop->getName()) {
$response = $prop->getName();
}
}
if (!$response) {
throw new UnsupportedOperationException('Propiedad indefinida via __get(): ' . $name);
}
} catch (UnsupportedOperationException $e) {
echo $e->getMessage();
}
}
/**
* Manejamos las llamadas a metodos legacy de Cloudfiles que no definimos
*
* @trows UnsupportedOperationException
* @param string $name nombre del metodo llamado
* @param array $args array de argumentos pasados al metodo
* @return null
*/
public function __call($name, $args) {
try {
throw new UnsupportedOperationException('Llamada al metodo: ' . $name . ' con los argumentos: ' . print_r($args, true));
} catch (UnsupportedOperationException $e) {
echo $e->getMessage();
}
}
/**
* Manejamos las llamadas a metodos estaticos legacy de Cloudfiles que no definimos
*
* @trows UnsupportedOperationException
* @param string $name nombre del metodo llamado
* @param array $args array de argumentos pasados al metodo
* @return null
*/
public static function __callStatic($name, $args) {
try {
throw new UnsupportedOperationException('Llamada al metodo: ' . $name . ' con los argumentos: ' . print_r($args, true));
} catch (UnsupportedOperationException $e) {
echo $e->getMessage();
}
}
/**
* __clone
*
* Cuando se clone la instancia se incrementara el numero de instancias creadas
* y se asignara a self::instance el numero de instancia actual clonada
*
* @example http://php.net/manual/es/language.oop5.cloning.php
*/
public function __clone() {
$this->instance = ++self::$instances;
}
}