2016-11-15 16:56:29 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-05 17:46:36 +02:00
|
|
|
class MediaAttachment < ApplicationRecord
|
2017-03-04 22:17:10 +01:00
|
|
|
self.inheritance_column = nil
|
|
|
|
|
|
|
|
enum type: [:image, :gifv, :video]
|
|
|
|
|
2016-09-29 21:28:21 +02:00
|
|
|
IMAGE_MIME_TYPES = ['image/jpeg', 'image/png', 'image/gif'].freeze
|
2016-10-12 14:29:10 +02:00
|
|
|
VIDEO_MIME_TYPES = ['video/webm', 'video/mp4'].freeze
|
2016-09-12 18:22:43 +02:00
|
|
|
|
2017-03-04 22:17:10 +01:00
|
|
|
IMAGE_STYLES = { original: '1280x1280>', small: '400x400>' }.freeze
|
|
|
|
VIDEO_STYLES = {
|
|
|
|
small: {
|
|
|
|
convert_options: {
|
|
|
|
output: {
|
|
|
|
vf: 'scale=\'min(400\, iw):min(400\, ih)\':force_original_aspect_ratio=decrease',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
format: 'png',
|
|
|
|
time: 0,
|
|
|
|
},
|
|
|
|
}.freeze
|
|
|
|
|
2016-09-05 17:46:36 +02:00
|
|
|
belongs_to :account, inverse_of: :media_attachments
|
|
|
|
belongs_to :status, inverse_of: :media_attachments
|
|
|
|
|
2016-10-08 15:15:43 +02:00
|
|
|
has_attached_file :file,
|
2017-03-04 22:17:10 +01:00
|
|
|
styles: ->(f) { file_styles f },
|
|
|
|
processors: ->(f) { file_processors f },
|
2016-12-07 12:09:20 +01:00
|
|
|
convert_options: { all: '-quality 90 -strip' }
|
2016-09-12 18:22:43 +02:00
|
|
|
validates_attachment_content_type :file, content_type: IMAGE_MIME_TYPES + VIDEO_MIME_TYPES
|
2017-01-27 16:55:06 +01:00
|
|
|
validates_attachment_size :file, less_than: 8.megabytes
|
2016-09-05 17:46:36 +02:00
|
|
|
|
|
|
|
validates :account, presence: true
|
|
|
|
|
2017-01-06 00:21:12 +01:00
|
|
|
scope :local, -> { where(remote_url: '') }
|
2016-11-28 13:49:42 +01:00
|
|
|
default_scope { order('id asc') }
|
|
|
|
|
2016-09-05 17:46:36 +02:00
|
|
|
def local?
|
2016-09-29 21:28:21 +02:00
|
|
|
remote_url.blank?
|
2016-09-05 17:46:36 +02:00
|
|
|
end
|
2016-09-05 18:39:53 +02:00
|
|
|
|
|
|
|
def file_remote_url=(url)
|
2016-09-05 19:11:25 +02:00
|
|
|
self.file = URI.parse(url)
|
2016-09-05 18:39:53 +02:00
|
|
|
end
|
2016-09-12 18:22:43 +02:00
|
|
|
|
2017-01-06 00:21:12 +01:00
|
|
|
def to_param
|
|
|
|
shortcode
|
|
|
|
end
|
|
|
|
|
|
|
|
before_create :set_shortcode
|
2017-03-04 22:17:10 +01:00
|
|
|
before_post_process :set_type
|
2017-01-06 00:21:12 +01:00
|
|
|
|
2016-10-23 11:56:04 +02:00
|
|
|
class << self
|
|
|
|
private
|
|
|
|
|
|
|
|
def file_styles(f)
|
2017-03-04 22:17:10 +01:00
|
|
|
if f.instance.file_content_type == 'image/gif'
|
2016-10-23 11:56:04 +02:00
|
|
|
{
|
2017-03-04 22:17:10 +01:00
|
|
|
small: IMAGE_STYLES[:small],
|
|
|
|
original: {
|
|
|
|
format: 'webm',
|
2016-10-23 11:56:04 +02:00
|
|
|
convert_options: {
|
|
|
|
output: {
|
2017-03-04 22:17:10 +01:00
|
|
|
'c:v' => 'libvpx',
|
|
|
|
'crf' => 6,
|
|
|
|
'b:v' => '500K',
|
2016-11-15 16:56:29 +01:00
|
|
|
},
|
2016-10-23 11:56:04 +02:00
|
|
|
},
|
2016-11-15 16:56:29 +01:00
|
|
|
},
|
2016-10-23 11:56:04 +02:00
|
|
|
}
|
2017-03-04 22:17:10 +01:00
|
|
|
elsif IMAGE_MIME_TYPES.include? f.instance.file_content_type
|
|
|
|
IMAGE_STYLES
|
|
|
|
else
|
|
|
|
VIDEO_STYLES
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def file_processors(f)
|
|
|
|
if f.file_content_type == 'image/gif'
|
|
|
|
[:gif_transcoder]
|
|
|
|
elsif VIDEO_MIME_TYPES.include? f.file_content_type
|
2017-03-05 22:55:24 +01:00
|
|
|
[:video_transcoder]
|
2017-03-04 22:17:10 +01:00
|
|
|
else
|
|
|
|
[:thumbnail]
|
2016-10-23 11:56:04 +02:00
|
|
|
end
|
2016-10-08 15:15:43 +02:00
|
|
|
end
|
|
|
|
end
|
2017-01-06 00:21:12 +01:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_shortcode
|
|
|
|
return unless local?
|
|
|
|
|
|
|
|
loop do
|
|
|
|
self.shortcode = SecureRandom.urlsafe_base64(14)
|
|
|
|
break if MediaAttachment.find_by(shortcode: shortcode).nil?
|
|
|
|
end
|
|
|
|
end
|
2017-03-04 22:17:10 +01:00
|
|
|
|
|
|
|
def set_type
|
|
|
|
self.type = VIDEO_MIME_TYPES.include?(file_content_type) ? :video : :image
|
|
|
|
end
|
2016-09-05 17:46:36 +02:00
|
|
|
end
|