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
|
|
|
|
|
2016-09-05 17:26:24 +00:00
|
|
|
has_attached_file :file, styles: { small: '510x680>' }
|
2016-09-05 15:46:36 +00:00
|
|
|
validates_attachment_content_type :file, content_type: /\Aimage\/.*\z/
|
2016-09-10 07:43:45 +00:00
|
|
|
validates_attachment_size :file, less_than: 4.megabytes
|
2016-09-05 15:46:36 +00:00
|
|
|
|
|
|
|
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
|