module Sprockets::Mime
def compute_extname_map
def compute_extname_map graph = {} ([nil] + pipelines.keys.map(&:to_s)).each do |pipeline| pipeline_extname = ".#{pipeline}" if pipeline ([[nil, nil]] + config[:mime_exts].to_a).each do |format_extname, format_type| 4.times do |n| config[:engines].keys.permutation(n).each do |engine_extnames| key = "#{pipeline_extname}#{format_extname}#{engine_extnames.join}" type = format_type || config[:engine_mime_types][engine_extnames.first] graph[key] = {type: type, engines: engine_extnames, pipeline: pipeline} end end end end graph end
def extname_map
def extname_map self.computed_config[:_extnames] ||= compute_extname_map end
def mime_exts
value - MIME Type String
key - MIME extension String
mime_exts['.js'] #=> 'application/javascript'
Examples:
Used for internal fast lookup purposes.
Internal: Mapping of MIME extension Strings to MIME type Strings.
def mime_exts config[:mime_exts] end
def mime_type_charset_detecter(mime_type)
mime_type - String MIME type
Internal: Get detecter function for MIME type.
def mime_type_charset_detecter(mime_type) if type = config[:mime_types][mime_type] if detect = type[:charset] return detect end end end
def mime_types
charset - Default Encoding or function to detect encoding
extensions - Array of extnames
value - Hash
key - MIME Type String
Public: Mapping of MIME type Strings to properties Hash.
def mime_types config[:mime_types] end
def read_file(filename, content_type = nil)
Returns String file contents transcoded to UTF-8 or in its external
content_type - String MIME type
filename - String path
Public: Read file on disk with MIME type specific encoding.
def read_file(filename, content_type = nil) data = File.binread(filename) if detect = mime_type_charset_detecter(content_type) detect.call(data).encode(Encoding::UTF_8, :universal_newline => true) else data end end
def register_mime_type(mime_type, options = {})
See EncodingUtils.
charset: Proc/Method that detects the charset of a file.
extensions: Array of String extnames
options - Hash
mime_type - String MIME Type
Public: Register a new mime type.
def register_mime_type(mime_type, options = {}) # Legacy extension argument, will be removed from 4.x if options.is_a?(String) options = { extensions: [options] } end extnames = Array(options[:extensions]).map { |extname| Sprockets::Utils.normalize_extension(extname) } charset = options[:charset] charset ||= :default if mime_type.start_with?('text/') charset = EncodingUtils::CHARSET_DETECT[charset] if charset.is_a?(Symbol) self.computed_config = {} self.config = hash_reassoc(config, :mime_exts) do |mime_exts| extnames.each do |extname| mime_exts[extname] = mime_type end mime_exts end self.config = hash_reassoc(config, :mime_types) do |mime_types| type = { extensions: extnames } type[:charset] = charset if charset mime_types.merge(mime_type => type) end end