Parcourir la source

Replace MimeMagic with Marcel (#34969).

Patch by Go MAEDA.


git-svn-id: http://svn.redmine.org/redmine/trunk@20862 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/4.2.0
Go MAEDA il y a 3 ans
Parent
révision
e6a8529ba8
2 fichiers modifiés avec 2 ajouts et 4 suppressions
  1. 1
    1
      Gemfile
  2. 1
    3
      lib/redmine/thumbnail.rb

+ 1
- 1
Gemfile Voir le fichier

@@ -10,7 +10,7 @@ gem 'request_store', '~> 1.5.0'
gem "mini_mime", "~> 1.0.1"
gem "actionpack-xml_parser"
gem 'roadie-rails', (RUBY_VERSION < '2.5' ? '~> 1.3.0' : '~> 2.2.0')
gem "mimemagic"
gem 'marcel'
gem "mail", "~> 2.7.1"
gem 'csv', (RUBY_VERSION < '2.5' ? ['>= 3.1.1', '<= 3.1.5'] : '~> 3.1.1')
gem 'nokogiri', (RUBY_VERSION < '2.5' ? '~> 1.10.0' : '~> 1.11.1')

+ 1
- 3
lib/redmine/thumbnail.rb Voir le fichier

@@ -18,7 +18,6 @@
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

require 'fileutils'
require 'mimemagic'

module Redmine
module Thumbnail
@@ -35,8 +34,7 @@ module Redmine

unless File.exists?(target)
# Make sure we only invoke Imagemagick if the file type is allowed
mime_type = File.open(source) {|f| MimeMagic.by_magic(f).try(:type)}
return nil if mime_type.nil?
mime_type = File.open(source) {|f| Marcel::MimeType.for(f)}
return nil if !ALLOWED_TYPES.include? mime_type
return nil if is_pdf && mime_type != "application/pdf"


Chargement…
Annuler
Enregistrer