Class: UspsApi::GrantType

Inherits:
Object
  • Object
show all
Defined in:
lib/usps_api/models/grant_type.rb

Overview

The OAuth standard flow being requested by the client application.

Constant Summary collapse

GRANT_TYPE =
[
  # TODO: Write general description for CLIENT_CREDENTIALS
  CLIENT_CREDENTIALS = 'client_credentials'.freeze,

  # TODO: Write general description for REFRESH_TOKEN
  REFRESH_TOKEN = 'refresh_token'.freeze,

  # TODO: Write general description for AUTHORIZATION_CODE
  AUTHORIZATION_CODE = 'authorization_code'.freeze
].freeze

Class Method Summary collapse

Class Method Details

.from_value(value, default_value = CLIENT_CREDENTIALS) ⇒ Object



26
27
28
29
30
31
32
33
34
35
36
37
38
# File 'lib/usps_api/models/grant_type.rb', line 26

def self.from_value(value, default_value = CLIENT_CREDENTIALS)
  return default_value if value.nil?

  str = value.to_s.strip

  case str.downcase
  when 'client_credentials' then CLIENT_CREDENTIALS
  when 'refresh_token' then REFRESH_TOKEN
  when 'authorization_code' then AUTHORIZATION_CODE
  else
    default_value
  end
end

.validate(value) ⇒ Object



20
21
22
23
24
# File 'lib/usps_api/models/grant_type.rb', line 20

def self.validate(value)
  return false if value.nil?

  GRANT_TYPE.include?(value)
end