Sha256: fc1ab10acd591b80ec5ac88e9c7ec7c8368675a17665ac70fb844b1b40099a27

Contents?: true

Size: 1.2 KB

Versions: 3

Compression:

Stored size: 1.2 KB

Contents

module Mrkt
  module Authentication
    def authenticate!
      return if authenticated?

      authenticate

      if !authenticated? && @retry_authentication
        @retry_authentication_count.times do
          sleep(@retry_authentication_wait_seconds) if @retry_authentication_wait_seconds > 0
          authenticate
          break if authenticated?
        end
      end

      fail Mrkt::Errors::AuthorizationError, 'Client not authenticated' unless authenticated?
    end

    def authenticated?
      @token && valid_token?
    end

    def valid_token?
      @valid_until && Time.now < @valid_until
    end

    def authenticate
      connection.get('/identity/oauth/token', authentication_params).tap do |response|
        data = response.body

        @token = data.fetch(:access_token)
        @token_type = data.fetch(:token_type)
        @valid_until = Time.now + data.fetch(:expires_in)
        @scope = data.fetch(:scope)
      end
    end

    def authentication_params
      {
        grant_type: 'client_credentials',
        client_id: @client_id,
        client_secret: @client_secret
      }
    end

    def add_authorization(req)
      req.headers[:authorization] = "Bearer #{@token}"
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mrkt-0.9.0 lib/mrkt/concerns/authentication.rb
mrkt-0.8.0 lib/mrkt/concerns/authentication.rb
mrkt-0.7.0 lib/mrkt/concerns/authentication.rb