Module: OmniAuth::Identity::Model
- Included in:
- OmniAuth::Identity::Models::ActiveRecord
- Defined in:
- lib/omniauth/identity/model.rb
Overview
This module provides an includable interface for implementing the necessary API for OmniAuth Identity to properly locate identities and provide all necessary information. All methods marked as abstract must be implemented in the including class for things to work properly.
Defined Under Namespace
Modules: ClassMethods
Constant Summary collapse
- SCHEMA_ATTRIBUTES =
%w[name email nickname first_name last_name location description image phone].freeze
Class Method Summary collapse
Instance Method Summary collapse
-
#auth_key ⇒ String
Used to retrieve the user-supplied authentication key (e.g. a username or email).
-
#auth_key=(value) ⇒ Object
Used to set the user-supplied authentication key (e.g. a username or email. Determined using the ‘.auth_key` class method..
-
#authenticate(password) ⇒ self or false
abstract
Returns self if the provided password is correct, false otherwise.
-
#info ⇒ Hash
A hash of as much of the standard OmniAuth schema as is stored in this particular model.
-
#uid ⇒ String
An identifying string that must be globally unique to the application.
Class Method Details
.included(base) ⇒ Object
11 12 13 |
# File 'lib/omniauth/identity/model.rb', line 11 def self.included(base) base.extend ClassMethods end |
Instance Method Details
#auth_key ⇒ String
Used to retrieve the user-supplied authentication key (e.g. a username or email). Determined using the class method of the same name, defaults to ‘:email`.
94 95 96 97 98 99 100 |
# File 'lib/omniauth/identity/model.rb', line 94 def auth_key if respond_to?(self.class.auth_key.to_sym) send(self.class.auth_key) else raise NotImplementedError end end |
#auth_key=(value) ⇒ Object
Used to set the user-supplied authentication key (e.g. a username or email. Determined using the ‘.auth_key` class method.
108 109 110 111 112 113 114 115 |
# File 'lib/omniauth/identity/model.rb', line 108 def auth_key=(value) auth_key_setter = "#{self.class.auth_key}=".to_sym if respond_to?(auth_key_setter) send(auth_key_setter, value) else raise NotImplementedError end end |
#authenticate(password) ⇒ self or false
Returns self if the provided password is correct, false otherwise.
54 55 56 |
# File 'lib/omniauth/identity/model.rb', line 54 def authenticate(password) raise NotImplementedError end |
#info ⇒ Hash
A hash of as much of the standard OmniAuth schema as is stored in this particular model. By default, this will call instance methods for each of the attributes it needs in turn, ignoring any for which ‘#respond_to?` is `false`.
If ‘first_name`, `nickname`, and/or `last_name` is provided but `name` is not, it will be automatically calculated.
68 69 70 71 72 |
# File 'lib/omniauth/identity/model.rb', line 68 def info SCHEMA_ATTRIBUTES.each_with_object({}) do |attribute, hash| hash[attribute] = send(attribute) if respond_to?(attribute) end end |
#uid ⇒ String
An identifying string that must be globally unique to the application. Defaults to stringifying the ‘id` method.
78 79 80 81 82 83 84 85 86 |
# File 'lib/omniauth/identity/model.rb', line 78 def uid if respond_to?(:id) return nil if id.nil? id.to_s else raise NotImplementedError end end |