logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

remotable.rb (1931B)


  1. # frozen_string_literal: true
  2. module Remotable
  3. extend ActiveSupport::Concern
  4. class_methods do
  5. def remotable_attachment(attachment_name, limit)
  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. return if url.blank?
  11. begin
  12. parsed_url = Addressable::URI.parse(url).normalize
  13. rescue Addressable::URI::InvalidURIError
  14. return
  15. end
  16. return if !%w(http https).include?(parsed_url.scheme) || parsed_url.host.empty? || self[attribute_name] == url
  17. begin
  18. Request.new(:get, url).perform do |response|
  19. next if response.code != 200
  20. matches = response.headers['content-disposition']&.match(/filename="([^"]*)"/)
  21. filename = matches.nil? ? parsed_url.path.split('/').last : matches[1]
  22. basename = SecureRandom.hex(8)
  23. extname = if filename.nil?
  24. ''
  25. else
  26. File.extname(filename)
  27. end
  28. send("#{attachment_name}=", StringIO.new(response.body_with_limit(limit)))
  29. send("#{attachment_name}_file_name=", basename + extname)
  30. self[attribute_name] = url if has_attribute?(attribute_name)
  31. end
  32. rescue HTTP::TimeoutError, HTTP::ConnectionError, OpenSSL::SSL::SSLError, Paperclip::Errors::NotIdentifiedByImageMagickError, Addressable::URI::InvalidURIError, Mastodon::HostValidationError => e
  33. Rails.logger.debug "Error fetching remote #{attachment_name}: #{e}"
  34. nil
  35. end
  36. end
  37. define_method alt_method_name do
  38. url = self[attribute_name]
  39. return if url.blank?
  40. self[attribute_name] = ''
  41. send(method_name, url)
  42. end
  43. end
  44. end
  45. end