2016-09-05 15:46:36 +00: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 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-05 15:46:36 +00:00
|
|
|
end
|