about summary refs log tree commit diff
path: root/app/lib/request.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2018-12-26 19:15:53 +0100
committerGitHub <noreply@github.com>2018-12-26 19:15:53 +0100
commitaa9a20cde0fe3eb2a4af570cd4437c34a18ce0da (patch)
treec32052c0e588b7bf046e8e20309dcd2b7cefb96f /app/lib/request.rb
parent17cd91c7776281bee68d57d898d598d576c70a0e (diff)
Fix ThreadResolveWorker getting queued with invalid URLs (#9628)
Diffstat (limited to 'app/lib/request.rb')
-rw-r--r--app/lib/request.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/app/lib/request.rb b/app/lib/request.rb
index 4a81773e3..ef4aeaf29 100644
--- a/app/lib/request.rb
+++ b/app/lib/request.rb
@@ -66,6 +66,18 @@ class Request
     (@account ? @headers.merge('Signature' => signature) : @headers).without(REQUEST_TARGET)
   end
 
+  class << self
+    def valid_url?(url)
+      begin
+        parsed_url = Addressable::URI.parse(url)
+      rescue Addressable::URI::InvalidURIError
+        return false
+      end
+
+      %w(http https).include?(parsed_url.scheme) && parsed_url.host.present?
+    end
+  end
+
   private
 
   def set_common_headers!