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.
51 52 53 |
# File 'lib/open_id_authentication.rb', line 51 def initialize(code) @code = code end |
Class Method Details
.[](code) ⇒ Object
47 48 49 |
# File 'lib/open_id_authentication.rb', line 47 def self.[](code) new(code) end |
Instance Method Details
#message ⇒ Object
69 70 71 |
# File 'lib/open_id_authentication.rb', line 69 def ERROR_MESSAGES[@code] end |
#status ⇒ Object
55 56 57 |
# File 'lib/open_id_authentication.rb', line 55 def status @code end |
#successful? ⇒ Boolean
61 62 63 |
# File 'lib/open_id_authentication.rb', line 61 def successful? @code == :successful end |
#unsuccessful? ⇒ Boolean
65 66 67 |
# File 'lib/open_id_authentication.rb', line 65 def unsuccessful? ERROR_MESSAGES.keys.include?(@code) end |