2016-09-05 16:46:36 +01:00
|
|
|
class MediaAttachment < ApplicationRecord
|
|
|
|
belongs_to :account, inverse_of: :media_attachments
|
|
|
|
belongs_to :status, inverse_of: :media_attachments
|
|
|
|
|
|
|
|
has_attached_file :file
|
|
|
|
validates_attachment_content_type :file, content_type: /\Aimage\/.*\z/
|
|
|
|
|
|
|
|
validates :account, presence: true
|
|
|
|
|
|
|
|
def local?
|
|
|
|
self.remote_url.blank?
|
|
|
|
end
|
2016-09-05 17:39:53 +01:00
|
|
|
|
|
|
|
def file_remote_url=(url)
|
|
|
|
unless self[:file_remote_url] == url
|
|
|
|
self.file = URI.parse(url)
|
|
|
|
end
|
|
|
|
|
|
|
|
self[:file_remote_url] = url
|
|
|
|
end
|
2016-09-05 16:46:36 +01:00
|
|
|
end
|