text changes to registration mail content
[namibia] / module / Utility / src / Utility / Upload / Video.php
1 <?php
2 namespace Utility\Upload;
3
4
5
6 /*
7  * jQuery File Upload Plugin PHP Class 5.18.3
8  * https://github.com/blueimp/jQuery-File-Upload
9  *
10  * Copyright 2010, Sebastian Tschan
11  * https://blueimp.net
12  *
13  * Licensed under the MIT license:
14  * http://www.opensource.org/licenses/MIT
15  */
16
17 class Video
18 {
19     protected $options;
20     // PHP File Upload error message codes:
21     // http://php.net/manual/en/features.file-upload.errors.php
22     protected $error_messages = array(
23         1 => 'The uploaded file exceeds the upload_max_filesize directive in php.ini',
24         2 => 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form',
25         3 => 'The uploaded file was only partially uploaded',
26         4 => 'No file was uploaded',
27         6 => 'Missing a temporary folder',
28         7 => 'Failed to write file to disk',
29         8 => 'A PHP extension stopped the file upload',
30         'post_max_size' => 'The uploaded file exceeds the post_max_size directive in php.ini',
31         'max_file_size' => 'File is too big',
32         'min_file_size' => 'File is too small',
33         'accept_file_types' => 'Filetype not allowed',
34         'max_number_of_files' => 'Maximum number of files exceeded',
35         'max_width' => 'Image exceeds maximum width',
36         'min_width' => 'Image requires a minimum width',
37         'max_height' => 'Image exceeds maximum height',
38         'min_height' => 'Image requires a minimum height'
39     );
40
41     function __construct($options = null, $initialize = true) {
42         $this->options = array(
43             'script_url' => $this->get_full_url().'/',
44             'upload_dir' => \Utility\Registry::getConfigParam('VideoPath'),
45             'upload_url' => \Utility\Registry::getConfigParam('VideoUrl'),
46             'user_dirs' => false,
47             'mkdir_mode' => 0755,
48             'param_name' => 'files',
49             // Set the following option to 'POST', if your server does not support
50             // DELETE requests. This is a parameter sent to the client:
51             'delete_type' => 'DELETE',
52             'access_control_allow_origin' => '*',
53             'access_control_allow_credentials' => false,
54             'access_control_allow_methods' => array(
55                 'OPTIONS',
56                 'HEAD',
57                 'GET',
58                 'POST',
59                 'PUT',
60                 'DELETE'
61             ),
62             'access_control_allow_headers' => array(
63                 'Content-Type',
64                 'Content-Range',
65                 'Content-Disposition',
66                 'Content-Description'
67             ),
68             // Enable to provide file downloads via GET requests to the PHP script:
69             'download_via_php' => false,
70             // Defines which files can be displayed inline when downloaded:
71             'inline_file_types' => '/\.(ogg|mp4|webm)$/i',
72             // Defines which files (based on their names) are accepted for upload:
73             'accept_file_types' => '/.+$/i',
74             // The php.ini settings upload_max_filesize and post_max_size
75             // take precedence over the following max_file_size setting:
76             'max_file_size' => '20000000',
77             'min_file_size' => 1,
78             // The maximum number of files for the upload directory:
79             'max_number_of_files' => null,
80             // Image resolution restrictions:
81             'max_width' => null,
82             'max_height' => null,
83             'min_width' => 1,
84             'min_height' => 1,
85             // Set the following option to false to enable resumable uploads:
86             'discard_aborted_uploads' => true,
87             // Set to true to rotate images based on EXIF meta data, if available:
88             'orient_image' => false,
89             'image_versions' => array()
90         );
91         if ($options) {
92             $this->options = array_merge($this->options, $options);
93         }
94         if ($initialize) {
95             $this->initialize();
96         }
97     }
98
99     protected function initialize() {
100         switch ($_SERVER['REQUEST_METHOD']) {
101             case 'OPTIONS':
102             case 'HEAD':
103                 $this->head();
104                 break;
105             case 'GET':
106                 $this->get();
107                 break;
108             case 'POST':
109                 $this->post();
110                 break;
111             case 'DELETE':
112                 $this->delete();
113                 break;
114             default:
115                 header('HTTP/1.1 405 Method Not Allowed');
116         }
117     }
118
119     protected function get_full_url() {
120         $https = !empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off';
121         return
122             ($https ? 'https://' : 'http://').
123             (!empty($_SERVER['REMOTE_USER']) ? $_SERVER['REMOTE_USER'].'@' : '').
124             (isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : ($_SERVER['SERVER_NAME'].
125             ($https && $_SERVER['SERVER_PORT'] === 443 ||
126             $_SERVER['SERVER_PORT'] === 80 ? '' : ':'.$_SERVER['SERVER_PORT']))).
127             substr($_SERVER['SCRIPT_NAME'],0, strrpos($_SERVER['SCRIPT_NAME'], '/'));
128     }
129
130     protected function get_user_id() {
131         @session_start();
132         return session_id();
133     }
134
135     protected function get_user_path() {
136         if ($this->options['user_dirs']) {
137             return $this->get_user_id().'/';
138         }
139         return '';
140     }
141
142     protected function get_upload_path($file_name = null, $version = null) {
143         $file_name = $file_name ? $file_name : '';
144         $version_path = empty($version) ? '' : $version.'/';
145         return $this->options['upload_dir'].$this->get_user_path()
146             .$version_path.$file_name;
147     }
148
149     protected function get_download_url($file_name, $version = null) {
150         if ($this->options['download_via_php']) {
151             $url = $this->options['script_url'].'?file='.rawurlencode($file_name);
152             if ($version) {
153                 $url .= '&version='.rawurlencode($version);
154             }
155             return $url.'&download=1';
156         }
157         $version_path = empty($version) ? '' : rawurlencode($version).'/';
158         return $this->options['upload_url'].$this->get_user_path()
159             .$version_path.rawurlencode($file_name);
160     }
161
162     protected function set_file_delete_properties($file) {
163         $file->delete_url = $this->options['script_url']
164             .'?file='.rawurlencode($file->name);
165         $file->delete_type = $this->options['delete_type'];
166         if ($file->delete_type !== 'DELETE') {
167             $file->delete_url .= '&_method=DELETE';
168         }
169         if ($this->options['access_control_allow_credentials']) {
170             $file->delete_with_credentials = true;
171         }
172     }
173
174     // Fix for overflowing signed 32 bit integers,
175     // works for sizes up to 2^32-1 bytes (4 GiB - 1):
176     protected function fix_integer_overflow($size) {
177         if ($size < 0) {
178             $size += 2.0 * (PHP_INT_MAX + 1);
179         }
180         return $size;
181     }
182
183     protected function get_file_size($file_path, $clear_stat_cache = false) {
184         if ($clear_stat_cache) {
185             clearstatcache();
186         }
187         return $this->fix_integer_overflow(@filesize($file_path));
188
189     }
190
191     protected function is_valid_file_object($file_name) {
192         $file_path = $this->get_upload_path($file_name);
193         if (is_file($file_path) && $file_name[0] !== '.') {
194             return true;
195         }
196         return false;
197     }
198
199     protected function get_file_object($file_name) {
200         if ($this->is_valid_file_object($file_name)) {
201             $file = new \stdClass();
202             $file->name = $file_name;
203             $file->size = $this->get_file_size(
204                 $this->get_upload_path($file_name)
205             );
206             $file->url = $this->get_download_url($file->name);
207             foreach($this->options['image_versions'] as $version => $options) {
208                 if (!empty($version)) {
209                     if (is_file($this->get_upload_path($file_name, $version))) {
210                         $file->{$version.'_url'} = $this->get_download_url(
211                             $file->name,
212                             $version
213                         );
214                     }
215                 }
216             }
217             $this->set_file_delete_properties($file);
218             return $file;
219         }
220         return null;
221     }
222
223     protected function get_file_objects($iteration_method = 'get_file_object') {
224         $upload_dir = $this->get_upload_path();
225         if (!is_dir($upload_dir)) {
226             mkdir($upload_dir, $this->options['mkdir_mode']);
227         }
228         return array_values(array_filter(array_map(
229             array($this, $iteration_method),
230             scandir($upload_dir)
231         )));
232     }
233
234     protected function count_file_objects() {
235         return count($this->get_file_objects('is_valid_file_object'));
236     }
237
238     protected function create_scaled_image($file_name, $version, $options) {
239         $file_path = $this->get_upload_path($file_name);
240         if (!empty($version)) {
241             $version_dir = $this->get_upload_path(null, $version);
242             if (!is_dir($version_dir)) {
243                 mkdir($version_dir, $this->options['mkdir_mode']);
244             }
245             $new_file_path = $version_dir.'/'.$file_name;
246         } else {
247             $new_file_path = $file_path;
248         }
249         list($img_width, $img_height) = @getimagesize($file_path);
250         if (!$img_width || !$img_height) {
251             return false;
252         }
253         $scale = min(
254             $options['max_width'] / $img_width,
255             $options['max_height'] / $img_height
256         );
257         if ($scale >= 1) {
258             if ($file_path !== $new_file_path) {
259                 return copy($file_path, $new_file_path);
260             }
261             return true;
262         }
263         $new_width = $img_width * $scale;
264         $new_height = $img_height * $scale;
265         $new_img = @imagecreatetruecolor($new_width, $new_height);
266         switch (strtolower(substr(strrchr($file_name, '.'), 1))) {
267             case 'jpg':
268             case 'jpeg':
269                 $src_img = @imagecreatefromjpeg($file_path);
270                 $write_image = 'imagejpeg';
271                 $image_quality = isset($options['jpeg_quality']) ?
272                     $options['jpeg_quality'] : 75;
273                 break;
274             case 'gif':
275                 @imagecolortransparent($new_img, @imagecolorallocate($new_img, 0, 0, 0));
276                 $src_img = @imagecreatefromgif($file_path);
277                 $write_image = 'imagegif';
278                 $image_quality = null;
279                 break;
280             case 'png':
281                 @imagecolortransparent($new_img, @imagecolorallocate($new_img, 0, 0, 0));
282                 @imagealphablending($new_img, false);
283                 @imagesavealpha($new_img, true);
284                 $src_img = @imagecreatefrompng($file_path);
285                 $write_image = 'imagepng';
286                 $image_quality = isset($options['png_quality']) ?
287                     $options['png_quality'] : 9;
288                 break;
289             default:
290                 $src_img = null;
291         }
292         $success = $src_img && @imagecopyresampled(
293             $new_img,
294             $src_img,
295             0, 0, 0, 0,
296             $new_width,
297             $new_height,
298             $img_width,
299             $img_height
300         ) && $write_image($new_img, $new_file_path, $image_quality);
301         // Free up memory (imagedestroy does not delete files):
302         @imagedestroy($src_img);
303         @imagedestroy($new_img);
304         return $success;
305     }
306
307     protected function get_error_message($error) {
308         return array_key_exists($error, $this->error_messages) ?
309             $this->error_messages[$error] : $error;
310     }
311
312     function get_config_bytes($val) {
313         $val = trim($val);
314         $last = strtolower($val[strlen($val)-1]);
315         switch($last) {
316             case 'g':
317                 $val *= 1024;
318             case 'm':
319                 $val *= 1024;
320             case 'k':
321                 $val *= 1024;
322         }
323         return $this->fix_integer_overflow($val);
324     }
325
326     protected function validate($uploaded_file, $file, $error, $index) {
327         if ($error) {
328             $file->error = $this->get_error_message($error);
329             return false;
330         }
331         $content_length = $this->fix_integer_overflow(intval($_SERVER['CONTENT_LENGTH']));
332         if ($content_length > $this->get_config_bytes(ini_get('post_max_size'))) {
333             $file->error = $this->get_error_message('post_max_size');
334             return false;
335         }
336         if (!preg_match($this->options['accept_file_types'], $file->name)) {
337             $file->error = $this->get_error_message('accept_file_types');
338             return false;
339         }
340         if ($uploaded_file && is_uploaded_file($uploaded_file)) {
341             $file_size = $this->get_file_size($uploaded_file);
342         } else {
343             $file_size = $content_length;
344         }
345         if ($this->options['max_file_size'] && (
346                 $file_size > $this->options['max_file_size'] ||
347                 $file->size > $this->options['max_file_size'])
348             ) {
349             $file->error = $this->get_error_message('max_file_size');
350             return false;
351         }
352         if ($this->options['min_file_size'] &&
353             $file_size < $this->options['min_file_size']) {
354             $file->error = $this->get_error_message('min_file_size');
355             return false;
356         }
357         if (is_int($this->options['max_number_of_files']) && (
358                 $this->count_file_objects() >= $this->options['max_number_of_files'])
359             ) {
360             $file->error = $this->get_error_message('max_number_of_files');
361             return false;
362         }
363         list($img_width, $img_height) = @getimagesize($uploaded_file);
364         if (is_int($img_width)) {
365             if ($this->options['max_width'] && $img_width > $this->options['max_width']) {
366                 $file->error = $this->get_error_message('max_width');
367                 return false;
368             }
369             if ($this->options['max_height'] && $img_height > $this->options['max_height']) {
370                 $file->error = $this->get_error_message('max_height');
371                 return false;
372             }
373             if ($this->options['min_width'] && $img_width < $this->options['min_width']) {
374                 $file->error = $this->get_error_message('min_width');
375                 return false;
376             }
377             if ($this->options['min_height'] && $img_height < $this->options['min_height']) {
378                 $file->error = $this->get_error_message('min_height');
379                 return false;
380             }
381         }
382         return true;
383     }
384
385     protected function upcount_name_callback($matches) {
386         $index = isset($matches[1]) ? intval($matches[1]) + 1 : 1;
387         $ext = isset($matches[2]) ? $matches[2] : '';
388         return ' ('.$index.')'.$ext;
389     }
390
391     protected function upcount_name($name) {
392         return preg_replace_callback(
393             '/(?:(?: \(([\d]+)\))?(\.[^.]+))?$/',
394             array($this, 'upcount_name_callback'),
395             $name,
396             1
397         );
398     }
399
400     protected function trim_file_name($name, $type, $index, $content_range) {
401         // Remove path information and dots around the filename, to prevent uploading
402         // into different directories or replacing hidden system files.
403         // Also remove control characters and spaces (\x00..\x20) around the filename:
404         $file_name = trim(basename(stripslashes($name)), ".\x00..\x20");
405         // Add missing file extension for known image types:
406         if (strpos($file_name, '.') === false &&
407             preg_match('/^image\/(gif|jpe?g|png)/', $type, $matches)) {
408             $file_name .= '.'.$matches[1];
409         }
410         while(is_dir($this->get_upload_path($file_name))) {
411             $file_name = $this->upcount_name($file_name);
412         }
413         $uploaded_bytes = $this->fix_integer_overflow(intval($content_range[1]));
414         while(is_file($this->get_upload_path($file_name))) {
415             if ($uploaded_bytes === $this->get_file_size(
416                     $this->get_upload_path($file_name))) {
417                 break;
418             }
419             $file_name = $this->upcount_name($file_name);
420         }
421         return $file_name;
422     }
423
424     protected function handle_form_data($file, $index) {
425         // Handle form data, e.g. $_REQUEST['description'][$index]
426     }
427
428     protected function orient_image($file_path) {
429           $exif = @exif_read_data($file_path);
430         if ($exif === false) {
431             return false;
432         }
433           $orientation = intval(@$exif['Orientation']);
434           if (!in_array($orientation, array(3, 6, 8))) {
435               return false;
436           }
437           $image = @imagecreatefromjpeg($file_path);
438           switch ($orientation) {
439               case 3:
440                   $image = @imagerotate($image, 180, 0);
441                   break;
442               case 6:
443                   $image = @imagerotate($image, 270, 0);
444                   break;
445               case 8:
446                   $image = @imagerotate($image, 90, 0);
447                   break;
448               default:
449                   return false;
450           }
451           $success = imagejpeg($image, $file_path);
452           // Free up memory (imagedestroy does not delete files):
453           @imagedestroy($image);
454           return $success;
455     }
456
457     protected function handle_file_upload($uploaded_file, $name, $size, $type, $error,
458             $index = null, $content_range = null) {
459         $file = new \stdClass();
460         $file->name = $this->trim_file_name($name, $type, $index, $content_range);
461         $file->size = $this->fix_integer_overflow(intval($size));
462         $file->type = $type;
463         if ($this->validate($uploaded_file, $file, $error, $index)) {
464             $this->handle_form_data($file, $index);
465             $upload_dir = $this->get_upload_path();
466             if (!is_dir($upload_dir)) {
467                 mkdir($upload_dir, $this->options['mkdir_mode']);
468             }
469             $file_path = $this->get_upload_path($file->name);
470             $append_file = $content_range && is_file($file_path) &&
471                 $file->size > $this->get_file_size($file_path);
472             if ($uploaded_file && is_uploaded_file($uploaded_file)) {
473                 // multipart/formdata uploads (POST method uploads)
474                 if (file_exists($file_path))
475                 {
476                         unlink($file_path);
477                 }
478                 if ($append_file) {
479                     file_put_contents(
480                         $file_path,
481                         fopen($uploaded_file, 'r'),
482                         FILE_APPEND
483                     );
484                 } else {
485                     move_uploaded_file($uploaded_file, $file_path);
486                 }
487             } else {
488                 // Non-multipart uploads (PUT method support)
489                 file_put_contents(
490                     $file_path,
491                     fopen('php://input', 'r'),
492                     $append_file ? FILE_APPEND : 0
493                 );
494             }
495             $file_size = $this->get_file_size($file_path, $append_file);
496             //if ($file_size === $file->size) {
497             if ($file->size) {
498                 if ($this->options['orient_image']) {
499                     $this->orient_image($file_path);
500                 }
501                 $file->url = $this->get_download_url($file->name);
502                 $em = \Utility\Registry::getEntityManager();
503                 $oVideo = new \Utility\Entity\Video();
504                 $parts = explode('/', $file_path);
505                 $oVideo->filename = array_pop($parts);
506                 $oVideo->mimeType = $type;
507                 $em->persist($oVideo);
508                 $em->flush();
509                 $file->id = $oVideo->id;
510             } else if (!$content_range && $this->options['discard_aborted_uploads']) {
511                 unlink($file_path);
512                 $file->error = 'abort';
513             }
514             $file->size = $file_size;
515             $this->set_file_delete_properties($file);
516         }
517         return $file;
518     }
519
520     protected function generate_response($content, $print_response = true) {
521         if ($print_response) {
522             $json = json_encode($content);
523             $redirect = isset($_REQUEST['redirect']) ?
524                 stripslashes($_REQUEST['redirect']) : null;
525             if ($redirect) {
526                 header('Location: '.sprintf($redirect, rawurlencode($json)));
527                 return;
528             }
529             $this->head();
530             if (isset($_SERVER['HTTP_CONTENT_RANGE']) && is_array($content) &&
531                     is_object($content[0]) && $content[0]->size) {
532                 header('Range: 0-'.($this->fix_integer_overflow(intval($content[0]->size)) - 1));
533             }
534             echo $json;
535         }
536         return $content;
537     }
538
539     protected function get_version_param() {
540         return isset($_GET['version']) ? basename(stripslashes($_GET['version'])) : null;
541     }
542
543     protected function get_file_name_param() {
544         return isset($_GET['file']) ? basename(stripslashes($_GET['file'])) : null;
545     }
546
547     protected function get_file_type($file_path) {
548         switch (strtolower(pathinfo($file_path, PATHINFO_EXTENSION))) {
549             case 'jpeg':
550             case 'jpg':
551                 return 'image/jpeg';
552             case 'png':
553                 return 'image/png';
554             case 'gif':
555                 return 'image/gif';
556             default:
557                 return '';
558         }
559     }
560
561     protected function download() {
562         if (!$this->options['download_via_php']) {
563             header('HTTP/1.1 403 Forbidden');
564             return;
565         }
566         $file_name = $this->get_file_name_param();
567         if ($this->is_valid_file_object($file_name)) {
568             $file_path = $this->get_upload_path($file_name, $this->get_version_param());
569             if (is_file($file_path)) {
570                 if (!preg_match($this->options['inline_file_types'], $file_name)) {
571                     header('Content-Description: File Transfer');
572                     header('Content-Type: application/octet-stream');
573                     header('Content-Disposition: attachment; filename="'.$file_name.'"');
574                     header('Content-Transfer-Encoding: binary');
575                 } else {
576                     // Prevent Internet Explorer from MIME-sniffing the content-type:
577                     header('X-Content-Type-Options: nosniff');
578                     header('Content-Type: '.$this->get_file_type($file_path));
579                     header('Content-Disposition: inline; filename="'.$file_name.'"');
580                 }
581                 header('Content-Length: '.$this->get_file_size($file_path));
582                 header('Last-Modified: '.gmdate('D, d M Y H:i:s T', filemtime($file_path)));
583                 readfile($file_path);
584             }
585         }
586     }
587
588     protected function send_content_type_header() {
589         header('Vary: Accept');
590         if (isset($_SERVER['HTTP_ACCEPT']) &&
591             (strpos($_SERVER['HTTP_ACCEPT'], 'application/json') !== false)) {
592             header('Content-type: application/json');
593         } else {
594             header('Content-type: text/plain');
595         }
596     }
597
598     protected function send_access_control_headers() {
599         header('Access-Control-Allow-Origin: '.$this->options['access_control_allow_origin']);
600         header('Access-Control-Allow-Credentials: '
601             .($this->options['access_control_allow_credentials'] ? 'true' : 'false'));
602         header('Access-Control-Allow-Methods: '
603             .implode(', ', $this->options['access_control_allow_methods']));
604         header('Access-Control-Allow-Headers: '
605             .implode(', ', $this->options['access_control_allow_headers']));
606     }
607
608     public function head() {
609         header('Pragma: no-cache');
610         header('Cache-Control: no-store, no-cache, must-revalidate');
611         header('Content-Disposition: inline; filename="files.json"');
612         // Prevent Internet Explorer from MIME-sniffing the content-type:
613         header('X-Content-Type-Options: nosniff');
614         if ($this->options['access_control_allow_origin']) {
615            $this->send_access_control_headers();
616         }
617         $this->send_content_type_header();
618     }
619
620     public function get($print_response = true) {
621         if ($print_response && isset($_GET['download'])) {
622             return $this->download();
623         }
624         $file_name = $this->get_file_name_param();
625         if ($file_name) {
626             $info = $this->get_file_object($file_name);
627         } else {
628             $info = $this->get_file_objects();
629         }
630         return $this->generate_response($info, $print_response);
631     }
632
633     public function post($print_response = true) {
634         if (isset($_REQUEST['_method']) && $_REQUEST['_method'] === 'DELETE') {
635             return $this->delete($print_response);
636         }
637         $upload = isset($_FILES[$this->options['param_name']]) ?
638             $_FILES[$this->options['param_name']] : null;
639         // Parse the Content-Disposition header, if available:
640         $file_name = isset($_SERVER['HTTP_CONTENT_DISPOSITION']) ?
641             rawurldecode(preg_replace(
642                 '/(^[^"]+")|("$)/',
643                 '',
644                 $_SERVER['HTTP_CONTENT_DISPOSITION']
645             )) : null;
646         $file_type = isset($_SERVER['HTTP_CONTENT_DESCRIPTION']) ?
647             $_SERVER['HTTP_CONTENT_DESCRIPTION'] : null;
648         // Parse the Content-Range header, which has the following form:
649         // Content-Range: bytes 0-524287/2000000
650         $content_range = isset($_SERVER['HTTP_CONTENT_RANGE']) ?
651             preg_split('/[^0-9]+/', $_SERVER['HTTP_CONTENT_RANGE']) : null;
652         $size =  $content_range ? $content_range[3] : null;
653         $info = array();
654         if ($upload && is_array($upload['tmp_name'])) {
655             // param_name is an array identifier like "files[]",
656             // $_FILES is a multi-dimensional array:
657             foreach ($upload['tmp_name'] as $index => $value) {
658                 $info[] = $this->handle_file_upload(
659                     $upload['tmp_name'][$index],
660                     $file_name ? $file_name : $upload['name'][$index],
661                     $size ? $size : $upload['size'][$index],
662                     $file_type ? $file_type : $upload['type'][$index],
663                     $upload['error'][$index],
664                     $index,
665                     $content_range
666                 );
667             }
668         } else {
669             // param_name is a single object identifier like "file",
670             // $_FILES is a one-dimensional array:
671             $info[] = $this->handle_file_upload(
672                 isset($upload['tmp_name']) ? $upload['tmp_name'] : null,
673                 $file_name ? $file_name : (isset($upload['name']) ?
674                         $upload['name'] : null),
675                 $size ? $size : (isset($upload['size']) ?
676                         $upload['size'] : $_SERVER['CONTENT_LENGTH']),
677                 $file_type ? $file_type : (isset($upload['type']) ?
678                         $upload['type'] : $_SERVER['CONTENT_TYPE']),
679                 isset($upload['error']) ? $upload['error'] : null,
680                 null,
681                 $content_range
682             );
683         }
684         return $this->generate_response($info, $print_response);
685     }
686
687     public function delete($print_response = true) {
688         $file_name = $this->get_file_name_param();
689         $file_path = $this->get_upload_path($file_name);
690         $success = is_file($file_path) && $file_name[0] !== '.' && unlink($file_path);
691         if ($success) {
692             foreach($this->options['image_versions'] as $version => $options) {
693                 if (!empty($version)) {
694                     $file = $this->get_upload_path($file_name, $version);
695                     if (is_file($file)) {
696                         unlink($file);
697                     }
698                 }
699             }
700         }
701         return $this->generate_response($success, $print_response);
702     }
703
704 }