diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-07-04 23:56:26 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-07-04 23:56:26 +0200 |
commit | 8f49e4a99c2a35f71b763177b32c2cf1fef9a8c6 (patch) | |
tree | 95bf6232931d7dcd6ee5c0281b78df56b7cf956c /installer/rcube_install.php | |
parent | 08167e91140e533dbc52279071767813fee8401c (diff) |
Check filetype detection in installer and update script (#1489193)
Diffstat (limited to 'installer/rcube_install.php')
-rw-r--r-- | installer/rcube_install.php | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/installer/rcube_install.php b/installer/rcube_install.php index 637808e8a..ab7967708 100644 --- a/installer/rcube_install.php +++ b/installer/rcube_install.php @@ -413,6 +413,51 @@ class rcube_install return $schema; } + /** + * Try to detect some file's mimetypes to test the correct behavior of fileinfo + */ + function check_mime_detection() + { + $files = array( + 'installer/images/roundcube_logo.png' => 'image/png', + 'program/resources/blank.tif' => 'image/tiff', + 'skins/larry/templates/login.html' => 'text/html', + ); + + $errors = array(); + foreach ($files as $path => $expected) { + $mimetype = rcube_mime::file_content_type(INSTALL_PATH . $path, basename($path)); + if ($mimetype != $expected) { + $errors[] = array($path, $mimetype, $expected); + } + } + + return $errors; + } + + /** + * Check the correct configuration of the 'mime_types' mapping option + */ + function check_mime_extensions() + { + $types = array( + 'application/zip' => 'zip', + 'application/x-tar' => 'tar', + 'application/java-archive' => 'jar', + 'image/bmp' => 'bmp', + 'image/svg+xml' => 'svg', + ); + + $errors = array(); + foreach ($types as $mimetype => $expected) { + $ext = rcube_mime::get_mime_extensions($mimetype); + if ($ext[0] != $expected) { + $errors[] = array($mimetype, $ext, $expected); + } + } + + return $errors; + } /** * Getter for the last error message |