Sha256: 972eb7a8c8396f9a28abb57020c18f7b2bbec999f832e7d06050f7e331a028ed

Contents?: true

Size: 1.14 KB

Versions: 4

Compression:

Stored size: 1.14 KB

Contents

module Rack
  module OAuth2
    class AccessToken
      include AttrRequired, AttrOptional
      attr_required :access_token, :token_type, :httpclient
      attr_optional :refresh_token, :expires_in, :scope
      delegate :get, :post, :put, :delete, :to => :httpclient

      def initialize(attributes = {})
        (required_attributes + optional_attributes).each do |key|
          self.send :"#{key}=", attributes[key]
        end
        @token_type = self.class.to_s.split('::').last.underscore.to_sym
        @httpclient = HTTPClient.new(
          :agent_name => "#{self.class} (#{VERSION})"
        )
        @httpclient.request_filter << Authenticator.new(self)
        attr_missing!
      end

      def token_response(options = {})
        {
          :access_token => access_token,
          :refresh_token => refresh_token,
          :token_type => token_type,
          :expires_in => expires_in,
          :scope => Array(scope).join(' ')
        }
      end
    end
  end
end

require 'rack/oauth2/access_token/authenticator'
require 'rack/oauth2/access_token/bearer'
require 'rack/oauth2/access_token/mac'
require 'rack/oauth2/access_token/legacy'

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rack-oauth2-0.8.4 lib/rack/oauth2/access_token.rb
rack-oauth2-0.8.3 lib/rack/oauth2/access_token.rb
rack-oauth2-0.8.2 lib/rack/oauth2/access_token.rb
rack-oauth2-0.8.1 lib/rack/oauth2/access_token.rb