2020-03-26 15:09:16 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Paperclip
|
|
|
|
module UrlGeneratorExtensions
|
|
|
|
# Monkey-patch Paperclip to use Addressable::URI's normalization instead
|
|
|
|
# of the long-deprecated URI.esacpe
|
|
|
|
def escape_url(url)
|
|
|
|
if url.respond_to?(:escape)
|
|
|
|
url.escape
|
|
|
|
else
|
|
|
|
Addressable::URI.parse(url).normalize.to_str.gsub(escape_regex) { |m| "%#{m.ord.to_s(16).upcase}" }
|
|
|
|
end
|
|
|
|
end
|
2020-09-11 15:16:29 +02:00
|
|
|
|
|
|
|
def for_as_default(style_name)
|
|
|
|
attachment_options[:interpolator].interpolate(default_url, @attachment, style_name)
|
|
|
|
end
|
2020-03-26 15:09:16 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
Paperclip::UrlGenerator.prepend(Paperclip::UrlGeneratorExtensions)
|