Class: Core::Models::OAuth::Application

Inherits:
Object
  • Object
show all
Includes:
Mongoid::Document, Mongoid::Timestamps
Defined in:
lib/core/models/oauth/application.rb

Overview

An application is what is referred to in the OAuth2.0 RFC as a client, wanting to access private informations about the user.

Author:

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#authorizationsArray<Core::Models::OAuth::Authorization>

Returns the authorizations linked to the accounts this application can get the data from.

Returns:



33
# File 'lib/core/models/oauth/application.rb', line 33

has_many :authorizations, class_name: 'Core::Models::OAuth::Authorization', inverse_of: :application

#client_idString

Returns the unique key for the application, identifying it when requesting a token for the API.

Returns:

  • (String)

    the unique key for the application, identifying it when requesting a token for the API.



17
# File 'lib/core/models/oauth/application.rb', line 17

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

#client_secretString

Returns the “password” of the application, used to identify it when requesting tokens.

Returns:

  • (String)

    the “password” of the application, used to identify it when requesting tokens.



20
# File 'lib/core/models/oauth/application.rb', line 20

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

#creatorCore::Models::Account

Returns the account that has created this application, considered its owner.

Returns:



30
# File 'lib/core/models/oauth/application.rb', line 30

belongs_to :creator, class_name: 'Core::Models::Account', inverse_of: :applications

#nameString

Returns the unique name of the application, mainly used to identify and display it.

Returns:

  • (String)

    the unique name of the application, mainly used to identify and display it.



14
# File 'lib/core/models/oauth/application.rb', line 14

field :name, type: String

#premiumBoolean

Returns a value indicating whether the application should automatically receive a token when an account is created, or not.

Returns:

  • (Boolean)

    a value indicating whether the application should automatically receive a token when an account is created, or not.



23
# File 'lib/core/models/oauth/application.rb', line 23

field :premium, type: Mongoid::Boolean, default: false

Instance Method Details

#redirect_uris_valuesObject

Checks the URIs to get sure they are correct, a URI is correct if :

  • it is a string

  • it has a correct URL format.



55
56
57
58
59
60
61
62
63
64
65
# File 'lib/core/models/oauth/application.rb', line 55

def redirect_uris_values
  redirect_uris.each do |uri|
    if !uri.is_a? String
      errors.add(:redirect_uris, 'type')
      break
    elsif uri.match(/\Ahttps?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&\/\/=]*)\z/).nil?
      errors.add(:redirect_uris, 'format')
      break
    end
  end
end