mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2025-02-10 21:44:44 +00:00
25 lines
852 B
Ruby
25 lines
852 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Paperclip
|
|
module MediaTypeSpoofDetectorExtensions
|
|
MARCEL_MIME_TYPES = %w(audio/mpeg image/avif).freeze
|
|
|
|
def calculated_content_type
|
|
return @calculated_content_type if defined?(@calculated_content_type)
|
|
|
|
@calculated_content_type = type_from_file_command.chomp
|
|
|
|
# The `file` command fails to recognize some MP3 files as such
|
|
@calculated_content_type = type_from_marcel if @calculated_content_type == 'application/octet-stream' && type_from_marcel.in?(MARCEL_MIME_TYPES)
|
|
@calculated_content_type
|
|
end
|
|
|
|
def type_from_marcel
|
|
@type_from_marcel ||= Marcel::MimeType.for Pathname.new(@file.path),
|
|
name: @file.path
|
|
end
|
|
end
|
|
end
|
|
|
|
Paperclip::MediaTypeSpoofDetector.prepend(Paperclip::MediaTypeSpoofDetectorExtensions)
|