blob: 15caebebe5b11c5a9a753f42d15231d56480729e [file] [log] [blame]
Andrey Andreevc5536aa2012-11-01 17:33:58 +02001<?php
Derek Allard2067d1a2008-11-13 22:59:24 +00002/**
3 * CodeIgniter
4 *
Andrey Andreevfe9309d2015-01-09 17:48:58 +02005 * An open source application development framework for PHP
Derek Allard2067d1a2008-11-13 22:59:24 +00006 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +02007 * This content is released under the MIT License (MIT)
Andrey Andreev3a459572011-12-21 11:23:11 +02008 *
Andrey Andreev125ef472016-01-11 12:33:00 +02009 * Copyright (c) 2014 - 2016, British Columbia Institute of Technology
Andrey Andreev3a459572011-12-21 11:23:11 +020010 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020011 * Permission is hereby granted, free of charge, to any person obtaining a copy
12 * of this software and associated documentation files (the "Software"), to deal
13 * in the Software without restriction, including without limitation the rights
14 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15 * copies of the Software, and to permit persons to whom the Software is
16 * furnished to do so, subject to the following conditions:
Derek Jonesf4a4bd82011-10-20 12:18:42 -050017 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020018 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27 * THE SOFTWARE.
28 *
29 * @package CodeIgniter
30 * @author EllisLab Dev Team
Andrey Andreev1924e872016-01-11 12:55:34 +020031 * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
Andrey Andreev125ef472016-01-11 12:33:00 +020032 * @copyright Copyright (c) 2014 - 2016, British Columbia Institute of Technology (http://bcit.ca/)
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020033 * @license http://opensource.org/licenses/MIT MIT License
Andrey Andreevbd202c92016-01-11 12:50:18 +020034 * @link https://codeigniter.com
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020035 * @since Version 1.0.0
Derek Allard2067d1a2008-11-13 22:59:24 +000036 * @filesource
37 */
Andrey Andreevc5536aa2012-11-01 17:33:58 +020038defined('BASEPATH') OR exit('No direct script access allowed');
Derek Allard2067d1a2008-11-13 22:59:24 +000039
Derek Allard2067d1a2008-11-13 22:59:24 +000040/**
41 * File Uploading Class
42 *
43 * @package CodeIgniter
44 * @subpackage Libraries
45 * @category Uploads
Derek Jonesf4a4bd82011-10-20 12:18:42 -050046 * @author EllisLab Dev Team
Andrey Andreevbd202c92016-01-11 12:50:18 +020047 * @link https://codeigniter.com/user_guide/libraries/file_uploading.html
Derek Allard2067d1a2008-11-13 22:59:24 +000048 */
49class CI_Upload {
Barry Mienydd671972010-10-04 16:33:58 +020050
Andrey Andreevf5ccd122012-11-02 00:17:39 +020051 /**
52 * Maximum file size
53 *
54 * @var int
55 */
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +020056 public $max_size = 0;
Andrey Andreevf5ccd122012-11-02 00:17:39 +020057
58 /**
59 * Maximum image width
60 *
61 * @var int
62 */
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +020063 public $max_width = 0;
Andrey Andreevf5ccd122012-11-02 00:17:39 +020064
65 /**
66 * Maximum image height
67 *
68 * @var int
69 */
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +020070 public $max_height = 0;
Andrey Andreevf5ccd122012-11-02 00:17:39 +020071
72 /**
Andrey Andreev05aa2d62012-12-03 16:06:55 +020073 * Minimum image width
74 *
75 * @var int
76 */
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +020077 public $min_width = 0;
Andrey Andreev05aa2d62012-12-03 16:06:55 +020078
79 /**
80 * Minimum image height
81 *
82 * @var int
83 */
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +020084 public $min_height = 0;
Andrey Andreev05aa2d62012-12-03 16:06:55 +020085
86 /**
Andrey Andreevf5ccd122012-11-02 00:17:39 +020087 * Maximum filename length
88 *
89 * @var int
90 */
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +020091 public $max_filename = 0;
Andrey Andreevf5ccd122012-11-02 00:17:39 +020092
93 /**
94 * Maximum duplicate filename increment ID
95 *
96 * @var int
97 */
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +020098 public $max_filename_increment = 100;
Andrey Andreevf5ccd122012-11-02 00:17:39 +020099
100 /**
101 * Allowed file types
102 *
103 * @var string
104 */
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200105 public $allowed_types = '';
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200106
107 /**
108 * Temporary filename
109 *
110 * @var string
111 */
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200112 public $file_temp = '';
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200113
114 /**
115 * Filename
116 *
117 * @var string
118 */
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200119 public $file_name = '';
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200120
121 /**
122 * Original filename
123 *
124 * @var string
125 */
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200126 public $orig_name = '';
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200127
128 /**
129 * File type
130 *
131 * @var string
132 */
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200133 public $file_type = '';
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200134
135 /**
136 * File size
137 *
138 * @var int
139 */
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200140 public $file_size = NULL;
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200141
142 /**
143 * Filename extension
144 *
145 * @var string
146 */
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200147 public $file_ext = '';
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200148
149 /**
Adrianf496d132013-06-24 15:56:45 +0200150 * Force filename extension to lowercase
151 *
152 * @var string
153 */
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200154 public $file_ext_tolower = FALSE;
Adrianf496d132013-06-24 15:56:45 +0200155
156 /**
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200157 * Upload path
158 *
159 * @var string
160 */
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200161 public $upload_path = '';
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200162
163 /**
164 * Overwrite flag
165 *
166 * @var bool
167 */
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200168 public $overwrite = FALSE;
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200169
170 /**
171 * Obfuscate filename flag
172 *
173 * @var bool
174 */
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200175 public $encrypt_name = FALSE;
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200176
177 /**
178 * Is image flag
179 *
180 * @var bool
181 */
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200182 public $is_image = FALSE;
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200183
184 /**
185 * Image width
186 *
187 * @var int
188 */
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200189 public $image_width = NULL;
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200190
191 /**
192 * Image height
193 *
194 * @var int
195 */
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200196 public $image_height = NULL;
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200197
198 /**
199 * Image type
200 *
201 * @var string
202 */
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200203 public $image_type = '';
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200204
205 /**
206 * Image size string
207 *
208 * @var string
209 */
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200210 public $image_size_str = '';
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200211
212 /**
213 * Error messages list
214 *
215 * @var array
216 */
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200217 public $error_msg = array();
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200218
219 /**
220 * Remove spaces flag
221 *
222 * @var bool
223 */
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200224 public $remove_spaces = TRUE;
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200225
226 /**
227 * MIME detection flag
228 *
229 * @var bool
230 */
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200231 public $detect_mime = TRUE;
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200232
233 /**
234 * XSS filter flag
235 *
236 * @var bool
237 */
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200238 public $xss_clean = FALSE;
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200239
240 /**
Andrey Andreev32c72122013-10-21 15:35:05 +0300241 * Apache mod_mime fix flag
242 *
243 * @var bool
244 */
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200245 public $mod_mime_fix = TRUE;
Andrey Andreev32c72122013-10-21 15:35:05 +0300246
247 /**
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200248 * Temporary filename prefix
249 *
250 * @var string
251 */
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200252 public $temp_prefix = 'temp_file_';
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200253
254 /**
255 * Filename sent by the client
256 *
257 * @var bool
258 */
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200259 public $client_name = '';
Barry Mienydd671972010-10-04 16:33:58 +0200260
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200261 // --------------------------------------------------------------------
262
263 /**
264 * Filename override
265 *
266 * @var string
267 */
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200268 protected $_file_name_override = '';
269
270 /**
271 * MIME types list
272 *
273 * @var array
274 */
275 protected $_mimes = array();
Barry Mienydd671972010-10-04 16:33:58 +0200276
Andrey Andreev119d8a72014-01-08 15:27:53 +0200277 /**
278 * CI Singleton
279 *
280 * @var object
281 */
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200282 protected $_CI;
Andrey Andreev119d8a72014-01-08 15:27:53 +0200283
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200284 // --------------------------------------------------------------------
285
Derek Allard2067d1a2008-11-13 22:59:24 +0000286 /**
287 * Constructor
288 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200289 * @param array $props
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300290 * @return void
Derek Allard2067d1a2008-11-13 22:59:24 +0000291 */
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200292 public function __construct($config = array())
Derek Allard2067d1a2008-11-13 22:59:24 +0000293 {
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200294 empty($config) OR $this->initialize($config, FALSE);
Barry Mienydd671972010-10-04 16:33:58 +0200295
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200296 $this->_mimes =& get_mimes();
297 $this->_CI =& get_instance();
Andrey Andreev6ef498b2012-06-05 22:01:58 +0300298
Andrey Andreev90726b82015-01-20 12:39:22 +0200299 log_message('info', 'Upload Class Initialized');
Derek Allard2067d1a2008-11-13 22:59:24 +0000300 }
Barry Mienydd671972010-10-04 16:33:58 +0200301
Derek Allard2067d1a2008-11-13 22:59:24 +0000302 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200303
Derek Allard2067d1a2008-11-13 22:59:24 +0000304 /**
305 * Initialize preferences
306 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200307 * @param array $config
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200308 * @param bool $reset
309 * @return CI_Upload
Barry Mienydd671972010-10-04 16:33:58 +0200310 */
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200311 public function initialize(array $config = array(), $reset = TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000312 {
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200313 $reflection = new ReflectionClass($this);
Barry Mienydd671972010-10-04 16:33:58 +0200314
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200315 if ($reset === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000316 {
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200317 $defaults = $reflection->getDefaultProperties();
318 foreach (array_keys($defaults) as $key)
Derek Allard2067d1a2008-11-13 22:59:24 +0000319 {
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200320 if ($key[0] === '_')
Derek Allard2067d1a2008-11-13 22:59:24 +0000321 {
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200322 continue;
323 }
324
325 if (isset($config[$key]))
326 {
327 if ($reflection->hasMethod('set_'.$key))
328 {
329 $this->{'set_'.$key}($config[$key]);
330 }
331 else
332 {
333 $this->$key = $config[$key];
334 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000335 }
336 else
337 {
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200338 $this->$key = $defaults[$key];
Barry Mienydd671972010-10-04 16:33:58 +0200339 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000340 }
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200341 }
Joseba Juániza8027ff2014-08-06 20:03:25 +0200342 else
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200343 {
Joseba Juániza8027ff2014-08-06 20:03:25 +0200344 foreach ($config as $key => &$value)
Derek Allard2067d1a2008-11-13 22:59:24 +0000345 {
Joseba Juániza8027ff2014-08-06 20:03:25 +0200346 if ($key[0] !== '_' && $reflection->hasProperty($key))
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200347 {
Joseba Juániza8027ff2014-08-06 20:03:25 +0200348 if ($reflection->hasMethod('set_'.$key))
349 {
350 $this->{'set_'.$key}($value);
351 }
352 else
353 {
354 $this->$key = $value;
355 }
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200356 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000357 }
358 }
Barry Mienydd671972010-10-04 16:33:58 +0200359
Derek Jonese9d723f2010-07-12 10:10:59 -0500360 // if a file_name was provided in the config, use it instead of the user input
361 // supplied file name for all uploads until initialized again
362 $this->_file_name_override = $this->file_name;
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200363 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000364 }
Barry Mienydd671972010-10-04 16:33:58 +0200365
Derek Allard2067d1a2008-11-13 22:59:24 +0000366 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200367
Derek Allard2067d1a2008-11-13 22:59:24 +0000368 /**
369 * Perform the file upload
370 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200371 * @param string $field
Derek Allard2067d1a2008-11-13 22:59:24 +0000372 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +0200373 */
Greg Aker58fdee82010-11-10 15:07:09 -0600374 public function do_upload($field = 'userfile')
Derek Allard2067d1a2008-11-13 22:59:24 +0000375 {
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300376 // Is $_FILES[$field] set? If not, no reason to continue.
Andrey Andreeve7d017b2014-02-25 12:23:34 +0200377 if (isset($_FILES[$field]))
378 {
379 $_file = $_FILES[$field];
380 }
381 // Does the field name contain array notation?
382 elseif (($c = preg_match_all('/(?:^[^\[]+)|\[[^]]*\]/', $field, $matches)) > 1)
383 {
384 $_file = $_FILES;
385 for ($i = 0; $i < $c; $i++)
386 {
387 // We can't track numeric iterations, only full field names are accepted
388 if (($field = trim($matches[0][$i], '[]')) === '' OR ! isset($_file[$field]))
389 {
390 $_file = NULL;
391 break;
392 }
393
394 $_file = $_file[$field];
395 }
396 }
397
398 if ( ! isset($_file))
Derek Allard2067d1a2008-11-13 22:59:24 +0000399 {
Andrey Andreevd5784082015-06-22 11:50:04 +0300400 $this->set_error('upload_no_file_selected', 'debug');
Derek Allard2067d1a2008-11-13 22:59:24 +0000401 return FALSE;
402 }
Barry Mienydd671972010-10-04 16:33:58 +0200403
Derek Allard2067d1a2008-11-13 22:59:24 +0000404 // Is the upload path valid?
405 if ( ! $this->validate_upload_path())
406 {
407 // errors will already be set by validate_upload_path() so just return FALSE
408 return FALSE;
409 }
410
411 // Was the file able to be uploaded? If not, determine the reason why.
Andrey Andreeve7d017b2014-02-25 12:23:34 +0200412 if ( ! is_uploaded_file($_file['tmp_name']))
Derek Allard2067d1a2008-11-13 22:59:24 +0000413 {
Andrey Andreeve7d017b2014-02-25 12:23:34 +0200414 $error = isset($_file['error']) ? $_file['error'] : 4;
Derek Allard2067d1a2008-11-13 22:59:24 +0000415
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300416 switch ($error)
Derek Allard2067d1a2008-11-13 22:59:24 +0000417 {
Darren Benneye123a602013-03-30 18:17:54 +0000418 case UPLOAD_ERR_INI_SIZE:
Andrey Andreevd5784082015-06-22 11:50:04 +0300419 $this->set_error('upload_file_exceeds_limit', 'info');
Derek Allard2067d1a2008-11-13 22:59:24 +0000420 break;
Darren Benneye123a602013-03-30 18:17:54 +0000421 case UPLOAD_ERR_FORM_SIZE:
Andrey Andreevd5784082015-06-22 11:50:04 +0300422 $this->set_error('upload_file_exceeds_form_limit', 'info');
Derek Allard2067d1a2008-11-13 22:59:24 +0000423 break;
Darren Benneye123a602013-03-30 18:17:54 +0000424 case UPLOAD_ERR_PARTIAL:
Andrey Andreevd5784082015-06-22 11:50:04 +0300425 $this->set_error('upload_file_partial', 'debug');
Derek Allard2067d1a2008-11-13 22:59:24 +0000426 break;
Darren Benneye123a602013-03-30 18:17:54 +0000427 case UPLOAD_ERR_NO_FILE:
Andrey Andreevd5784082015-06-22 11:50:04 +0300428 $this->set_error('upload_no_file_selected', 'debug');
Derek Allard2067d1a2008-11-13 22:59:24 +0000429 break;
Darren Benneye123a602013-03-30 18:17:54 +0000430 case UPLOAD_ERR_NO_TMP_DIR:
Andrey Andreevd5784082015-06-22 11:50:04 +0300431 $this->set_error('upload_no_temp_directory', 'error');
Derek Allard2067d1a2008-11-13 22:59:24 +0000432 break;
Darren Benneye123a602013-03-30 18:17:54 +0000433 case UPLOAD_ERR_CANT_WRITE:
Andrey Andreevd5784082015-06-22 11:50:04 +0300434 $this->set_error('upload_unable_to_write_file', 'error');
Derek Allard2067d1a2008-11-13 22:59:24 +0000435 break;
Darren Benneye123a602013-03-30 18:17:54 +0000436 case UPLOAD_ERR_EXTENSION:
Andrey Andreevd5784082015-06-22 11:50:04 +0300437 $this->set_error('upload_stopped_by_extension', 'debug');
Derek Allard2067d1a2008-11-13 22:59:24 +0000438 break;
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300439 default:
Andrey Andreevd5784082015-06-22 11:50:04 +0300440 $this->set_error('upload_no_file_selected', 'debug');
Derek Allard2067d1a2008-11-13 22:59:24 +0000441 break;
442 }
443
444 return FALSE;
445 }
446
447 // Set the uploaded data as class variables
Andrey Andreeve7d017b2014-02-25 12:23:34 +0200448 $this->file_temp = $_file['tmp_name'];
449 $this->file_size = $_file['size'];
Andrey Andreevd60e7002012-06-17 00:03:03 +0300450
451 // Skip MIME type detection?
452 if ($this->detect_mime !== FALSE)
453 {
Andrey Andreeve7d017b2014-02-25 12:23:34 +0200454 $this->_file_mime_type($_file);
Andrey Andreevd60e7002012-06-17 00:03:03 +0300455 }
456
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300457 $this->file_type = preg_replace('/^(.+?);.*$/', '\\1', $this->file_type);
Derek Jones616fb022010-04-22 16:52:18 -0500458 $this->file_type = strtolower(trim(stripslashes($this->file_type), '"'));
Andrey Andreeve7d017b2014-02-25 12:23:34 +0200459 $this->file_name = $this->_prep_filename($_file['name']);
Derek Jonese9d723f2010-07-12 10:10:59 -0500460 $this->file_ext = $this->get_extension($this->file_name);
461 $this->client_name = $this->file_name;
Barry Mienydd671972010-10-04 16:33:58 +0200462
Derek Allard2067d1a2008-11-13 22:59:24 +0000463 // Is the file type allowed to be uploaded?
464 if ( ! $this->is_allowed_filetype())
465 {
Andrey Andreevd5784082015-06-22 11:50:04 +0300466 $this->set_error('upload_invalid_filetype', 'debug');
Derek Allard2067d1a2008-11-13 22:59:24 +0000467 return FALSE;
468 }
469
Derek Jonese9d723f2010-07-12 10:10:59 -0500470 // if we're overriding, let's now make sure the new name and type is allowed
Alex Bilbied261b1e2012-06-02 11:12:16 +0100471 if ($this->_file_name_override !== '')
Derek Jonese9d723f2010-07-12 10:10:59 -0500472 {
473 $this->file_name = $this->_prep_filename($this->_file_name_override);
Phil Sturgeon1e74da22010-12-15 10:45:06 +0000474
475 // If no extension was provided in the file_name config item, use the uploaded one
Pascal Kriete14287f32011-02-14 13:39:34 -0500476 if (strpos($this->_file_name_override, '.') === FALSE)
Phil Sturgeon1e74da22010-12-15 10:45:06 +0000477 {
478 $this->file_name .= $this->file_ext;
479 }
Phil Sturgeon1e74da22010-12-15 10:45:06 +0000480 else
481 {
vlakoff35672462013-02-15 01:36:04 +0100482 // An extension was provided, let's have it!
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300483 $this->file_ext = $this->get_extension($this->_file_name_override);
Phil Sturgeon1e74da22010-12-15 10:45:06 +0000484 }
Derek Jonese9d723f2010-07-12 10:10:59 -0500485
486 if ( ! $this->is_allowed_filetype(TRUE))
487 {
Andrey Andreevd5784082015-06-22 11:50:04 +0300488 $this->set_error('upload_invalid_filetype', 'debug');
Barry Mienydd671972010-10-04 16:33:58 +0200489 return FALSE;
Derek Jonese9d723f2010-07-12 10:10:59 -0500490 }
491 }
Barry Mienydd671972010-10-04 16:33:58 +0200492
Derek Jonese9d723f2010-07-12 10:10:59 -0500493 // Convert the file size to kilobytes
494 if ($this->file_size > 0)
495 {
496 $this->file_size = round($this->file_size/1024, 2);
497 }
498
Derek Allard2067d1a2008-11-13 22:59:24 +0000499 // Is the file size within the allowed maximum?
500 if ( ! $this->is_allowed_filesize())
501 {
Andrey Andreevd5784082015-06-22 11:50:04 +0300502 $this->set_error('upload_invalid_filesize', 'info');
Derek Allard2067d1a2008-11-13 22:59:24 +0000503 return FALSE;
504 }
505
506 // Are the image dimensions within the allowed size?
vlakoffc941d852013-08-06 14:44:40 +0200507 // Note: This can fail if the server has an open_basedir restriction.
Derek Allard2067d1a2008-11-13 22:59:24 +0000508 if ( ! $this->is_allowed_dimensions())
509 {
Andrey Andreevd5784082015-06-22 11:50:04 +0300510 $this->set_error('upload_invalid_dimensions', 'info');
Derek Allard2067d1a2008-11-13 22:59:24 +0000511 return FALSE;
512 }
513
514 // Sanitize the file name for security
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200515 $this->file_name = $this->_CI->security->sanitize_filename($this->file_name);
Barry Mienydd671972010-10-04 16:33:58 +0200516
Derek Allard2067d1a2008-11-13 22:59:24 +0000517 // Truncate the file name if it's too long
518 if ($this->max_filename > 0)
519 {
520 $this->file_name = $this->limit_filename_length($this->file_name, $this->max_filename);
521 }
522
523 // Remove white spaces in the name
Alex Bilbied261b1e2012-06-02 11:12:16 +0100524 if ($this->remove_spaces === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000525 {
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300526 $this->file_name = preg_replace('/\s+/', '_', $this->file_name);
Derek Allard2067d1a2008-11-13 22:59:24 +0000527 }
528
529 /*
530 * Validate the file name
531 * This function appends an number onto the end of
532 * the file if one with the same name already exists.
533 * If it returns false there was a problem.
534 */
535 $this->orig_name = $this->file_name;
Andrey Andreev91da5d12015-07-09 15:14:35 +0300536 if (FALSE === ($this->file_name = $this->set_filename($this->upload_path, $this->file_name)))
Derek Allard2067d1a2008-11-13 22:59:24 +0000537 {
Andrey Andreev91da5d12015-07-09 15:14:35 +0300538 return FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000539 }
540
541 /*
Derek Jonese9d723f2010-07-12 10:10:59 -0500542 * Run the file through the XSS hacking filter
543 * This helps prevent malicious code from being
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300544 * embedded within a file. Scripts can easily
Derek Jonese9d723f2010-07-12 10:10:59 -0500545 * be disguised as images or other file types.
546 */
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300547 if ($this->xss_clean && $this->do_xss_clean() === FALSE)
Derek Jonese9d723f2010-07-12 10:10:59 -0500548 {
Andrey Andreevd5784082015-06-22 11:50:04 +0300549 $this->set_error('upload_unable_to_write_file', 'error');
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300550 return FALSE;
Derek Jonese9d723f2010-07-12 10:10:59 -0500551 }
552
553 /*
Derek Allard2067d1a2008-11-13 22:59:24 +0000554 * Move the file to the final destination
555 * To deal with different server configurations
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300556 * we'll attempt to use copy() first. If that fails
557 * we'll use move_uploaded_file(). One of the two should
Derek Allard2067d1a2008-11-13 22:59:24 +0000558 * reliably work in most environments
559 */
560 if ( ! @copy($this->file_temp, $this->upload_path.$this->file_name))
561 {
562 if ( ! @move_uploaded_file($this->file_temp, $this->upload_path.$this->file_name))
563 {
Andrey Andreevd5784082015-06-22 11:50:04 +0300564 $this->set_error('upload_destination_error', 'error');
Barry Mienydd671972010-10-04 16:33:58 +0200565 return FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000566 }
567 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000568
569 /*
570 * Set the finalized image dimensions
571 * This sets the image width/height (assuming the
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300572 * file was an image). We use this information
Derek Allard2067d1a2008-11-13 22:59:24 +0000573 * in the "data" function.
574 */
575 $this->set_image_properties($this->upload_path.$this->file_name);
576
577 return TRUE;
578 }
Barry Mienydd671972010-10-04 16:33:58 +0200579
Derek Allard2067d1a2008-11-13 22:59:24 +0000580 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200581
Derek Allard2067d1a2008-11-13 22:59:24 +0000582 /**
583 * Finalized Data Array
Barry Mienydd671972010-10-04 16:33:58 +0200584 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000585 * Returns an associative array containing all of the information
586 * related to the upload, allowing the developer easy access in one array.
587 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200588 * @param string $index
Michiel Vugteveen0ee287e2012-06-11 10:38:14 +0200589 * @return mixed
Barry Mienydd671972010-10-04 16:33:58 +0200590 */
Michiel Vugteveendca9f232012-06-11 09:17:14 +0200591 public function data($index = NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +0000592 {
Michiel Vugteveendca9f232012-06-11 09:17:14 +0200593 $data = array(
Michiel Vugteveen3a7fb042012-06-11 09:29:16 +0200594 'file_name' => $this->file_name,
595 'file_type' => $this->file_type,
596 'file_path' => $this->upload_path,
597 'full_path' => $this->upload_path.$this->file_name,
598 'raw_name' => str_replace($this->file_ext, '', $this->file_name),
599 'orig_name' => $this->orig_name,
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300600 'client_name' => $this->client_name,
Michiel Vugteveen3a7fb042012-06-11 09:29:16 +0200601 'file_ext' => $this->file_ext,
602 'file_size' => $this->file_size,
603 'is_image' => $this->is_image(),
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300604 'image_width' => $this->image_width,
605 'image_height' => $this->image_height,
606 'image_type' => $this->image_type,
607 'image_size_str' => $this->image_size_str,
608 );
Michiel Vugteveendca9f232012-06-11 09:17:14 +0200609
Michiel Vugteveen46a04292012-06-11 10:37:52 +0200610 if ( ! empty($index))
Michiel Vugteveendca9f232012-06-11 09:17:14 +0200611 {
Michiel Vugteveen46a04292012-06-11 10:37:52 +0200612 return isset($data[$index]) ? $data[$index] : NULL;
Michiel Vugteveendca9f232012-06-11 09:17:14 +0200613 }
614
Michiel Vugteveen46a04292012-06-11 10:37:52 +0200615 return $data;
Derek Allard2067d1a2008-11-13 22:59:24 +0000616 }
Barry Mienydd671972010-10-04 16:33:58 +0200617
Derek Allard2067d1a2008-11-13 22:59:24 +0000618 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200619
Derek Allard2067d1a2008-11-13 22:59:24 +0000620 /**
621 * Set Upload Path
622 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200623 * @param string $path
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200624 * @return CI_Upload
Barry Mienydd671972010-10-04 16:33:58 +0200625 */
Greg Aker58fdee82010-11-10 15:07:09 -0600626 public function set_upload_path($path)
Derek Allard2067d1a2008-11-13 22:59:24 +0000627 {
628 // Make sure it has a trailing slash
629 $this->upload_path = rtrim($path, '/').'/';
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200630 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000631 }
Barry Mienydd671972010-10-04 16:33:58 +0200632
Derek Allard2067d1a2008-11-13 22:59:24 +0000633 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200634
Derek Allard2067d1a2008-11-13 22:59:24 +0000635 /**
636 * Set the file name
637 *
638 * This function takes a filename/path as input and looks for the
639 * existence of a file with the same name. If found, it will append a
640 * number to the end of the filename to avoid overwriting a pre-existing file.
641 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200642 * @param string $path
643 * @param string $filename
Derek Allard2067d1a2008-11-13 22:59:24 +0000644 * @return string
Barry Mienydd671972010-10-04 16:33:58 +0200645 */
Greg Aker58fdee82010-11-10 15:07:09 -0600646 public function set_filename($path, $filename)
Derek Allard2067d1a2008-11-13 22:59:24 +0000647 {
Alex Bilbied261b1e2012-06-02 11:12:16 +0100648 if ($this->encrypt_name === TRUE)
Barry Mienydd671972010-10-04 16:33:58 +0200649 {
Barry Mienydd671972010-10-04 16:33:58 +0200650 $filename = md5(uniqid(mt_rand())).$this->file_ext;
Derek Allard2067d1a2008-11-13 22:59:24 +0000651 }
Barry Mienydd671972010-10-04 16:33:58 +0200652
Andrey Andreev91da5d12015-07-09 15:14:35 +0300653 if ($this->overwrite === TRUE OR ! file_exists($path.$filename))
Derek Allard2067d1a2008-11-13 22:59:24 +0000654 {
655 return $filename;
656 }
Barry Mienydd671972010-10-04 16:33:58 +0200657
Derek Allard2067d1a2008-11-13 22:59:24 +0000658 $filename = str_replace($this->file_ext, '', $filename);
Barry Mienydd671972010-10-04 16:33:58 +0200659
Derek Allard2067d1a2008-11-13 22:59:24 +0000660 $new_filename = '';
Adam Jackettccbbea12011-08-21 16:19:11 -0400661 for ($i = 1; $i < $this->max_filename_increment; $i++)
Barry Mienydd671972010-10-04 16:33:58 +0200662 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000663 if ( ! file_exists($path.$filename.$i.$this->file_ext))
664 {
665 $new_filename = $filename.$i.$this->file_ext;
666 break;
667 }
668 }
669
Alex Bilbied261b1e2012-06-02 11:12:16 +0100670 if ($new_filename === '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000671 {
Andrey Andreevd5784082015-06-22 11:50:04 +0300672 $this->set_error('upload_bad_filename', 'debug');
Derek Allard2067d1a2008-11-13 22:59:24 +0000673 return FALSE;
674 }
675 else
676 {
677 return $new_filename;
678 }
679 }
Barry Mienydd671972010-10-04 16:33:58 +0200680
Derek Allard2067d1a2008-11-13 22:59:24 +0000681 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200682
Derek Allard2067d1a2008-11-13 22:59:24 +0000683 /**
684 * Set Maximum File Size
685 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200686 * @param int $n
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200687 * @return CI_Upload
Barry Mienydd671972010-10-04 16:33:58 +0200688 */
Greg Aker58fdee82010-11-10 15:07:09 -0600689 public function set_max_filesize($n)
Derek Allard2067d1a2008-11-13 22:59:24 +0000690 {
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200691 $this->max_size = ($n < 0) ? 0 : (int) $n;
692 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000693 }
Barry Mienydd671972010-10-04 16:33:58 +0200694
Derek Allard2067d1a2008-11-13 22:59:24 +0000695 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200696
Derek Allard2067d1a2008-11-13 22:59:24 +0000697 /**
Andrey Andreev1a8d95a2015-07-23 10:47:53 +0300698 * Set Maximum File Size
699 *
700 * An internal alias to set_max_filesize() to help with configuration
701 * as initialize() will look for a set_<property_name>() method ...
702 *
703 * @param int $n
704 * @return CI_Upload
705 */
706 protected function set_max_size($n)
707 {
708 return $this->set_max_filesize($n);
709 }
710
711 // --------------------------------------------------------------------
712
713 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000714 * Set Maximum File Name Length
715 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200716 * @param int $n
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200717 * @return CI_Upload
Barry Mienydd671972010-10-04 16:33:58 +0200718 */
Greg Aker58fdee82010-11-10 15:07:09 -0600719 public function set_max_filename($n)
Derek Allard2067d1a2008-11-13 22:59:24 +0000720 {
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200721 $this->max_filename = ($n < 0) ? 0 : (int) $n;
722 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000723 }
724
725 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200726
Derek Allard2067d1a2008-11-13 22:59:24 +0000727 /**
728 * Set Maximum Image Width
729 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200730 * @param int $n
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200731 * @return CI_Upload
Barry Mienydd671972010-10-04 16:33:58 +0200732 */
Greg Aker58fdee82010-11-10 15:07:09 -0600733 public function set_max_width($n)
Derek Allard2067d1a2008-11-13 22:59:24 +0000734 {
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200735 $this->max_width = ($n < 0) ? 0 : (int) $n;
736 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000737 }
Barry Mienydd671972010-10-04 16:33:58 +0200738
Derek Allard2067d1a2008-11-13 22:59:24 +0000739 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200740
Derek Allard2067d1a2008-11-13 22:59:24 +0000741 /**
742 * Set Maximum Image Height
743 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200744 * @param int $n
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200745 * @return CI_Upload
Barry Mienydd671972010-10-04 16:33:58 +0200746 */
Greg Aker58fdee82010-11-10 15:07:09 -0600747 public function set_max_height($n)
Derek Allard2067d1a2008-11-13 22:59:24 +0000748 {
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200749 $this->max_height = ($n < 0) ? 0 : (int) $n;
750 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000751 }
Barry Mienydd671972010-10-04 16:33:58 +0200752
Derek Allard2067d1a2008-11-13 22:59:24 +0000753 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200754
Derek Allard2067d1a2008-11-13 22:59:24 +0000755 /**
Andrey Andreev05aa2d62012-12-03 16:06:55 +0200756 * Set minimum image width
757 *
758 * @param int $n
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200759 * @return CI_Upload
Andrey Andreev05aa2d62012-12-03 16:06:55 +0200760 */
761 public function set_min_width($n)
762 {
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200763 $this->min_width = ($n < 0) ? 0 : (int) $n;
764 return $this;
Andrey Andreev05aa2d62012-12-03 16:06:55 +0200765 }
766
767 // --------------------------------------------------------------------
768
769 /**
770 * Set minimum image height
771 *
772 * @param int $n
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200773 * @return CI_Upload
Andrey Andreev05aa2d62012-12-03 16:06:55 +0200774 */
775 public function set_min_height($n)
776 {
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200777 $this->min_height = ($n < 0) ? 0 : (int) $n;
778 return $this;
Andrey Andreev05aa2d62012-12-03 16:06:55 +0200779 }
780
781 // --------------------------------------------------------------------
782
783 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000784 * Set Allowed File Types
785 *
Andrey Andreev82179bf2014-02-22 00:29:53 +0200786 * @param mixed $types
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200787 * @return CI_Upload
Barry Mienydd671972010-10-04 16:33:58 +0200788 */
Greg Aker58fdee82010-11-10 15:07:09 -0600789 public function set_allowed_types($types)
Derek Allard2067d1a2008-11-13 22:59:24 +0000790 {
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200791 $this->allowed_types = (is_array($types) OR $types === '*')
792 ? $types
793 : explode('|', $types);
794 return $this;
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 * Set Image Properties
801 *
802 * Uses GD to determine the width/height/type of image
803 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200804 * @param string $path
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200805 * @return CI_Upload
Barry Mienydd671972010-10-04 16:33:58 +0200806 */
Greg Aker58fdee82010-11-10 15:07:09 -0600807 public function set_image_properties($path = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000808 {
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200809 if ($this->is_image() && function_exists('getimagesize'))
Derek Allard2067d1a2008-11-13 22:59:24 +0000810 {
811 if (FALSE !== ($D = @getimagesize($path)))
Barry Mienydd671972010-10-04 16:33:58 +0200812 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000813 $types = array(1 => 'gif', 2 => 'jpeg', 3 => 'png');
814
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300815 $this->image_width = $D[0];
816 $this->image_height = $D[1];
817 $this->image_type = isset($types[$D[2]]) ? $types[$D[2]] : 'unknown';
818 $this->image_size_str = $D[3]; // string containing height and width
Derek Allard2067d1a2008-11-13 22:59:24 +0000819 }
820 }
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200821
822 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000823 }
Barry Mienydd671972010-10-04 16:33:58 +0200824
Derek Allard2067d1a2008-11-13 22:59:24 +0000825 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200826
Derek Allard2067d1a2008-11-13 22:59:24 +0000827 /**
828 * Set XSS Clean
829 *
830 * Enables the XSS flag so that the file that was uploaded
831 * will be run through the XSS filter.
832 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200833 * @param bool $flag
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200834 * @return CI_Upload
Derek Allard2067d1a2008-11-13 22:59:24 +0000835 */
Greg Aker58fdee82010-11-10 15:07:09 -0600836 public function set_xss_clean($flag = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000837 {
Alex Bilbied261b1e2012-06-02 11:12:16 +0100838 $this->xss_clean = ($flag === TRUE);
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200839 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000840 }
Barry Mienydd671972010-10-04 16:33:58 +0200841
Derek Allard2067d1a2008-11-13 22:59:24 +0000842 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200843
Derek Allard2067d1a2008-11-13 22:59:24 +0000844 /**
845 * Validate the image
846 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000847 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +0200848 */
Greg Aker58fdee82010-11-10 15:07:09 -0600849 public function is_image()
Derek Allard2067d1a2008-11-13 22:59:24 +0000850 {
851 // IE will sometimes return odd mime-types during upload, so here we just standardize all
852 // jpegs or pngs to the same file type.
853
Derek Jones4b9c6292011-07-01 17:40:48 -0500854 $png_mimes = array('image/x-png');
Derek Allard2067d1a2008-11-13 22:59:24 +0000855 $jpeg_mimes = array('image/jpg', 'image/jpe', 'image/jpeg', 'image/pjpeg');
Barry Mienydd671972010-10-04 16:33:58 +0200856
Derek Allard2067d1a2008-11-13 22:59:24 +0000857 if (in_array($this->file_type, $png_mimes))
858 {
859 $this->file_type = 'image/png';
860 }
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300861 elseif (in_array($this->file_type, $jpeg_mimes))
Derek Allard2067d1a2008-11-13 22:59:24 +0000862 {
863 $this->file_type = 'image/jpeg';
864 }
865
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300866 $img_mimes = array('image/gif', 'image/jpeg', 'image/png');
Derek Allard2067d1a2008-11-13 22:59:24 +0000867
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300868 return in_array($this->file_type, $img_mimes, TRUE);
Derek Allard2067d1a2008-11-13 22:59:24 +0000869 }
Barry Mienydd671972010-10-04 16:33:58 +0200870
Derek Allard2067d1a2008-11-13 22:59:24 +0000871 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200872
Derek Allard2067d1a2008-11-13 22:59:24 +0000873 /**
874 * Verify that the filetype is allowed
875 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200876 * @param bool $ignore_mime
Derek Allard2067d1a2008-11-13 22:59:24 +0000877 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +0200878 */
Greg Aker58fdee82010-11-10 15:07:09 -0600879 public function is_allowed_filetype($ignore_mime = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000880 {
Andrey Andreev6ca407e2012-03-01 15:33:21 +0200881 if ($this->allowed_types === '*')
Derek Jonese12f64e2010-03-02 22:55:08 -0600882 {
883 return TRUE;
884 }
Barry Mienydd671972010-10-04 16:33:58 +0200885
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200886 if (empty($this->allowed_types) OR ! is_array($this->allowed_types))
Derek Allard2067d1a2008-11-13 22:59:24 +0000887 {
Andrey Andreevd5784082015-06-22 11:50:04 +0300888 $this->set_error('upload_no_file_types', 'debug');
Derek Allard2067d1a2008-11-13 22:59:24 +0000889 return FALSE;
890 }
Barry Mienydd671972010-10-04 16:33:58 +0200891
Derek Jonese9d723f2010-07-12 10:10:59 -0500892 $ext = strtolower(ltrim($this->file_ext, '.'));
Barry Mienydd671972010-10-04 16:33:58 +0200893
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200894 if ( ! in_array($ext, $this->allowed_types, TRUE))
Derek Allard2067d1a2008-11-13 22:59:24 +0000895 {
Derek Jonese9d723f2010-07-12 10:10:59 -0500896 return FALSE;
897 }
Derek Jonesafa282f2009-02-10 17:11:52 +0000898
Barry Mienydd671972010-10-04 16:33:58 +0200899 // Images get some additional checks
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200900 if (in_array($ext, array('gif', 'jpg', 'jpeg', 'jpe', 'png'), TRUE) && @getimagesize($this->file_temp) === FALSE)
Derek Jonese9d723f2010-07-12 10:10:59 -0500901 {
Andrey Andreev6ca407e2012-03-01 15:33:21 +0200902 return FALSE;
Derek Jonese9d723f2010-07-12 10:10:59 -0500903 }
Barry Mienydd671972010-10-04 16:33:58 +0200904
Derek Jonese9d723f2010-07-12 10:10:59 -0500905 if ($ignore_mime === TRUE)
906 {
907 return TRUE;
908 }
Barry Mienydd671972010-10-04 16:33:58 +0200909
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200910 if (isset($this->_mimes[$ext]))
Derek Jonese9d723f2010-07-12 10:10:59 -0500911 {
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200912 return is_array($this->_mimes[$ext])
913 ? in_array($this->file_type, $this->_mimes[$ext], TRUE)
914 : ($this->_mimes[$ext] === $this->file_type);
Derek Allard2067d1a2008-11-13 22:59:24 +0000915 }
Barry Mienydd671972010-10-04 16:33:58 +0200916
Derek Allard2067d1a2008-11-13 22:59:24 +0000917 return FALSE;
918 }
Barry Mienydd671972010-10-04 16:33:58 +0200919
Derek Allard2067d1a2008-11-13 22:59:24 +0000920 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200921
Derek Allard2067d1a2008-11-13 22:59:24 +0000922 /**
923 * Verify that the file is within the allowed size
924 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000925 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +0200926 */
Greg Aker58fdee82010-11-10 15:07:09 -0600927 public function is_allowed_filesize()
Derek Allard2067d1a2008-11-13 22:59:24 +0000928 {
Alex Bilbied261b1e2012-06-02 11:12:16 +0100929 return ($this->max_size === 0 OR $this->max_size > $this->file_size);
Derek Allard2067d1a2008-11-13 22:59:24 +0000930 }
Barry Mienydd671972010-10-04 16:33:58 +0200931
Derek Allard2067d1a2008-11-13 22:59:24 +0000932 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200933
Derek Allard2067d1a2008-11-13 22:59:24 +0000934 /**
935 * Verify that the image is within the allowed width/height
936 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000937 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +0200938 */
Greg Aker58fdee82010-11-10 15:07:09 -0600939 public function is_allowed_dimensions()
Derek Allard2067d1a2008-11-13 22:59:24 +0000940 {
941 if ( ! $this->is_image())
942 {
943 return TRUE;
944 }
945
946 if (function_exists('getimagesize'))
947 {
948 $D = @getimagesize($this->file_temp);
949
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300950 if ($this->max_width > 0 && $D[0] > $this->max_width)
Derek Allard2067d1a2008-11-13 22:59:24 +0000951 {
952 return FALSE;
953 }
954
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300955 if ($this->max_height > 0 && $D[1] > $this->max_height)
Derek Allard2067d1a2008-11-13 22:59:24 +0000956 {
957 return FALSE;
958 }
Andrey Andreev05aa2d62012-12-03 16:06:55 +0200959
960 if ($this->min_width > 0 && $D[0] < $this->min_width)
961 {
962 return FALSE;
963 }
964
965 if ($this->min_height > 0 && $D[1] < $this->min_height)
966 {
967 return FALSE;
968 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000969 }
970
971 return TRUE;
972 }
Barry Mienydd671972010-10-04 16:33:58 +0200973
Derek Allard2067d1a2008-11-13 22:59:24 +0000974 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200975
Derek Allard2067d1a2008-11-13 22:59:24 +0000976 /**
977 * Validate Upload Path
978 *
979 * Verifies that it is a valid upload path with proper permissions.
980 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000981 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +0200982 */
Greg Aker58fdee82010-11-10 15:07:09 -0600983 public function validate_upload_path()
Derek Allard2067d1a2008-11-13 22:59:24 +0000984 {
Alex Bilbied261b1e2012-06-02 11:12:16 +0100985 if ($this->upload_path === '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000986 {
Andrey Andreevd5784082015-06-22 11:50:04 +0300987 $this->set_error('upload_no_filepath', 'error');
Derek Allard2067d1a2008-11-13 22:59:24 +0000988 return FALSE;
989 }
Barry Mienydd671972010-10-04 16:33:58 +0200990
Andrey Andreevea41c8a2014-02-26 18:31:02 +0200991 if (realpath($this->upload_path) !== FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000992 {
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300993 $this->upload_path = str_replace('\\', '/', realpath($this->upload_path));
Derek Allard2067d1a2008-11-13 22:59:24 +0000994 }
995
Andrey Andreev382b5132014-02-26 18:41:59 +0200996 if ( ! is_dir($this->upload_path))
Derek Allard2067d1a2008-11-13 22:59:24 +0000997 {
Andrey Andreevd5784082015-06-22 11:50:04 +0300998 $this->set_error('upload_no_filepath', 'error');
Derek Allard2067d1a2008-11-13 22:59:24 +0000999 return FALSE;
1000 }
1001
1002 if ( ! is_really_writable($this->upload_path))
1003 {
Andrey Andreevd5784082015-06-22 11:50:04 +03001004 $this->set_error('upload_not_writable', 'error');
Derek Allard2067d1a2008-11-13 22:59:24 +00001005 return FALSE;
1006 }
1007
Andrey Andreev8e6f7a92012-03-26 20:13:00 +03001008 $this->upload_path = preg_replace('/(.+?)\/*$/', '\\1/', $this->upload_path);
Derek Allard2067d1a2008-11-13 22:59:24 +00001009 return TRUE;
1010 }
Barry Mienydd671972010-10-04 16:33:58 +02001011
Derek Allard2067d1a2008-11-13 22:59:24 +00001012 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +02001013
Derek Allard2067d1a2008-11-13 22:59:24 +00001014 /**
1015 * Extract the file extension
1016 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +02001017 * @param string $filename
Derek Allard2067d1a2008-11-13 22:59:24 +00001018 * @return string
Barry Mienydd671972010-10-04 16:33:58 +02001019 */
Greg Aker58fdee82010-11-10 15:07:09 -06001020 public function get_extension($filename)
Derek Allard2067d1a2008-11-13 22:59:24 +00001021 {
1022 $x = explode('.', $filename);
Adrianf496d132013-06-24 15:56:45 +02001023
Adrian74a228b2013-06-25 12:09:22 +02001024 if (count($x) === 1)
1025 {
Andrey Andreev10fb7d12015-08-03 10:05:29 +03001026 return '';
Adrian74a228b2013-06-25 12:09:22 +02001027 }
1028
1029 $ext = ($this->file_ext_tolower) ? strtolower(end($x)) : end($x);
1030 return '.'.$ext;
Barry Mienydd671972010-10-04 16:33:58 +02001031 }
1032
Derek Allard2067d1a2008-11-13 22:59:24 +00001033 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +02001034
Derek Allard2067d1a2008-11-13 22:59:24 +00001035 /**
Derek Allard2067d1a2008-11-13 22:59:24 +00001036 * Limit the File Name Length
1037 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +03001038 * @param string $filename
1039 * @param int $length
Derek Allard2067d1a2008-11-13 22:59:24 +00001040 * @return string
Barry Mienydd671972010-10-04 16:33:58 +02001041 */
Greg Aker58fdee82010-11-10 15:07:09 -06001042 public function limit_filename_length($filename, $length)
Derek Allard2067d1a2008-11-13 22:59:24 +00001043 {
1044 if (strlen($filename) < $length)
1045 {
1046 return $filename;
1047 }
Barry Mienydd671972010-10-04 16:33:58 +02001048
Derek Allard2067d1a2008-11-13 22:59:24 +00001049 $ext = '';
1050 if (strpos($filename, '.') !== FALSE)
1051 {
1052 $parts = explode('.', $filename);
1053 $ext = '.'.array_pop($parts);
1054 $filename = implode('.', $parts);
1055 }
Barry Mienydd671972010-10-04 16:33:58 +02001056
Derek Allard2067d1a2008-11-13 22:59:24 +00001057 return substr($filename, 0, ($length - strlen($ext))).$ext;
1058 }
1059
1060 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +02001061
Derek Allard2067d1a2008-11-13 22:59:24 +00001062 /**
1063 * Runs the file through the XSS clean function
1064 *
1065 * This prevents people from embedding malicious code in their files.
1066 * I'm not sure that it won't negatively affect certain files in unexpected ways,
1067 * but so far I haven't found that it causes trouble.
1068 *
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +02001069 * @return string
Barry Mienydd671972010-10-04 16:33:58 +02001070 */
Greg Aker58fdee82010-11-10 15:07:09 -06001071 public function do_xss_clean()
Barry Mienydd671972010-10-04 16:33:58 +02001072 {
Derek Jonese9d723f2010-07-12 10:10:59 -05001073 $file = $this->file_temp;
Barry Mienydd671972010-10-04 16:33:58 +02001074
Andrey Andreev5036c9c2012-06-04 15:34:56 +03001075 if (filesize($file) == 0)
Derek Allard2067d1a2008-11-13 22:59:24 +00001076 {
1077 return FALSE;
1078 }
Barry Mienydd671972010-10-04 16:33:58 +02001079
Andrey Andreevc839d282012-06-07 14:35:27 +03001080 if (memory_get_usage() && ($memory_limit = ini_get('memory_limit')))
Greg Akerf82e51c2010-04-14 19:33:50 -05001081 {
Andrey Andreevc839d282012-06-07 14:35:27 +03001082 $memory_limit *= 1024 * 1024;
Barry Mienydd671972010-10-04 16:33:58 +02001083
Greg Akerc78a2592010-06-09 11:45:32 -05001084 // There was a bug/behavioural change in PHP 5.2, where numbers over one million get output
Andrey Andreev8e6f7a92012-03-26 20:13:00 +03001085 // into scientific notation. number_format() ensures this number is an integer
Greg Akerc78a2592010-06-09 11:45:32 -05001086 // http://bugs.php.net/bug.php?id=43053
Barry Mienydd671972010-10-04 16:33:58 +02001087
Andrey Andreevc839d282012-06-07 14:35:27 +03001088 $memory_limit = number_format(ceil(filesize($file) + $memory_limit), 0, '.', '');
Barry Mienydd671972010-10-04 16:33:58 +02001089
Andrey Andreevc839d282012-06-07 14:35:27 +03001090 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 -05001091 }
1092
1093 // If the file being uploaded is an image, then we should have no problem with XSS attacks (in theory), but
1094 // 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 +03001095 // using IE who looks at the image. It does this by inspecting the first 255 bytes of an image. To get around this
1096 // 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 +02001097 // 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 -05001098 // attempted XSS attack.
1099
1100 if (function_exists('getimagesize') && @getimagesize($file) !== FALSE)
1101 {
Barry Mienydd671972010-10-04 16:33:58 +02001102 if (($file = @fopen($file, 'rb')) === FALSE) // "b" to force binary
1103 {
Greg Akerf82e51c2010-04-14 19:33:50 -05001104 return FALSE; // Couldn't open the file, return FALSE
Barry Mienydd671972010-10-04 16:33:58 +02001105 }
Greg Akerf82e51c2010-04-14 19:33:50 -05001106
Barry Mienydd671972010-10-04 16:33:58 +02001107 $opening_bytes = fread($file, 256);
1108 fclose($file);
Greg Akerf82e51c2010-04-14 19:33:50 -05001109
1110 // These are known to throw IE into mime-type detection chaos
1111 // <a, <body, <head, <html, <img, <plaintext, <pre, <script, <table, <title
1112 // title is basically just in SVG, but we filter it anyhow
1113
vlakoff35672462013-02-15 01:36:04 +01001114 // if it's an image or no "triggers" detected in the first 256 bytes - we're good
Andrey Andreevc839d282012-06-07 14:35:27 +03001115 return ! preg_match('/<(a|body|head|html|img|plaintext|pre|script|table|title)[\s>]/i', $opening_bytes);
Greg Akerf82e51c2010-04-14 19:33:50 -05001116 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001117
1118 if (($data = @file_get_contents($file)) === FALSE)
1119 {
1120 return FALSE;
1121 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001122
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +02001123 return $this->_CI->security->xss_clean($data, TRUE);
Derek Allard2067d1a2008-11-13 22:59:24 +00001124 }
Barry Mienydd671972010-10-04 16:33:58 +02001125
Derek Allard2067d1a2008-11-13 22:59:24 +00001126 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +02001127
Derek Allard2067d1a2008-11-13 22:59:24 +00001128 /**
1129 * Set an error message
1130 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +02001131 * @param string $msg
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +02001132 * @return CI_Upload
Barry Mienydd671972010-10-04 16:33:58 +02001133 */
Andrey Andreevd5784082015-06-22 11:50:04 +03001134 public function set_error($msg, $log_level = 'error')
Derek Allard2067d1a2008-11-13 22:59:24 +00001135 {
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +02001136 $this->_CI->lang->load('upload');
Barry Mienydd671972010-10-04 16:33:58 +02001137
Andrey Andreev119d8a72014-01-08 15:27:53 +02001138 is_array($msg) OR $msg = array($msg);
Darren Benney38d5f4b2013-03-30 21:00:38 +00001139 foreach ($msg as $val)
Derek Allard2067d1a2008-11-13 22:59:24 +00001140 {
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +02001141 $msg = ($this->_CI->lang->line($val) === FALSE) ? $val : $this->_CI->lang->line($val);
Derek Allard2067d1a2008-11-13 22:59:24 +00001142 $this->error_msg[] = $msg;
Andrey Andreevd5784082015-06-22 11:50:04 +03001143 log_message($log_level, $msg);
Derek Allard2067d1a2008-11-13 22:59:24 +00001144 }
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +02001145
1146 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +00001147 }
Barry Mienydd671972010-10-04 16:33:58 +02001148
Derek Allard2067d1a2008-11-13 22:59:24 +00001149 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +02001150
Derek Allard2067d1a2008-11-13 22:59:24 +00001151 /**
1152 * Display the error message
1153 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +02001154 * @param string $open
1155 * @param string $close
Derek Allard2067d1a2008-11-13 22:59:24 +00001156 * @return string
Barry Mienydd671972010-10-04 16:33:58 +02001157 */
Greg Aker58fdee82010-11-10 15:07:09 -06001158 public function display_errors($open = '<p>', $close = '</p>')
Derek Allard2067d1a2008-11-13 22:59:24 +00001159 {
Andrey Andreev8e6f7a92012-03-26 20:13:00 +03001160 return (count($this->error_msg) > 0) ? $open.implode($close.$open, $this->error_msg).$close : '';
Derek Allard2067d1a2008-11-13 22:59:24 +00001161 }
Barry Mienydd671972010-10-04 16:33:58 +02001162
Derek Allard2067d1a2008-11-13 22:59:24 +00001163 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +02001164
Derek Allard2067d1a2008-11-13 22:59:24 +00001165 /**
Derek Allard2067d1a2008-11-13 22:59:24 +00001166 * Prep Filename
1167 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +02001168 * Prevents possible script execution from Apache's handling
1169 * of files' multiple extensions.
Derek Allard2067d1a2008-11-13 22:59:24 +00001170 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +02001171 * @link http://httpd.apache.org/docs/1.3/mod/mod_mime.html#multipleext
1172 *
1173 * @param string $filename
Derek Allard2067d1a2008-11-13 22:59:24 +00001174 * @return string
1175 */
Greg Aker58fdee82010-11-10 15:07:09 -06001176 protected function _prep_filename($filename)
Derek Allard2067d1a2008-11-13 22:59:24 +00001177 {
Andrey Andreevf38c9c22014-08-27 14:56:31 +03001178 if ($this->mod_mime_fix === FALSE OR $this->allowed_types === '*' OR ($ext_pos = strrpos($filename, '.')) === FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001179 {
1180 return $filename;
1181 }
Derek Allard616dab82009-02-16 15:44:32 +00001182
Andrey Andreevf38c9c22014-08-27 14:56:31 +03001183 $ext = substr($filename, $ext_pos);
1184 $filename = substr($filename, 0, $ext_pos);
1185 return str_replace('.', '_', $filename).$ext;
Derek Allard2067d1a2008-11-13 22:59:24 +00001186 }
1187
1188 // --------------------------------------------------------------------
1189
Andrey Andreev3a3c9472011-09-24 14:25:33 +03001190 /**
1191 * File MIME type
1192 *
1193 * Detects the (actual) MIME type of the uploaded file, if possible.
1194 * The input array is expected to be $_FILES[$field]
1195 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +02001196 * @param array $file
Andrey Andreev3a3c9472011-09-24 14:25:33 +03001197 * @return void
1198 */
1199 protected function _file_mime_type($file)
1200 {
Andrey Andreeva49e3812011-12-09 13:05:22 +02001201 // We'll need this to validate the MIME info string (e.g. text/plain; charset=us-ascii)
Andrey Andreevf7aed122011-12-13 11:01:06 +02001202 $regexp = '/^([a-z\-]+\/[a-z0-9\-\.\+]+)(;\s.+)?$/';
Andrey Andreeva49e3812011-12-09 13:05:22 +02001203
1204 /* Fileinfo extension - most reliable method
1205 *
1206 * Unfortunately, prior to PHP 5.3 - it's only available as a PECL extension and the
1207 * more convenient FILEINFO_MIME_TYPE flag doesn't exist.
1208 */
1209 if (function_exists('finfo_file'))
Andrey Andreev3a3c9472011-09-24 14:25:33 +03001210 {
Andrey Andreevd60e7002012-06-17 00:03:03 +03001211 $finfo = @finfo_open(FILEINFO_MIME);
Andrey Andreeva49e3812011-12-09 13:05:22 +02001212 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 +03001213 {
Andrey Andreeva49e3812011-12-09 13:05:22 +02001214 $mime = @finfo_file($finfo, $file['tmp_name']);
1215 finfo_close($finfo);
Andrey Andreev3a3c9472011-09-24 14:25:33 +03001216
1217 /* According to the comments section of the PHP manual page,
1218 * it is possible that this function returns an empty string
Andrey Andreev2cec39f2011-09-24 22:59:37 +03001219 * for some files (e.g. if they don't exist in the magic MIME database)
Andrey Andreev3a3c9472011-09-24 14:25:33 +03001220 */
Andrey Andreeva49e3812011-12-09 13:05:22 +02001221 if (is_string($mime) && preg_match($regexp, $mime, $matches))
Andrey Andreev3a3c9472011-09-24 14:25:33 +03001222 {
Andrey Andreeva49e3812011-12-09 13:05:22 +02001223 $this->file_type = $matches[1];
Andrey Andreev3a3c9472011-09-24 14:25:33 +03001224 return;
1225 }
1226 }
1227 }
1228
Andrey Andreeva49e3812011-12-09 13:05:22 +02001229 /* This is an ugly hack, but UNIX-type systems provide a "native" way to detect the file type,
1230 * which is still more secure than depending on the value of $_FILES[$field]['type'], and as it
1231 * was reported in issue #750 (https://github.com/EllisLab/CodeIgniter/issues/750) - it's better
1232 * than mime_content_type() as well, hence the attempts to try calling the command line with
1233 * three different functions.
Andrey Andreev6700b932011-09-24 14:25:33 +03001234 *
1235 * Notes:
Andrey Andreev59654312011-12-02 14:28:54 +02001236 * - the DIRECTORY_SEPARATOR comparison ensures that we're not on a Windows system
Andrey Andreeva49e3812011-12-09 13:05:22 +02001237 * - many system admins would disable the exec(), shell_exec(), popen() and similar functions
vlakofff3994252013-02-19 01:45:23 +01001238 * due to security concerns, hence the function_usable() checks
Andrey Andreev6700b932011-09-24 14:25:33 +03001239 */
Andrey Andreeva49e3812011-12-09 13:05:22 +02001240 if (DIRECTORY_SEPARATOR !== '\\')
Andrey Andreev6700b932011-09-24 14:25:33 +03001241 {
Andrey Andreevd60e7002012-06-17 00:03:03 +03001242 $cmd = function_exists('escapeshellarg')
1243 ? 'file --brief --mime '.escapeshellarg($file['tmp_name']).' 2>&1'
1244 : 'file --brief --mime '.$file['tmp_name'].' 2>&1';
Andrey Andreeva49e3812011-12-09 13:05:22 +02001245
Andrey Andreeve9d2dc82012-11-07 14:23:29 +02001246 if (function_usable('exec'))
Andrey Andreev6700b932011-09-24 14:25:33 +03001247 {
Andrey Andreeva49e3812011-12-09 13:05:22 +02001248 /* 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 +01001249 * 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 +02001250 * anything that could already be set for $mime previously. This effectively makes the second parameter a dummy
1251 * value, which is only put to allow us to get the return status code.
1252 */
1253 $mime = @exec($cmd, $mime, $return_status);
1254 if ($return_status === 0 && is_string($mime) && preg_match($regexp, $mime, $matches))
1255 {
1256 $this->file_type = $matches[1];
1257 return;
1258 }
1259 }
1260
Andrey Andreevf6274742014-02-20 18:05:58 +02001261 if ( ! ini_get('safe_mode') && function_usable('shell_exec'))
Andrey Andreeva49e3812011-12-09 13:05:22 +02001262 {
1263 $mime = @shell_exec($cmd);
1264 if (strlen($mime) > 0)
1265 {
1266 $mime = explode("\n", trim($mime));
1267 if (preg_match($regexp, $mime[(count($mime) - 1)], $matches))
1268 {
1269 $this->file_type = $matches[1];
1270 return;
1271 }
1272 }
1273 }
1274
Andrey Andreeve9d2dc82012-11-07 14:23:29 +02001275 if (function_usable('popen'))
Andrey Andreeva49e3812011-12-09 13:05:22 +02001276 {
1277 $proc = @popen($cmd, 'r');
1278 if (is_resource($proc))
1279 {
tubalmartin010f1f42012-03-03 22:24:31 +01001280 $mime = @fread($proc, 512);
Andrey Andreeva49e3812011-12-09 13:05:22 +02001281 @pclose($proc);
1282 if ($mime !== FALSE)
1283 {
1284 $mime = explode("\n", trim($mime));
1285 if (preg_match($regexp, $mime[(count($mime) - 1)], $matches))
1286 {
1287 $this->file_type = $matches[1];
1288 return;
1289 }
1290 }
1291 }
1292 }
1293 }
1294
1295 // Fall back to the deprecated mime_content_type(), if available (still better than $_FILES[$field]['type'])
Andrey Andreev3a3c9472011-09-24 14:25:33 +03001296 if (function_exists('mime_content_type'))
1297 {
1298 $this->file_type = @mime_content_type($file['tmp_name']);
Andrey Andreeva49e3812011-12-09 13:05:22 +02001299 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 +03001300 {
Andrey Andreev3a3c9472011-09-24 14:25:33 +03001301 return;
1302 }
1303 }
1304
1305 $this->file_type = $file['type'];
1306 }
1307
Derek Allard2067d1a2008-11-13 22:59:24 +00001308}