Sha256: c24ffc50df1d7040af5b51d2abae499b9f470fa5cc3be4f9f04481499d3d9cd4
Contents?: true
Size: 1.24 KB
Versions: 13
Compression:
Stored size: 1.24 KB
Contents
require 'rubygems' require 'bundler/setup' require 'openid/extensions/ax' module RubyApp module Elements module Pages module Authentication module OpenId require 'ruby_app/elements/pages/authentication/open_id/email_authentication_page' require 'ruby_app/session' class AxAuthenticationPage < RubyApp::Elements::Pages::Authentication::OpenId::EmailAuthenticationPage template_path(:all, File.dirname(__FILE__)) def initialize(identifier) super(identifier) end def process_request(request) ax_request = ::OpenID::AX::FetchRequest.new ax_request.add(::OpenID::AX::AttrInfo.new(self.configuration.attributes.email, 'Email', true)) request.add_extension(ax_request) end 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[self.configuration.attributes.email].first) else super(response) end end end end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems