Sha256: 47903dfbe9ef6b46dac41a3e51b20a687d40b1754a450ee1ef87b744131daac0

Contents?: true

Size: 1.43 KB

Versions: 10

Compression:

Stored size: 1.43 KB

Contents

require 'base64'

module Rack
  module OAuth2
    module Util
      class << self
        def rfc3986_encode(text)
          URI.encode(text, Regexp.new("[^#{URI::PATTERN::UNRESERVED}]"))
        end

        def base64_encode(text)
          Base64.encode64(text).gsub(/\n/, '')
        end

        def compact_hash(hash)
          hash.reject do |key, value|
            value.blank?
          end
        end

        def parse_uri(uri)
          case uri
          when URI::Generic
            uri
          when String
            URI.parse(uri)
          else
            raise "Invalid format of URI is given."
          end
        end

        def redirect_uri(base_uri, location, params)
          redirect_uri = parse_uri base_uri
          case location
          when :query
            redirect_uri.query = [redirect_uri.query, Util.compact_hash(params).to_query].compact.join('&')
          when :fragment
            redirect_uri.fragment = Util.compact_hash(params).to_query
          end
          redirect_uri.to_s
        end

        def uri_match?(base, given)
          base = parse_uri(base)
          given = parse_uri(given)
          base.path = '/' if base.path.blank?
          given.path = '/' if given.path.blank?
          [:scheme, :host, :port].all? do |key|
            base.send(key) == given.send(key)
          end && !!(/^#{base.path}/ =~ given.path)
        rescue
          false
        end

      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
rack-oauth2-1.3.1 lib/rack/oauth2/util.rb
rack-oauth2-1.3.0 lib/rack/oauth2/util.rb
rack-oauth2-1.2.3 lib/rack/oauth2/util.rb
rack-oauth2-1.2.2 lib/rack/oauth2/util.rb
rack-oauth2-1.2.1 lib/rack/oauth2/util.rb
rack-oauth2-1.2.0 lib/rack/oauth2/util.rb
rack-oauth2-1.1.1 lib/rack/oauth2/util.rb
rack-oauth2-1.1.0 lib/rack/oauth2/util.rb
rack-oauth2-1.0.10 lib/rack/oauth2/util.rb
rack-oauth2-1.0.9 lib/rack/oauth2/util.rb