Class: Arkaan::OAuth::AccessToken

Inherits:
Object
  • Object
show all
Includes:
Mongoid::Document, Mongoid::Timestamps
Defined in:
lib/arkaan/oauth/access_token.rb

Overview

An access token is the value assigned to the application to access the data the user is allowed to access.

Author:

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#authorizationArkaan::OAuth::Authorization

Returns the authorization code that issued this token to the application.

Returns:



21
# File 'lib/arkaan/oauth/access_token.rb', line 21

belongs_to :authorization, class_name: 'Arkaan::OAuth::Authorization', inverse_of: :tokens

#expirationInteger

Returns the time, in seconds, after which the token is declared expired, and thus can’t be used.

Returns:

  • (Integer)

    the time, in seconds, after which the token is declared expired, and thus can’t be used.



17
# File 'lib/arkaan/oauth/access_token.rb', line 17

field :expiration, type: Integer, default: 86_400

#valueString

Returns the value of the token, returned to the application when built.

Returns:

  • (String)

    the value of the token, returned to the application when built.



14
# File 'lib/arkaan/oauth/access_token.rb', line 14

field :value, type: String, default: -> { SecureRandom.hex }

Instance Method Details

#expired?Boolean

Checks if the current date is inferior to the creation date + expiration period

Returns:

  • (Boolean)

    TRUE if the token is expired, FALSE otherwise.



29
30
31
# File 'lib/arkaan/oauth/access_token.rb', line 29

def expired?
  created_at.to_time.to_i + expiration < Time.now.to_i
end