@@ -5,8 +5,14 @@ const Connection = require('./connection');
5
5
const Query = require ( './commands' ) . Query ;
6
6
const createClientInfo = require ( '../topologies/shared' ) . createClientInfo ;
7
7
const MongoError = require ( '../error' ) . MongoError ;
8
+ const defaultAuthProviders = require ( '../auth/defaultAuthProviders' ) . defaultAuthProviders ;
9
+ let AUTH_PROVIDERS ;
8
10
9
11
function connect ( options , callback ) {
12
+ if ( AUTH_PROVIDERS == null ) {
13
+ AUTH_PROVIDERS = defaultAuthProviders ( options . bson ) ;
14
+ }
15
+
10
16
if ( options . family !== void 0 ) {
11
17
makeConnection ( options . family , options , ( err , socket ) => {
12
18
if ( err ) {
@@ -132,6 +138,14 @@ function performInitialHandshake(conn, options, callback) {
132
138
// relocated, or at very least restructured.
133
139
conn . ismaster = ismaster ;
134
140
conn . lastIsMasterMS = new Date ( ) . getTime ( ) - start ;
141
+
142
+ const credentials = options . credentials ;
143
+ if ( credentials ) {
144
+ credentials . resolveAuthMechanism ( ismaster ) ;
145
+ authenticate ( conn , credentials , callback ) ;
146
+ return ;
147
+ }
148
+
135
149
callback ( null , conn ) ;
136
150
} ) ;
137
151
}
@@ -260,6 +274,7 @@ function makeConnection(family, options, callback) {
260
274
261
275
const CONNECTION_ERROR_EVENTS = [ 'error' , 'close' , 'timeout' , 'parseError' ] ;
262
276
function runCommand ( conn , ns , command , options , callback ) {
277
+ if ( typeof options === 'function' ) ( callback = options ) , ( options = { } ) ;
263
278
const socketTimeout = typeof options . socketTimeout === 'number' ? options . socketTimeout : 360000 ;
264
279
const bson = conn . options . bson ;
265
280
const query = new Query ( bson , ns , command , {
@@ -293,4 +308,18 @@ function runCommand(conn, ns, command, options, callback) {
293
308
conn . write ( query . toBin ( ) ) ;
294
309
}
295
310
311
+ function authenticate ( conn , credentials , callback ) {
312
+ const mechanism = credentials . mechanism ;
313
+ if ( ! AUTH_PROVIDERS [ mechanism ] ) {
314
+ callback ( new MongoError ( `authMechanism '${ mechanism } ' not supported` ) ) ;
315
+ return ;
316
+ }
317
+
318
+ const provider = AUTH_PROVIDERS [ mechanism ] ;
319
+ provider . auth ( runCommand , [ conn ] , credentials , ( ) => {
320
+ console . log ( 'authed through provider!' ) ;
321
+ callback ( null , conn ) ;
322
+ } ) ;
323
+ }
324
+
296
325
module . exports = connect ;
0 commit comments