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