include AccountAvatar
include AccountHeader
include Attachmentable
+ include Remotable
include Targetable
# Local users
def avatar_static_url
avatar_content_type == 'image/gif' ? avatar.url(:static) : avatar_original_url
end
-
- def avatar_remote_url=(url)
- parsed_url = Addressable::URI.parse(url).normalize
-
- return if !%w(http https).include?(parsed_url.scheme) || parsed_url.host.empty? || self[:avatar_remote_url] == url
-
- self.avatar = URI.parse(parsed_url.to_s)
- self[:avatar_remote_url] = url
- rescue OpenURI::HTTPError, OpenSSL::SSL::SSLError, Paperclip::Errors::NotIdentifiedByImageMagickError => e
- Rails.logger.debug "Error fetching remote avatar: #{e}"
- end
end
end
def header_static_url
header_content_type == 'image/gif' ? header.url(:static) : header_original_url
end
-
- def header_remote_url=(url)
- parsed_url = Addressable::URI.parse(url).normalize
-
- return if !%w(http https).include?(parsed_url.scheme) || parsed_url.host.empty? || self[:header_remote_url] == url
-
- self.header = URI.parse(parsed_url.to_s)
- self[:header_remote_url] = url
- rescue OpenURI::HTTPError, OpenSSL::SSL::SSLError, Paperclip::Errors::NotIdentifiedByImageMagickError => e
- Rails.logger.debug "Error fetching remote header: #{e}"
- end
end
end
--- /dev/null
+# frozen_string_literal: true
+
+module Remotable
+ include HttpHelper
+ extend ActiveSupport::Concern
+
+ included do
+ attachment_definitions.each_key do |attachment_name|
+ attribute_name = "#{attachment_name}_remote_url".to_sym
+ method_name = "#{attribute_name}=".to_sym
+
+ define_method method_name do |url|
+ parsed_url = Addressable::URI.parse(url).normalize
+
+ return if !%w(http https).include?(parsed_url.scheme) || parsed_url.host.empty? || self[attribute_name] == url
+
+ begin
+ response = http_client.get(url)
+
+ return if response.code != 200
+
+ matches = response.headers['content-disposition']&.match(/filename="([^"]*)"/)
+ filename = matches.nil? ? parsed_url.path.split('/').last : matches[1]
+
+ send("#{attachment_name}=", StringIO.new(response.to_s))
+ send("#{attachment_name}_file_name=", filename)
+
+ self[attribute_name] = url if has_attribute?(attribute_name)
+ rescue HTTP::TimeoutError, OpenSSL::SSL::SSLError, Paperclip::Errors::NotIdentifiedByImageMagickError => e
+ Rails.logger.debug "Error fetching remote #{attachment_name}: #{e}"
+ end
+ end
+ end
+ end
+end
styles: ->(f) { file_styles f },
processors: ->(f) { file_processors f },
convert_options: { all: '-quality 90 -strip' }
+
+ include Remotable
+
validates_attachment_content_type :file, content_type: IMAGE_MIME_TYPES + VIDEO_MIME_TYPES
validates_attachment_size :file, less_than: 8.megabytes
remote_url.blank?
end
- def file_remote_url=(url)
- self.file = URI.parse(Addressable::URI.parse(url).normalize.to_s)
- end
-
def to_param
shortcode
end
has_attached_file :image, styles: { original: '120x120#' }, convert_options: { all: '-quality 80 -strip' }
include Attachmentable
+ include Remotable
validates :url, presence: true
validates_attachment_content_type :image, content_type: IMAGE_MIME_TYPES
page = Nokogiri::HTML(response.to_s)
- card.type = :link
- card.title = meta_property(page, 'og:title') || page.at_xpath('//title')&.content
- card.description = meta_property(page, 'og:description') || meta_property(page, 'description')
- card.image = URI.parse(Addressable::URI.parse(meta_property(page, 'og:image')).normalize.to_s) if meta_property(page, 'og:image')
+ card.type = :link
+ card.title = meta_property(page, 'og:title') || page.at_xpath('//title')&.content
+ card.description = meta_property(page, 'og:description') || meta_property(page, 'description')
+ card.image_remote_url = meta_property(page, 'og:image') if meta_property(page, 'og:image')
return if card.title.blank?
begin
media.file_remote_url = link['href']
- media.save
- rescue OpenURI::HTTPError, OpenSSL::SSL::SSLError, Paperclip::Errors::NotIdentifiedByImageMagickError
+ media.save!
+ rescue ActiveRecord::RecordInvalid
next
end
end