2015-06-13 19:47:00 +02:00
|
|
|
|
2020-09-14 18:21:41 +02:00
|
|
|
|
2015-06-13 19:47:00 +02:00
|
|
|
module.exports = function(RED) {
|
|
|
|
"use strict";
|
|
|
|
var mongo = require('mongodb');
|
2016-11-02 16:25:35 +01:00
|
|
|
var ObjectID = require('mongodb').ObjectID;
|
2015-06-13 19:47:00 +02:00
|
|
|
var MongoClient = mongo.MongoClient;
|
|
|
|
|
|
|
|
function MongoNode(n) {
|
|
|
|
RED.nodes.createNode(this,n);
|
|
|
|
this.hostname = n.hostname;
|
|
|
|
this.port = n.port;
|
|
|
|
this.db = n.db;
|
|
|
|
this.name = n.name;
|
2020-09-17 10:17:43 +02:00
|
|
|
this.connectOptions= n.connectOptions;
|
|
|
|
this.topology = n.topology;
|
2015-06-13 19:47:00 +02:00
|
|
|
|
2020-09-14 18:21:41 +02:00
|
|
|
//console.log(this);
|
|
|
|
|
2020-09-17 11:02:54 +02:00
|
|
|
var clustered = (this.topology !== "direct") || false;
|
2020-09-17 10:17:43 +02:00
|
|
|
|
|
|
|
var url = "mongodb://";
|
|
|
|
if (this.topology === "dnscluster") {
|
2020-09-17 10:21:50 +02:00
|
|
|
url = "mongodb+srv://";
|
2020-09-14 18:21:41 +02:00
|
|
|
}
|
2015-06-13 19:47:00 +02:00
|
|
|
if (this.credentials && this.credentials.user && this.credentials.password) {
|
2020-09-17 10:21:50 +02:00
|
|
|
this.user = this.credentials.user;
|
|
|
|
this.password = this.credentials.password;
|
2020-09-14 18:21:41 +02:00
|
|
|
} else {
|
2020-09-17 10:21:50 +02:00
|
|
|
this.user = n.user;
|
|
|
|
this.password = n.password;
|
2020-09-14 18:21:41 +02:00
|
|
|
}
|
|
|
|
if (this.user) {
|
2020-09-17 10:21:50 +02:00
|
|
|
url += this.user+":"+this.password+"@";
|
2020-09-14 18:21:41 +02:00
|
|
|
}
|
2020-09-17 10:17:43 +02:00
|
|
|
if (clustered) {
|
2020-09-17 10:21:50 +02:00
|
|
|
url += this.hostname + "/" + this.db
|
2020-09-14 18:21:41 +02:00
|
|
|
} else {
|
2020-09-17 10:21:50 +02:00
|
|
|
url += this.hostname + ":" + this.port + "/" + this.db;
|
2015-06-13 19:47:00 +02:00
|
|
|
}
|
2020-09-17 10:17:43 +02:00
|
|
|
if (this.connectOptions){
|
2020-09-17 10:21:50 +02:00
|
|
|
url += "?" + this.connectOptions;
|
2020-09-17 10:17:43 +02:00
|
|
|
}
|
2015-06-13 19:47:00 +02:00
|
|
|
|
2020-09-17 10:17:43 +02:00
|
|
|
console.log("MongoDB URL: " + url);
|
2015-06-13 19:47:00 +02:00
|
|
|
this.url = url;
|
|
|
|
}
|
|
|
|
|
|
|
|
RED.nodes.registerType("mongodb",MongoNode,{
|
|
|
|
credentials: {
|
|
|
|
user: {type:"text"},
|
|
|
|
password: {type: "password"}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
function ensureValidSelectorObject(selector) {
|
|
|
|
if (selector != null && (typeof selector != 'object' || Buffer.isBuffer(selector))) {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
return selector;
|
|
|
|
}
|
|
|
|
|
|
|
|
function MongoOutNode(n) {
|
|
|
|
RED.nodes.createNode(this,n);
|
|
|
|
this.collection = n.collection;
|
|
|
|
this.mongodb = n.mongodb;
|
|
|
|
this.payonly = n.payonly || false;
|
|
|
|
this.upsert = n.upsert || false;
|
|
|
|
this.multi = n.multi || false;
|
|
|
|
this.operation = n.operation;
|
|
|
|
this.mongoConfig = RED.nodes.getNode(this.mongodb);
|
2016-08-16 12:43:36 +02:00
|
|
|
this.status({fill:"grey",shape:"ring",text:RED._("mongodbstatus.connecting")});
|
|
|
|
var node = this;
|
2016-11-16 23:48:41 +01:00
|
|
|
var noerror = true;
|
2015-06-13 19:47:00 +02:00
|
|
|
|
2016-08-16 12:43:36 +02:00
|
|
|
var connectToDB = function() {
|
2020-09-14 18:21:41 +02:00
|
|
|
MongoClient.connect(node.mongoConfig.url, function(err, client) {
|
2015-06-13 19:47:00 +02:00
|
|
|
if (err) {
|
2016-08-16 12:43:36 +02:00
|
|
|
node.status({fill:"red",shape:"ring",text:RED._("mongodb.status.error")});
|
2016-11-16 23:48:41 +01:00
|
|
|
if (noerror) { node.error(err); }
|
|
|
|
noerror = false;
|
2016-11-11 11:07:26 +01:00
|
|
|
node.tout = setTimeout(connectToDB, 10000);
|
2017-01-29 18:45:44 +01:00
|
|
|
}
|
|
|
|
else {
|
2016-08-16 12:43:36 +02:00
|
|
|
node.status({fill:"green",shape:"dot",text:RED._("mongodb.status.connected")});
|
2020-09-14 18:21:41 +02:00
|
|
|
node.clientDb = client.db();
|
|
|
|
var db = client.db();
|
2020-09-17 10:17:43 +02:00
|
|
|
//console.log( db);
|
2016-11-16 23:48:41 +01:00
|
|
|
noerror = true;
|
2015-06-13 19:47:00 +02:00
|
|
|
var coll;
|
2020-09-14 18:21:41 +02:00
|
|
|
|
2015-06-13 19:47:00 +02:00
|
|
|
if (node.collection) {
|
|
|
|
coll = db.collection(node.collection);
|
|
|
|
}
|
|
|
|
node.on("input",function(msg) {
|
|
|
|
if (!node.collection) {
|
|
|
|
if (msg.collection) {
|
|
|
|
coll = db.collection(msg.collection);
|
2017-01-29 18:45:44 +01:00
|
|
|
}
|
|
|
|
else {
|
2015-06-16 11:36:19 +02:00
|
|
|
node.error(RED._("mongodb.errors.nocollection"),msg);
|
2015-06-13 19:47:00 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
delete msg._topic;
|
|
|
|
delete msg.collection;
|
|
|
|
if (node.operation === "store") {
|
|
|
|
if (node.payonly) {
|
|
|
|
if (typeof msg.payload !== "object") {
|
|
|
|
msg.payload = {"payload": msg.payload};
|
|
|
|
}
|
2015-06-16 15:38:36 +02:00
|
|
|
if (msg.hasOwnProperty("_id") && !msg.payload.hasOwnProperty("_id")) {
|
|
|
|
msg.payload._id = msg._id;
|
|
|
|
}
|
2015-06-13 19:47:00 +02:00
|
|
|
coll.save(msg.payload,function(err, item) {
|
|
|
|
if (err) {
|
|
|
|
node.error(err,msg);
|
|
|
|
}
|
|
|
|
});
|
2017-01-29 18:45:44 +01:00
|
|
|
}
|
|
|
|
else {
|
2015-06-13 19:47:00 +02:00
|
|
|
coll.save(msg,function(err, item) {
|
|
|
|
if (err) {
|
|
|
|
node.error(err,msg);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2017-01-29 18:45:44 +01:00
|
|
|
}
|
|
|
|
else if (node.operation === "insert") {
|
2015-06-13 19:47:00 +02:00
|
|
|
if (node.payonly) {
|
|
|
|
if (typeof msg.payload !== "object") {
|
|
|
|
msg.payload = {"payload": msg.payload};
|
|
|
|
}
|
2015-06-16 15:38:36 +02:00
|
|
|
if (msg.hasOwnProperty("_id") && !msg.payload.hasOwnProperty("_id")) {
|
|
|
|
msg.payload._id = msg._id;
|
|
|
|
}
|
2015-06-13 19:47:00 +02:00
|
|
|
coll.insert(msg.payload, function(err, item) {
|
|
|
|
if (err) {
|
|
|
|
node.error(err,msg);
|
|
|
|
}
|
|
|
|
});
|
2017-01-29 18:45:44 +01:00
|
|
|
}
|
|
|
|
else {
|
2015-06-13 19:47:00 +02:00
|
|
|
coll.insert(msg, function(err,item) {
|
|
|
|
if (err) {
|
|
|
|
node.error(err,msg);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2017-01-29 18:45:44 +01:00
|
|
|
}
|
|
|
|
else if (node.operation === "update") {
|
2015-06-13 19:47:00 +02:00
|
|
|
if (typeof msg.payload !== "object") {
|
|
|
|
msg.payload = {"payload": msg.payload};
|
|
|
|
}
|
|
|
|
var query = msg.query || {};
|
|
|
|
var payload = msg.payload || {};
|
|
|
|
var options = {
|
|
|
|
upsert: node.upsert,
|
|
|
|
multi: node.multi
|
|
|
|
};
|
2016-11-02 16:25:35 +01:00
|
|
|
if (ObjectID.isValid(msg.query._id)) {
|
|
|
|
msg.query._id = new ObjectID(msg.query._id);
|
|
|
|
}
|
2015-06-13 19:47:00 +02:00
|
|
|
coll.update(query, payload, options, function(err, item) {
|
|
|
|
if (err) {
|
|
|
|
node.error(err,msg);
|
|
|
|
}
|
|
|
|
});
|
2017-01-29 18:45:44 +01:00
|
|
|
}
|
|
|
|
else if (node.operation === "delete") {
|
2015-06-13 19:47:00 +02:00
|
|
|
coll.remove(msg.payload, function(err, items) {
|
|
|
|
if (err) {
|
|
|
|
node.error(err,msg);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-08-16 12:43:36 +02:00
|
|
|
if (node.mongoConfig) { connectToDB(); }
|
|
|
|
else { node.error(RED._("mongodb.errors.missingconfig")); }
|
|
|
|
|
|
|
|
node.on("close", function() {
|
|
|
|
node.status({});
|
|
|
|
if (node.tout) { clearTimeout(node.tout); }
|
|
|
|
if (node.clientDb) { node.clientDb.close(); }
|
2015-06-13 19:47:00 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
RED.nodes.registerType("mongodb out",MongoOutNode);
|
|
|
|
|
2016-08-16 12:43:36 +02:00
|
|
|
|
2015-06-13 19:47:00 +02:00
|
|
|
function MongoInNode(n) {
|
|
|
|
RED.nodes.createNode(this,n);
|
|
|
|
this.collection = n.collection;
|
|
|
|
this.mongodb = n.mongodb;
|
|
|
|
this.operation = n.operation || "find";
|
|
|
|
this.mongoConfig = RED.nodes.getNode(this.mongodb);
|
2016-08-16 12:43:36 +02:00
|
|
|
this.status({fill:"grey",shape:"ring",text:RED._("mongodb.status.connecting")});
|
|
|
|
var node = this;
|
2016-11-16 23:48:41 +01:00
|
|
|
var noerror = true;
|
2015-06-13 19:47:00 +02:00
|
|
|
|
2016-08-16 12:43:36 +02:00
|
|
|
var connectToDB = function() {
|
2020-09-17 10:17:43 +02:00
|
|
|
console.log("connecting: " + node.mongoConfig.url);
|
2020-09-14 18:21:41 +02:00
|
|
|
MongoClient.connect(node.mongoConfig.url, function(err,client) {
|
2015-06-13 19:47:00 +02:00
|
|
|
if (err) {
|
2016-08-16 12:43:36 +02:00
|
|
|
node.status({fill:"red",shape:"ring",text:RED._("mongodb.status.error")});
|
2016-11-16 23:48:41 +01:00
|
|
|
if (noerror) { node.error(err); }
|
|
|
|
noerror = false;
|
2016-11-11 11:07:26 +01:00
|
|
|
node.tout = setTimeout(connectToDB, 10000);
|
2017-01-29 18:45:44 +01:00
|
|
|
}
|
|
|
|
else {
|
2016-08-16 12:43:36 +02:00
|
|
|
node.status({fill:"green",shape:"dot",text:RED._("mongodb.status.connected")});
|
2020-09-14 18:21:41 +02:00
|
|
|
node.clientDb = client.db();
|
|
|
|
var db = client.db();
|
2016-11-16 23:48:41 +01:00
|
|
|
noerror = true;
|
2015-06-13 19:47:00 +02:00
|
|
|
var coll;
|
|
|
|
node.on("input", function(msg) {
|
|
|
|
if (!node.collection) {
|
|
|
|
if (msg.collection) {
|
|
|
|
coll = db.collection(msg.collection);
|
2017-01-09 21:53:43 +01:00
|
|
|
}
|
|
|
|
else {
|
2015-06-16 11:36:19 +02:00
|
|
|
node.error(RED._("mongodb.errors.nocollection"));
|
2015-06-13 19:47:00 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2017-01-09 21:53:43 +01:00
|
|
|
else {
|
|
|
|
coll = db.collection(node.collection);
|
|
|
|
}
|
2015-06-16 15:38:36 +02:00
|
|
|
var selector;
|
2015-06-13 19:47:00 +02:00
|
|
|
if (node.operation === "find") {
|
|
|
|
msg.projection = msg.projection || {};
|
|
|
|
selector = ensureValidSelectorObject(msg.payload);
|
|
|
|
var limit = msg.limit;
|
|
|
|
if (typeof limit === "string" && !isNaN(limit)) {
|
|
|
|
limit = Number(limit);
|
2017-04-19 12:11:47 +02:00
|
|
|
} else if (typeof limit === "undefined") {
|
|
|
|
limit = 0;
|
2015-06-13 19:47:00 +02:00
|
|
|
}
|
|
|
|
var skip = msg.skip;
|
|
|
|
if (typeof skip === "string" && !isNaN(skip)) {
|
|
|
|
skip = Number(skip);
|
2017-04-19 12:11:47 +02:00
|
|
|
} else if (typeof skip === "undefined") {
|
|
|
|
skip = 0;
|
2015-06-13 19:47:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
coll.find(selector,msg.projection).sort(msg.sort).limit(limit).skip(skip).toArray(function(err, items) {
|
|
|
|
if (err) {
|
|
|
|
node.error(err);
|
2017-01-09 21:53:43 +01:00
|
|
|
}
|
|
|
|
else {
|
2015-06-13 19:47:00 +02:00
|
|
|
msg.payload = items;
|
|
|
|
delete msg.projection;
|
|
|
|
delete msg.sort;
|
|
|
|
delete msg.limit;
|
|
|
|
delete msg.skip;
|
|
|
|
node.send(msg);
|
|
|
|
}
|
|
|
|
});
|
2017-01-29 18:45:44 +01:00
|
|
|
}
|
|
|
|
else if (node.operation === "count") {
|
2015-06-13 19:47:00 +02:00
|
|
|
selector = ensureValidSelectorObject(msg.payload);
|
|
|
|
coll.count(selector, function(err, count) {
|
|
|
|
if (err) {
|
|
|
|
node.error(err);
|
2017-01-09 21:53:43 +01:00
|
|
|
}
|
|
|
|
else {
|
2015-06-13 19:47:00 +02:00
|
|
|
msg.payload = count;
|
|
|
|
node.send(msg);
|
|
|
|
}
|
|
|
|
});
|
2017-01-09 21:53:43 +01:00
|
|
|
}
|
|
|
|
else if (node.operation === "aggregate") {
|
2015-06-13 19:47:00 +02:00
|
|
|
msg.payload = (Array.isArray(msg.payload)) ? msg.payload : [];
|
|
|
|
coll.aggregate(msg.payload, function(err, result) {
|
|
|
|
if (err) {
|
|
|
|
node.error(err);
|
2017-01-29 18:45:44 +01:00
|
|
|
}
|
|
|
|
else {
|
2015-06-13 19:47:00 +02:00
|
|
|
msg.payload = result;
|
|
|
|
node.send(msg);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-08-16 12:43:36 +02:00
|
|
|
if (node.mongoConfig) { connectToDB(); }
|
|
|
|
else { node.error(RED._("mongodb.errors.missingconfig")); }
|
|
|
|
|
|
|
|
node.on("close", function() {
|
|
|
|
node.status({});
|
|
|
|
if (node.tout) { clearTimeout(node.tout); }
|
|
|
|
if (node.clientDb) { node.clientDb.close(); }
|
2015-06-13 19:47:00 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
RED.nodes.registerType("mongodb in",MongoInNode);
|
|
|
|
}
|