Sha256: 1f0dddd4f5363bb0cbfffd4f2cf739e8e2cf82d4db633734f09e70b7ea81f649
Contents?: true
Size: 788 Bytes
Versions: 1
Compression:
Stored size: 788 Bytes
Contents
module Doorkeeper module OAuth module Helpers module URIChecker def self.valid?(url) uri = as_uri(url) uri.fragment.nil? && !uri.host.nil? && !uri.scheme.nil? rescue URI::InvalidURIError false end def self.matches?(url, client_url) url, client_url = as_uri(url), as_uri(client_url) url.query = nil url == client_url end def self.valid_for_authorization?(url, client_url) valid?(url) && matches?(url, client_url) end def self.as_uri(url) URI.parse(url) end def self.test_uri?(url) url == Doorkeeper.configuration.test_redirect_uri end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
couchkeeper-0.6.7 | lib/doorkeeper/oauth/helpers/uri_checker.rb |