2017-05-18 13:43:10 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Remotable
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
2018-03-26 12:02:10 +00:00
|
|
|
class_methods do
|
2020-06-29 11:56:55 +00:00
|
|
|
def remotable_attachment(attachment_name, limit, suppress_errors: true, download_on_assign: true, attribute_name: nil)
|
|
|
|
attribute_name ||= "#{attachment_name}_remote_url".to_sym
|
|
|
|
|
2020-06-29 15:59:04 +00:00
|
|
|
define_method("download_#{attachment_name}!") do |url = nil|
|
|
|
|
url ||= self[attribute_name]
|
2017-05-18 13:43:10 +00:00
|
|
|
|
2017-08-08 19:52:15 +00:00
|
|
|
return if url.blank?
|
|
|
|
|
2017-07-03 09:03:34 +00:00
|
|
|
begin
|
|
|
|
parsed_url = Addressable::URI.parse(url).normalize
|
|
|
|
rescue Addressable::URI::InvalidURIError
|
|
|
|
return
|
|
|
|
end
|
2017-05-18 13:43:10 +00:00
|
|
|
|
2020-06-29 11:56:55 +00:00
|
|
|
return if !%w(http https).include?(parsed_url.scheme) || parsed_url.host.blank?
|
2017-05-18 13:43:10 +00:00
|
|
|
|
|
|
|
begin
|
2018-03-24 11:49:54 +00:00
|
|
|
Request.new(:get, url).perform do |response|
|
2019-09-10 13:29:12 +00:00
|
|
|
raise Mastodon::UnexpectedResponseError, response unless (200...300).cover?(response.code)
|
2018-03-24 11:49:54 +00:00
|
|
|
|
2018-06-06 18:50:07 +00:00
|
|
|
content_type = parse_content_type(response.headers.get('content-type').last)
|
2018-06-04 16:58:36 +00:00
|
|
|
extname = detect_extname_from_content_type(content_type)
|
|
|
|
|
|
|
|
if extname.nil?
|
2018-06-06 18:50:07 +00:00
|
|
|
disposition = response.headers.get('content-disposition').last
|
|
|
|
matches = disposition&.match(/filename="([^"]*)"/)
|
|
|
|
filename = matches.nil? ? parsed_url.path.split('/').last : matches[1]
|
|
|
|
extname = filename.nil? ? '' : File.extname(filename)
|
2018-06-04 16:58:36 +00:00
|
|
|
end
|
|
|
|
|
2018-03-24 11:49:54 +00:00
|
|
|
basename = SecureRandom.hex(8)
|
|
|
|
|
2020-06-29 11:56:55 +00:00
|
|
|
public_send("#{attachment_name}_file_name=", basename + extname)
|
|
|
|
public_send("#{attachment_name}=", StringIO.new(response.body_with_limit(limit)))
|
2018-03-24 11:49:54 +00:00
|
|
|
end
|
2019-09-10 13:29:12 +00:00
|
|
|
rescue Mastodon::UnexpectedResponseError, HTTP::TimeoutError, HTTP::ConnectionError, OpenSSL::SSL::SSLError => e
|
|
|
|
Rails.logger.debug "Error fetching remote #{attachment_name}: #{e}"
|
|
|
|
raise e unless suppress_errors
|
|
|
|
rescue Paperclip::Errors::NotIdentifiedByImageMagickError, Addressable::URI::InvalidURIError, Mastodon::HostValidationError, Mastodon::LengthValidationError, Paperclip::Error, Mastodon::DimensionsValidationError => e
|
2017-05-18 13:43:10 +00:00
|
|
|
Rails.logger.debug "Error fetching remote #{attachment_name}: #{e}"
|
2018-05-11 11:14:50 +00:00
|
|
|
nil
|
2017-05-18 13:43:10 +00:00
|
|
|
end
|
|
|
|
end
|
2017-07-11 15:25:49 +00:00
|
|
|
|
2020-06-29 11:56:55 +00:00
|
|
|
define_method("#{attribute_name}=") do |url|
|
|
|
|
return if self[attribute_name] == url && public_send("#{attachment_name}_file_name").present?
|
2017-07-11 15:25:49 +00:00
|
|
|
|
2020-06-29 15:59:04 +00:00
|
|
|
self[attribute_name] = url if has_attribute?(attribute_name)
|
2017-07-11 15:25:49 +00:00
|
|
|
|
2020-06-29 15:59:04 +00:00
|
|
|
public_send("download_#{attachment_name}!", url) if download_on_assign
|
2017-07-11 15:25:49 +00:00
|
|
|
end
|
2020-06-29 11:56:55 +00:00
|
|
|
|
|
|
|
alias_method("reset_#{attachment_name}!", "download_#{attachment_name}!")
|
2017-05-18 13:43:10 +00:00
|
|
|
end
|
|
|
|
end
|
2018-06-04 16:58:36 +00:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def detect_extname_from_content_type(content_type)
|
|
|
|
return if content_type.nil?
|
|
|
|
|
|
|
|
type = MIME::Types[content_type].first
|
|
|
|
|
|
|
|
return if type.nil?
|
|
|
|
|
2018-06-06 18:49:39 +00:00
|
|
|
extname = type.extensions.first
|
|
|
|
|
|
|
|
return if extname.nil?
|
|
|
|
|
|
|
|
".#{extname}"
|
2018-06-04 16:58:36 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def parse_content_type(content_type)
|
|
|
|
return if content_type.nil?
|
|
|
|
|
|
|
|
content_type.split(/\s*;\s*/).first
|
|
|
|
end
|
2017-05-18 13:43:10 +00:00
|
|
|
end
|