blob: 29f9f5ff99372ead5b12a078a0d9b582a090958f [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 *
Instructor, BCIT0e59db62019-01-01 08:34:36 -08009 * Copyright (c) 2014 - 2019, 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/)
Instructor, BCIT0e59db62019-01-01 08:34:36 -080032 * @copyright Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/)
33 * @license https://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 Andreeve13fa9f2016-05-20 17:30:07 +0300289 * @param array $config
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
Andrey Andreev71d64cb2016-02-04 15:04:35 +0200529 if ($this->file_ext_tolower && ($ext_length = strlen($this->file_ext)))
530 {
531 // file_ext was previously lower-cased by a get_extension() call
532 $this->file_name = substr($this->file_name, 0, -$ext_length).$this->file_ext;
533 }
534
Derek Allard2067d1a2008-11-13 22:59:24 +0000535 /*
536 * Validate the file name
537 * This function appends an number onto the end of
538 * the file if one with the same name already exists.
539 * If it returns false there was a problem.
540 */
541 $this->orig_name = $this->file_name;
Andrey Andreev91da5d12015-07-09 15:14:35 +0300542 if (FALSE === ($this->file_name = $this->set_filename($this->upload_path, $this->file_name)))
Derek Allard2067d1a2008-11-13 22:59:24 +0000543 {
Andrey Andreev91da5d12015-07-09 15:14:35 +0300544 return FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000545 }
546
547 /*
Derek Jonese9d723f2010-07-12 10:10:59 -0500548 * Run the file through the XSS hacking filter
549 * This helps prevent malicious code from being
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300550 * embedded within a file. Scripts can easily
Derek Jonese9d723f2010-07-12 10:10:59 -0500551 * be disguised as images or other file types.
552 */
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300553 if ($this->xss_clean && $this->do_xss_clean() === FALSE)
Derek Jonese9d723f2010-07-12 10:10:59 -0500554 {
Andrey Andreevd5784082015-06-22 11:50:04 +0300555 $this->set_error('upload_unable_to_write_file', 'error');
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300556 return FALSE;
Derek Jonese9d723f2010-07-12 10:10:59 -0500557 }
558
559 /*
Derek Allard2067d1a2008-11-13 22:59:24 +0000560 * Move the file to the final destination
561 * To deal with different server configurations
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300562 * we'll attempt to use copy() first. If that fails
563 * we'll use move_uploaded_file(). One of the two should
Derek Allard2067d1a2008-11-13 22:59:24 +0000564 * reliably work in most environments
565 */
566 if ( ! @copy($this->file_temp, $this->upload_path.$this->file_name))
567 {
568 if ( ! @move_uploaded_file($this->file_temp, $this->upload_path.$this->file_name))
569 {
Andrey Andreevd5784082015-06-22 11:50:04 +0300570 $this->set_error('upload_destination_error', 'error');
Barry Mienydd671972010-10-04 16:33:58 +0200571 return FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000572 }
573 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000574
575 /*
576 * Set the finalized image dimensions
577 * This sets the image width/height (assuming the
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300578 * file was an image). We use this information
Derek Allard2067d1a2008-11-13 22:59:24 +0000579 * in the "data" function.
580 */
581 $this->set_image_properties($this->upload_path.$this->file_name);
582
583 return TRUE;
584 }
Barry Mienydd671972010-10-04 16:33:58 +0200585
Derek Allard2067d1a2008-11-13 22:59:24 +0000586 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200587
Derek Allard2067d1a2008-11-13 22:59:24 +0000588 /**
589 * Finalized Data Array
Barry Mienydd671972010-10-04 16:33:58 +0200590 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000591 * Returns an associative array containing all of the information
592 * related to the upload, allowing the developer easy access in one array.
593 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200594 * @param string $index
Michiel Vugteveen0ee287e2012-06-11 10:38:14 +0200595 * @return mixed
Barry Mienydd671972010-10-04 16:33:58 +0200596 */
Michiel Vugteveendca9f232012-06-11 09:17:14 +0200597 public function data($index = NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +0000598 {
Michiel Vugteveendca9f232012-06-11 09:17:14 +0200599 $data = array(
Michiel Vugteveen3a7fb042012-06-11 09:29:16 +0200600 'file_name' => $this->file_name,
601 'file_type' => $this->file_type,
602 'file_path' => $this->upload_path,
603 'full_path' => $this->upload_path.$this->file_name,
Andrey Andreev81b13ba2016-07-19 15:45:37 +0300604 'raw_name' => substr($this->file_name, 0, -strlen($this->file_ext)),
Michiel Vugteveen3a7fb042012-06-11 09:29:16 +0200605 'orig_name' => $this->orig_name,
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300606 'client_name' => $this->client_name,
Michiel Vugteveen3a7fb042012-06-11 09:29:16 +0200607 'file_ext' => $this->file_ext,
608 'file_size' => $this->file_size,
609 'is_image' => $this->is_image(),
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300610 'image_width' => $this->image_width,
611 'image_height' => $this->image_height,
612 'image_type' => $this->image_type,
613 'image_size_str' => $this->image_size_str,
614 );
Michiel Vugteveendca9f232012-06-11 09:17:14 +0200615
Michiel Vugteveen46a04292012-06-11 10:37:52 +0200616 if ( ! empty($index))
Michiel Vugteveendca9f232012-06-11 09:17:14 +0200617 {
Michiel Vugteveen46a04292012-06-11 10:37:52 +0200618 return isset($data[$index]) ? $data[$index] : NULL;
Michiel Vugteveendca9f232012-06-11 09:17:14 +0200619 }
620
Michiel Vugteveen46a04292012-06-11 10:37:52 +0200621 return $data;
Derek Allard2067d1a2008-11-13 22:59:24 +0000622 }
Barry Mienydd671972010-10-04 16:33:58 +0200623
Derek Allard2067d1a2008-11-13 22:59:24 +0000624 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200625
Derek Allard2067d1a2008-11-13 22:59:24 +0000626 /**
627 * Set Upload Path
628 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200629 * @param string $path
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200630 * @return CI_Upload
Barry Mienydd671972010-10-04 16:33:58 +0200631 */
Greg Aker58fdee82010-11-10 15:07:09 -0600632 public function set_upload_path($path)
Derek Allard2067d1a2008-11-13 22:59:24 +0000633 {
634 // Make sure it has a trailing slash
635 $this->upload_path = rtrim($path, '/').'/';
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200636 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000637 }
Barry Mienydd671972010-10-04 16:33:58 +0200638
Derek Allard2067d1a2008-11-13 22:59:24 +0000639 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200640
Derek Allard2067d1a2008-11-13 22:59:24 +0000641 /**
642 * Set the file name
643 *
644 * This function takes a filename/path as input and looks for the
645 * existence of a file with the same name. If found, it will append a
646 * number to the end of the filename to avoid overwriting a pre-existing file.
647 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200648 * @param string $path
649 * @param string $filename
Derek Allard2067d1a2008-11-13 22:59:24 +0000650 * @return string
Barry Mienydd671972010-10-04 16:33:58 +0200651 */
Greg Aker58fdee82010-11-10 15:07:09 -0600652 public function set_filename($path, $filename)
Derek Allard2067d1a2008-11-13 22:59:24 +0000653 {
Alex Bilbied261b1e2012-06-02 11:12:16 +0100654 if ($this->encrypt_name === TRUE)
Barry Mienydd671972010-10-04 16:33:58 +0200655 {
Barry Mienydd671972010-10-04 16:33:58 +0200656 $filename = md5(uniqid(mt_rand())).$this->file_ext;
Derek Allard2067d1a2008-11-13 22:59:24 +0000657 }
Barry Mienydd671972010-10-04 16:33:58 +0200658
Andrey Andreev91da5d12015-07-09 15:14:35 +0300659 if ($this->overwrite === TRUE OR ! file_exists($path.$filename))
Derek Allard2067d1a2008-11-13 22:59:24 +0000660 {
661 return $filename;
662 }
Barry Mienydd671972010-10-04 16:33:58 +0200663
Derek Allard2067d1a2008-11-13 22:59:24 +0000664 $filename = str_replace($this->file_ext, '', $filename);
Barry Mienydd671972010-10-04 16:33:58 +0200665
Derek Allard2067d1a2008-11-13 22:59:24 +0000666 $new_filename = '';
Adam Jackettccbbea12011-08-21 16:19:11 -0400667 for ($i = 1; $i < $this->max_filename_increment; $i++)
Barry Mienydd671972010-10-04 16:33:58 +0200668 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000669 if ( ! file_exists($path.$filename.$i.$this->file_ext))
670 {
671 $new_filename = $filename.$i.$this->file_ext;
672 break;
673 }
674 }
675
Alex Bilbied261b1e2012-06-02 11:12:16 +0100676 if ($new_filename === '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000677 {
Andrey Andreevd5784082015-06-22 11:50:04 +0300678 $this->set_error('upload_bad_filename', 'debug');
Derek Allard2067d1a2008-11-13 22:59:24 +0000679 return FALSE;
680 }
Andrey Andreevfbe4d792017-12-27 19:49:03 +0200681
682 return $new_filename;
Derek Allard2067d1a2008-11-13 22:59:24 +0000683 }
Barry Mienydd671972010-10-04 16:33:58 +0200684
Derek Allard2067d1a2008-11-13 22:59:24 +0000685 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200686
Derek Allard2067d1a2008-11-13 22:59:24 +0000687 /**
688 * Set Maximum File Size
689 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200690 * @param int $n
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200691 * @return CI_Upload
Barry Mienydd671972010-10-04 16:33:58 +0200692 */
Greg Aker58fdee82010-11-10 15:07:09 -0600693 public function set_max_filesize($n)
Derek Allard2067d1a2008-11-13 22:59:24 +0000694 {
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200695 $this->max_size = ($n < 0) ? 0 : (int) $n;
696 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000697 }
Barry Mienydd671972010-10-04 16:33:58 +0200698
Derek Allard2067d1a2008-11-13 22:59:24 +0000699 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200700
Derek Allard2067d1a2008-11-13 22:59:24 +0000701 /**
Andrey Andreev1a8d95a2015-07-23 10:47:53 +0300702 * Set Maximum File Size
703 *
704 * An internal alias to set_max_filesize() to help with configuration
705 * as initialize() will look for a set_<property_name>() method ...
706 *
707 * @param int $n
708 * @return CI_Upload
709 */
710 protected function set_max_size($n)
711 {
712 return $this->set_max_filesize($n);
713 }
714
715 // --------------------------------------------------------------------
716
717 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000718 * Set Maximum File Name Length
719 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200720 * @param int $n
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200721 * @return CI_Upload
Barry Mienydd671972010-10-04 16:33:58 +0200722 */
Greg Aker58fdee82010-11-10 15:07:09 -0600723 public function set_max_filename($n)
Derek Allard2067d1a2008-11-13 22:59:24 +0000724 {
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200725 $this->max_filename = ($n < 0) ? 0 : (int) $n;
726 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000727 }
728
729 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200730
Derek Allard2067d1a2008-11-13 22:59:24 +0000731 /**
732 * Set Maximum Image Width
733 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200734 * @param int $n
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200735 * @return CI_Upload
Barry Mienydd671972010-10-04 16:33:58 +0200736 */
Greg Aker58fdee82010-11-10 15:07:09 -0600737 public function set_max_width($n)
Derek Allard2067d1a2008-11-13 22:59:24 +0000738 {
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200739 $this->max_width = ($n < 0) ? 0 : (int) $n;
740 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000741 }
Barry Mienydd671972010-10-04 16:33:58 +0200742
Derek Allard2067d1a2008-11-13 22:59:24 +0000743 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200744
Derek Allard2067d1a2008-11-13 22:59:24 +0000745 /**
746 * Set Maximum Image Height
747 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200748 * @param int $n
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200749 * @return CI_Upload
Barry Mienydd671972010-10-04 16:33:58 +0200750 */
Greg Aker58fdee82010-11-10 15:07:09 -0600751 public function set_max_height($n)
Derek Allard2067d1a2008-11-13 22:59:24 +0000752 {
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200753 $this->max_height = ($n < 0) ? 0 : (int) $n;
754 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000755 }
Barry Mienydd671972010-10-04 16:33:58 +0200756
Derek Allard2067d1a2008-11-13 22:59:24 +0000757 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200758
Derek Allard2067d1a2008-11-13 22:59:24 +0000759 /**
Andrey Andreev05aa2d62012-12-03 16:06:55 +0200760 * Set minimum image width
761 *
762 * @param int $n
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200763 * @return CI_Upload
Andrey Andreev05aa2d62012-12-03 16:06:55 +0200764 */
765 public function set_min_width($n)
766 {
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200767 $this->min_width = ($n < 0) ? 0 : (int) $n;
768 return $this;
Andrey Andreev05aa2d62012-12-03 16:06:55 +0200769 }
770
771 // --------------------------------------------------------------------
772
773 /**
774 * Set minimum image height
775 *
776 * @param int $n
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200777 * @return CI_Upload
Andrey Andreev05aa2d62012-12-03 16:06:55 +0200778 */
779 public function set_min_height($n)
780 {
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200781 $this->min_height = ($n < 0) ? 0 : (int) $n;
782 return $this;
Andrey Andreev05aa2d62012-12-03 16:06:55 +0200783 }
784
785 // --------------------------------------------------------------------
786
787 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000788 * Set Allowed File Types
789 *
Andrey Andreev82179bf2014-02-22 00:29:53 +0200790 * @param mixed $types
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200791 * @return CI_Upload
Barry Mienydd671972010-10-04 16:33:58 +0200792 */
Greg Aker58fdee82010-11-10 15:07:09 -0600793 public function set_allowed_types($types)
Derek Allard2067d1a2008-11-13 22:59:24 +0000794 {
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200795 $this->allowed_types = (is_array($types) OR $types === '*')
796 ? $types
797 : explode('|', $types);
798 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000799 }
Barry Mienydd671972010-10-04 16:33:58 +0200800
Derek Allard2067d1a2008-11-13 22:59:24 +0000801 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200802
Derek Allard2067d1a2008-11-13 22:59:24 +0000803 /**
804 * Set Image Properties
805 *
806 * Uses GD to determine the width/height/type of image
807 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200808 * @param string $path
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200809 * @return CI_Upload
Barry Mienydd671972010-10-04 16:33:58 +0200810 */
Greg Aker58fdee82010-11-10 15:07:09 -0600811 public function set_image_properties($path = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000812 {
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200813 if ($this->is_image() && function_exists('getimagesize'))
Derek Allard2067d1a2008-11-13 22:59:24 +0000814 {
815 if (FALSE !== ($D = @getimagesize($path)))
Barry Mienydd671972010-10-04 16:33:58 +0200816 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000817 $types = array(1 => 'gif', 2 => 'jpeg', 3 => 'png');
818
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300819 $this->image_width = $D[0];
820 $this->image_height = $D[1];
821 $this->image_type = isset($types[$D[2]]) ? $types[$D[2]] : 'unknown';
822 $this->image_size_str = $D[3]; // string containing height and width
Derek Allard2067d1a2008-11-13 22:59:24 +0000823 }
824 }
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200825
826 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000827 }
Barry Mienydd671972010-10-04 16:33:58 +0200828
Derek Allard2067d1a2008-11-13 22:59:24 +0000829 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200830
Derek Allard2067d1a2008-11-13 22:59:24 +0000831 /**
832 * Set XSS Clean
833 *
834 * Enables the XSS flag so that the file that was uploaded
835 * will be run through the XSS filter.
836 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200837 * @param bool $flag
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200838 * @return CI_Upload
Derek Allard2067d1a2008-11-13 22:59:24 +0000839 */
Greg Aker58fdee82010-11-10 15:07:09 -0600840 public function set_xss_clean($flag = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000841 {
Alex Bilbied261b1e2012-06-02 11:12:16 +0100842 $this->xss_clean = ($flag === TRUE);
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200843 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +0000844 }
Barry Mienydd671972010-10-04 16:33:58 +0200845
Derek Allard2067d1a2008-11-13 22:59:24 +0000846 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200847
Derek Allard2067d1a2008-11-13 22:59:24 +0000848 /**
849 * Validate the image
850 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000851 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +0200852 */
Greg Aker58fdee82010-11-10 15:07:09 -0600853 public function is_image()
Derek Allard2067d1a2008-11-13 22:59:24 +0000854 {
855 // IE will sometimes return odd mime-types during upload, so here we just standardize all
856 // jpegs or pngs to the same file type.
857
Derek Jones4b9c6292011-07-01 17:40:48 -0500858 $png_mimes = array('image/x-png');
Derek Allard2067d1a2008-11-13 22:59:24 +0000859 $jpeg_mimes = array('image/jpg', 'image/jpe', 'image/jpeg', 'image/pjpeg');
Barry Mienydd671972010-10-04 16:33:58 +0200860
Derek Allard2067d1a2008-11-13 22:59:24 +0000861 if (in_array($this->file_type, $png_mimes))
862 {
863 $this->file_type = 'image/png';
864 }
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300865 elseif (in_array($this->file_type, $jpeg_mimes))
Derek Allard2067d1a2008-11-13 22:59:24 +0000866 {
867 $this->file_type = 'image/jpeg';
868 }
869
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300870 $img_mimes = array('image/gif', 'image/jpeg', 'image/png');
Derek Allard2067d1a2008-11-13 22:59:24 +0000871
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300872 return in_array($this->file_type, $img_mimes, TRUE);
Derek Allard2067d1a2008-11-13 22:59:24 +0000873 }
Barry Mienydd671972010-10-04 16:33:58 +0200874
Derek Allard2067d1a2008-11-13 22:59:24 +0000875 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200876
Derek Allard2067d1a2008-11-13 22:59:24 +0000877 /**
878 * Verify that the filetype is allowed
879 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +0200880 * @param bool $ignore_mime
Derek Allard2067d1a2008-11-13 22:59:24 +0000881 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +0200882 */
Greg Aker58fdee82010-11-10 15:07:09 -0600883 public function is_allowed_filetype($ignore_mime = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000884 {
Andrey Andreev6ca407e2012-03-01 15:33:21 +0200885 if ($this->allowed_types === '*')
Derek Jonese12f64e2010-03-02 22:55:08 -0600886 {
887 return TRUE;
888 }
Barry Mienydd671972010-10-04 16:33:58 +0200889
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200890 if (empty($this->allowed_types) OR ! is_array($this->allowed_types))
Derek Allard2067d1a2008-11-13 22:59:24 +0000891 {
Andrey Andreevd5784082015-06-22 11:50:04 +0300892 $this->set_error('upload_no_file_types', 'debug');
Derek Allard2067d1a2008-11-13 22:59:24 +0000893 return FALSE;
894 }
Barry Mienydd671972010-10-04 16:33:58 +0200895
Derek Jonese9d723f2010-07-12 10:10:59 -0500896 $ext = strtolower(ltrim($this->file_ext, '.'));
Barry Mienydd671972010-10-04 16:33:58 +0200897
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200898 if ( ! in_array($ext, $this->allowed_types, TRUE))
Derek Allard2067d1a2008-11-13 22:59:24 +0000899 {
Derek Jonese9d723f2010-07-12 10:10:59 -0500900 return FALSE;
901 }
Derek Jonesafa282f2009-02-10 17:11:52 +0000902
Barry Mienydd671972010-10-04 16:33:58 +0200903 // Images get some additional checks
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200904 if (in_array($ext, array('gif', 'jpg', 'jpeg', 'jpe', 'png'), TRUE) && @getimagesize($this->file_temp) === FALSE)
Derek Jonese9d723f2010-07-12 10:10:59 -0500905 {
Andrey Andreev6ca407e2012-03-01 15:33:21 +0200906 return FALSE;
Derek Jonese9d723f2010-07-12 10:10:59 -0500907 }
Barry Mienydd671972010-10-04 16:33:58 +0200908
Derek Jonese9d723f2010-07-12 10:10:59 -0500909 if ($ignore_mime === TRUE)
910 {
911 return TRUE;
912 }
Barry Mienydd671972010-10-04 16:33:58 +0200913
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200914 if (isset($this->_mimes[$ext]))
Derek Jonese9d723f2010-07-12 10:10:59 -0500915 {
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +0200916 return is_array($this->_mimes[$ext])
917 ? in_array($this->file_type, $this->_mimes[$ext], TRUE)
918 : ($this->_mimes[$ext] === $this->file_type);
Derek Allard2067d1a2008-11-13 22:59:24 +0000919 }
Barry Mienydd671972010-10-04 16:33:58 +0200920
Derek Allard2067d1a2008-11-13 22:59:24 +0000921 return FALSE;
922 }
Barry Mienydd671972010-10-04 16:33:58 +0200923
Derek Allard2067d1a2008-11-13 22:59:24 +0000924 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200925
Derek Allard2067d1a2008-11-13 22:59:24 +0000926 /**
927 * Verify that the file is within the allowed size
928 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000929 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +0200930 */
Greg Aker58fdee82010-11-10 15:07:09 -0600931 public function is_allowed_filesize()
Derek Allard2067d1a2008-11-13 22:59:24 +0000932 {
Alex Bilbied261b1e2012-06-02 11:12:16 +0100933 return ($this->max_size === 0 OR $this->max_size > $this->file_size);
Derek Allard2067d1a2008-11-13 22:59:24 +0000934 }
Barry Mienydd671972010-10-04 16:33:58 +0200935
Derek Allard2067d1a2008-11-13 22:59:24 +0000936 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200937
Derek Allard2067d1a2008-11-13 22:59:24 +0000938 /**
939 * Verify that the image is within the allowed width/height
940 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000941 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +0200942 */
Greg Aker58fdee82010-11-10 15:07:09 -0600943 public function is_allowed_dimensions()
Derek Allard2067d1a2008-11-13 22:59:24 +0000944 {
945 if ( ! $this->is_image())
946 {
947 return TRUE;
948 }
949
950 if (function_exists('getimagesize'))
951 {
952 $D = @getimagesize($this->file_temp);
953
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300954 if ($this->max_width > 0 && $D[0] > $this->max_width)
Derek Allard2067d1a2008-11-13 22:59:24 +0000955 {
956 return FALSE;
957 }
958
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300959 if ($this->max_height > 0 && $D[1] > $this->max_height)
Derek Allard2067d1a2008-11-13 22:59:24 +0000960 {
961 return FALSE;
962 }
Andrey Andreev05aa2d62012-12-03 16:06:55 +0200963
964 if ($this->min_width > 0 && $D[0] < $this->min_width)
965 {
966 return FALSE;
967 }
968
969 if ($this->min_height > 0 && $D[1] < $this->min_height)
970 {
971 return FALSE;
972 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000973 }
974
975 return TRUE;
976 }
Barry Mienydd671972010-10-04 16:33:58 +0200977
Derek Allard2067d1a2008-11-13 22:59:24 +0000978 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200979
Derek Allard2067d1a2008-11-13 22:59:24 +0000980 /**
981 * Validate Upload Path
982 *
983 * Verifies that it is a valid upload path with proper permissions.
984 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000985 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +0200986 */
Greg Aker58fdee82010-11-10 15:07:09 -0600987 public function validate_upload_path()
Derek Allard2067d1a2008-11-13 22:59:24 +0000988 {
Alex Bilbied261b1e2012-06-02 11:12:16 +0100989 if ($this->upload_path === '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000990 {
Andrey Andreevd5784082015-06-22 11:50:04 +0300991 $this->set_error('upload_no_filepath', 'error');
Derek Allard2067d1a2008-11-13 22:59:24 +0000992 return FALSE;
993 }
Barry Mienydd671972010-10-04 16:33:58 +0200994
Andrey Andreevea41c8a2014-02-26 18:31:02 +0200995 if (realpath($this->upload_path) !== FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000996 {
Andrey Andreev8e6f7a92012-03-26 20:13:00 +0300997 $this->upload_path = str_replace('\\', '/', realpath($this->upload_path));
Derek Allard2067d1a2008-11-13 22:59:24 +0000998 }
999
Andrey Andreev382b5132014-02-26 18:41:59 +02001000 if ( ! is_dir($this->upload_path))
Derek Allard2067d1a2008-11-13 22:59:24 +00001001 {
Andrey Andreevd5784082015-06-22 11:50:04 +03001002 $this->set_error('upload_no_filepath', 'error');
Derek Allard2067d1a2008-11-13 22:59:24 +00001003 return FALSE;
1004 }
1005
1006 if ( ! is_really_writable($this->upload_path))
1007 {
Andrey Andreevd5784082015-06-22 11:50:04 +03001008 $this->set_error('upload_not_writable', 'error');
Derek Allard2067d1a2008-11-13 22:59:24 +00001009 return FALSE;
1010 }
1011
Andrey Andreev8e6f7a92012-03-26 20:13:00 +03001012 $this->upload_path = preg_replace('/(.+?)\/*$/', '\\1/', $this->upload_path);
Derek Allard2067d1a2008-11-13 22:59:24 +00001013 return TRUE;
1014 }
Barry Mienydd671972010-10-04 16:33:58 +02001015
Derek Allard2067d1a2008-11-13 22:59:24 +00001016 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +02001017
Derek Allard2067d1a2008-11-13 22:59:24 +00001018 /**
1019 * Extract the file extension
1020 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +02001021 * @param string $filename
Derek Allard2067d1a2008-11-13 22:59:24 +00001022 * @return string
Barry Mienydd671972010-10-04 16:33:58 +02001023 */
Greg Aker58fdee82010-11-10 15:07:09 -06001024 public function get_extension($filename)
Derek Allard2067d1a2008-11-13 22:59:24 +00001025 {
1026 $x = explode('.', $filename);
Adrianf496d132013-06-24 15:56:45 +02001027
Adrian74a228b2013-06-25 12:09:22 +02001028 if (count($x) === 1)
1029 {
Andrey Andreev10fb7d12015-08-03 10:05:29 +03001030 return '';
Adrian74a228b2013-06-25 12:09:22 +02001031 }
1032
1033 $ext = ($this->file_ext_tolower) ? strtolower(end($x)) : end($x);
1034 return '.'.$ext;
Barry Mienydd671972010-10-04 16:33:58 +02001035 }
1036
Derek Allard2067d1a2008-11-13 22:59:24 +00001037 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +02001038
Derek Allard2067d1a2008-11-13 22:59:24 +00001039 /**
Derek Allard2067d1a2008-11-13 22:59:24 +00001040 * Limit the File Name Length
1041 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +03001042 * @param string $filename
1043 * @param int $length
Derek Allard2067d1a2008-11-13 22:59:24 +00001044 * @return string
Barry Mienydd671972010-10-04 16:33:58 +02001045 */
Greg Aker58fdee82010-11-10 15:07:09 -06001046 public function limit_filename_length($filename, $length)
Derek Allard2067d1a2008-11-13 22:59:24 +00001047 {
1048 if (strlen($filename) < $length)
1049 {
1050 return $filename;
1051 }
Barry Mienydd671972010-10-04 16:33:58 +02001052
Derek Allard2067d1a2008-11-13 22:59:24 +00001053 $ext = '';
1054 if (strpos($filename, '.') !== FALSE)
1055 {
1056 $parts = explode('.', $filename);
1057 $ext = '.'.array_pop($parts);
1058 $filename = implode('.', $parts);
1059 }
Barry Mienydd671972010-10-04 16:33:58 +02001060
Derek Allard2067d1a2008-11-13 22:59:24 +00001061 return substr($filename, 0, ($length - strlen($ext))).$ext;
1062 }
1063
1064 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +02001065
Derek Allard2067d1a2008-11-13 22:59:24 +00001066 /**
1067 * Runs the file through the XSS clean function
1068 *
1069 * This prevents people from embedding malicious code in their files.
1070 * I'm not sure that it won't negatively affect certain files in unexpected ways,
1071 * but so far I haven't found that it causes trouble.
1072 *
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +02001073 * @return string
Barry Mienydd671972010-10-04 16:33:58 +02001074 */
Greg Aker58fdee82010-11-10 15:07:09 -06001075 public function do_xss_clean()
Barry Mienydd671972010-10-04 16:33:58 +02001076 {
Derek Jonese9d723f2010-07-12 10:10:59 -05001077 $file = $this->file_temp;
Barry Mienydd671972010-10-04 16:33:58 +02001078
Andrey Andreev5036c9c2012-06-04 15:34:56 +03001079 if (filesize($file) == 0)
Derek Allard2067d1a2008-11-13 22:59:24 +00001080 {
1081 return FALSE;
1082 }
Barry Mienydd671972010-10-04 16:33:58 +02001083
Andrey Andreev549a6012016-08-22 13:18:36 +03001084 if (memory_get_usage() && ($memory_limit = ini_get('memory_limit')) > 0)
Greg Akerf82e51c2010-04-14 19:33:50 -05001085 {
Andrey Andreev549a6012016-08-22 13:18:36 +03001086 $memory_limit = str_split($memory_limit, strspn($memory_limit, '1234567890'));
1087 if ( ! empty($memory_limit[1]))
1088 {
1089 switch ($memory_limit[1][0])
1090 {
1091 case 'g':
1092 case 'G':
1093 $memory_limit[0] *= 1024 * 1024 * 1024;
1094 break;
1095 case 'm':
1096 case 'M':
1097 $memory_limit[0] *= 1024 * 1024;
1098 break;
1099 default:
1100 break;
1101 }
1102 }
1103
1104 $memory_limit = (int) ceil(filesize($file) + $memory_limit[0]);
Andrey Andreevc839d282012-06-07 14:35:27 +03001105 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 -05001106 }
1107
1108 // If the file being uploaded is an image, then we should have no problem with XSS attacks (in theory), but
1109 // 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 +03001110 // using IE who looks at the image. It does this by inspecting the first 255 bytes of an image. To get around this
1111 // 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 +02001112 // 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 -05001113 // attempted XSS attack.
1114
1115 if (function_exists('getimagesize') && @getimagesize($file) !== FALSE)
1116 {
Barry Mienydd671972010-10-04 16:33:58 +02001117 if (($file = @fopen($file, 'rb')) === FALSE) // "b" to force binary
1118 {
Greg Akerf82e51c2010-04-14 19:33:50 -05001119 return FALSE; // Couldn't open the file, return FALSE
Barry Mienydd671972010-10-04 16:33:58 +02001120 }
Greg Akerf82e51c2010-04-14 19:33:50 -05001121
Barry Mienydd671972010-10-04 16:33:58 +02001122 $opening_bytes = fread($file, 256);
1123 fclose($file);
Greg Akerf82e51c2010-04-14 19:33:50 -05001124
1125 // These are known to throw IE into mime-type detection chaos
1126 // <a, <body, <head, <html, <img, <plaintext, <pre, <script, <table, <title
1127 // title is basically just in SVG, but we filter it anyhow
1128
vlakoff35672462013-02-15 01:36:04 +01001129 // if it's an image or no "triggers" detected in the first 256 bytes - we're good
Andrey Andreevc839d282012-06-07 14:35:27 +03001130 return ! preg_match('/<(a|body|head|html|img|plaintext|pre|script|table|title)[\s>]/i', $opening_bytes);
Greg Akerf82e51c2010-04-14 19:33:50 -05001131 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001132
1133 if (($data = @file_get_contents($file)) === FALSE)
1134 {
1135 return FALSE;
1136 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001137
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +02001138 return $this->_CI->security->xss_clean($data, TRUE);
Derek Allard2067d1a2008-11-13 22:59:24 +00001139 }
Barry Mienydd671972010-10-04 16:33:58 +02001140
Derek Allard2067d1a2008-11-13 22:59:24 +00001141 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +02001142
Derek Allard2067d1a2008-11-13 22:59:24 +00001143 /**
1144 * Set an error message
1145 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +02001146 * @param string $msg
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +02001147 * @return CI_Upload
Barry Mienydd671972010-10-04 16:33:58 +02001148 */
Andrey Andreevd5784082015-06-22 11:50:04 +03001149 public function set_error($msg, $log_level = 'error')
Derek Allard2067d1a2008-11-13 22:59:24 +00001150 {
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +02001151 $this->_CI->lang->load('upload');
Barry Mienydd671972010-10-04 16:33:58 +02001152
Andrey Andreev119d8a72014-01-08 15:27:53 +02001153 is_array($msg) OR $msg = array($msg);
Darren Benney38d5f4b2013-03-30 21:00:38 +00001154 foreach ($msg as $val)
Derek Allard2067d1a2008-11-13 22:59:24 +00001155 {
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +02001156 $msg = ($this->_CI->lang->line($val) === FALSE) ? $val : $this->_CI->lang->line($val);
Derek Allard2067d1a2008-11-13 22:59:24 +00001157 $this->error_msg[] = $msg;
Andrey Andreevd5784082015-06-22 11:50:04 +03001158 log_message($log_level, $msg);
Derek Allard2067d1a2008-11-13 22:59:24 +00001159 }
Andrey Andreev2cf4c9b2014-02-21 15:01:48 +02001160
1161 return $this;
Derek Allard2067d1a2008-11-13 22:59:24 +00001162 }
Barry Mienydd671972010-10-04 16:33:58 +02001163
Derek Allard2067d1a2008-11-13 22:59:24 +00001164 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +02001165
Derek Allard2067d1a2008-11-13 22:59:24 +00001166 /**
1167 * Display the error message
1168 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +02001169 * @param string $open
1170 * @param string $close
Derek Allard2067d1a2008-11-13 22:59:24 +00001171 * @return string
Barry Mienydd671972010-10-04 16:33:58 +02001172 */
Greg Aker58fdee82010-11-10 15:07:09 -06001173 public function display_errors($open = '<p>', $close = '</p>')
Derek Allard2067d1a2008-11-13 22:59:24 +00001174 {
Andrey Andreev8e6f7a92012-03-26 20:13:00 +03001175 return (count($this->error_msg) > 0) ? $open.implode($close.$open, $this->error_msg).$close : '';
Derek Allard2067d1a2008-11-13 22:59:24 +00001176 }
Barry Mienydd671972010-10-04 16:33:58 +02001177
Derek Allard2067d1a2008-11-13 22:59:24 +00001178 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +02001179
Derek Allard2067d1a2008-11-13 22:59:24 +00001180 /**
Derek Allard2067d1a2008-11-13 22:59:24 +00001181 * Prep Filename
1182 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +02001183 * Prevents possible script execution from Apache's handling
1184 * of files' multiple extensions.
Derek Allard2067d1a2008-11-13 22:59:24 +00001185 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +02001186 * @link http://httpd.apache.org/docs/1.3/mod/mod_mime.html#multipleext
1187 *
1188 * @param string $filename
Derek Allard2067d1a2008-11-13 22:59:24 +00001189 * @return string
1190 */
Greg Aker58fdee82010-11-10 15:07:09 -06001191 protected function _prep_filename($filename)
Derek Allard2067d1a2008-11-13 22:59:24 +00001192 {
Andrey Andreevf38c9c22014-08-27 14:56:31 +03001193 if ($this->mod_mime_fix === FALSE OR $this->allowed_types === '*' OR ($ext_pos = strrpos($filename, '.')) === FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001194 {
1195 return $filename;
1196 }
Derek Allard616dab82009-02-16 15:44:32 +00001197
Andrey Andreevf38c9c22014-08-27 14:56:31 +03001198 $ext = substr($filename, $ext_pos);
1199 $filename = substr($filename, 0, $ext_pos);
1200 return str_replace('.', '_', $filename).$ext;
Derek Allard2067d1a2008-11-13 22:59:24 +00001201 }
1202
1203 // --------------------------------------------------------------------
1204
Andrey Andreev3a3c9472011-09-24 14:25:33 +03001205 /**
1206 * File MIME type
1207 *
1208 * Detects the (actual) MIME type of the uploaded file, if possible.
1209 * The input array is expected to be $_FILES[$field]
1210 *
Andrey Andreevf5ccd122012-11-02 00:17:39 +02001211 * @param array $file
Andrey Andreev3a3c9472011-09-24 14:25:33 +03001212 * @return void
1213 */
1214 protected function _file_mime_type($file)
1215 {
Andrey Andreeva49e3812011-12-09 13:05:22 +02001216 // We'll need this to validate the MIME info string (e.g. text/plain; charset=us-ascii)
Andrey Andreevf7aed122011-12-13 11:01:06 +02001217 $regexp = '/^([a-z\-]+\/[a-z0-9\-\.\+]+)(;\s.+)?$/';
Andrey Andreeva49e3812011-12-09 13:05:22 +02001218
Andrey Andreev7cc08232016-10-31 16:19:46 +02001219 /**
1220 * Fileinfo extension - most reliable method
1221 *
1222 * Apparently XAMPP, CentOS, cPanel and who knows what
1223 * other PHP distribution channels EXPLICITLY DISABLE
1224 * ext/fileinfo, which is otherwise enabled by default
1225 * since PHP 5.3 ...
1226 */
1227 if (function_exists('finfo_file'))
Andrey Andreev3a3c9472011-09-24 14:25:33 +03001228 {
Andrey Andreev7cc08232016-10-31 16:19:46 +02001229 $finfo = @finfo_open(FILEINFO_MIME);
1230 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 Andreeva8382792016-07-28 16:40:12 +03001231 {
Andrey Andreev7cc08232016-10-31 16:19:46 +02001232 $mime = @finfo_file($finfo, $file['tmp_name']);
1233 finfo_close($finfo);
1234
1235 /* According to the comments section of the PHP manual page,
1236 * it is possible that this function returns an empty string
1237 * for some files (e.g. if they don't exist in the magic MIME database)
1238 */
1239 if (is_string($mime) && preg_match($regexp, $mime, $matches))
1240 {
1241 $this->file_type = $matches[1];
1242 return;
1243 }
Andrey Andreev3a3c9472011-09-24 14:25:33 +03001244 }
1245 }
1246
Andrey Andreeva49e3812011-12-09 13:05:22 +02001247 /* This is an ugly hack, but UNIX-type systems provide a "native" way to detect the file type,
1248 * which is still more secure than depending on the value of $_FILES[$field]['type'], and as it
1249 * was reported in issue #750 (https://github.com/EllisLab/CodeIgniter/issues/750) - it's better
1250 * than mime_content_type() as well, hence the attempts to try calling the command line with
1251 * three different functions.
Andrey Andreev6700b932011-09-24 14:25:33 +03001252 *
1253 * Notes:
Andrey Andreev59654312011-12-02 14:28:54 +02001254 * - the DIRECTORY_SEPARATOR comparison ensures that we're not on a Windows system
Andrey Andreeva49e3812011-12-09 13:05:22 +02001255 * - many system admins would disable the exec(), shell_exec(), popen() and similar functions
vlakofff3994252013-02-19 01:45:23 +01001256 * due to security concerns, hence the function_usable() checks
Andrey Andreev6700b932011-09-24 14:25:33 +03001257 */
Andrey Andreeva49e3812011-12-09 13:05:22 +02001258 if (DIRECTORY_SEPARATOR !== '\\')
Andrey Andreev6700b932011-09-24 14:25:33 +03001259 {
Andrey Andreevd60e7002012-06-17 00:03:03 +03001260 $cmd = function_exists('escapeshellarg')
1261 ? 'file --brief --mime '.escapeshellarg($file['tmp_name']).' 2>&1'
1262 : 'file --brief --mime '.$file['tmp_name'].' 2>&1';
Andrey Andreeva49e3812011-12-09 13:05:22 +02001263
Andrey Andreeve9d2dc82012-11-07 14:23:29 +02001264 if (function_usable('exec'))
Andrey Andreev6700b932011-09-24 14:25:33 +03001265 {
Andrey Andreeva49e3812011-12-09 13:05:22 +02001266 /* 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 +01001267 * 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 +02001268 * anything that could already be set for $mime previously. This effectively makes the second parameter a dummy
1269 * value, which is only put to allow us to get the return status code.
1270 */
1271 $mime = @exec($cmd, $mime, $return_status);
1272 if ($return_status === 0 && is_string($mime) && preg_match($regexp, $mime, $matches))
1273 {
1274 $this->file_type = $matches[1];
1275 return;
1276 }
1277 }
1278
Andrey Andreevf6274742014-02-20 18:05:58 +02001279 if ( ! ini_get('safe_mode') && function_usable('shell_exec'))
Andrey Andreeva49e3812011-12-09 13:05:22 +02001280 {
1281 $mime = @shell_exec($cmd);
1282 if (strlen($mime) > 0)
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
Andrey Andreeve9d2dc82012-11-07 14:23:29 +02001293 if (function_usable('popen'))
Andrey Andreeva49e3812011-12-09 13:05:22 +02001294 {
1295 $proc = @popen($cmd, 'r');
1296 if (is_resource($proc))
1297 {
tubalmartin010f1f42012-03-03 22:24:31 +01001298 $mime = @fread($proc, 512);
Andrey Andreeva49e3812011-12-09 13:05:22 +02001299 @pclose($proc);
1300 if ($mime !== FALSE)
1301 {
1302 $mime = explode("\n", trim($mime));
1303 if (preg_match($regexp, $mime[(count($mime) - 1)], $matches))
1304 {
1305 $this->file_type = $matches[1];
1306 return;
1307 }
1308 }
1309 }
1310 }
1311 }
1312
Andrey Andreevde3ac402017-07-26 17:46:51 +03001313 // Fall back to mime_content_type(), if available (still better than $_FILES[$field]['type'])
Andrey Andreev3a3c9472011-09-24 14:25:33 +03001314 if (function_exists('mime_content_type'))
1315 {
1316 $this->file_type = @mime_content_type($file['tmp_name']);
Andrey Andreeva49e3812011-12-09 13:05:22 +02001317 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 +03001318 {
Andrey Andreev3a3c9472011-09-24 14:25:33 +03001319 return;
1320 }
1321 }
1322
1323 $this->file_type = $file['type'];
1324 }
1325
Derek Allard2067d1a2008-11-13 22:59:24 +00001326}