Class: Knock::AuthToken

Inherits:
Object
  • Object
show all
Defined in:
app/model/knock/auth_token.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(payload: {}, token: nil, verify_options: {}) ⇒ AuthToken

Returns a new instance of AuthToken.



8
9
10
11
12
13
14
15
16
17
18
# File 'app/model/knock/auth_token.rb', line 8

def initialize payload: {}, token: nil, verify_options: {}
  if token.present?
    @payload, _ = JWT.decode token, decode_key, true, options.merge(verify_options)
    @token = token
  else
    @payload = claims.merge(payload)
    @token = JWT.encode @payload,
      secret_key,
      Knock.token_signature_algorithm
  end
end

Instance Attribute Details

#payloadObject (readonly)

Returns the value of attribute payload.



6
7
8
# File 'app/model/knock/auth_token.rb', line 6

def payload
  @payload
end

#tokenObject (readonly)

Returns the value of attribute token.



5
6
7
# File 'app/model/knock/auth_token.rb', line 5

def token
  @token
end

Instance Method Details

#entity_for(entity_class) ⇒ Object



20
21
22
23
24
25
26
# File 'app/model/knock/auth_token.rb', line 20

def entity_for entity_class
  if entity_class.respond_to? :from_token_payload
    entity_class.from_token_payload @payload
  else
    entity_class.find @payload['sub']
  end
end

#to_json(options = {}) ⇒ Object



28
29
30
# File 'app/model/knock/auth_token.rb', line 28

def to_json options = {}
  {jwt: @token}.to_json
end