Source: lib/admin.js

  1. 'use strict';
  2. const toError = require('./utils').toError;
  3. const shallowClone = require('./utils').shallowClone;
  4. const executeOperation = require('./utils').executeOperation;
  5. const applyWriteConcern = require('./utils').applyWriteConcern;
  6. /**
  7. * @fileOverview The **Admin** class is an internal class that allows convenient access to
  8. * the admin functionality and commands for MongoDB.
  9. *
  10. * **ADMIN Cannot directly be instantiated**
  11. * @example
  12. * const MongoClient = require('mongodb').MongoClient;
  13. * const test = require('assert');
  14. * // Connection url
  15. * const url = 'mongodb://localhost:27017';
  16. * // Database Name
  17. * const dbName = 'test';
  18. *
  19. * // Connect using MongoClient
  20. * MongoClient.connect(url, function(err, client) {
  21. * // Use the admin database for the operation
  22. * const adminDb = client.db(dbName).admin();
  23. *
  24. * // List all the available databases
  25. * adminDb.listDatabases(function(err, dbs) {
  26. * test.equal(null, err);
  27. * test.ok(dbs.databases.length > 0);
  28. * client.close();
  29. * });
  30. * });
  31. */
  32. /**
  33. * Create a new Admin instance (INTERNAL TYPE, do not instantiate directly)
  34. * @class
  35. * @return {Admin} a collection instance.
  36. */
  37. var Admin = function(db, topology, promiseLibrary) {
  38. if (!(this instanceof Admin)) return new Admin(db, topology);
  39. // Internal state
  40. this.s = {
  41. db: db,
  42. topology: topology,
  43. promiseLibrary: promiseLibrary
  44. };
  45. };
  46. /**
  47. * The callback format for results
  48. * @callback Admin~resultCallback
  49. * @param {MongoError} error An error instance representing the error during the execution.
  50. * @param {object} result The result object if the command was executed successfully.
  51. */
  52. /**
  53. * Execute a command
  54. * @method
  55. * @param {object} command The command hash
  56. * @param {object} [options=null] Optional settings.
  57. * @param {(ReadPreference|string)} [options.readPreference=null] The preferred read preference (ReadPreference.PRIMARY, ReadPreference.PRIMARY_PREFERRED, ReadPreference.SECONDARY, ReadPreference.SECONDARY_PREFERRED, ReadPreference.NEAREST).
  58. * @param {number} [options.maxTimeMS=null] Number of milliseconds to wait before aborting the query.
  59. * @param {Admin~resultCallback} [callback] The command result callback
  60. * @return {Promise} returns Promise if no callback passed
  61. */
  62. Admin.prototype.command = function(command, options, callback) {
  63. var args = Array.prototype.slice.call(arguments, 1);
  64. callback = typeof args[args.length - 1] === 'function' ? args.pop() : undefined;
  65. options = args.length ? args.shift() : {};
  66. return executeOperation(this.s.db.s.topology, this.s.db.executeDbAdminCommand.bind(this.s.db), [
  67. command,
  68. options,
  69. callback
  70. ]);
  71. };
  72. /**
  73. * Retrieve the server information for the current
  74. * instance of the db client
  75. *
  76. * @param {Object} [options] optional parameters for this operation
  77. * @param {ClientSession} [options.session] optional session to use for this operation
  78. * @param {Admin~resultCallback} [callback] The command result callback
  79. * @return {Promise} returns Promise if no callback passed
  80. */
  81. Admin.prototype.buildInfo = function(options, callback) {
  82. if (typeof options === 'function') (callback = options), (options = {});
  83. options = options || {};
  84. const cmd = { buildinfo: 1 };
  85. return executeOperation(this.s.db.s.topology, this.s.db.executeDbAdminCommand.bind(this.s.db), [
  86. cmd,
  87. options,
  88. callback
  89. ]);
  90. };
  91. /**
  92. * Retrieve the server information for the current
  93. * instance of the db client
  94. *
  95. * @param {Object} [options] optional parameters for this operation
  96. * @param {ClientSession} [options.session] optional session to use for this operation
  97. * @param {Admin~resultCallback} [callback] The command result callback
  98. * @return {Promise} returns Promise if no callback passed
  99. */
  100. Admin.prototype.serverInfo = function(options, callback) {
  101. if (typeof options === 'function') (callback = options), (options = {});
  102. options = options || {};
  103. const cmd = { buildinfo: 1 };
  104. return executeOperation(this.s.db.s.topology, this.s.db.executeDbAdminCommand.bind(this.s.db), [
  105. cmd,
  106. options,
  107. callback
  108. ]);
  109. };
  110. /**
  111. * Retrieve this db's server status.
  112. *
  113. * @param {Object} [options] optional parameters for this operation
  114. * @param {ClientSession} [options.session] optional session to use for this operation
  115. * @param {Admin~resultCallback} [callback] The command result callback
  116. * @return {Promise} returns Promise if no callback passed
  117. */
  118. Admin.prototype.serverStatus = function(options, callback) {
  119. if (typeof options === 'function') (callback = options), (options = {});
  120. options = options || {};
  121. return executeOperation(this.s.db.s.topology, serverStatus, [this, options, callback]);
  122. };
  123. var serverStatus = function(self, options, callback) {
  124. self.s.db.executeDbAdminCommand({ serverStatus: 1 }, options, function(err, doc) {
  125. if (err == null && doc.ok === 1) {
  126. callback(null, doc);
  127. } else {
  128. if (err) return callback(err, false);
  129. return callback(toError(doc), false);
  130. }
  131. });
  132. };
  133. /**
  134. * Ping the MongoDB server and retrieve results
  135. *
  136. * @param {Object} [options] optional parameters for this operation
  137. * @param {ClientSession} [options.session] optional session to use for this operation
  138. * @param {Admin~resultCallback} [callback] The command result callback
  139. * @return {Promise} returns Promise if no callback passed
  140. */
  141. Admin.prototype.ping = function(options, callback) {
  142. if (typeof options === 'function') (callback = options), (options = {});
  143. options = options || {};
  144. const cmd = { ping: 1 };
  145. return executeOperation(this.s.db.s.topology, this.s.db.executeDbAdminCommand.bind(this.s.db), [
  146. cmd,
  147. options,
  148. callback
  149. ]);
  150. };
  151. /**
  152. * Add a user to the database.
  153. * @method
  154. * @param {string} username The username.
  155. * @param {string} password The password.
  156. * @param {object} [options=null] Optional settings.
  157. * @param {(number|string)} [options.w=null] The write concern.
  158. * @param {number} [options.wtimeout=null] The write concern timeout.
  159. * @param {boolean} [options.j=false] Specify a journal write concern.
  160. * @param {boolean} [options.fsync=false] Specify a file sync write concern.
  161. * @param {object} [options.customData=null] Custom data associated with the user (only Mongodb 2.6 or higher)
  162. * @param {object[]} [options.roles=null] Roles associated with the created user (only Mongodb 2.6 or higher)
  163. * @param {ClientSession} [options.session] optional session to use for this operation
  164. * @param {Admin~resultCallback} [callback] The command result callback
  165. * @return {Promise} returns Promise if no callback passed
  166. */
  167. Admin.prototype.addUser = function(username, password, options, callback) {
  168. var self = this;
  169. var args = Array.prototype.slice.call(arguments, 2);
  170. callback = typeof args[args.length - 1] === 'function' ? args.pop() : undefined;
  171. options = args.length ? args.shift() : {};
  172. options = options || {};
  173. // Get the options
  174. options = applyWriteConcern(shallowClone(options), { db: self.s.db });
  175. // Set the db name to admin
  176. options.dbName = 'admin';
  177. return executeOperation(this.s.db.s.topology, this.s.db.addUser.bind(this.s.db), [
  178. username,
  179. password,
  180. options,
  181. callback
  182. ]);
  183. };
  184. /**
  185. * Remove a user from a database
  186. * @method
  187. * @param {string} username The username.
  188. * @param {object} [options=null] Optional settings.
  189. * @param {(number|string)} [options.w=null] The write concern.
  190. * @param {number} [options.wtimeout=null] The write concern timeout.
  191. * @param {boolean} [options.j=false] Specify a journal write concern.
  192. * @param {boolean} [options.fsync=false] Specify a file sync write concern.
  193. * @param {ClientSession} [options.session] optional session to use for this operation
  194. * @param {Admin~resultCallback} [callback] The command result callback
  195. * @return {Promise} returns Promise if no callback passed
  196. */
  197. Admin.prototype.removeUser = function(username, options, callback) {
  198. var self = this;
  199. var args = Array.prototype.slice.call(arguments, 1);
  200. callback = typeof args[args.length - 1] === 'function' ? args.pop() : undefined;
  201. options = args.length ? args.shift() : {};
  202. options = options || {};
  203. // Get the options
  204. options = applyWriteConcern(shallowClone(options), { db: self.s.db });
  205. // Set the db name
  206. options.dbName = 'admin';
  207. return executeOperation(this.s.db.s.topology, this.s.db.removeUser.bind(this.s.db), [
  208. username,
  209. options,
  210. callback
  211. ]);
  212. };
  213. /**
  214. * Validate an existing collection
  215. *
  216. * @param {string} collectionName The name of the collection to validate.
  217. * @param {object} [options=null] Optional settings.
  218. * @param {ClientSession} [options.session] optional session to use for this operation
  219. * @param {Admin~resultCallback} [callback] The command result callback.
  220. * @return {Promise} returns Promise if no callback passed
  221. */
  222. Admin.prototype.validateCollection = function(collectionName, options, callback) {
  223. if (typeof options === 'function') (callback = options), (options = {});
  224. options = options || {};
  225. return executeOperation(this.s.db.s.topology, validateCollection, [
  226. this,
  227. collectionName,
  228. options,
  229. callback
  230. ]);
  231. };
  232. var validateCollection = function(self, collectionName, options, callback) {
  233. var command = { validate: collectionName };
  234. var keys = Object.keys(options);
  235. // Decorate command with extra options
  236. for (var i = 0; i < keys.length; i++) {
  237. if (options.hasOwnProperty(keys[i]) && keys[i] !== 'session') {
  238. command[keys[i]] = options[keys[i]];
  239. }
  240. }
  241. self.s.db.command(command, options, function(err, doc) {
  242. if (err != null) return callback(err, null);
  243. if (doc.ok === 0) return callback(new Error('Error with validate command'), null);
  244. if (doc.result != null && doc.result.constructor !== String)
  245. return callback(new Error('Error with validation data'), null);
  246. if (doc.result != null && doc.result.match(/exception|corrupt/) != null)
  247. return callback(new Error('Error: invalid collection ' + collectionName), null);
  248. if (doc.valid != null && !doc.valid)
  249. return callback(new Error('Error: invalid collection ' + collectionName), null);
  250. return callback(null, doc);
  251. });
  252. };
  253. /**
  254. * List the available databases
  255. *
  256. * @param {object} [options=null] Optional settings.
  257. * @param {boolean} [options.nameOnly=false] Whether the command should return only db names, or names and size info.
  258. * @param {ClientSession} [options.session] optional session to use for this operation
  259. * @param {Admin~resultCallback} [callback] The command result callback.
  260. * @return {Promise} returns Promise if no callback passed
  261. */
  262. Admin.prototype.listDatabases = function(options, callback) {
  263. if (typeof options === 'function') (callback = options), (options = {});
  264. options = options || {};
  265. var cmd = { listDatabases: 1 };
  266. if (options.nameOnly) cmd.nameOnly = Number(cmd.nameOnly);
  267. return executeOperation(this.s.db.s.topology, this.s.db.executeDbAdminCommand.bind(this.s.db), [
  268. cmd,
  269. options,
  270. callback
  271. ]);
  272. };
  273. /**
  274. * Get ReplicaSet status
  275. *
  276. * @param {Object} [options] optional parameters for this operation
  277. * @param {ClientSession} [options.session] optional session to use for this operation
  278. * @param {Admin~resultCallback} [callback] The command result callback.
  279. * @return {Promise} returns Promise if no callback passed
  280. */
  281. Admin.prototype.replSetGetStatus = function(options, callback) {
  282. if (typeof options === 'function') (callback = options), (options = {});
  283. options = options || {};
  284. return executeOperation(this.s.db.s.topology, replSetGetStatus, [this, options, callback]);
  285. };
  286. var replSetGetStatus = function(self, options, callback) {
  287. self.s.db.executeDbAdminCommand({ replSetGetStatus: 1 }, options, function(err, doc) {
  288. if (err == null && doc.ok === 1) return callback(null, doc);
  289. if (err) return callback(err, false);
  290. callback(toError(doc), false);
  291. });
  292. };
  293. module.exports = Admin;