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 AuthenticationDocument

#process_response

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

#hide, #page, #show

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_ax_response(ax_response) ⇒ Object



47
48
49
# File 'lib/ruby_app/elements/mobile/documents/authentication/open_id/ax_authentication_document.rb', line 47

def create_identity_from_ax_response(ax_response)
  return self.create_identity_from_email(ax_response.data[RubyApp::Elements::Mobile::Documents::Authentication::OpenId::AxAuthenticationDocument.configuration.attributes.email].first)
end

#create_identity_from_response(response) ⇒ Object



38
39
40
41
42
43
44
45
# File 'lib/ruby_app/elements/mobile/documents/authentication/open_id/ax_authentication_document.rb', line 38

def create_identity_from_response(response)
  ax_response = ::OpenID::AX::FetchResponse.from_success_response(response)
  if ax_response
    return self.create_identity_from_ax_response(ax_response)
  else
    return super(response)
  end
end

#process_ax_request(ax_request) ⇒ Object



34
35
36
# File 'lib/ruby_app/elements/mobile/documents/authentication/open_id/ax_authentication_document.rb', line 34

def process_ax_request(ax_request)
  ax_request.add(::OpenID::AX::AttrInfo.new(RubyApp::Elements::Mobile::Documents::Authentication::OpenId::AxAuthenticationDocument.configuration.attributes.email, 'Email', true))
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
  self.process_ax_request(ax_request)
  request.add_extension(ax_request)
end