Class: OpenIdAuthentication::Result

Inherits:
Object
  • Object
show all
Defined in:
lib/open_id_authentication.rb

Constant Summary collapse

ERROR_MESSAGES =
{
  :missing      => "Sorry, the OpenID server couldn't be found",
  :invalid      => "Sorry, but this does not appear to be a valid OpenID",
  :canceled     => "OpenID verification was canceled",
  :failed       => "OpenID verification failed",
  :setup_needed => "OpenID verification needs setup"
}

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(code) ⇒ Result

Returns a new instance of Result.



53
54
55
# File 'lib/open_id_authentication.rb', line 53

def initialize(code)
  @code = code
end

Class Method Details

.[](code) ⇒ Object



49
50
51
# File 'lib/open_id_authentication.rb', line 49

def self.[](code)
  new(code)
end

Instance Method Details

#messageObject



71
72
73
# File 'lib/open_id_authentication.rb', line 71

def message
  ERROR_MESSAGES[@code]
end

#statusObject



57
58
59
# File 'lib/open_id_authentication.rb', line 57

def status
  @code
end

#successful?Boolean

Returns:

  • (Boolean)


63
64
65
# File 'lib/open_id_authentication.rb', line 63

def successful?
  @code == :successful
end

#unsuccessful?Boolean

Returns:

  • (Boolean)


67
68
69
# File 'lib/open_id_authentication.rb', line 67

def unsuccessful?
  ERROR_MESSAGES.keys.include?(@code)
end