Sha256: 6c720ebce46e9f85ba86fd5949f7bca9e4113c060abe0a81c8a9090c014b2f28

Contents?: true

Size: 1.23 KB

Versions: 43

Compression:

Stored size: 1.23 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.configure.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.configure.attributes.email].first)
              else
                super(response)
              end
            end

          end

        end

      end

    end

  end

end

Version data entries

43 entries across 43 versions & 1 rubygems

Version Path
RubyApp-0.0.70 lib/ruby_app/elements/pages/authentication/open_id/ax_authentication_page.rb
RubyApp-0.0.69 lib/ruby_app/elements/pages/authentication/open_id/ax_authentication_page.rb
RubyApp-0.0.68 lib/ruby_app/elements/pages/authentication/open_id/ax_authentication_page.rb
RubyApp-0.0.64 lib/ruby_app/elements/pages/authentication/open_id/ax_authentication_page.rb
RubyApp-0.0.63 lib/ruby_app/elements/pages/authentication/open_id/ax_authentication_page.rb
RubyApp-0.0.62 lib/ruby_app/elements/pages/authentication/open_id/ax_authentication_page.rb
RubyApp-0.0.61 lib/ruby_app/elements/pages/authentication/open_id/ax_authentication_page.rb
RubyApp-0.0.60 lib/ruby_app/elements/pages/authentication/open_id/ax_authentication_page.rb
RubyApp-0.0.59 lib/ruby_app/elements/pages/authentication/open_id/ax_authentication_page.rb
RubyApp-0.0.58 lib/ruby_app/elements/pages/authentication/open_id/ax_authentication_page.rb
RubyApp-0.0.57 lib/ruby_app/elements/pages/authentication/open_id/ax_authentication_page.rb
RubyApp-0.0.56 lib/ruby_app/elements/pages/authentication/open_id/ax_authentication_page.rb
RubyApp-0.0.55 lib/ruby_app/elements/pages/authentication/open_id/ax_authentication_page.rb
RubyApp-0.0.54 lib/ruby_app/elements/pages/authentication/open_id/ax_authentication_page.rb
RubyApp-0.0.53 lib/ruby_app/elements/pages/authentication/open_id/ax_authentication_page.rb
RubyApp-0.0.52 lib/ruby_app/elements/pages/authentication/open_id/ax_authentication_page.rb
RubyApp-0.0.51 lib/ruby_app/elements/pages/authentication/open_id/ax_authentication_page.rb
RubyApp-0.0.50 lib/ruby_app/elements/pages/authentication/open_id/ax_authentication_page.rb
RubyApp-0.0.49 lib/ruby_app/elements/pages/authentication/open_id/ax_authentication_page.rb
RubyApp-0.0.48 lib/ruby_app/elements/pages/authentication/open_id/ax_authentication_page.rb