闭社主体 forked from https://github.com/tootsuite/mastodon
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.6 KiB

  1. # frozen_string_literal: true
  2. module Remotable
  3. extend ActiveSupport::Concern
  4. included do
  5. attachment_definitions.each_key do |attachment_name|
  6. attribute_name = "#{attachment_name}_remote_url".to_sym
  7. method_name = "#{attribute_name}=".to_sym
  8. alt_method_name = "reset_#{attachment_name}!".to_sym
  9. define_method method_name do |url|
  10. begin
  11. parsed_url = Addressable::URI.parse(url).normalize
  12. rescue Addressable::URI::InvalidURIError
  13. return
  14. end
  15. return if !%w(http https).include?(parsed_url.scheme) || parsed_url.host.empty? || self[attribute_name] == url
  16. begin
  17. response = Request.new(:get, url).perform
  18. return if response.code != 200
  19. matches = response.headers['content-disposition']&.match(/filename="([^"]*)"/)
  20. filename = matches.nil? ? parsed_url.path.split('/').last : matches[1]
  21. send("#{attachment_name}=", StringIO.new(response.to_s))
  22. send("#{attachment_name}_file_name=", filename)
  23. self[attribute_name] = url if has_attribute?(attribute_name)
  24. rescue HTTP::TimeoutError, HTTP::ConnectionError, OpenSSL::SSL::SSLError, Paperclip::Errors::NotIdentifiedByImageMagickError, Addressable::URI::InvalidURIError => e
  25. Rails.logger.debug "Error fetching remote #{attachment_name}: #{e}"
  26. nil
  27. end
  28. end
  29. define_method alt_method_name do
  30. url = self[attribute_name]
  31. return if url.blank?
  32. self[attribute_name] = ''
  33. send(method_name, url)
  34. end
  35. end
  36. end
  37. end