Class: Mongo::Auth::CR
- Inherits:
-
Object
- Object
- Mongo::Auth::CR
- Defined in:
- lib/mongo/auth/cr.rb,
lib/mongo/auth/cr/conversation.rb
Overview
Defines behaviour for MongoDB-CR authentication.
Defined Under Namespace
Classes: Conversation
Constant Summary collapse
- MECHANISM =
The authentication mechinism string.
'MONGODB-CR'.freeze
Instance Attribute Summary collapse
-
#user ⇒ Mongo::Auth::User
readonly
The user to authenticate.
Instance Method Summary collapse
-
#initialize(user) ⇒ CR
constructor
Instantiate a new authenticator.
-
#login(connection) ⇒ Protocol::Reply
Log the user in on the given connection.
Constructor Details
#initialize(user) ⇒ CR
Instantiate a new authenticator.
41 42 43 |
# File 'lib/mongo/auth/cr.rb', line 41 def initialize(user) @user = user end |
Instance Attribute Details
#user ⇒ Mongo::Auth::User (readonly)
Returns The user to authenticate.
31 32 33 |
# File 'lib/mongo/auth/cr.rb', line 31 def user @user end |
Instance Method Details
#login(connection) ⇒ Protocol::Reply
Log the user in on the given connection.
55 56 57 58 59 60 |
# File 'lib/mongo/auth/cr.rb', line 55 def login(connection) conversation = Conversation.new(user) reply = connection.dispatch([ conversation.start ]) reply = connection.dispatch([ conversation.continue(reply) ]) conversation.finalize(reply) end |