2016-09-05 15:46:36 +00:00
|
|
|
class MediaAttachment < ApplicationRecord
|
2016-09-12 16:22:43 +00:00
|
|
|
IMAGE_MIME_TYPES = ['image/jpeg', 'image/png', 'image/gif']
|
|
|
|
VIDEO_MIME_TYPES = ['video/webm']
|
|
|
|
|
2016-09-05 15:46:36 +00:00
|
|
|
belongs_to :account, inverse_of: :media_attachments
|
|
|
|
belongs_to :status, inverse_of: :media_attachments
|
|
|
|
|
2016-09-17 15:47:26 +00:00
|
|
|
has_attached_file :file, styles: lambda { |f| f.instance.image? ? { small: '510x680>' } : { small: { convert_options: { output: { vf: 'scale="min(510\, iw):min(680\, ih)":force_original_aspect_ratio=decrease' } }, format: 'png', time: 1 } } }, processors: lambda { |f| f.video? ? [:transcoder] : [:thumbnail] }
|
2016-09-12 16:22:43 +00:00
|
|
|
validates_attachment_content_type :file, content_type: IMAGE_MIME_TYPES + VIDEO_MIME_TYPES
|
2016-09-10 07:43:45 +00:00
|
|
|
validates_attachment_size :file, less_than: 4.megabytes
|
2016-09-05 15:46:36 +00:00
|
|
|
|
|
|
|
validates :account, presence: true
|
|
|
|
|
|
|
|
def local?
|
|
|
|
self.remote_url.blank?
|
|
|
|
end
|
2016-09-05 16:39:53 +00:00
|
|
|
|
|
|
|
def file_remote_url=(url)
|
2016-09-05 17:11:25 +00:00
|
|
|
self.file = URI.parse(url)
|
2016-09-05 16:39:53 +00:00
|
|
|
end
|
2016-09-12 16:22:43 +00:00
|
|
|
|
|
|
|
def image?
|
|
|
|
IMAGE_MIME_TYPES.include? file_content_type
|
|
|
|
end
|
|
|
|
|
|
|
|
def video?
|
|
|
|
VIDEO_MIME_TYPES.include? file_content_type
|
|
|
|
end
|
2016-09-17 15:47:26 +00:00
|
|
|
|
|
|
|
def type
|
|
|
|
image? ? 'image' : 'video'
|
|
|
|
end
|
2016-09-05 15:46:36 +00:00
|
|
|
end
|