Store mime type lookups in a hash.

git-svn-id: http://svn.redmine.org/redmine/trunk@12484 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2014-01-05 17:56:21 +00:00
parent e1189c5335
commit d2f540358f
1 changed files with 10 additions and 7 deletions

View File

@ -55,13 +55,16 @@ module Redmine
# returns mime type for name or nil if unknown
def self.of(name)
return nil unless name
m = name.to_s.match(/(^|\.)([^\.]+)$/)
ext = m[2].downcase
type = nil
type = EXTENSIONS[ext] if m
type ||= MIME::Types.find {|type| type.extensions.include?(ext)}.to_s.presence
type
return nil unless name.present?
if m = name.to_s.match(/(^|\.)([^\.]+)$/)
extension = m[2].downcase
@known_types ||= Hash.new do |h, ext|
type = EXTENSIONS[ext]
type ||= MIME::Types.find {|type| type.extensions.include?(ext)}.to_s.presence
h[ext] = type
end
@known_types[extension]
end
end
# Returns the css class associated to