2016-09-06 00:46:36 +09:00
|
|
|
class MediaAttachment < ApplicationRecord
|
|
|
|
belongs_to :account, inverse_of: :media_attachments
|
|
|
|
belongs_to :status, inverse_of: :media_attachments
|
|
|
|
|
2016-09-06 02:26:24 +09:00
|
|
|
has_attached_file :file, styles: { small: '510x680>' }
|
2016-09-06 00:46:36 +09:00
|
|
|
validates_attachment_content_type :file, content_type: /\Aimage\/.*\z/
|
2016-09-10 16:43:45 +09:00
|
|
|
validates_attachment_size :file, less_than: 4.megabytes
|
2016-09-06 00:46:36 +09:00
|
|
|
|
|
|
|
validates :account, presence: true
|
|
|
|
|
|
|
|
def local?
|
|
|
|
self.remote_url.blank?
|
|
|
|
end
|
2016-09-06 01:39:53 +09:00
|
|
|
|
|
|
|
def file_remote_url=(url)
|
2016-09-06 02:11:25 +09:00
|
|
|
self.file = URI.parse(url)
|
2016-09-06 01:39:53 +09:00
|
|
|
end
|
2016-09-06 00:46:36 +09:00
|
|
|
end
|