Skip to content
This repository was archived by the owner on Feb 4, 2022. It is now read-only.

Commit c93aac1

Browse files
authored
refactor(collation): utility function for checking collation support
Created a function collationNotSupported in utils that returns whether or not collation is supported by the server. Fixes NODE-1522
1 parent 426a95e commit c93aac1

File tree

3 files changed

+29
-13
lines changed

3 files changed

+29
-13
lines changed

lib/cursor.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ const MongoError = require('./error').MongoError;
66
const MongoNetworkError = require('./error').MongoNetworkError;
77
const mongoErrorContextSymbol = require('./error').mongoErrorContextSymbol;
88
const f = require('util').format;
9+
const collationNotSupported = require('./utils').collationNotSupported;
910

1011
var BSON = retrieveBSON(),
1112
Long = BSON.Long;
@@ -634,9 +635,9 @@ var nextFunction = function(self, callback) {
634635
// Set as init
635636
self.cursorState.init = true;
636637

637-
// Server does not support server
638-
if (self.cmd && self.cmd.collation && self.server.ismaster.maxWireVersion < 5) {
639-
return callback(new MongoError(f('server %s does not support collation', self.server.name)));
638+
// error if collation not supported
639+
if (collationNotSupported(self.server, self.cmd)) {
640+
return callback(new MongoError(`server ${self.server.name} does not support collation`));
640641
}
641642

642643
try {

lib/topologies/server.js

+11-9
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ var inherits = require('util').inherits,
2121
SessionMixins = require('./shared').SessionMixins,
2222
relayEvents = require('../utils').relayEvents;
2323

24+
const collationNotSupported = require('../utils').collationNotSupported;
25+
2426
function getSaslSupportedMechs(options) {
2527
if (!options) {
2628
return {};
@@ -748,9 +750,9 @@ Server.prototype.command = function(ns, cmd, options, callback) {
748750
// If we are not connected or have a disconnectHandler specified
749751
if (disconnectHandler(self, 'command', ns, cmd, options, callback)) return;
750752

751-
// Check if we have collation support
752-
if (this.ismaster && this.ismaster.maxWireVersion < 5 && cmd.collation) {
753-
return callback(new MongoError(f('server %s does not support collation', this.name)));
753+
// error if collation not supported
754+
if (collationNotSupported(this, cmd)) {
755+
return callback(new MongoError(`server ${this.name} does not support collation`));
754756
}
755757

756758
// Are we executing against a specific topology
@@ -837,9 +839,9 @@ Server.prototype.update = function(ns, ops, options, callback) {
837839
// If we are not connected or have a disconnectHandler specified
838840
if (disconnectHandler(self, 'update', ns, ops, options, callback)) return;
839841

840-
// Check if we have collation support
841-
if (this.ismaster && this.ismaster.maxWireVersion < 5 && options.collation) {
842-
return callback(new MongoError(f('server %s does not support collation', this.name)));
842+
// error if collation not supported
843+
if (collationNotSupported(this, options)) {
844+
return callback(new MongoError(`server ${this.name} does not support collation`));
843845
}
844846

845847
// Setup the docs as an array
@@ -872,9 +874,9 @@ Server.prototype.remove = function(ns, ops, options, callback) {
872874
// If we are not connected or have a disconnectHandler specified
873875
if (disconnectHandler(self, 'remove', ns, ops, options, callback)) return;
874876

875-
// Check if we have collation support
876-
if (this.ismaster && this.ismaster.maxWireVersion < 5 && options.collation) {
877-
return callback(new MongoError(f('server %s does not support collation', this.name)));
877+
// error if collation not supported
878+
if (collationNotSupported(this, options)) {
879+
return callback(new MongoError(`server ${this.name} does not support collation`));
878880
}
879881

880882
// Setup the docs as an array

lib/utils.js

+14-1
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,23 @@ try {
4848
console.warn(err.message);
4949
}
5050

51+
/*
52+
* Checks that collation is supported by server.
53+
*
54+
* @param {Server} [server] to check against
55+
* @param {object} [cmd] object where collation may be specified
56+
* @param {function} [callback] callback function
57+
* @return true if server does not support collation
58+
*/
59+
function collationNotSupported(server, cmd) {
60+
return cmd && cmd.collation && server.ismaster && server.ismaster.maxWireVersion < 5;
61+
}
62+
5163
module.exports = {
5264
uuidV4,
5365
calculateDurationInMs,
5466
relayEvents,
5567
Kerberos,
56-
MongoAuthProcess
68+
MongoAuthProcess,
69+
collationNotSupported
5770
};

0 commit comments

Comments
 (0)