blob: 7989d113eaecff401f3f55d578a3af5bd48df995 [file] [log] [blame]
Andrey Andreevc5536aa2012-11-01 17:33:58 +02001<?php
Derek Allard2067d1a2008-11-13 22:59:24 +00002/**
3 * CodeIgniter
4 *
Phil Sturgeon07c1ac82012-03-09 17:03:37 +00005 * An open source application development framework for PHP 5.2.4 or newer
Derek Allard2067d1a2008-11-13 22:59:24 +00006 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05007 * NOTICE OF LICENSE
Andrey Andreev3a459572011-12-21 11:23:11 +02008 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05009 * Licensed under the Open Software License version 3.0
Andrey Andreev3a459572011-12-21 11:23:11 +020010 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -050011 * This source file is subject to the Open Software License (OSL 3.0) that is
12 * bundled with this package in the files license.txt / license.rst. It is
13 * also available through the world wide web at this URL:
14 * http://opensource.org/licenses/OSL-3.0
15 * If you did not receive a copy of the license and are unable to obtain it
16 * through the world wide web, please send an email to
17 * licensing@ellislab.com so we can send you a copy immediately.
18 *
Derek Allard2067d1a2008-11-13 22:59:24 +000019 * @package CodeIgniter
Derek Jonesf4a4bd82011-10-20 12:18:42 -050020 * @author EllisLab Dev Team
Andrey Andreev80500af2013-01-01 08:16:53 +020021 * @copyright Copyright (c) 2008 - 2013, EllisLab, Inc. (http://ellislab.com/)
Derek Jonesf4a4bd82011-10-20 12:18:42 -050022 * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
Derek Allard2067d1a2008-11-13 22:59:24 +000023 * @link http://codeigniter.com
24 * @since Version 1.0
25 * @filesource
26 */
Andrey Andreevc5536aa2012-11-01 17:33:58 +020027defined('BASEPATH') OR exit('No direct script access allowed');
Derek Allard2067d1a2008-11-13 22:59:24 +000028
Derek Allard2067d1a2008-11-13 22:59:24 +000029/**
30 * File Uploading Class
31 *
32 * @package CodeIgniter
33 * @subpackage Libraries
34 * @category Uploads
Derek Jonesf4a4bd82011-10-20 12:18:42 -050035 * @author EllisLab Dev Team
Derek Allard2067d1a2008-11-13 22:59:24 +000036 * @link http://codeigniter.com/user_guide/libraries/file_uploading.html
37 */
38class CI_Upload {
Barry Mienydd671972010-10-04 16:33:58 +020039
Andrey Andreevf5ccd122012-11-02 00:17:39 +020040 /**
41 * Maximum file size
42 *
43 * @var int
44 */
Andrey Andreev8e6f7a92012-03-26 20:13:00 +030045 public $max_size = 0;
Andrey Andreevf5ccd122012-11-02 00:17:39 +020046
47 /**
48 * Maximum image width
49 *
50 * @var int
51 */
Andrey Andreev8e6f7a92012-03-26 20:13:00 +030052 public $max_width = 0;
Andrey Andreevf5ccd122012-11-02 00:17:39 +020053
54 /**
55 * Maximum image height
56 *
57 * @var int
58 */
Andrey Andreev8e6f7a92012-03-26 20:13:00 +030059 public $max_height = 0;
Andrey Andreevf5ccd122012-11-02 00:17:39 +020060
61 /**
Andrey Andreev05aa2d62012-12-03 16:06:55 +020062 * Minimum image width
63 *
64 * @var int
65 */
66 public $min_width = 0;
67
68 /**
69 * Minimum image height
70 *
71 * @var int
72 */
73 public $min_height = 0;
74
75 /**
Andrey Andreevf5ccd122012-11-02 00:17:39 +020076 * Maximum filename length
77 *
78 * @var int
79 */
Andrey Andreev8e6f7a92012-03-26 20:13:00 +030080 public $max_filename = 0;
Andrey Andreevf5ccd122012-11-02 00:17:39 +020081
82 /**
83 * Maximum duplicate filename increment ID
84 *
85 * @var int
86 */
Adam Jackettccbbea12011-08-21 16:19:11 -040087 public $max_filename_increment = 100;
Andrey Andreevf5ccd122012-11-02 00:17:39 +020088
89 /**
90 * Allowed file types
91 *
92 * @var string
93 */
Andrey Andreev8e6f7a92012-03-26 20:13:00 +030094 public $allowed_types = '';
Andrey Andreevf5ccd122012-11-02 00:17:39 +020095
96 /**
97 * Temporary filename
98 *
99 * @var string
100 */
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300101 public $file_temp = '';
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200102
103 /**
104 * Filename
105 *
106 * @var string
107 */
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300108 public $file_name = '';
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200109
110 /**
111 * Original filename
112 *
113 * @var string
114 */
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300115 public $orig_name = '';
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200116
117 /**
118 * File type
119 *
120 * @var string
121 */
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300122 public $file_type = '';
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200123
124 /**
125 * File size
126 *
127 * @var int
128 */
129 public $file_size = NULL;
130
131 /**
132 * Filename extension
133 *
134 * @var string
135 */
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300136 public $file_ext = '';
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200137
138 /**
Adrianf496d132013-06-24 15:56:45 +0200139 * Force filename extension to lowercase
140 *
141 * @var string
142 */
Adrian74a228b2013-06-25 12:09:22 +0200143 public $file_ext_tolower = FALSE;
Adrianf496d132013-06-24 15:56:45 +0200144
145 /**
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200146 * Upload path
147 *
148 * @var string
149 */
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300150 public $upload_path = '';
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200151
152 /**
153 * Overwrite flag
154 *
155 * @var bool
156 */
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300157 public $overwrite = FALSE;
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200158
159 /**
160 * Obfuscate filename flag
161 *
162 * @var bool
163 */
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300164 public $encrypt_name = FALSE;
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200165
166 /**
167 * Is image flag
168 *
169 * @var bool
170 */
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300171 public $is_image = FALSE;
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200172
173 /**
174 * Image width
175 *
176 * @var int
177 */
178 public $image_width = NULL;
179
180 /**
181 * Image height
182 *
183 * @var int
184 */
185 public $image_height = NULL;
186
187 /**
188 * Image type
189 *
190 * @var string
191 */
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300192 public $image_type = '';
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200193
194 /**
195 * Image size string
196 *
197 * @var string
198 */
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300199 public $image_size_str = '';
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200200
201 /**
202 * Error messages list
203 *
204 * @var array
205 */
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300206 public $error_msg = array();
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200207
208 /**
209 * MIME types list
210 *
211 * @var array
212 */
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300213 public $mimes = array();
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200214
215 /**
216 * Remove spaces flag
217 *
218 * @var bool
219 */
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300220 public $remove_spaces = TRUE;
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200221
222 /**
223 * MIME detection flag
224 *
225 * @var bool
226 */
Andrey Andreevd60e7002012-06-17 00:03:03 +0300227 public $detect_mime = TRUE;
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200228
229 /**
230 * XSS filter flag
231 *
232 * @var bool
233 */
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300234 public $xss_clean = FALSE;
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200235
236 /**
Andrey Andreev32c72122013-10-21 15:35:05 +0300237 * Apache mod_mime fix flag
238 *
239 * @var bool
240 */
241 public $mod_mime_fix = TRUE;
242
243 /**
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200244 * Temporary filename prefix
245 *
246 * @var string
247 */
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300248 public $temp_prefix = 'temp_file_';
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200249
250 /**
251 * Filename sent by the client
252 *
253 * @var bool
254 */
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300255 public $client_name = '';
Barry Mienydd671972010-10-04 16:33:58 +0200256
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200257 // --------------------------------------------------------------------
258
259 /**
260 * Filename override
261 *
262 * @var string
263 */
Greg Aker58fdee82010-11-10 15:07:09 -0600264 protected $_file_name_override = '';
Barry Mienydd671972010-10-04 16:33:58 +0200265
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200266 // --------------------------------------------------------------------
267
Derek Allard2067d1a2008-11-13 22:59:24 +0000268 /**
269 * Constructor
270 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200271 * @param array $props
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300272 * @return void
Derek Allard2067d1a2008-11-13 22:59:24 +0000273 */
Greg Aker58fdee82010-11-10 15:07:09 -0600274 public function __construct($props = array())
Derek Allard2067d1a2008-11-13 22:59:24 +0000275 {
276 if (count($props) > 0)
277 {
278 $this->initialize($props);
279 }
Barry Mienydd671972010-10-04 16:33:58 +0200280
Andrey Andreev6ef498b2012-06-05 22:01:58 +0300281 $this->mimes =& get_mimes();
282
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300283 log_message('debug', 'Upload Class Initialized');
Derek Allard2067d1a2008-11-13 22:59:24 +0000284 }
Barry Mienydd671972010-10-04 16:33:58 +0200285
Derek Allard2067d1a2008-11-13 22:59:24 +0000286 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200287
Derek Allard2067d1a2008-11-13 22:59:24 +0000288 /**
289 * Initialize preferences
290 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200291 * @param array $config
Derek Allard2067d1a2008-11-13 22:59:24 +0000292 * @return void
Barry Mienydd671972010-10-04 16:33:58 +0200293 */
Greg Aker58fdee82010-11-10 15:07:09 -0600294 public function initialize($config = array())
Derek Allard2067d1a2008-11-13 22:59:24 +0000295 {
296 $defaults = array(
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300297 'max_size' => 0,
298 'max_width' => 0,
299 'max_height' => 0,
Andrey Andreev05aa2d62012-12-03 16:06:55 +0200300 'min_width' => 0,
301 'min_height' => 0,
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300302 'max_filename' => 0,
303 'max_filename_increment' => 100,
304 'allowed_types' => '',
305 'file_temp' => '',
306 'file_name' => '',
307 'orig_name' => '',
308 'file_type' => '',
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200309 'file_size' => NULL,
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300310 'file_ext' => '',
Adrian74a228b2013-06-25 12:09:22 +0200311 'file_ext_tolower' => FALSE,
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300312 'upload_path' => '',
313 'overwrite' => FALSE,
314 'encrypt_name' => FALSE,
315 'is_image' => FALSE,
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200316 'image_width' => NULL,
317 'image_height' => NULL,
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300318 'image_type' => '',
319 'image_size_str' => '',
320 'error_msg' => array(),
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300321 'remove_spaces' => TRUE,
Andrey Andreevd60e7002012-06-17 00:03:03 +0300322 'detect_mime' => TRUE,
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300323 'xss_clean' => FALSE,
Andrey Andreev32c72122013-10-21 15:35:05 +0300324 'mod_mime_fix' => TRUE,
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300325 'temp_prefix' => 'temp_file_',
326 'client_name' => ''
327 );
Barry Mienydd671972010-10-04 16:33:58 +0200328
Derek Allard2067d1a2008-11-13 22:59:24 +0000329 foreach ($defaults as $key => $val)
330 {
331 if (isset($config[$key]))
332 {
333 $method = 'set_'.$key;
334 if (method_exists($this, $method))
335 {
336 $this->$method($config[$key]);
337 }
338 else
339 {
340 $this->$key = $config[$key];
Barry Mienydd671972010-10-04 16:33:58 +0200341 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000342 }
343 else
344 {
345 $this->$key = $val;
346 }
347 }
Barry Mienydd671972010-10-04 16:33:58 +0200348
Derek Jonese9d723f2010-07-12 10:10:59 -0500349 // if a file_name was provided in the config, use it instead of the user input
350 // supplied file name for all uploads until initialized again
351 $this->_file_name_override = $this->file_name;
Derek Allard2067d1a2008-11-13 22:59:24 +0000352 }
Barry Mienydd671972010-10-04 16:33:58 +0200353
Derek Allard2067d1a2008-11-13 22:59:24 +0000354 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200355
Derek Allard2067d1a2008-11-13 22:59:24 +0000356 /**
357 * Perform the file upload
358 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200359 * @param string $field
Derek Allard2067d1a2008-11-13 22:59:24 +0000360 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +0200361 */
Greg Aker58fdee82010-11-10 15:07:09 -0600362 public function do_upload($field = 'userfile')
Derek Allard2067d1a2008-11-13 22:59:24 +0000363 {
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300364 // Is $_FILES[$field] set? If not, no reason to continue.
Derek Allard2067d1a2008-11-13 22:59:24 +0000365 if ( ! isset($_FILES[$field]))
366 {
367 $this->set_error('upload_no_file_selected');
368 return FALSE;
369 }
Barry Mienydd671972010-10-04 16:33:58 +0200370
Derek Allard2067d1a2008-11-13 22:59:24 +0000371 // Is the upload path valid?
372 if ( ! $this->validate_upload_path())
373 {
374 // errors will already be set by validate_upload_path() so just return FALSE
375 return FALSE;
376 }
377
378 // Was the file able to be uploaded? If not, determine the reason why.
379 if ( ! is_uploaded_file($_FILES[$field]['tmp_name']))
380 {
381 $error = ( ! isset($_FILES[$field]['error'])) ? 4 : $_FILES[$field]['error'];
382
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300383 switch ($error)
Derek Allard2067d1a2008-11-13 22:59:24 +0000384 {
Darren Benneye123a602013-03-30 18:17:54 +0000385 case UPLOAD_ERR_INI_SIZE:
Derek Allard2067d1a2008-11-13 22:59:24 +0000386 $this->set_error('upload_file_exceeds_limit');
387 break;
Darren Benneye123a602013-03-30 18:17:54 +0000388 case UPLOAD_ERR_FORM_SIZE:
Derek Allard2067d1a2008-11-13 22:59:24 +0000389 $this->set_error('upload_file_exceeds_form_limit');
390 break;
Darren Benneye123a602013-03-30 18:17:54 +0000391 case UPLOAD_ERR_PARTIAL:
Barry Mienydd671972010-10-04 16:33:58 +0200392 $this->set_error('upload_file_partial');
Derek Allard2067d1a2008-11-13 22:59:24 +0000393 break;
Darren Benneye123a602013-03-30 18:17:54 +0000394 case UPLOAD_ERR_NO_FILE:
Barry Mienydd671972010-10-04 16:33:58 +0200395 $this->set_error('upload_no_file_selected');
Derek Allard2067d1a2008-11-13 22:59:24 +0000396 break;
Darren Benneye123a602013-03-30 18:17:54 +0000397 case UPLOAD_ERR_NO_TMP_DIR:
Derek Allard2067d1a2008-11-13 22:59:24 +0000398 $this->set_error('upload_no_temp_directory');
399 break;
Darren Benneye123a602013-03-30 18:17:54 +0000400 case UPLOAD_ERR_CANT_WRITE:
Derek Allard2067d1a2008-11-13 22:59:24 +0000401 $this->set_error('upload_unable_to_write_file');
402 break;
Darren Benneye123a602013-03-30 18:17:54 +0000403 case UPLOAD_ERR_EXTENSION:
Derek Allard2067d1a2008-11-13 22:59:24 +0000404 $this->set_error('upload_stopped_by_extension');
405 break;
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300406 default:
407 $this->set_error('upload_no_file_selected');
Derek Allard2067d1a2008-11-13 22:59:24 +0000408 break;
409 }
410
411 return FALSE;
412 }
413
414 // Set the uploaded data as class variables
Barry Mienydd671972010-10-04 16:33:58 +0200415 $this->file_temp = $_FILES[$field]['tmp_name'];
416 $this->file_size = $_FILES[$field]['size'];
Andrey Andreevd60e7002012-06-17 00:03:03 +0300417
418 // Skip MIME type detection?
419 if ($this->detect_mime !== FALSE)
420 {
421 $this->_file_mime_type($_FILES[$field]);
422 }
423
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300424 $this->file_type = preg_replace('/^(.+?);.*$/', '\\1', $this->file_type);
Derek Jones616fb022010-04-22 16:52:18 -0500425 $this->file_type = strtolower(trim(stripslashes($this->file_type), '"'));
Derek Jonese9d723f2010-07-12 10:10:59 -0500426 $this->file_name = $this->_prep_filename($_FILES[$field]['name']);
427 $this->file_ext = $this->get_extension($this->file_name);
428 $this->client_name = $this->file_name;
Barry Mienydd671972010-10-04 16:33:58 +0200429
Derek Allard2067d1a2008-11-13 22:59:24 +0000430 // Is the file type allowed to be uploaded?
431 if ( ! $this->is_allowed_filetype())
432 {
433 $this->set_error('upload_invalid_filetype');
434 return FALSE;
435 }
436
Derek Jonese9d723f2010-07-12 10:10:59 -0500437 // if we're overriding, let's now make sure the new name and type is allowed
Alex Bilbied261b1e2012-06-02 11:12:16 +0100438 if ($this->_file_name_override !== '')
Derek Jonese9d723f2010-07-12 10:10:59 -0500439 {
440 $this->file_name = $this->_prep_filename($this->_file_name_override);
Phil Sturgeon1e74da22010-12-15 10:45:06 +0000441
442 // If no extension was provided in the file_name config item, use the uploaded one
Pascal Kriete14287f32011-02-14 13:39:34 -0500443 if (strpos($this->_file_name_override, '.') === FALSE)
Phil Sturgeon1e74da22010-12-15 10:45:06 +0000444 {
445 $this->file_name .= $this->file_ext;
446 }
Phil Sturgeon1e74da22010-12-15 10:45:06 +0000447 else
448 {
vlakoff35672462013-02-15 01:36:04 +0100449 // An extension was provided, let's have it!
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300450 $this->file_ext = $this->get_extension($this->_file_name_override);
Phil Sturgeon1e74da22010-12-15 10:45:06 +0000451 }
Derek Jonese9d723f2010-07-12 10:10:59 -0500452
453 if ( ! $this->is_allowed_filetype(TRUE))
454 {
455 $this->set_error('upload_invalid_filetype');
Barry Mienydd671972010-10-04 16:33:58 +0200456 return FALSE;
Derek Jonese9d723f2010-07-12 10:10:59 -0500457 }
458 }
Barry Mienydd671972010-10-04 16:33:58 +0200459
Derek Jonese9d723f2010-07-12 10:10:59 -0500460 // Convert the file size to kilobytes
461 if ($this->file_size > 0)
462 {
463 $this->file_size = round($this->file_size/1024, 2);
464 }
465
Derek Allard2067d1a2008-11-13 22:59:24 +0000466 // Is the file size within the allowed maximum?
467 if ( ! $this->is_allowed_filesize())
468 {
469 $this->set_error('upload_invalid_filesize');
470 return FALSE;
471 }
472
473 // Are the image dimensions within the allowed size?
vlakoffc941d852013-08-06 14:44:40 +0200474 // Note: This can fail if the server has an open_basedir restriction.
Derek Allard2067d1a2008-11-13 22:59:24 +0000475 if ( ! $this->is_allowed_dimensions())
476 {
477 $this->set_error('upload_invalid_dimensions');
478 return FALSE;
479 }
480
481 // Sanitize the file name for security
Andrey Andreev7e559772013-01-29 15:38:33 +0200482 $CI =& get_instance();
483 $this->file_name = $CI->security->sanitize_filename($this->file_name);
Barry Mienydd671972010-10-04 16:33:58 +0200484
Derek Allard2067d1a2008-11-13 22:59:24 +0000485 // Truncate the file name if it's too long
486 if ($this->max_filename > 0)
487 {
488 $this->file_name = $this->limit_filename_length($this->file_name, $this->max_filename);
489 }
490
491 // Remove white spaces in the name
Alex Bilbied261b1e2012-06-02 11:12:16 +0100492 if ($this->remove_spaces === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000493 {
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300494 $this->file_name = preg_replace('/\s+/', '_', $this->file_name);
Derek Allard2067d1a2008-11-13 22:59:24 +0000495 }
496
497 /*
498 * Validate the file name
499 * This function appends an number onto the end of
500 * the file if one with the same name already exists.
501 * If it returns false there was a problem.
502 */
503 $this->orig_name = $this->file_name;
504
Alex Bilbied261b1e2012-06-02 11:12:16 +0100505 if ($this->overwrite === FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000506 {
507 $this->file_name = $this->set_filename($this->upload_path, $this->file_name);
Barry Mienydd671972010-10-04 16:33:58 +0200508
Derek Allard2067d1a2008-11-13 22:59:24 +0000509 if ($this->file_name === FALSE)
510 {
511 return FALSE;
512 }
513 }
514
515 /*
Derek Jonese9d723f2010-07-12 10:10:59 -0500516 * Run the file through the XSS hacking filter
517 * This helps prevent malicious code from being
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300518 * embedded within a file. Scripts can easily
Derek Jonese9d723f2010-07-12 10:10:59 -0500519 * be disguised as images or other file types.
520 */
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300521 if ($this->xss_clean && $this->do_xss_clean() === FALSE)
Derek Jonese9d723f2010-07-12 10:10:59 -0500522 {
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300523 $this->set_error('upload_unable_to_write_file');
524 return FALSE;
Derek Jonese9d723f2010-07-12 10:10:59 -0500525 }
526
527 /*
Derek Allard2067d1a2008-11-13 22:59:24 +0000528 * Move the file to the final destination
529 * To deal with different server configurations
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300530 * we'll attempt to use copy() first. If that fails
531 * we'll use move_uploaded_file(). One of the two should
Derek Allard2067d1a2008-11-13 22:59:24 +0000532 * reliably work in most environments
533 */
534 if ( ! @copy($this->file_temp, $this->upload_path.$this->file_name))
535 {
536 if ( ! @move_uploaded_file($this->file_temp, $this->upload_path.$this->file_name))
537 {
Barry Mienydd671972010-10-04 16:33:58 +0200538 $this->set_error('upload_destination_error');
539 return FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000540 }
541 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000542
543 /*
544 * Set the finalized image dimensions
545 * This sets the image width/height (assuming the
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300546 * file was an image). We use this information
Derek Allard2067d1a2008-11-13 22:59:24 +0000547 * in the "data" function.
548 */
549 $this->set_image_properties($this->upload_path.$this->file_name);
550
551 return TRUE;
552 }
Barry Mienydd671972010-10-04 16:33:58 +0200553
Derek Allard2067d1a2008-11-13 22:59:24 +0000554 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200555
Derek Allard2067d1a2008-11-13 22:59:24 +0000556 /**
557 * Finalized Data Array
Barry Mienydd671972010-10-04 16:33:58 +0200558 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000559 * Returns an associative array containing all of the information
560 * related to the upload, allowing the developer easy access in one array.
561 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200562 * @param string $index
Michiel Vugteveen0ee287e2012-06-11 10:38:14 +0200563 * @return mixed
Barry Mienydd671972010-10-04 16:33:58 +0200564 */
Michiel Vugteveendca9f232012-06-11 09:17:14 +0200565 public function data($index = NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +0000566 {
Michiel Vugteveendca9f232012-06-11 09:17:14 +0200567 $data = array(
Michiel Vugteveen3a7fb042012-06-11 09:29:16 +0200568 'file_name' => $this->file_name,
569 'file_type' => $this->file_type,
570 'file_path' => $this->upload_path,
571 'full_path' => $this->upload_path.$this->file_name,
572 'raw_name' => str_replace($this->file_ext, '', $this->file_name),
573 'orig_name' => $this->orig_name,
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300574 'client_name' => $this->client_name,
Michiel Vugteveen3a7fb042012-06-11 09:29:16 +0200575 'file_ext' => $this->file_ext,
576 'file_size' => $this->file_size,
577 'is_image' => $this->is_image(),
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300578 'image_width' => $this->image_width,
579 'image_height' => $this->image_height,
580 'image_type' => $this->image_type,
581 'image_size_str' => $this->image_size_str,
582 );
Michiel Vugteveendca9f232012-06-11 09:17:14 +0200583
Michiel Vugteveen46a04292012-06-11 10:37:52 +0200584 if ( ! empty($index))
Michiel Vugteveendca9f232012-06-11 09:17:14 +0200585 {
Michiel Vugteveen46a04292012-06-11 10:37:52 +0200586 return isset($data[$index]) ? $data[$index] : NULL;
Michiel Vugteveendca9f232012-06-11 09:17:14 +0200587 }
588
Michiel Vugteveen46a04292012-06-11 10:37:52 +0200589 return $data;
Derek Allard2067d1a2008-11-13 22:59:24 +0000590 }
Barry Mienydd671972010-10-04 16:33:58 +0200591
Derek Allard2067d1a2008-11-13 22:59:24 +0000592 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200593
Derek Allard2067d1a2008-11-13 22:59:24 +0000594 /**
595 * Set Upload Path
596 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200597 * @param string $path
Derek Allard2067d1a2008-11-13 22:59:24 +0000598 * @return void
Barry Mienydd671972010-10-04 16:33:58 +0200599 */
Greg Aker58fdee82010-11-10 15:07:09 -0600600 public function set_upload_path($path)
Derek Allard2067d1a2008-11-13 22:59:24 +0000601 {
602 // Make sure it has a trailing slash
603 $this->upload_path = rtrim($path, '/').'/';
604 }
Barry Mienydd671972010-10-04 16:33:58 +0200605
Derek Allard2067d1a2008-11-13 22:59:24 +0000606 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200607
Derek Allard2067d1a2008-11-13 22:59:24 +0000608 /**
609 * Set the file name
610 *
611 * This function takes a filename/path as input and looks for the
612 * existence of a file with the same name. If found, it will append a
613 * number to the end of the filename to avoid overwriting a pre-existing file.
614 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200615 * @param string $path
616 * @param string $filename
Derek Allard2067d1a2008-11-13 22:59:24 +0000617 * @return string
Barry Mienydd671972010-10-04 16:33:58 +0200618 */
Greg Aker58fdee82010-11-10 15:07:09 -0600619 public function set_filename($path, $filename)
Derek Allard2067d1a2008-11-13 22:59:24 +0000620 {
Alex Bilbied261b1e2012-06-02 11:12:16 +0100621 if ($this->encrypt_name === TRUE)
Barry Mienydd671972010-10-04 16:33:58 +0200622 {
Barry Mienydd671972010-10-04 16:33:58 +0200623 $filename = md5(uniqid(mt_rand())).$this->file_ext;
Derek Allard2067d1a2008-11-13 22:59:24 +0000624 }
Barry Mienydd671972010-10-04 16:33:58 +0200625
Derek Allard2067d1a2008-11-13 22:59:24 +0000626 if ( ! file_exists($path.$filename))
627 {
628 return $filename;
629 }
Barry Mienydd671972010-10-04 16:33:58 +0200630
Derek Allard2067d1a2008-11-13 22:59:24 +0000631 $filename = str_replace($this->file_ext, '', $filename);
Barry Mienydd671972010-10-04 16:33:58 +0200632
Derek Allard2067d1a2008-11-13 22:59:24 +0000633 $new_filename = '';
Adam Jackettccbbea12011-08-21 16:19:11 -0400634 for ($i = 1; $i < $this->max_filename_increment; $i++)
Barry Mienydd671972010-10-04 16:33:58 +0200635 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000636 if ( ! file_exists($path.$filename.$i.$this->file_ext))
637 {
638 $new_filename = $filename.$i.$this->file_ext;
639 break;
640 }
641 }
642
Alex Bilbied261b1e2012-06-02 11:12:16 +0100643 if ($new_filename === '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000644 {
645 $this->set_error('upload_bad_filename');
646 return FALSE;
647 }
648 else
649 {
650 return $new_filename;
651 }
652 }
Barry Mienydd671972010-10-04 16:33:58 +0200653
Derek Allard2067d1a2008-11-13 22:59:24 +0000654 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200655
Derek Allard2067d1a2008-11-13 22:59:24 +0000656 /**
657 * Set Maximum File Size
658 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200659 * @param int $n
Derek Allard2067d1a2008-11-13 22:59:24 +0000660 * @return void
Barry Mienydd671972010-10-04 16:33:58 +0200661 */
Greg Aker58fdee82010-11-10 15:07:09 -0600662 public function set_max_filesize($n)
Derek Allard2067d1a2008-11-13 22:59:24 +0000663 {
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300664 $this->max_size = ((int) $n < 0) ? 0 : (int) $n;
Derek Allard2067d1a2008-11-13 22:59:24 +0000665 }
Barry Mienydd671972010-10-04 16:33:58 +0200666
Derek Allard2067d1a2008-11-13 22:59:24 +0000667 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200668
Derek Allard2067d1a2008-11-13 22:59:24 +0000669 /**
670 * Set Maximum File Name Length
671 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200672 * @param int $n
Derek Allard2067d1a2008-11-13 22:59:24 +0000673 * @return void
Barry Mienydd671972010-10-04 16:33:58 +0200674 */
Greg Aker58fdee82010-11-10 15:07:09 -0600675 public function set_max_filename($n)
Derek Allard2067d1a2008-11-13 22:59:24 +0000676 {
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300677 $this->max_filename = ((int) $n < 0) ? 0 : (int) $n;
Derek Allard2067d1a2008-11-13 22:59:24 +0000678 }
679
680 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200681
Derek Allard2067d1a2008-11-13 22:59:24 +0000682 /**
683 * Set Maximum Image Width
684 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200685 * @param int $n
Derek Allard2067d1a2008-11-13 22:59:24 +0000686 * @return void
Barry Mienydd671972010-10-04 16:33:58 +0200687 */
Greg Aker58fdee82010-11-10 15:07:09 -0600688 public function set_max_width($n)
Derek Allard2067d1a2008-11-13 22:59:24 +0000689 {
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300690 $this->max_width = ((int) $n < 0) ? 0 : (int) $n;
Derek Allard2067d1a2008-11-13 22:59:24 +0000691 }
Barry Mienydd671972010-10-04 16:33:58 +0200692
Derek Allard2067d1a2008-11-13 22:59:24 +0000693 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200694
Derek Allard2067d1a2008-11-13 22:59:24 +0000695 /**
696 * Set Maximum Image Height
697 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200698 * @param int $n
Derek Allard2067d1a2008-11-13 22:59:24 +0000699 * @return void
Barry Mienydd671972010-10-04 16:33:58 +0200700 */
Greg Aker58fdee82010-11-10 15:07:09 -0600701 public function set_max_height($n)
Derek Allard2067d1a2008-11-13 22:59:24 +0000702 {
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300703 $this->max_height = ((int) $n < 0) ? 0 : (int) $n;
Derek Allard2067d1a2008-11-13 22:59:24 +0000704 }
Barry Mienydd671972010-10-04 16:33:58 +0200705
Derek Allard2067d1a2008-11-13 22:59:24 +0000706 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200707
Derek Allard2067d1a2008-11-13 22:59:24 +0000708 /**
Andrey Andreev05aa2d62012-12-03 16:06:55 +0200709 * Set minimum image width
710 *
711 * @param int $n
712 * @return void
713 */
714 public function set_min_width($n)
715 {
716 $this->min_width = ((int) $n < 0) ? 0 : (int) $n;
717 }
718
719 // --------------------------------------------------------------------
720
721 /**
722 * Set minimum image height
723 *
724 * @param int $n
725 * @return void
726 */
727 public function set_min_height($n)
728 {
729 $this->min_height = ((int) $n < 0) ? 0 : (int) $n;
730 }
731
732 // --------------------------------------------------------------------
733
734 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000735 * Set Allowed File Types
736 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200737 * @param string $types
Derek Allard2067d1a2008-11-13 22:59:24 +0000738 * @return void
Barry Mienydd671972010-10-04 16:33:58 +0200739 */
Greg Aker58fdee82010-11-10 15:07:09 -0600740 public function set_allowed_types($types)
Derek Allard2067d1a2008-11-13 22:59:24 +0000741 {
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300742 if ( ! is_array($types) && $types === '*')
Derek Jonese12f64e2010-03-02 22:55:08 -0600743 {
744 $this->allowed_types = '*';
745 return;
746 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000747 $this->allowed_types = explode('|', $types);
748 }
Barry Mienydd671972010-10-04 16:33:58 +0200749
Derek Allard2067d1a2008-11-13 22:59:24 +0000750 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200751
Derek Allard2067d1a2008-11-13 22:59:24 +0000752 /**
753 * Set Image Properties
754 *
755 * Uses GD to determine the width/height/type of image
756 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200757 * @param string $path
Derek Allard2067d1a2008-11-13 22:59:24 +0000758 * @return void
Barry Mienydd671972010-10-04 16:33:58 +0200759 */
Greg Aker58fdee82010-11-10 15:07:09 -0600760 public function set_image_properties($path = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000761 {
762 if ( ! $this->is_image())
763 {
764 return;
765 }
766
767 if (function_exists('getimagesize'))
768 {
769 if (FALSE !== ($D = @getimagesize($path)))
Barry Mienydd671972010-10-04 16:33:58 +0200770 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000771 $types = array(1 => 'gif', 2 => 'jpeg', 3 => 'png');
772
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300773 $this->image_width = $D[0];
774 $this->image_height = $D[1];
775 $this->image_type = isset($types[$D[2]]) ? $types[$D[2]] : 'unknown';
776 $this->image_size_str = $D[3]; // string containing height and width
Derek Allard2067d1a2008-11-13 22:59:24 +0000777 }
778 }
779 }
Barry Mienydd671972010-10-04 16:33:58 +0200780
Derek Allard2067d1a2008-11-13 22:59:24 +0000781 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200782
Derek Allard2067d1a2008-11-13 22:59:24 +0000783 /**
784 * Set XSS Clean
785 *
786 * Enables the XSS flag so that the file that was uploaded
787 * will be run through the XSS filter.
788 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200789 * @param bool $flag
Derek Allard2067d1a2008-11-13 22:59:24 +0000790 * @return void
791 */
Greg Aker58fdee82010-11-10 15:07:09 -0600792 public function set_xss_clean($flag = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000793 {
Alex Bilbied261b1e2012-06-02 11:12:16 +0100794 $this->xss_clean = ($flag === TRUE);
Derek Allard2067d1a2008-11-13 22:59:24 +0000795 }
Barry Mienydd671972010-10-04 16:33:58 +0200796
Derek Allard2067d1a2008-11-13 22:59:24 +0000797 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200798
Derek Allard2067d1a2008-11-13 22:59:24 +0000799 /**
800 * Validate the image
801 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000802 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +0200803 */
Greg Aker58fdee82010-11-10 15:07:09 -0600804 public function is_image()
Derek Allard2067d1a2008-11-13 22:59:24 +0000805 {
806 // IE will sometimes return odd mime-types during upload, so here we just standardize all
807 // jpegs or pngs to the same file type.
808
Derek Jones4b9c6292011-07-01 17:40:48 -0500809 $png_mimes = array('image/x-png');
Derek Allard2067d1a2008-11-13 22:59:24 +0000810 $jpeg_mimes = array('image/jpg', 'image/jpe', 'image/jpeg', 'image/pjpeg');
Barry Mienydd671972010-10-04 16:33:58 +0200811
Derek Allard2067d1a2008-11-13 22:59:24 +0000812 if (in_array($this->file_type, $png_mimes))
813 {
814 $this->file_type = 'image/png';
815 }
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300816 elseif (in_array($this->file_type, $jpeg_mimes))
Derek Allard2067d1a2008-11-13 22:59:24 +0000817 {
818 $this->file_type = 'image/jpeg';
819 }
820
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300821 $img_mimes = array('image/gif', 'image/jpeg', 'image/png');
Derek Allard2067d1a2008-11-13 22:59:24 +0000822
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300823 return in_array($this->file_type, $img_mimes, TRUE);
Derek Allard2067d1a2008-11-13 22:59:24 +0000824 }
Barry Mienydd671972010-10-04 16:33:58 +0200825
Derek Allard2067d1a2008-11-13 22:59:24 +0000826 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200827
Derek Allard2067d1a2008-11-13 22:59:24 +0000828 /**
829 * Verify that the filetype is allowed
830 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200831 * @param bool $ignore_mime
Derek Allard2067d1a2008-11-13 22:59:24 +0000832 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +0200833 */
Greg Aker58fdee82010-11-10 15:07:09 -0600834 public function is_allowed_filetype($ignore_mime = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000835 {
Andrey Andreev6ca407e2012-03-01 15:33:21 +0200836 if ($this->allowed_types === '*')
Derek Jonese12f64e2010-03-02 22:55:08 -0600837 {
838 return TRUE;
839 }
Barry Mienydd671972010-10-04 16:33:58 +0200840
Andrey Andreev6ca407e2012-03-01 15:33:21 +0200841 if ( ! is_array($this->allowed_types) OR count($this->allowed_types) === 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000842 {
843 $this->set_error('upload_no_file_types');
844 return FALSE;
845 }
Barry Mienydd671972010-10-04 16:33:58 +0200846
Derek Jonese9d723f2010-07-12 10:10:59 -0500847 $ext = strtolower(ltrim($this->file_ext, '.'));
Barry Mienydd671972010-10-04 16:33:58 +0200848
Derek Jonese9d723f2010-07-12 10:10:59 -0500849 if ( ! in_array($ext, $this->allowed_types))
Derek Allard2067d1a2008-11-13 22:59:24 +0000850 {
Derek Jonese9d723f2010-07-12 10:10:59 -0500851 return FALSE;
852 }
Derek Jonesafa282f2009-02-10 17:11:52 +0000853
Barry Mienydd671972010-10-04 16:33:58 +0200854 // Images get some additional checks
Derek Jonese9d723f2010-07-12 10:10:59 -0500855 $image_types = array('gif', 'jpg', 'jpeg', 'png', 'jpe');
Barry Mienydd671972010-10-04 16:33:58 +0200856
Andrey Andreev6ca407e2012-03-01 15:33:21 +0200857 if (in_array($ext, $image_types) && @getimagesize($this->file_temp) === FALSE)
Derek Jonese9d723f2010-07-12 10:10:59 -0500858 {
Andrey Andreev6ca407e2012-03-01 15:33:21 +0200859 return FALSE;
Derek Jonese9d723f2010-07-12 10:10:59 -0500860 }
Barry Mienydd671972010-10-04 16:33:58 +0200861
Derek Jonese9d723f2010-07-12 10:10:59 -0500862 if ($ignore_mime === TRUE)
863 {
864 return TRUE;
865 }
Barry Mienydd671972010-10-04 16:33:58 +0200866
Derek Jonese9d723f2010-07-12 10:10:59 -0500867 $mime = $this->mimes_types($ext);
Barry Mienydd671972010-10-04 16:33:58 +0200868
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300869 if (is_array($mime) && in_array($this->file_type, $mime, TRUE))
Derek Jonese9d723f2010-07-12 10:10:59 -0500870 {
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300871 return TRUE;
Derek Jonese9d723f2010-07-12 10:10:59 -0500872 }
Andrey Andreev6ca407e2012-03-01 15:33:21 +0200873 elseif ($mime === $this->file_type)
Derek Jonese9d723f2010-07-12 10:10:59 -0500874 {
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300875 return TRUE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000876 }
Barry Mienydd671972010-10-04 16:33:58 +0200877
Derek Allard2067d1a2008-11-13 22:59:24 +0000878 return FALSE;
879 }
Barry Mienydd671972010-10-04 16:33:58 +0200880
Derek Allard2067d1a2008-11-13 22:59:24 +0000881 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200882
Derek Allard2067d1a2008-11-13 22:59:24 +0000883 /**
884 * Verify that the file is within the allowed size
885 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000886 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +0200887 */
Greg Aker58fdee82010-11-10 15:07:09 -0600888 public function is_allowed_filesize()
Derek Allard2067d1a2008-11-13 22:59:24 +0000889 {
Alex Bilbied261b1e2012-06-02 11:12:16 +0100890 return ($this->max_size === 0 OR $this->max_size > $this->file_size);
Derek Allard2067d1a2008-11-13 22:59:24 +0000891 }
Barry Mienydd671972010-10-04 16:33:58 +0200892
Derek Allard2067d1a2008-11-13 22:59:24 +0000893 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200894
Derek Allard2067d1a2008-11-13 22:59:24 +0000895 /**
896 * Verify that the image is within the allowed width/height
897 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000898 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +0200899 */
Greg Aker58fdee82010-11-10 15:07:09 -0600900 public function is_allowed_dimensions()
Derek Allard2067d1a2008-11-13 22:59:24 +0000901 {
902 if ( ! $this->is_image())
903 {
904 return TRUE;
905 }
906
907 if (function_exists('getimagesize'))
908 {
909 $D = @getimagesize($this->file_temp);
910
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300911 if ($this->max_width > 0 && $D[0] > $this->max_width)
Derek Allard2067d1a2008-11-13 22:59:24 +0000912 {
913 return FALSE;
914 }
915
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300916 if ($this->max_height > 0 && $D[1] > $this->max_height)
Derek Allard2067d1a2008-11-13 22:59:24 +0000917 {
918 return FALSE;
919 }
Andrey Andreev05aa2d62012-12-03 16:06:55 +0200920
921 if ($this->min_width > 0 && $D[0] < $this->min_width)
922 {
923 return FALSE;
924 }
925
926 if ($this->min_height > 0 && $D[1] < $this->min_height)
927 {
928 return FALSE;
929 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000930 }
931
932 return TRUE;
933 }
Barry Mienydd671972010-10-04 16:33:58 +0200934
Derek Allard2067d1a2008-11-13 22:59:24 +0000935 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200936
Derek Allard2067d1a2008-11-13 22:59:24 +0000937 /**
938 * Validate Upload Path
939 *
940 * Verifies that it is a valid upload path with proper permissions.
941 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000942 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +0200943 */
Greg Aker58fdee82010-11-10 15:07:09 -0600944 public function validate_upload_path()
Derek Allard2067d1a2008-11-13 22:59:24 +0000945 {
Alex Bilbied261b1e2012-06-02 11:12:16 +0100946 if ($this->upload_path === '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000947 {
948 $this->set_error('upload_no_filepath');
949 return FALSE;
950 }
Barry Mienydd671972010-10-04 16:33:58 +0200951
Andrey Andreevc839d282012-06-07 14:35:27 +0300952 if (@realpath($this->upload_path) !== FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000953 {
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300954 $this->upload_path = str_replace('\\', '/', realpath($this->upload_path));
Derek Allard2067d1a2008-11-13 22:59:24 +0000955 }
956
957 if ( ! @is_dir($this->upload_path))
958 {
959 $this->set_error('upload_no_filepath');
960 return FALSE;
961 }
962
963 if ( ! is_really_writable($this->upload_path))
964 {
965 $this->set_error('upload_not_writable');
966 return FALSE;
967 }
968
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300969 $this->upload_path = preg_replace('/(.+?)\/*$/', '\\1/', $this->upload_path);
Derek Allard2067d1a2008-11-13 22:59:24 +0000970 return TRUE;
971 }
Barry Mienydd671972010-10-04 16:33:58 +0200972
Derek Allard2067d1a2008-11-13 22:59:24 +0000973 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200974
Derek Allard2067d1a2008-11-13 22:59:24 +0000975 /**
976 * Extract the file extension
977 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200978 * @param string $filename
Derek Allard2067d1a2008-11-13 22:59:24 +0000979 * @return string
Barry Mienydd671972010-10-04 16:33:58 +0200980 */
Greg Aker58fdee82010-11-10 15:07:09 -0600981 public function get_extension($filename)
Derek Allard2067d1a2008-11-13 22:59:24 +0000982 {
983 $x = explode('.', $filename);
Adrianf496d132013-06-24 15:56:45 +0200984
Adrian74a228b2013-06-25 12:09:22 +0200985 if (count($x) === 1)
986 {
987 return '';
988 }
989
990 $ext = ($this->file_ext_tolower) ? strtolower(end($x)) : end($x);
991 return '.'.$ext;
Barry Mienydd671972010-10-04 16:33:58 +0200992 }
993
Derek Allard2067d1a2008-11-13 22:59:24 +0000994 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200995
Derek Allard2067d1a2008-11-13 22:59:24 +0000996 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000997 * Limit the File Name Length
998 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +0300999 * @param string $filename
1000 * @param int $length
Derek Allard2067d1a2008-11-13 22:59:24 +00001001 * @return string
Barry Mienydd671972010-10-04 16:33:58 +02001002 */
Greg Aker58fdee82010-11-10 15:07:09 -06001003 public function limit_filename_length($filename, $length)
Derek Allard2067d1a2008-11-13 22:59:24 +00001004 {
1005 if (strlen($filename) < $length)
1006 {
1007 return $filename;
1008 }
Barry Mienydd671972010-10-04 16:33:58 +02001009
Derek Allard2067d1a2008-11-13 22:59:24 +00001010 $ext = '';
1011 if (strpos($filename, '.') !== FALSE)
1012 {
1013 $parts = explode('.', $filename);
1014 $ext = '.'.array_pop($parts);
1015 $filename = implode('.', $parts);
1016 }
Barry Mienydd671972010-10-04 16:33:58 +02001017
Derek Allard2067d1a2008-11-13 22:59:24 +00001018 return substr($filename, 0, ($length - strlen($ext))).$ext;
1019 }
1020
1021 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +02001022
Derek Allard2067d1a2008-11-13 22:59:24 +00001023 /**
1024 * Runs the file through the XSS clean function
1025 *
1026 * This prevents people from embedding malicious code in their files.
1027 * I'm not sure that it won't negatively affect certain files in unexpected ways,
1028 * but so far I haven't found that it causes trouble.
1029 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001030 * @return void
Barry Mienydd671972010-10-04 16:33:58 +02001031 */
Greg Aker58fdee82010-11-10 15:07:09 -06001032 public function do_xss_clean()
Barry Mienydd671972010-10-04 16:33:58 +02001033 {
Derek Jonese9d723f2010-07-12 10:10:59 -05001034 $file = $this->file_temp;
Barry Mienydd671972010-10-04 16:33:58 +02001035
Andrey Andreev5036c9c2012-06-04 15:34:56 +03001036 if (filesize($file) == 0)
Derek Allard2067d1a2008-11-13 22:59:24 +00001037 {
1038 return FALSE;
1039 }
Barry Mienydd671972010-10-04 16:33:58 +02001040
Andrey Andreevc839d282012-06-07 14:35:27 +03001041 if (memory_get_usage() && ($memory_limit = ini_get('memory_limit')))
Greg Akerf82e51c2010-04-14 19:33:50 -05001042 {
Andrey Andreevc839d282012-06-07 14:35:27 +03001043 $memory_limit *= 1024 * 1024;
Barry Mienydd671972010-10-04 16:33:58 +02001044
Greg Akerc78a2592010-06-09 11:45:32 -05001045 // There was a bug/behavioural change in PHP 5.2, where numbers over one million get output
Andrey Andreev8e6f7a92012-03-26 20:13:00 +03001046 // into scientific notation. number_format() ensures this number is an integer
Greg Akerc78a2592010-06-09 11:45:32 -05001047 // http://bugs.php.net/bug.php?id=43053
Barry Mienydd671972010-10-04 16:33:58 +02001048
Andrey Andreevc839d282012-06-07 14:35:27 +03001049 $memory_limit = number_format(ceil(filesize($file) + $memory_limit), 0, '.', '');
Barry Mienydd671972010-10-04 16:33:58 +02001050
Andrey Andreevc839d282012-06-07 14:35:27 +03001051 ini_set('memory_limit', $memory_limit); // When an integer is used, the value is measured in bytes. - PHP.net
Greg Akerf82e51c2010-04-14 19:33:50 -05001052 }
1053
1054 // If the file being uploaded is an image, then we should have no problem with XSS attacks (in theory), but
1055 // IE can be fooled into mime-type detecting a malformed image as an html file, thus executing an XSS attack on anyone
Andrey Andreev8e6f7a92012-03-26 20:13:00 +03001056 // using IE who looks at the image. It does this by inspecting the first 255 bytes of an image. To get around this
1057 // CI will itself look at the first 255 bytes of an image to determine its relative safety. This can save a lot of
Barry Mienydd671972010-10-04 16:33:58 +02001058 // processor power and time if it is actually a clean image, as it will be in nearly all instances _except_ an
Greg Akerf82e51c2010-04-14 19:33:50 -05001059 // attempted XSS attack.
1060
1061 if (function_exists('getimagesize') && @getimagesize($file) !== FALSE)
1062 {
Barry Mienydd671972010-10-04 16:33:58 +02001063 if (($file = @fopen($file, 'rb')) === FALSE) // "b" to force binary
1064 {
Greg Akerf82e51c2010-04-14 19:33:50 -05001065 return FALSE; // Couldn't open the file, return FALSE
Barry Mienydd671972010-10-04 16:33:58 +02001066 }
Greg Akerf82e51c2010-04-14 19:33:50 -05001067
Barry Mienydd671972010-10-04 16:33:58 +02001068 $opening_bytes = fread($file, 256);
1069 fclose($file);
Greg Akerf82e51c2010-04-14 19:33:50 -05001070
1071 // These are known to throw IE into mime-type detection chaos
1072 // <a, <body, <head, <html, <img, <plaintext, <pre, <script, <table, <title
1073 // title is basically just in SVG, but we filter it anyhow
1074
vlakoff35672462013-02-15 01:36:04 +01001075 // if it's an image or no "triggers" detected in the first 256 bytes - we're good
Andrey Andreevc839d282012-06-07 14:35:27 +03001076 return ! preg_match('/<(a|body|head|html|img|plaintext|pre|script|table|title)[\s>]/i', $opening_bytes);
Greg Akerf82e51c2010-04-14 19:33:50 -05001077 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001078
1079 if (($data = @file_get_contents($file)) === FALSE)
1080 {
1081 return FALSE;
1082 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001083
Greg Akerf82e51c2010-04-14 19:33:50 -05001084 $CI =& get_instance();
Greg Akerf82e51c2010-04-14 19:33:50 -05001085 return $CI->security->xss_clean($data, TRUE);
Derek Allard2067d1a2008-11-13 22:59:24 +00001086 }
Barry Mienydd671972010-10-04 16:33:58 +02001087
Derek Allard2067d1a2008-11-13 22:59:24 +00001088 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +02001089
Derek Allard2067d1a2008-11-13 22:59:24 +00001090 /**
1091 * Set an error message
1092 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +02001093 * @param string $msg
Derek Allard2067d1a2008-11-13 22:59:24 +00001094 * @return void
Barry Mienydd671972010-10-04 16:33:58 +02001095 */
Greg Aker58fdee82010-11-10 15:07:09 -06001096 public function set_error($msg)
Derek Allard2067d1a2008-11-13 22:59:24 +00001097 {
Barry Mienydd671972010-10-04 16:33:58 +02001098 $CI =& get_instance();
Derek Allard2067d1a2008-11-13 22:59:24 +00001099 $CI->lang->load('upload');
Barry Mienydd671972010-10-04 16:33:58 +02001100
Darren Benney4a8d1902013-03-30 20:07:49 +00001101 if ( ! is_array($msg))
Derek Allard2067d1a2008-11-13 22:59:24 +00001102 {
Darren Benney38d5f4b2013-03-30 21:00:38 +00001103 $msg = array($msg);
Derek Allard2067d1a2008-11-13 22:59:24 +00001104 }
Darren Benney4a8d1902013-03-30 20:07:49 +00001105
Darren Benney38d5f4b2013-03-30 21:00:38 +00001106 foreach ($msg as $val)
Derek Allard2067d1a2008-11-13 22:59:24 +00001107 {
Darren Benney38d5f4b2013-03-30 21:00:38 +00001108 $msg = ($CI->lang->line($val) === FALSE) ? $val : $CI->lang->line($val);
Derek Allard2067d1a2008-11-13 22:59:24 +00001109 $this->error_msg[] = $msg;
1110 log_message('error', $msg);
1111 }
1112 }
Barry Mienydd671972010-10-04 16:33:58 +02001113
Derek Allard2067d1a2008-11-13 22:59:24 +00001114 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +02001115
Derek Allard2067d1a2008-11-13 22:59:24 +00001116 /**
1117 * Display the error message
1118 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +02001119 * @param string $open
1120 * @param string $close
Derek Allard2067d1a2008-11-13 22:59:24 +00001121 * @return string
Barry Mienydd671972010-10-04 16:33:58 +02001122 */
Greg Aker58fdee82010-11-10 15:07:09 -06001123 public function display_errors($open = '<p>', $close = '</p>')
Derek Allard2067d1a2008-11-13 22:59:24 +00001124 {
Andrey Andreev8e6f7a92012-03-26 20:13:00 +03001125 return (count($this->error_msg) > 0) ? $open.implode($close.$open, $this->error_msg).$close : '';
Derek Allard2067d1a2008-11-13 22:59:24 +00001126 }
Barry Mienydd671972010-10-04 16:33:58 +02001127
Derek Allard2067d1a2008-11-13 22:59:24 +00001128 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +02001129
Derek Allard2067d1a2008-11-13 22:59:24 +00001130 /**
1131 * List of Mime Types
1132 *
Andrey Andreev8e6f7a92012-03-26 20:13:00 +03001133 * This is a list of mime types. We use it to validate
Derek Allard2067d1a2008-11-13 22:59:24 +00001134 * the "allowed types" set by the developer
1135 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +02001136 * @param string $mime
Derek Allard2067d1a2008-11-13 22:59:24 +00001137 * @return string
Barry Mienydd671972010-10-04 16:33:58 +02001138 */
Greg Aker58fdee82010-11-10 15:07:09 -06001139 public function mimes_types($mime)
Derek Allard2067d1a2008-11-13 22:59:24 +00001140 {
Andrey Andreev8e6f7a92012-03-26 20:13:00 +03001141 return isset($this->mimes[$mime]) ? $this->mimes[$mime] : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001142 }
1143
1144 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +02001145
Derek Allard2067d1a2008-11-13 22:59:24 +00001146 /**
1147 * Prep Filename
1148 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +02001149 * Prevents possible script execution from Apache's handling
1150 * of files' multiple extensions.
Derek Allard2067d1a2008-11-13 22:59:24 +00001151 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +02001152 * @link http://httpd.apache.org/docs/1.3/mod/mod_mime.html#multipleext
1153 *
1154 * @param string $filename
Derek Allard2067d1a2008-11-13 22:59:24 +00001155 * @return string
1156 */
Greg Aker58fdee82010-11-10 15:07:09 -06001157 protected function _prep_filename($filename)
Derek Allard2067d1a2008-11-13 22:59:24 +00001158 {
Andrey Andreev32c72122013-10-21 15:35:05 +03001159 if ($this->mod_mime_fix === FALSE OR $this->allowed_types === '*' OR strpos($filename, '.') === FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001160 {
1161 return $filename;
1162 }
Derek Allard616dab82009-02-16 15:44:32 +00001163
Derek Allard2067d1a2008-11-13 22:59:24 +00001164 $parts = explode('.', $filename);
1165 $ext = array_pop($parts);
1166 $filename = array_shift($parts);
Derek Allard616dab82009-02-16 15:44:32 +00001167
Derek Allard2067d1a2008-11-13 22:59:24 +00001168 foreach ($parts as $part)
1169 {
Derek Jonese9d723f2010-07-12 10:10:59 -05001170 if ( ! in_array(strtolower($part), $this->allowed_types) OR $this->mimes_types(strtolower($part)) === FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001171 {
1172 $filename .= '.'.$part.'_';
1173 }
1174 else
1175 {
1176 $filename .= '.'.$part;
1177 }
1178 }
Derek Allardd70b0642009-02-16 13:51:42 +00001179
Andrey Andreev8e6f7a92012-03-26 20:13:00 +03001180 return $filename.'.'.$ext;
Derek Allard2067d1a2008-11-13 22:59:24 +00001181 }
1182
1183 // --------------------------------------------------------------------
1184
Andrey Andreev3a3c9472011-09-24 14:25:33 +03001185 /**
1186 * File MIME type
1187 *
1188 * Detects the (actual) MIME type of the uploaded file, if possible.
1189 * The input array is expected to be $_FILES[$field]
1190 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +02001191 * @param array $file
Andrey Andreev3a3c9472011-09-24 14:25:33 +03001192 * @return void
1193 */
1194 protected function _file_mime_type($file)
1195 {
Andrey Andreeva49e3812011-12-09 13:05:22 +02001196 // We'll need this to validate the MIME info string (e.g. text/plain; charset=us-ascii)
Andrey Andreevf7aed122011-12-13 11:01:06 +02001197 $regexp = '/^([a-z\-]+\/[a-z0-9\-\.\+]+)(;\s.+)?$/';
Andrey Andreeva49e3812011-12-09 13:05:22 +02001198
1199 /* Fileinfo extension - most reliable method
1200 *
1201 * Unfortunately, prior to PHP 5.3 - it's only available as a PECL extension and the
1202 * more convenient FILEINFO_MIME_TYPE flag doesn't exist.
1203 */
1204 if (function_exists('finfo_file'))
Andrey Andreev3a3c9472011-09-24 14:25:33 +03001205 {
Andrey Andreevd60e7002012-06-17 00:03:03 +03001206 $finfo = @finfo_open(FILEINFO_MIME);
Andrey Andreeva49e3812011-12-09 13:05:22 +02001207 if (is_resource($finfo)) // It is possible that a FALSE value is returned, if there is no magic MIME database file found on the system
Andrey Andreev3a3c9472011-09-24 14:25:33 +03001208 {
Andrey Andreeva49e3812011-12-09 13:05:22 +02001209 $mime = @finfo_file($finfo, $file['tmp_name']);
1210 finfo_close($finfo);
Andrey Andreev3a3c9472011-09-24 14:25:33 +03001211
1212 /* According to the comments section of the PHP manual page,
1213 * it is possible that this function returns an empty string
Andrey Andreev2cec39f2011-09-24 22:59:37 +03001214 * for some files (e.g. if they don't exist in the magic MIME database)
Andrey Andreev3a3c9472011-09-24 14:25:33 +03001215 */
Andrey Andreeva49e3812011-12-09 13:05:22 +02001216 if (is_string($mime) && preg_match($regexp, $mime, $matches))
Andrey Andreev3a3c9472011-09-24 14:25:33 +03001217 {
Andrey Andreeva49e3812011-12-09 13:05:22 +02001218 $this->file_type = $matches[1];
Andrey Andreev3a3c9472011-09-24 14:25:33 +03001219 return;
1220 }
1221 }
1222 }
1223
Andrey Andreeva49e3812011-12-09 13:05:22 +02001224 /* This is an ugly hack, but UNIX-type systems provide a "native" way to detect the file type,
1225 * which is still more secure than depending on the value of $_FILES[$field]['type'], and as it
1226 * was reported in issue #750 (https://github.com/EllisLab/CodeIgniter/issues/750) - it's better
1227 * than mime_content_type() as well, hence the attempts to try calling the command line with
1228 * three different functions.
Andrey Andreev6700b932011-09-24 14:25:33 +03001229 *
1230 * Notes:
Andrey Andreev59654312011-12-02 14:28:54 +02001231 * - the DIRECTORY_SEPARATOR comparison ensures that we're not on a Windows system
Andrey Andreeva49e3812011-12-09 13:05:22 +02001232 * - many system admins would disable the exec(), shell_exec(), popen() and similar functions
vlakofff3994252013-02-19 01:45:23 +01001233 * due to security concerns, hence the function_usable() checks
Andrey Andreev6700b932011-09-24 14:25:33 +03001234 */
Andrey Andreeva49e3812011-12-09 13:05:22 +02001235 if (DIRECTORY_SEPARATOR !== '\\')
Andrey Andreev6700b932011-09-24 14:25:33 +03001236 {
Andrey Andreevd60e7002012-06-17 00:03:03 +03001237 $cmd = function_exists('escapeshellarg')
1238 ? 'file --brief --mime '.escapeshellarg($file['tmp_name']).' 2>&1'
1239 : 'file --brief --mime '.$file['tmp_name'].' 2>&1';
Andrey Andreeva49e3812011-12-09 13:05:22 +02001240
Andrey Andreeve9d2dc82012-11-07 14:23:29 +02001241 if (function_usable('exec'))
Andrey Andreev6700b932011-09-24 14:25:33 +03001242 {
Andrey Andreeva49e3812011-12-09 13:05:22 +02001243 /* This might look confusing, as $mime is being populated with all of the output when set in the second parameter.
vlakofff3994252013-02-19 01:45:23 +01001244 * However, we only need the last line, which is the actual return value of exec(), and as such - it overwrites
Andrey Andreeva49e3812011-12-09 13:05:22 +02001245 * anything that could already be set for $mime previously. This effectively makes the second parameter a dummy
1246 * value, which is only put to allow us to get the return status code.
1247 */
1248 $mime = @exec($cmd, $mime, $return_status);
1249 if ($return_status === 0 && is_string($mime) && preg_match($regexp, $mime, $matches))
1250 {
1251 $this->file_type = $matches[1];
1252 return;
1253 }
1254 }
1255
Andrey Andreev5932a732013-09-13 14:45:53 +03001256 if ((bool) @ini_get('safe_mode') === FALSE && function_usable('shell_exec'))
Andrey Andreeva49e3812011-12-09 13:05:22 +02001257 {
1258 $mime = @shell_exec($cmd);
1259 if (strlen($mime) > 0)
1260 {
1261 $mime = explode("\n", trim($mime));
1262 if (preg_match($regexp, $mime[(count($mime) - 1)], $matches))
1263 {
1264 $this->file_type = $matches[1];
1265 return;
1266 }
1267 }
1268 }
1269
Andrey Andreeve9d2dc82012-11-07 14:23:29 +02001270 if (function_usable('popen'))
Andrey Andreeva49e3812011-12-09 13:05:22 +02001271 {
1272 $proc = @popen($cmd, 'r');
1273 if (is_resource($proc))
1274 {
tubalmartin010f1f42012-03-03 22:24:31 +01001275 $mime = @fread($proc, 512);
Andrey Andreeva49e3812011-12-09 13:05:22 +02001276 @pclose($proc);
1277 if ($mime !== FALSE)
1278 {
1279 $mime = explode("\n", trim($mime));
1280 if (preg_match($regexp, $mime[(count($mime) - 1)], $matches))
1281 {
1282 $this->file_type = $matches[1];
1283 return;
1284 }
1285 }
1286 }
1287 }
1288 }
1289
1290 // Fall back to the deprecated mime_content_type(), if available (still better than $_FILES[$field]['type'])
Andrey Andreev3a3c9472011-09-24 14:25:33 +03001291 if (function_exists('mime_content_type'))
1292 {
1293 $this->file_type = @mime_content_type($file['tmp_name']);
Andrey Andreeva49e3812011-12-09 13:05:22 +02001294 if (strlen($this->file_type) > 0) // It's possible that mime_content_type() returns FALSE or an empty string
Andrey Andreev3a3c9472011-09-24 14:25:33 +03001295 {
Andrey Andreev3a3c9472011-09-24 14:25:33 +03001296 return;
1297 }
1298 }
1299
1300 $this->file_type = $file['type'];
1301 }
1302
Derek Allard2067d1a2008-11-13 22:59:24 +00001303}
Derek Allard2067d1a2008-11-13 22:59:24 +00001304
1305/* End of file Upload.php */
Adrian74a228b2013-06-25 12:09:22 +02001306/* Location: ./system/libraries/Upload.php */