Module: AuthlogicOpenid::Session::Methods
- Defined in:
- lib/authlogic_openid/session.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#credentials=(value) ⇒ Object
Hooks into credentials so that you can pass an :openid_identifier key.
- #openid_identifier=(value) ⇒ Object
-
#save(&block) ⇒ Object
Cleaers out the block if we are authenticating with OpenID, so that we can redirect without a DoubleRender error.
Class Method Details
.included(klass) ⇒ Object
34 35 36 37 38 39 40 |
# File 'lib/authlogic_openid/session.rb', line 34 def self.included(klass) klass.class_eval do attr_reader :openid_identifier validate :validate_openid_error validate :validate_by_openid, :if => :authenticating_with_openid? end end |
Instance Method Details
#credentials=(value) ⇒ Object
Hooks into credentials so that you can pass an :openid_identifier key.
43 44 45 46 47 48 |
# File 'lib/authlogic_openid/session.rb', line 43 def credentials=(value) super values = value.is_a?(Array) ? value : [value] hash = values.first.is_a?(Hash) ? values.first.with_indifferent_access : nil self.openid_identifier = hash[:openid_identifier] if !hash.nil? && hash.key?(:openid_identifier) end |
#openid_identifier=(value) ⇒ Object
50 51 52 53 54 55 56 |
# File 'lib/authlogic_openid/session.rb', line 50 def openid_identifier=(value) @openid_identifier = value.blank? ? nil : OpenIdAuthentication.normalize_identifier(value) @openid_error = nil rescue OpenIdAuthentication::InvalidOpenId => e @openid_identifier = nil @openid_error = e. end |
#save(&block) ⇒ Object
Cleaers out the block if we are authenticating with OpenID, so that we can redirect without a DoubleRender error.
60 61 62 63 |
# File 'lib/authlogic_openid/session.rb', line 60 def save(&block) block = nil if !openid_identifier.blank? super(&block) end |