forked from AmericanCouncils/Transcoding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FileHandlerDefinition.php
403 lines (333 loc) · 9.9 KB
/
FileHandlerDefinition.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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
<?php
namespace AC\Component\Transcoding;
/**
* FileHandlerDefinition's define valid input/output file type properties for a preset and/or adapter. The FileHandlerDefinition is checked by the Transcoder before executing.
*
* @package Transcoding
* @author Evan Villemez
*/
class FileHandlerDefinition implements \Serializable
{
//input type restrictions
protected $allowedExtensions = false;
protected $rejectedExtensions = false;
protected $allowedMimes = false;
protected $rejectedMimes = false;
protected $allowedMimeTypes = false;
protected $rejectedMimeTypes = false;
protected $allowedMimeEncodings = false;
protected $rejectedMimeEncodings = false;
//general i/o type
protected $allowDirectory = true;
protected $requiredExtension = false;
protected $inheritExtension = false;
protected $requiredType = false;
/**
* Optionally set any properties via a hash in the constructor instead of using setter methods
*
* @param array $ops - optional key/val hash
*/
public function __construct($ops = array())
{
$this->setOptions($ops);
}
/**
* Return boolean for whether or not the FileHandlerDefinition will accept a given file.
*
* @param File $file
* @return boolean
*/
public function acceptsFile(File $file)
{
try {
return $this->validateFile($file);
} catch (\Exception $e) {
return false;
}
}
/**
* Return true if FileHandlerDefinition accepts a given file, otherwise throw an exception on failure.
*
* @param File $file
* @return boolean
*/
public function validateFile(File $file)
{
if (!$this->acceptsExtension($file->getExtension())) {
throw new Exception\InvalidFileException(sprintf("This definition does not accept files with extension %s", $file->getExtension()));
}
if (!$this->acceptsMime($file->getMime())) {
throw new Exception\InvalidFileException(sprintf("This definition does not accept files with mime of %s", $file->getMime()));
}
if (!$this->acceptsMimeType($file->getMimeType())) {
throw new Exception\InvalidFileException(sprintf("This definition does not accept files with mime type of %s", $file->getMimeType()));
}
if (!$this->acceptsMimeEncoding($file->getMimeEncoding())) {
throw new Exception\InvalidFileException(sprintf("This definition does not accept files with mime encoding of %s", $file->getMimeEncoding()));
}
if ($this->getRequiredType()) {
if ($this->getRequiredType() !== $file->getType()) {
throw new Exception\InvalidFileException(sprintf("This definition only accept files of type %s", $this->getRequiredType()));
}
}
if (!$this->getAllowDirectory() && $file->isDir()) {
throw new Exception\InvalidFileException("This definition cannot accept a directory as input");
}
return true;
}
/**
* Return true/false for whether or not the handler accepts a given extension.
*
* @param string $ext - string extension, if a preceeding "." is provided, it's automatically stripped
* @return boolean
*/
public function acceptsExtension($ext)
{
$ext = trim(strtolower($ext), ".");
if ($this->getRequiredExtension() && $ext !== $this->getRequiredExtension()) {
return false;
}
if ($this->getAllowedExtensions() && !in_array($ext, $this->getAllowedExtensions())) {
return false;
}
if ($this->getRejectedExtensions() && in_array($ext, $this->getRejectedExtensions())) {
return false;
}
return true;
}
/**
* Return true/false for whether or not the handler accepts a given mime.
*
* @return boolean
*/
public function acceptsMime($ext)
{
if ($this->getAllowedMimes() && !in_array($ext, $this->getAllowedMimes())) {
return false;
}
if ($this->getRejectedMimes() && in_array($ext, $this->getRejectedMimes())) {
return false;
}
return true;
}
/**
* Return true/false for whether or not the handler accepts a given mime type.
*
* @return boolean
*/
public function acceptsMimeType($ext)
{
if ($this->getAllowedMimeTypes() && !in_array($ext, $this->getAllowedMimeTypes())) {
return false;
}
if ($this->getRejectedMimeTypes() && in_array($ext, $this->getRejectedMimeTypes())) {
return false;
}
return true;
}
/**
* Return true/false for whether or not the handler accepts a given mime encoding.
*
* @return boolean
*/
public function acceptsMimeEncoding($ext)
{
if ($this->getAllowedMimeEncodings() && !in_array($ext, $this->getAllowedMimeEncodings())) {
return false;
}
if ($this->getRejectedMimeEncodings() && in_array($ext, $this->getRejectedMimeEncodings())) {
return false;
}
return true;
}
/**
* Set a specific required extension
*
* @param string $ext
* @return self
*/
public function setRequiredExtension($ext)
{
$this->requiredExtension = ltrim(strtolower($ext), ".");
return $this;
}
/**
* Get required file extension
*
* @return string or false
*/
public function getRequiredExtension()
{
return $this->requiredExtension;
}
/**
* Return true/false for whether or not the handler shoud inhert a file extension from another file. Generally this is only used when checking
* output file definitions and generating valid output file paths
*
* @return boolean
*/
public function getInheritExtension()
{
return $this->inheritExtension;
}
/**
* Set true/false whether or not to inherit an output extension, only used for output definitions to help in generating a valid output path
*
* @param bool $bool
* @return self
*/
public function setInheritExtension($bool)
{
$this->inheritExtension = (bool) $bool;
return $this;
}
/**
* Return boolean for whether or not directories count as valid input
*
* @return boolean
*/
public function getAllowDirectory()
{
return $this->allowDirectory;
}
/**
* Set true/false whether or not to allow directories as input
*
* @param bool $bool
* @return self
*/
public function setAllowDirectory($bool)
{
$this->allowDirectory = (bool) $bool;
return $this;
}
/**
* Get required input file type, can be either 'file' or 'directory'
*
* @return string
*/
public function getRequiredType()
{
return $this->requiredType;
}
/**
* Set required file input type, must be either 'file' or 'directory'
*
* @param string $type
* @return self
*/
public function setRequiredType($type)
{
if (!in_array($type, array('file', 'directory'))) {
throw new \InvalidArgumentException("Input type must be either 'file' or 'directory'.");
}
if ($type === 'directory') {
$this->setAllowDirectory(true);
} else {
$this->setAllowDirectory(false);
}
$this->requiredType = $type;
return $this;
}
/**
* type restriction getter/setter methods below
*/
public function getAllowedExtensions()
{
return $this->allowedExtensions;
}
public function setAllowedExtensions(array $arr)
{
$this->allowedExtensions = $arr;
return $this;
}
public function getAllowedMimes()
{
return $this->allowedMimes;
}
public function setAllowedMimes(array $arr)
{
$this->allowedMimes = $arr;
return $this;
}
public function getAllowedMimeTypes()
{
return $this->allowedMimeTypes;
}
public function setAllowedMimeTypes(array $arr)
{
$this->allowedMimeTypes = $arr;
return $this;
}
public function getAllowedMimeEncodings()
{
return $this->allowedMimeEncodings;
}
public function setAllowedMimeEncodings(array $arr)
{
$this->allowedMimeEncodings = $arr;
return $this;
}
public function getRejectedExtensions()
{
return $this->rejectedExtensions;
}
public function setRejectedExtensions(array $arr)
{
$this->rejectedExtensions = $arr;
return $this;
}
public function getRejectedMimes()
{
return $this->rejectedMimes;
}
public function setRejectedMimes(array $arr)
{
$this->rejectedMimes = $arr;
return $this;
}
public function getRejectedMimeTypes()
{
return $this->rejectedMimeTypes;
}
public function setRejectedMimeTypes(array $arr)
{
$this->rejectedMimeTypes = $arr;
return $this;
}
public function getRejectedMimeEncodings()
{
return $this->rejectedMimeEncodings;
}
public function setRejectedMimeEncodings(array $arr)
{
$this->rejectedMimeEncodings = $arr;
return $this;
}
/**
* Set multiple properties as a key/val hash in one operation.
*
* @param array $ops
* @return self
*/
public function setOptions(array $ops)
{
foreach ($ops as $key => $val) {
$this->$key = $val;
}
return $this;
}
public function serialize()
{
$data = array();
foreach ($this as $key => $val) {
$data[$key] = $val;
}
return serialize($data);
}
public function unserialize($string)
{
$data = unserialize($string);
$this->setOptions($data);
}
}