2017-01-24 20:10:40 +00:00
|
|
|
# frozen_string_literal: true
|
2017-11-25 19:23:47 +00:00
|
|
|
|
2017-01-24 20:10:40 +00:00
|
|
|
module Attachable
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
|
|
|
has_many :attachments, as: :attachable, dependent: :destroy
|
|
|
|
end
|
|
|
|
|
|
|
|
def images
|
|
|
|
attachments.where(file_content_type: image_types)
|
|
|
|
end
|
|
|
|
|
|
|
|
def audios
|
|
|
|
attachments.where(file_content_type: audio_types)
|
|
|
|
end
|
|
|
|
|
|
|
|
def texts
|
|
|
|
attachments.where(file_content_type: text_types)
|
|
|
|
end
|
|
|
|
|
|
|
|
def pdfs
|
|
|
|
attachments.where(file_content_type: pdf_types)
|
|
|
|
end
|
|
|
|
|
|
|
|
def documents
|
|
|
|
attachments.where(file_content_type: text_types + pdf_types)
|
|
|
|
end
|
|
|
|
|
|
|
|
class << self
|
|
|
|
def image_types
|
|
|
|
['image/png', 'image/gif', 'image/jpeg']
|
|
|
|
end
|
|
|
|
|
|
|
|
def audio_types
|
|
|
|
['audio/ogg', 'audio/mp3']
|
|
|
|
end
|
|
|
|
|
|
|
|
def text_types
|
|
|
|
['text/plain']
|
|
|
|
end
|
|
|
|
|
|
|
|
def pdf_types
|
|
|
|
['application/pdf']
|
|
|
|
end
|
|
|
|
|
|
|
|
def allowed_types
|
|
|
|
image_types + audio_types + text_types + pdf_types
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|