source: trunk/lib/Upload.inc.php @ 503

Last change on this file since 503 was 502, checked in by anonymous, 10 years ago

Many minor fixes during pulso development

File size: 31.1 KB
RevLine 
[1]1<?php
2/**
[362]3 * The Strangecode Codebase - a general application development framework for PHP
4 * For details visit the project site: <http://trac.strangecode.com/codebase/>
[396]5 * Copyright 2001-2012 Strangecode, LLC
[468]6 *
[362]7 * This file is part of The Strangecode Codebase.
8 *
9 * The Strangecode Codebase is free software: you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as published by the
11 * Free Software Foundation, either version 3 of the License, or (at your option)
12 * any later version.
[468]13 *
[362]14 * The Strangecode Codebase is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
17 * details.
[468]18 *
[362]19 * You should have received a copy of the GNU General Public License along with
20 * The Strangecode Codebase. If not, see <http://www.gnu.org/licenses/>.
21 */
22
23/**
[42]24 * Upload.inc.php
[20]25 *
[1]26 * The Upload class provides an interface to deal with http uploaded files.
27 *
28 * @author  Quinn Comendant <quinn@strangecode.com>
29 * @requires App.inc.php
[119]30 * @version 1.4
[1]31 */
32
[119]33// Upload error types.
34define('UPLOAD_USER_ERR_EMPTY_FILE', 100);
35define('UPLOAD_USER_ERR_NOT_UPLOADED_FILE', 101);
36define('UPLOAD_USER_ERR_INVALID_EXTENSION', 102);
37define('UPLOAD_USER_ERR_NOT_UNIQUE', 103);
38define('UPLOAD_USER_ERR_MOVE_FAILED', 104);
[37]39
[502]40class Upload
41{
[42]42
[1]43    // General object parameters.
[484]44    protected $_params = array(
[42]45
[37]46        // Which messages do we pass to raiseMsg?
[119]47        'display_messages' => MSG_ALL,
[42]48
[20]49        // Existing files will be overwritten when there is a name conflict?
[1]50        'allow_overwriting' => false,
[20]51
52        // The filesystem path to the final upload directory.
53        'upload_path' => null,
54
55        // The file permissions of the uploaded files. Remember, files will be owned by the web server user.
56        'dest_file_perms' => 0600,
57
[121]58        // The file permissions of the uploaded files. Remember, files will be owned by the web server user.
59        'dest_dir_perms' => 0700,
60
[334]61        // Require file to have one of the following file name extensions.
[20]62        'valid_file_extensions' => array('jpg', 'jpeg', 'gif', 'png', 'pdf', 'txt', 'text', 'html', 'htm'),
[1]63    );
64
65    // Array of files with errors.
[468]66    public $errors = array();
[20]67
[22]68    // Array of file name extensions and corresponding mime-types.
[468]69    public $mime_extension_map = array( 'ez' => 'application/andrew-inset', 'hqx' => 'application/mac-binhex40', 'cpt' => 'application/mac-compactpro', 'doc' => 'application/msword', 'bin' => 'application/octet-stream', 'class' => 'application/octet-stream', 'dll' => 'application/octet-stream', 'dms' => 'application/octet-stream', 'exe' => 'application/octet-stream', 'lha' => 'application/octet-stream', 'lzh' => 'application/octet-stream', 'so' => 'application/octet-stream', 'oda' => 'application/oda', 'pdf' => 'application/pdf', 'ai' => 'application/postscript', 'eps' => 'application/postscript', 'ps' => 'application/postscript', 'smi' => 'application/smil', 'smil' => 'application/smil', 'mif' => 'application/vnd.mif', 'xls' => 'application/vnd.ms-excel', 'ppt' => 'application/vnd.ms-powerpoint', 'sxc' => 'application/vnd.sun.xml.calc', 'stc' => 'application/vnd.sun.xml.calc.template', 'sxd' => 'application/vnd.sun.xml.draw', 'std' => 'application/vnd.sun.xml.draw.template', 'sxi' => 'application/vnd.sun.xml.impress', 'sti' => 'application/vnd.sun.xml.impress.template', 'sxm' => 'application/vnd.sun.xml.math', 'sxw' => 'application/vnd.sun.xml.writer', 'sxg' => 'application/vnd.sun.xml.writer.global', 'stw' => 'application/vnd.sun.xml.writer.template', 'vsd' => 'application/vnd.visio', 'wbxml' => 'application/vnd.wap.wbxml', 'wmlc' => 'application/vnd.wap.wmlc', 'wmlsc' => 'application/vnd.wap.wmlscriptc', 'bcpio' => 'application/x-bcpio', 'vcd' => 'application/x-cdlink', 'pgn' => 'application/x-chess-pgn', 'Z' => 'application/x-compress', 'cpio' => 'application/x-cpio', 'csh' => 'application/x-csh', 'dcr' => 'application/x-director', 'dir' => 'application/x-director', 'dxr' => 'application/x-director', 'dvi' => 'application/x-dvi', 'spl' => 'application/x-futuresplash', 'gtar' => 'application/x-gtar', 'tgz' => 'application/x-gtar', 'gz' => 'application/x-gzip', 'hdf' => 'application/x-hdf', 'php' => 'application/x-httpd-php', 'php3' => 'application/x-httpd-php3', 'js' => 'application/x-javascript', 'skd' => 'application/x-koan', 'skm' => 'application/x-koan', 'skp' => 'application/x-koan', 'skt' => 'application/x-koan', 'latex' => 'application/x-latex', 'wmd' => 'application/x-ms-wmd', 'wmz' => 'application/x-ms-wmz', 'cdf' => 'application/x-netcdf', 'nc' => 'application/x-netcdf', 'pl' => 'application/x-perl', 'pm' => 'application/x-perl', 'psd' => 'application/x-photoshop', 'sh' => 'application/x-sh', 'shar' => 'application/x-shar', 'swf' => 'application/x-shockwave-flash', 'sit' => 'application/x-stuffit', 'sv4cpio' => 'application/x-sv4cpio', 'sv4crc' => 'application/x-sv4crc', 'tar' => 'application/x-tar', 'tcl' => 'application/x-tcl', 'tex' => 'application/x-tex', 'texi' => 'application/x-texinfo', 'texinfo' => 'application/x-texinfo', 'roff' => 'application/x-troff', 't' => 'application/x-troff', 'tr' => 'application/x-troff', 'man' => 'application/x-troff-man', 'me' => 'application/x-troff-me', 'ms' => 'application/x-troff-ms', 'ustar' => 'application/x-ustar', 'src' => 'application/x-wais-source', 'xht' => 'application/xhtml+xml', 'xhtml' => 'application/xhtml+xml', 'xml' => 'application/xml', 'zip' => 'application/zip', 'au' => 'audio/basic', 'snd' => 'audio/basic', 'kar' => 'audio/midi', 'mid' => 'audio/midi', 'midi' => 'audio/midi', 'mp2' => 'audio/mpeg', 'mp3' => 'audio/mpeg', 'mpga' => 'audio/mpeg', 'aif' => 'audio/x-aiff', 'aifc' => 'audio/x-aiff', 'aiff' => 'audio/x-aiff', 'm3u' => 'audio/x-mpegurl', 'wax' => 'audio/x-ms-wax', 'wma' => 'audio/x-ms-wma', 'ram' => 'audio/x-pn-realaudio', 'rm' => 'audio/x-pn-realaudio', 'rpm' => 'audio/x-pn-realaudio-plugin', 'ra' => 'audio/x-realaudio', 'wav' => 'audio/x-wav', 'pdb' => 'chemical/x-pdb', 'xyz' => 'chemical/x-xyz', 'bmp' => 'image/bmp', 'gif' => 'image/gif', 'ief' => 'image/ief', 'jpe' => 'image/jpeg', 'jpeg' => 'image/jpeg', 'jpg' => 'image/jpeg', 'png' => 'image/png', 'tif' => 'image/tiff', 'tiff' => 'image/tiff', 'wbmp' => 'image/vnd.wap.wbmp', 'ras' => 'image/x-cmu-raster', 'pnm' => 'image/x-portable-anymap', 'pbm' => 'image/x-portable-bitmap', 'pgm' => 'image/x-portable-graymap', 'ppm' => 'image/x-portable-pixmap', 'rgb' => 'image/x-rgb', 'xbm' => 'image/x-xbitmap', 'xpm' => 'image/x-xpixmap', 'xwd' => 'image/x-xwindowdump', 'iges' => 'model/iges', 'igs' => 'model/iges', 'mesh' => 'model/mesh', 'msh' => 'model/mesh', 'silo' => 'model/mesh', 'vrml' => 'model/vrml', 'wrl' => 'model/vrml', 'ics' => 'text/calendar', 'ifb' => 'text/calendar', 'vcs' => 'text/calendar', 'vfb' => 'text/calendar', 'css' => 'text/css', 'csv' => 'text/csv', 'diff' => 'text/diff', 'patch' => 'text/diff', 'htm' => 'text/html', 'html' => 'text/html', 'shtml' => 'text/html', 'asc' => 'text/plain', 'log' => 'text/plain', 'po' => 'text/plain', 'txt' => 'text/plain', 'rtx' => 'text/richtext', 'rtf' => 'text/rtf', 'sgm' => 'text/sgml', 'sgml' => 'text/sgml', 'tsv' => 'text/tab-separated-values', 'wml' => 'text/vnd.wap.wml', 'wmls' => 'text/vnd.wap.wmlscript', 'etx' => 'text/x-setext', 'vcf' => 'text/x-vcard', 'xsl' => 'text/xml', 'mp4' => 'video/mp4', 'mpe' => 'video/mpeg', 'mpeg' => 'video/mpeg', 'mpg' => 'video/mpeg', 'mov' => 'video/quicktime', 'qt' => 'video/quicktime', 'mxu' => 'video/vnd.mpegurl', 'asf' => 'video/x-ms-asf', 'asx' => 'video/x-ms-asf', 'wm' => 'video/x-ms-wm', 'wmv' => 'video/x-ms-wmv', 'wmx' => 'video/x-ms-wmx', 'wvx' => 'video/x-ms-wvx', 'avi' => 'video/x-msvideo', 'movie' => 'video/x-sgi-movie', 'ice' => 'x-conference/x-cooltalk', );
[42]70
[1]71    /**
72     * Set (or overwrite existing) parameters by passing an array of new parameters.
73     *
74     * @access public
75     * @param  array    $params     Array of parameters (key => val pairs).
76     */
[468]77    public function setParam($params)
[1]78    {
[479]79        $app =& App::getInstance();
[136]80
[1]81        if (isset($params) && is_array($params)) {
[42]82
[20]83            // Enforce valid upload_path parameter.
84            if (isset($params['upload_path'])) {
[485]85                $upload_path = realpath($params['upload_path']);
[152]86                // Source must be directory.
[485]87                if (!is_dir($upload_path)) {
88                    $app->logMsg(sprintf('Attempting to auto-create upload directory: %s', $upload_path), LOG_NOTICE, __FILE__, __LINE__);
[477]89                    if (version_compare(PHP_VERSION, '5.0.0', '>=')) {
[152]90                        // Recursive.
[485]91                        mkdir($upload_path, isset($params['dest_dir_perms']) ? $params['dest_dir_perms'] : $this->getParam('dest_dir_perms'), true);
[152]92                    } else {
[485]93                        mkdir($upload_path, isset($params['dest_dir_perms']) ? $params['dest_dir_perms'] : $this->getParam('dest_dir_perms'));
[152]94                    }
[485]95                    if (!is_dir($upload_path)) {
[136]96                        $app->logMsg(sprintf('Upload directory invalid: %s', $params['upload_path']), LOG_ERR, __FILE__, __LINE__);
[121]97                        trigger_error(sprintf('Upload directory invalid: %s', $params['upload_path']), E_USER_ERROR);
98                    }
[20]99                }
[152]100                // Source must be writable.
[485]101                if (!is_writable($upload_path)) {
[136]102                    $app->logMsg(sprintf('Upload directory not writable: %s', $params['upload_path']), LOG_ERR, __FILE__, __LINE__);
[20]103                    trigger_error(sprintf('Upload directory not writable: %s', $params['upload_path']), E_USER_ERROR);
104                }
105            }
[42]106
[1]107            // Merge new parameters with old overriding only those passed.
108            $this->_params = array_merge($this->_params, $params);
109        } else {
[136]110            $app->logMsg(sprintf('Parameters are not an array: %s', $params), LOG_ERR, __FILE__, __LINE__);
[1]111        }
112    }
113
114    /**
115     * Return the value of a parameter, if it exists.
116     *
117     * @access public
118     * @param string $param        Which parameter to return.
119     * @return mixed               Configured parameter value.
120     */
[468]121    public function getParam($param)
[1]122    {
[479]123        $app =& App::getInstance();
[468]124
[478]125        if (array_key_exists($param, $this->_params)) {
[1]126            return $this->_params[$param];
127        } else {
[146]128            $app->logMsg(sprintf('Parameter is not set: %s', $param), LOG_DEBUG, __FILE__, __LINE__);
[1]129            return null;
130        }
131    }
132
133    /**
[37]134     * Process uploaded files. Processes files existing within the specified $_FILES['form_name'] array.
[42]135     * It tests for errors, cleans the filename, optionally sets custom file names. It will process
[37]136     * multiple files automatically if the file form element is an array (<input type="file" name="myfiles[]" />).
[1]137     *
[37]138     * @access  public
139     * @param   string  $form_name          The name of the form to process.
[256]140     * @param   string  $custom_file_name   The new name of the file. An array of filenames in the case of multiple files.
[334]141     * @return  mixed   Returns FALSE if a major error occurred preventing any file uploads.
142     *                  Returns an empty array if any minor errors occurred or no files were found.
143     *                  Returns a multidimensional array of filenames, sizes and extensions, if one-or-more files succeeded uploading.
[37]144     *                  Note: this last option presents a problem in the case of when some files uploaded successfully, and some failed.
145     *                        In this case it is necessary to check the Upload::anyErrors method to discover if any did fail.
[1]146     */
[468]147    public function process($form_name, $custom_file_name=null)
[1]148    {
[479]149        $app =& App::getInstance();
[136]150
[1]151        // Ensure we have a upload directory.
[20]152        if (!$this->getParam('upload_path')) {
[136]153            $app->logMsg(sprintf('Upload directory not set before processing.'), LOG_ERR, __FILE__, __LINE__);
[119]154            $this->_raiseMsg(_("There was a problem with the file upload. Please try again later."), MSG_ERR, __FILE__, __LINE__);
[1]155            return false;
156        }
[42]157
[22]158        // Ensure the file form element specified actually exists.
[1]159        if (!isset($_FILES[$form_name])) {
[141]160            $app->logMsg(sprintf('Form element %s does not exist.', $form_name), LOG_ERR, __FILE__, __LINE__);
[119]161            $this->_raiseMsg(_("There was a problem with the file upload. Please try again later."), MSG_ERR, __FILE__, __LINE__);
[1]162            return false;
163        }
[42]164
[1]165        if (is_array($_FILES[$form_name]['name'])) {
166            $files = $_FILES[$form_name];
167        } else {
168            // Convert variables to single-cell array so it will loop.
169            $files = array(
170                'name'      => array($_FILES[$form_name]['name']),
171                'type'      => array($_FILES[$form_name]['type']),
172                'tmp_name'  => array($_FILES[$form_name]['tmp_name']),
173                'error'     => array($_FILES[$form_name]['error']),
174                'size'      => array($_FILES[$form_name]['size']),
175            );
176        }
177
178        // To keep this script running even if user tries to stop browser.
[42]179        ignore_user_abort(true);
[35]180        ini_set('max_execution_time', 300);
181        ini_set('max_input_time', 300);
[1]182
183        $new_file_names = array();
184
185        $num = sizeof($files['name']);
186        for ($i=0; $i<$num; $i++) {
187            $file_path_name = '';
188
[49]189            if ('' == trim($files['name'][$i])) {
[1]190                // User may not have attached a file.
191                continue;
192            }
[42]193
[22]194            // Determine final file name.
[1]195            if ($num == 1) {
196                // Single upload.
[286]197                if (isset($custom_file_name)) {
198                    if (is_array($custom_file_name) && sizeof($custom_file_name) == 1) {
199                        // Is an array, but just one value. Pull it out.
[485]200                        $file_name = current($custom_file_name);
[286]201                        $this->_raiseMsg(sprintf(_("The file %s has been renamed to %s."), $files['name'][$i], $file_name), MSG_NOTICE, __FILE__, __LINE__);
202                        $app->logMsg(sprintf('Using custom file name: %s', $file_name), LOG_DEBUG, __FILE__, __LINE__);
203                    } else if (!is_array($custom_file_name) && '' != $custom_file_name) {
204                        // Valid custom file name.
205                        $file_name = $custom_file_name;
206                        $this->_raiseMsg(sprintf(_("The file %s has been renamed to %s."), $files['name'][$i], $file_name), MSG_NOTICE, __FILE__, __LINE__);
207                        $app->logMsg(sprintf('Using custom file name: %s', $file_name), LOG_DEBUG, __FILE__, __LINE__);
208                    } else {
209                        // Invalid custom file name provided. Use uploaded file name.
210                        $file_name = $files['name'][$i];
211                        $app->logMsg(sprintf('Custom filename invalid! Using uploaded file name: %s', $file_name), LOG_WARNING, __FILE__, __LINE__);
212                    }
[1]213                } else {
[286]214                    // Normal case. Use uploaded file name.
[1]215                    $file_name = $files['name'][$i];
[136]216                    $app->logMsg(sprintf('Using uploaded file name: %s', $file_name), LOG_DEBUG, __FILE__, __LINE__);
[1]217                }
218            } else {
219                // Multiple upload. Final file names must be array.
[256]220                if (isset($custom_file_name) && is_array($custom_file_name) && '' != $custom_file_name[$i]) {
[1]221                    // Valid custom file name.
222                    $file_name = $custom_file_name[$i];
[121]223                    $this->_raiseMsg(sprintf(_("The file %s has been renamed to %s."), $files['name'][$i], $file_name), MSG_NOTICE, __FILE__, __LINE__);
[136]224                    $app->logMsg(sprintf('Using custom file name: %s', $file_name), LOG_DEBUG, __FILE__, __LINE__);
[1]225                } else {
226                    // Invalid custom file name provided. Use uploaded file name.
227                    $file_name = $files['name'][$i];
[136]228                    $app->logMsg(sprintf('Using uploaded file name: %s', $file_name), LOG_DEBUG, __FILE__, __LINE__);
[1]229                }
230            }
231
[22]232            // Check The php upload error messages.
[259]233            if (UPLOAD_ERR_INI_SIZE === $files['error'][$i]) { // Error code 1
[121]234                $this->_raiseMsg(sprintf(_("The file %s failed uploading: it exceeds the maximum allowed upload file size of %s."), $file_name, ini_get('upload_max_filesize')), MSG_ERR, __FILE__, __LINE__);
[203]235                $app->logMsg(sprintf('The file %s failed uploading with PHP error UPLOAD_ERR_INI_SIZE (currently %s).', $file_name, ini_get('upload_max_filesize')), LOG_ERR, __FILE__, __LINE__);
[119]236                $this->errors[] = array('filename' => $file_name, 'errortype' => UPLOAD_ERR_INI_SIZE);
[22]237                continue;
238            }
[259]239            if (UPLOAD_ERR_FORM_SIZE === $files['error'][$i]) { // Error code 2
[121]240                $this->_raiseMsg(sprintf(_("The file %s failed uploading: it exceeds the maximum allowed upload file size of %s."), $file_name, $_POST['MAX_FILE_SIZE']), MSG_ERR, __FILE__, __LINE__);
[203]241                $app->logMsg(sprintf('The file %s failed uploading with PHP error UPLOAD_ERR_FORM_SIZE (currently %s).', $file_name, $_POST['MAX_FILE_SIZE']), LOG_ERR, __FILE__, __LINE__);
[119]242                $this->errors[] = array('filename' => $file_name, 'errortype' => UPLOAD_ERR_FORM_SIZE);
[22]243                continue;
244            }
[259]245            if (UPLOAD_ERR_PARTIAL === $files['error'][$i]) { // Error code 3
[121]246                $this->_raiseMsg(sprintf(_("The file %s failed uploading: it was only partially uploaded."), $file_name), MSG_ERR, __FILE__, __LINE__);
[203]247                $app->logMsg(sprintf('The file %s failed uploading with PHP error UPLOAD_ERR_PARTIAL.', $file_name), LOG_ERR, __FILE__, __LINE__);
[119]248                $this->errors[] = array('filename' => $file_name, 'errortype' => UPLOAD_ERR_PARTIAL);
[22]249                continue;
250            }
[259]251            if (UPLOAD_ERR_NO_FILE === $files['error'][$i]) { // Error code 4
[121]252                $this->_raiseMsg(sprintf(_("The file %s failed uploading: no file was uploaded."), $file_name), MSG_ERR, __FILE__, __LINE__);
[203]253                $app->logMsg(sprintf('The file %s failed uploading with PHP error UPLOAD_ERR_NO_FILE.', $file_name), LOG_ERR, __FILE__, __LINE__);
[119]254                $this->errors[] = array('filename' => $file_name, 'errortype' => UPLOAD_ERR_NO_FILE);
[22]255                continue;
256            }
[259]257            if (UPLOAD_ERR_NO_TMP_DIR === $files['error'][$i]) { // Error code 6
[121]258                $this->_raiseMsg(sprintf(_("The file %s failed uploading: temporary upload directory missing."), $file_name), MSG_ERR, __FILE__, __LINE__);
[203]259                $app->logMsg(sprintf('The file %s failed uploading with PHP error UPLOAD_ERR_NO_TMP_DIR.', $file_name), LOG_ERR, __FILE__, __LINE__);
[119]260                $this->errors[] = array('filename' => $file_name, 'errortype' => UPLOAD_ERR_NO_TMP_DIR);
[22]261                continue;
262            }
[42]263
[22]264            // Check to be sure it's an uploaded file.
265            if (!is_uploaded_file($files['tmp_name'][$i])) {
[121]266                $this->_raiseMsg(sprintf(_("The file %s failed uploading."), $file_name), MSG_ERR, __FILE__, __LINE__);
[141]267                $app->logMsg(sprintf('The file %s failed is_uploaded_file.', $file_name), LOG_ERR, __FILE__, __LINE__);
[119]268                $this->errors[] = array('filename' => $file_name, 'errortype' => UPLOAD_USER_ERR_NOT_UPLOADED_FILE);
[22]269                continue;
270            }
[42]271
[22]272            // Check to be sure the file is not empty.
[119]273            if ($files['size'][$i] <= 0) {
[121]274                $this->_raiseMsg(sprintf(_("The file %s failed uploading: it contains zero bytes."), $file_name), MSG_ERR, __FILE__, __LINE__);
[141]275                $app->logMsg(sprintf('The uploaded file %s contains zero bytes.', $file_name), LOG_ERR, __FILE__, __LINE__);
[119]276                $this->errors[] = array('filename' => $file_name, 'errortype' => UPLOAD_USER_ERR_EMPTY_FILE);
[22]277                continue;
278            }
[42]279
[22]280            // Check to be sure the file has a valid file name extension.
[468]281            if (!in_array(mb_strtolower(self::getFilenameExtension($file_name)), $this->getParam('valid_file_extensions'))) {
282                // TODO: Add option to allow any extention to be uploaded.
[121]283                $this->_raiseMsg(sprintf(_("The file %s failed uploading: it is an unrecognized type. Files must have one of the following file name extensions: %s."), $file_name, join(', ', $this->getParam('valid_file_extensions'))), MSG_ERR, __FILE__, __LINE__);
[141]284                $app->logMsg(sprintf('The uploaded file %s has an unrecognized file name extension.', $file_name), LOG_WARNING, __FILE__, __LINE__);
[119]285                $this->errors[] = array('filename' => $file_name, 'errortype' => UPLOAD_USER_ERR_INVALID_EXTENSION);
[22]286                continue;
287            }
[42]288
[22]289            // Check to be sure the file has a unique file name.
290            if (!$this->getParam('allow_overwriting') && $this->exists($file_name)) {
[121]291                $this->_raiseMsg(sprintf(_("The file %s failed uploading: a file with that name already exists."), $file_name), MSG_ERR, __FILE__, __LINE__);
[142]292                $app->logMsg(sprintf('The uploaded file %s does not have a unique filename.', $file_name), LOG_WARNING, __FILE__, __LINE__);
[119]293                $this->errors[] = array('filename' => $file_name, 'errortype' => UPLOAD_USER_ERR_NOT_UNIQUE);
[22]294                continue;
295            }
[42]296
[121]297            // If the file name has no extension, use the mime-type to choose one.
298            if (!preg_match('/\.[^.]{1,5}$/', $file_name) && function_exists('mime_content_type')) {
[415]299                // TODO: will this run if an extention is filtered by 'valid_file_extensions'?
[121]300                if ($ext = array_search(mime_content_type($files['tmp_name'][$i]), $this->mime_extension_map)) {
301                    $file_name .= ".$ext";
302                }
303            }
304
305            // Clean the file name of bad characters.
306            $file_name = $this->cleanFileName($file_name);
307
308            // FINAL path and file name, lowercase extension.
[468]309            $file_extension = mb_strtolower(self::getFilenameExtension($file_name));
[247]310            $file_name = sprintf('%s.%s', mb_substr($file_name, 0, mb_strrpos($file_name, '.')), $file_extension);
[121]311            $file_path_name = sprintf('%s/%s', $this->getParam('upload_path'), $file_name);
312
[1]313            // Move the file to the final place.
314            if (move_uploaded_file($files['tmp_name'][$i], $file_path_name)) {
[20]315                chmod($file_path_name, $this->getParam('dest_file_perms'));
[136]316                $app->logMsg(sprintf('File uploaded: %s', $file_path_name), LOG_INFO, __FILE__, __LINE__);
[121]317                $this->_raiseMsg(sprintf(_("The file %s uploaded successfully."), $file_name), MSG_SUCCESS, __FILE__, __LINE__);
[1]318                if (!isset($custom_file_name) && $files['name'][$i] != $file_name) {
319                    // Notify user if uploaded file name was modified (unless a custom file name will be used anyways).
[121]320                    $this->_raiseMsg(sprintf(_("The file %s was renamed to %s."), $files['name'][$i], $file_name), MSG_NOTICE, __FILE__, __LINE__);
[1]321                }
322                $new_file_names[] = array(
323                    'name' => $file_name,
[121]324                    'mime' => $files['type'][$i],
[1]325                    'size' => filesize($file_path_name),
[121]326                    'extension' => $file_extension,
327                    'original_index' => $i,
[301]328                    'original_name' => $files['name'][$i],
[1]329                );
330            } else {
[121]331                $this->_raiseMsg(sprintf(_("The file %s failed uploading."), $file_name), MSG_ERR, __FILE__, __LINE__);
[141]332                $app->logMsg(sprintf('Moving file failed: %s -> %s', $files['tmp_name'][$i], $file_path_name), LOG_ALERT, __FILE__, __LINE__);
[119]333                $this->errors[] = array('filename' => $file_name, 'errortype' => UPLOAD_USER_ERR_MOVE_FAILED);
[1]334            }
[121]335
336            // Check file extension with browsers interpretation of file type.
337            if (isset($this->mime_extension_map[$file_extension]) && $files['type'][$i] != $this->mime_extension_map[$file_extension]) {
[136]338                $app->logMsg(sprintf('File extension (%s) does not match mime type (%s).', $file_extension, $files['type'][$i]), LOG_NOTICE, __FILE__, __LINE__);
[121]339            }
[1]340        }
[42]341
[22]342        // Return names of files uploaded (or empty array when none processed).
343        return $new_file_names;
[1]344    }
[42]345
[1]346    /**
[37]347     * Remove file within upload path.
[1]348     *
[37]349     * @access  public
350     * @param   string  $file_name  A name of a file.
[301]351     * @param   bool    $use_glob   Set true to use glob to find the filename (using $file_name as a pattern)
[37]352     * @return  bool                Success of operation.
[1]353     */
[468]354    public function deleteFile($file_name, $use_glob=false)
[1]355    {
[479]356        $app =& App::getInstance();
[136]357
[1]358        // Ensure we have a upload directory.
[20]359        if (!$this->getParam('upload_path')) {
[136]360            $app->logMsg(sprintf('Upload directory not set before processing.'), LOG_ERR, __FILE__, __LINE__);
[1]361            return false;
362        }
[42]363
[301]364        $file_path_name = $this->getParam('upload_path') . '/' . ($use_glob ? $this->getFilenameGlob($file_name) : $file_name);
[1]365
366        if (!is_file($file_path_name)) {
[141]367            $app->logMsg(sprintf('Error deleting nonexistent file: %s', $file_path_name), LOG_ERR, __FILE__, __LINE__);
[1]368            return false;
369        } else if (unlink($file_path_name)) {
[136]370            $app->logMsg(sprintf('Deleted file: %s', $file_path_name), LOG_INFO, __FILE__, __LINE__);
[301]371            return true;
[1]372        } else {
[121]373            $this->_raiseMsg(sprintf(_("The file %s could not be deleted."), $file_name), MSG_ERR, __FILE__, __LINE__);
[141]374            $app->logMsg(sprintf('Failed deleting file: %s', $file_path_name), LOG_ERR, __FILE__, __LINE__);
[1]375            return false;
376        }
377    }
[42]378
[1]379    /**
[37]380     * Renames a file within the upload path.
[1]381     *
[37]382     * @access  public
383     * @param   string  $old_name   The currently existing file name.
384     * @param   string  $new_name   The new name for this file.
385     * @return  bool                Success of operation.
[1]386     */
[468]387    public function moveFile($old_name, $new_name)
[1]388    {
[479]389        $app =& App::getInstance();
[136]390
[1]391        // Ensure we have an upload directory.
[20]392        if (!$this->getParam('upload_path')) {
[136]393            $app->logMsg(sprintf('Upload directory not set before processing.'), LOG_ERR, __FILE__, __LINE__);
[1]394            return false;
395        }
[42]396
[20]397        $old_file_path_name = $this->getParam('upload_path') . '/' . $old_name;
398        $new_file_path_name = $this->getParam('upload_path') . '/' . $new_name;
[1]399        if (file_exists($old_file_path_name)) {
[20]400            if (rename($old_file_path_name, $new_file_path_name)) {
[121]401                $this->_raiseMsg(sprintf(_("The file %s has been renamed to %s."), basename($old_file_path_name), basename($new_file_path_name)), MSG_NOTICE, __FILE__, __LINE__);
[136]402                $app->logMsg(sprintf('File renamed from %s to %s', $old_file_path_name, $new_file_path_name), LOG_DEBUG, __FILE__, __LINE__);
[20]403            } else {
[119]404                $this->_raiseMsg(sprintf(_("Error renaming file to %s"), $new_file_path_name), MSG_WARNING, __FILE__, __LINE__);
[141]405                $app->logMsg(sprintf('Error renaming file to %s', $new_file_path_name), LOG_WARNING, __FILE__, __LINE__);
[1]406                return false;
407            }
408        } else {
[121]409            $this->_raiseMsg(sprintf(_("Couldn't rename nonexistent file %s."), $old_name), MSG_WARNING, __FILE__, __LINE__);
[141]410            $app->logMsg(sprintf('Error renaming nonexistent file: %s', $old_file_path_name), LOG_WARNING, __FILE__, __LINE__);
[1]411            return false;
412        }
413    }
[42]414
[1]415    /**
[37]416     * Tests if a file exists within the current upload_path.
[1]417     *
[37]418     * @access  public
419     * @param   string  $file_name  A name of a file.
420     * @return  bool                Existence of file.
[1]421     */
[468]422    public function exists($file_name)
[1]423    {
[479]424        $app =& App::getInstance();
[136]425
[1]426        // Ensure we have a upload directory.
[20]427        if (!$this->getParam('upload_path')) {
[136]428            $app->logMsg(sprintf('Upload directory not set before processing.'), LOG_ERR, __FILE__, __LINE__);
[1]429            return false;
430        }
[42]431
[20]432        return file_exists($this->getParam('upload_path') . '/' . $file_name);
[1]433    }
434
435    /**
[42]436     * Get filename by glob pattern. Searches a directory for an image that matches the
[20]437     * specified glob pattern and returns the filename of the first file found.
[1]438     *
[20]439     * @access  public
440     * @param   string  $pattern   Pattern to match filename.
441     * @return  string filename on success, empty string on failure.
442     * @author  Quinn Comendant <quinn@strangecode.com>
443     * @since   15 Nov 2005 20:55:22
[1]444     */
[468]445    public function getFilenameGlob($pattern)
[20]446    {
447        $file_list = glob(sprintf('%s/%s', $this->getParam('upload_path'), $pattern));
448        if (isset($file_list[0])) {
449            return basename($file_list[0]);
450        } else {
451            return '';
452        }
453    }
454
455    /**
[37]456     * Returns an array of file names that failed uploading.
[20]457     *
[37]458     * @access  public
459     * @return  array   List of file names.
[20]460     */
[468]461    public function getErrors()
[1]462    {
463        return $this->errors;
464    }
465
466    /**
[334]467     * Determines if any errors occurred while calling the Upload::process method.
[1]468     *
[37]469     * @access  public
[1]470     */
[468]471    public function anyErrors()
[22]472    {
473        return sizeof($this->errors) > 0;
474    }
475
476    /**
[488]477     * Removes non-latin characters from file name, using htmlentities to convert known weirdos into regular squares.
[22]478     *
[37]479     * @access  public
480     * @param   string  $file_name  A name of a file.
481     * @return  string              The same name, but cleaned.
[22]482     */
[468]483    public function cleanFileName($file_name)
[1]484    {
[488]485        $file_name = preg_replace(array(
486            '/&([a-z]{1,2})(?:acute|cedil|circ|grave|lig|orn|ring|slash|th|tilde|uml|caron);/ui',
487            '/&(?:amp);/ui',
488            '/[&;]+/u',
489            '/[^a-zA-Z0-9()@._=+-]+/u',
490            '/^_+|_+$/u'
491        ), array(
492            '$1',
493            'and',
494            '',
495            '_',
496            ''
497        ), htmlentities($file_name, ENT_NOQUOTES | ENT_IGNORE, 'UTF-8'));
498        return mb_substr($file_name, 0, 250);
[1]499    }
500
[37]501
[1]502    /**
[334]503     * Returns the extension of a file name, or an empty string if non exists.
[1]504     *
[37]505     * @access  public
[334]506     * @param   string  $file_name  A name of a file, with extension after a dot.
[37]507     * @return  string              The value found after the dot
[1]508     */
[468]509    static public function getFilenameExtension($file_name)
[1]510    {
[37]511        preg_match('/.*?\.(\w+)$/i', trim($file_name), $ext);
[22]512        return isset($ext[1]) ? $ext[1] : '';
[1]513    }
[42]514
[1]515    /**
[136]516     * An alias for $app->raiseMsg that only sends messages configured by display_messages.
[1]517     *
518     * @access public
519     *
520     * @param string $message The text description of the message.
521     * @param int    $type    The type of message: MSG_NOTICE,
522     *                        MSG_SUCCESS, MSG_WARNING, or MSG_ERR.
523     * @param string $file    __FILE__.
524     * @param string $line    __LINE__.
525     */
[468]526    public function _raiseMsg($message, $type, $file, $line)
[1]527    {
[479]528        $app =& App::getInstance();
[136]529
[485]530        if ($this->getParam('display_messages') === true || (is_int($this->getParam('display_messages')) && ($this->getParam('display_messages') & $type) > 0)) {
[136]531            $app->raiseMsg($message, $type, $file, $line);
[1]532        }
533    }
534}
535
Note: See TracBrowser for help on using the repository browser.