Class: RubyApp::Elements::Mobile::Documents::Authentication::OpenId::AxAuthenticationDocument

Inherits:
EmailAuthenticationDocument show all
Defined in:
lib/ruby_app/elements/mobile/documents/authentication/open_id/ax_authentication_document.rb

Instance Attribute Summary

Attributes inherited from RubyApp::Elements::Mobile::Document

#links, #metadata, #pages, #scripts, #stylesheets

Attributes inherited from RubyApp::Element

#attributes

Instance Method Summary collapse

Methods inherited from EmailAuthenticationDocument

#create_identity_from_email

Methods inherited from RubyApp::Elements::Mobile::Document

#page

Methods inherited from RubyApp::Element

#element_id, get_element

Methods included from Mixins::ConfigurationMixin

#configuration

Methods included from Mixins::TranslateMixin

#localize, #translate

Methods included from Mixins::TemplateMixin

#exclude_parent_template, #exclude_parent_template?, #get_cache, #get_default_template, #get_template, #get_template_name, #get_templates, #template_path

Methods included from Mixins::RenderMixin

#content_for, #get_cache, #get_default_template, #get_templates, #render

Constructor Details

#initialize(identifier) ⇒ AxAuthenticationDocument

Returns a new instance of AxAuthenticationDocument.



24
25
26
# File 'lib/ruby_app/elements/mobile/documents/authentication/open_id/ax_authentication_document.rb', line 24

def initialize(identifier)
  super(identifier)
end

Instance Method Details

#create_identity_from_response(response) ⇒ Object



34
35
36
37
38
39
40
41
# File 'lib/ruby_app/elements/mobile/documents/authentication/open_id/ax_authentication_document.rb', line 34

def create_identity_from_response(response)
  ax_response = ::OpenID::AX::FetchResponse.from_success_response(response)
  if ax_response
    self.create_identity_from_email(ax_response.data[RubyApp::Elements::Mobile::Documents::Authentication::OpenId::AxAuthenticationDocument.configuration.attributes.email].first)
  else
    super(response)
  end
end

#process_request(request) ⇒ Object



28
29
30
31
32
# File 'lib/ruby_app/elements/mobile/documents/authentication/open_id/ax_authentication_document.rb', line 28

def process_request(request)
  ax_request = ::OpenID::AX::FetchRequest.new
  ax_request.add(::OpenID::AX::AttrInfo.new(RubyApp::Elements::Mobile::Documents::Authentication::OpenId::AxAuthenticationDocument.configuration.attributes.email, 'Email', true))
  request.add_extension(ax_request)
end