about summary refs log tree commit diff
path: root/lib/paperclip
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2020-03-26 15:09:16 +0100
committerGitHub <noreply@github.com>2020-03-26 15:09:16 +0100
commit6c79b7237e31eb510af7df3f4f2cb133dea39845 (patch)
tree0d4037900901516a1a22b849742efa3259246ddc /lib/paperclip
parentd88480da4ac7be7dc74c3b499dcfc00f18d7de4a (diff)
Fix Paperclip using deprecated URI.escape function (#13320)
Monkey-patch Paperclip to perform URL escaping in a slightly more
appropriate way, and get rid of runtime deprecation warnings.
Diffstat (limited to 'lib/paperclip')
-rw-r--r--lib/paperclip/url_generator_extensions.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/paperclip/url_generator_extensions.rb b/lib/paperclip/url_generator_extensions.rb
new file mode 100644
index 000000000..1079efdbc
--- /dev/null
+++ b/lib/paperclip/url_generator_extensions.rb
@@ -0,0 +1,17 @@
+# 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
+  end
+end
+
+Paperclip::UrlGenerator.prepend(Paperclip::UrlGeneratorExtensions)