Class: OpenIdAuthentication::Result
- Inherits:
-
Object
- Object
- OpenIdAuthentication::Result
- 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
-
#initialize(code) ⇒ Result
constructor
A new instance of Result.
- #message ⇒ Object
- #status ⇒ Object
- #successful? ⇒ Boolean
- #unsuccessful? ⇒ Boolean
Constructor Details
#initialize(code) ⇒ Result
Returns a new instance of Result.
54 55 56 |
# File 'lib/open_id_authentication.rb', line 54 def initialize(code) @code = code end |
Class Method Details
.[](code) ⇒ Object
50 51 52 |
# File 'lib/open_id_authentication.rb', line 50 def self.[](code) new(code) end |
Instance Method Details
#message ⇒ Object
72 73 74 |
# File 'lib/open_id_authentication.rb', line 72 def ERROR_MESSAGES[@code] end |
#status ⇒ Object
58 59 60 |
# File 'lib/open_id_authentication.rb', line 58 def status @code end |
#successful? ⇒ Boolean
64 65 66 |
# File 'lib/open_id_authentication.rb', line 64 def successful? @code == :successful end |
#unsuccessful? ⇒ Boolean
68 69 70 |
# File 'lib/open_id_authentication.rb', line 68 def unsuccessful? ERROR_MESSAGES.keys.include?(@code) end |