Class: Drillbit::Tokens::Base64

Inherits:
Object
  • Object
show all
Defined in:
lib/drillbit/tokens/base64.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(token:) ⇒ Base64

Returns a new instance of Base64.



12
13
14
# File 'lib/drillbit/tokens/base64.rb', line 12

def initialize(token:)
  self.token = token
end

Instance Attribute Details

#tokenObject

Returns the value of attribute token.



10
11
12
# File 'lib/drillbit/tokens/base64.rb', line 10

def token
  @token
end

Class Method Details

.convert(raw_token:) ⇒ Object



35
36
37
38
39
40
41
42
43
# File 'lib/drillbit/tokens/base64.rb', line 35

def self.convert(raw_token:)
  return Base64s::Null.instance if raw_token.to_s == ''

  ::Base64.strict_decode64(raw_token)

  new(token: raw_token)
rescue ArgumentError
  Base64s::Invalid.instance
end

Instance Method Details

#blank?Boolean

Returns:

  • (Boolean)


20
21
22
# File 'lib/drillbit/tokens/base64.rb', line 20

def blank?
  false
end

#to_hObject



24
25
26
27
28
29
30
31
32
33
# File 'lib/drillbit/tokens/base64.rb', line 24

def to_h
  [
    {
      'token' => token,
    },
    {
      'typ' => 'base64',
    },
  ]
end

#valid?Boolean

Returns:

  • (Boolean)


16
17
18
# File 'lib/drillbit/tokens/base64.rb', line 16

def valid?
  true
end