mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
parent
7c24d4d760
commit
b7e3e2d739
@ -29,6 +29,14 @@
|
|||||||
<label for="node-config-input-name"><i class="icon-tag"></i> Name</label>
|
<label for="node-config-input-name"><i class="icon-tag"></i> Name</label>
|
||||||
<input type="text" id="node-config-input-name" placeholder="Name">
|
<input type="text" id="node-config-input-name" placeholder="Name">
|
||||||
</div>
|
</div>
|
||||||
|
<div class="form-row">
|
||||||
|
<label for="node-config-input-user"><i class="icon-user"></i> Username</label>
|
||||||
|
<input type="text" id="node-config-input-user">
|
||||||
|
</div>
|
||||||
|
<div class="form-row">
|
||||||
|
<label for="node-config-input-pass"><i class="icon-lock"></i> Password</label>
|
||||||
|
<input type="password" id="node-config-input-pass">
|
||||||
|
</div>
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
@ -39,10 +47,47 @@
|
|||||||
hostname: { value:"127.0.0.1",required:true},
|
hostname: { value:"127.0.0.1",required:true},
|
||||||
port: { value: 27017,required:true},
|
port: { value: 27017,required:true},
|
||||||
db: { value:"",required:true},
|
db: { value:"",required:true},
|
||||||
name: { value:"" }
|
name: { value:"" },
|
||||||
|
//user -> credentials
|
||||||
|
//pass -> credentials
|
||||||
},
|
},
|
||||||
label: function() {
|
label: function() {
|
||||||
return this.name||this.hostname+":"+this.port+"//"+this.db;
|
return this.name||this.hostname+":"+this.port+"/"+this.db;
|
||||||
|
},
|
||||||
|
oneditprepare: function() {
|
||||||
|
$.getJSON('mongodb/'+this.id,function(data) {
|
||||||
|
if (data.user) {
|
||||||
|
$('#node-config-input-user').val(data.user);
|
||||||
|
}
|
||||||
|
if (data.hasPassword) {
|
||||||
|
$('#node-config-input-pass').val('__PWRD__');
|
||||||
|
} else {
|
||||||
|
$('#node-config-input-pass').val('');
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
},
|
||||||
|
oneditsave: function() {
|
||||||
|
var newUser = $('#node-config-input-user').val();
|
||||||
|
var newPass = $('#node-config-input-pass').val();
|
||||||
|
var credentials = {};
|
||||||
|
credentials.user = newUser;
|
||||||
|
if (newPass != '__PWRD__') {
|
||||||
|
credentials.password = newPass;
|
||||||
|
}
|
||||||
|
$.ajax({
|
||||||
|
url: 'mongodb/'+this.id,
|
||||||
|
type: 'POST',
|
||||||
|
data: credentials,
|
||||||
|
success:function(result){}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
ondelete: function() {
|
||||||
|
$.ajax({
|
||||||
|
url: 'mongodb/'+this.id,
|
||||||
|
type: 'DELETE',
|
||||||
|
success: function(result) {}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
@ -110,7 +155,7 @@
|
|||||||
align: "right",
|
align: "right",
|
||||||
label: function() {
|
label: function() {
|
||||||
var mongoNode = RED.nodes.node(this.mongodb);
|
var mongoNode = RED.nodes.node(this.mongodb);
|
||||||
return this.name||(mongoNode?mongoNode.label()+"//"+this.collection:"mongodb");
|
return this.name||(mongoNode?mongoNode.label()+" "+this.collection:"mongodb");
|
||||||
},
|
},
|
||||||
labelStyle: function() {
|
labelStyle: function() {
|
||||||
return this.name?"node_label_italic":"";
|
return this.name?"node_label_italic":"";
|
||||||
@ -154,7 +199,7 @@
|
|||||||
icon: "mongodb.png",
|
icon: "mongodb.png",
|
||||||
label: function() {
|
label: function() {
|
||||||
var mongoNode = RED.nodes.node(this.mongodb);
|
var mongoNode = RED.nodes.node(this.mongodb);
|
||||||
return this.name||(mongoNode?mongoNode.label()+"//"+this.collection:"mongodb");
|
return this.name||(mongoNode?mongoNode.label()+" "+this.collection:"mongodb");
|
||||||
},
|
},
|
||||||
labelStyle: function() {
|
labelStyle: function() {
|
||||||
return this.name?"node_label_italic":"";
|
return this.name?"node_label_italic":"";
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
|
|
||||||
var RED = require(process.env.NODE_RED_HOME+"/red/red");
|
var RED = require(process.env.NODE_RED_HOME+"/red/red");
|
||||||
var mongo = require('mongodb');
|
var mongo = require('mongodb');
|
||||||
|
var MongoClient = mongo.MongoClient;
|
||||||
|
|
||||||
function MongoNode(n) {
|
function MongoNode(n) {
|
||||||
RED.nodes.createNode(this,n);
|
RED.nodes.createNode(this,n);
|
||||||
@ -23,9 +24,62 @@ function MongoNode(n) {
|
|||||||
this.port = n.port;
|
this.port = n.port;
|
||||||
this.db = n.db;
|
this.db = n.db;
|
||||||
this.name = n.name;
|
this.name = n.name;
|
||||||
|
var credentials = RED.nodes.getCredentials(n.id);
|
||||||
|
if (credentials) {
|
||||||
|
this.username = credentials.user;
|
||||||
|
this.password = credentials.password;
|
||||||
|
}
|
||||||
|
|
||||||
|
var url = "mongodb://";
|
||||||
|
if (this.username && this.password) {
|
||||||
|
url += this.username+":"+this.password+"@";
|
||||||
|
}
|
||||||
|
url += this.hostname+":"+this.port+"/"+this.db;
|
||||||
|
|
||||||
|
this.url = url;
|
||||||
}
|
}
|
||||||
|
|
||||||
RED.nodes.registerType("mongodb",MongoNode);
|
RED.nodes.registerType("mongodb",MongoNode);
|
||||||
|
|
||||||
|
var querystring = require('querystring');
|
||||||
|
|
||||||
|
RED.httpAdmin.get('/mongodb/:id',function(req,res) {
|
||||||
|
var credentials = RED.nodes.getCredentials(req.params.id);
|
||||||
|
if (credentials) {
|
||||||
|
res.send(JSON.stringify({user:credentials.user,hasPassword:(credentials.password&&credentials.password!="")}));
|
||||||
|
} else {
|
||||||
|
res.send(JSON.stringify({}));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
RED.httpAdmin.delete('/mongodb/:id',function(req,res) {
|
||||||
|
RED.nodes.deleteCredentials(req.params.id);
|
||||||
|
res.send(200);
|
||||||
|
});
|
||||||
|
|
||||||
|
RED.httpAdmin.post('/mongodb/:id',function(req,res) {
|
||||||
|
var body = "";
|
||||||
|
req.on('data', function(chunk) {
|
||||||
|
body+=chunk;
|
||||||
|
});
|
||||||
|
req.on('end', function(){
|
||||||
|
var newCreds = querystring.parse(body);
|
||||||
|
var credentials = RED.nodes.getCredentials(req.params.id)||{};
|
||||||
|
if (newCreds.user == null || newCreds.user == "") {
|
||||||
|
delete credentials.user;
|
||||||
|
} else {
|
||||||
|
credentials.user = newCreds.user;
|
||||||
|
}
|
||||||
|
if (newCreds.password == "") {
|
||||||
|
delete credentials.password;
|
||||||
|
} else {
|
||||||
|
credentials.password = newCreds.password||credentials.password;
|
||||||
|
}
|
||||||
|
RED.nodes.addCredentials(req.params.id,credentials);
|
||||||
|
res.send(200);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
function MongoOutNode(n) {
|
function MongoOutNode(n) {
|
||||||
RED.nodes.createNode(this,n);
|
RED.nodes.createNode(this,n);
|
||||||
@ -37,34 +91,33 @@ function MongoOutNode(n) {
|
|||||||
|
|
||||||
if (this.mongoConfig) {
|
if (this.mongoConfig) {
|
||||||
var node = this;
|
var node = this;
|
||||||
this.clientDb = new mongo.Db(node.mongoConfig.db, new mongo.Server(node.mongoConfig.hostname, node.mongoConfig.port, {}), {w: 1});
|
MongoClient.connect(this.mongoConfig.url, function(err,db) {
|
||||||
this.clientDb.open(function(err,cli) {
|
if (err) {
|
||||||
if (err) { node.error(err); }
|
node.error(err);
|
||||||
else {
|
} else {
|
||||||
node.clientDb.collection(node.collection,function(err,coll) {
|
node.clientDb = db;
|
||||||
if (err) { node.error(err); }
|
var coll = db.collection(node.collection);
|
||||||
else {
|
node.on("input",function(msg) {
|
||||||
node.on("input",function(msg) {
|
if (node.operation == "store") {
|
||||||
if (node.operation == "store") {
|
delete msg._topic;
|
||||||
delete msg._topic;
|
if (node.payonly) {
|
||||||
if (node.payonly) {
|
if (typeof msg.payload !== "object") { msg.payload = {"payload":msg.payload}; }
|
||||||
if (typeof msg.payload !== "object") { msg.payload = {"payload":msg.payload}; }
|
coll.save(msg.payload,function(err,item){ if (err){node.error(err);} });
|
||||||
coll.save(msg.payload,function(err,item){ if (err){node.error(err);} });
|
} else {
|
||||||
}
|
coll.save(msg,function(err,item){if (err){node.error(err);}});
|
||||||
else coll.save(msg,function(err,item){if (err){node.error(err);}});
|
}
|
||||||
}
|
}
|
||||||
else if (node.operation == "insert") {
|
else if (node.operation == "insert") {
|
||||||
delete msg._topic;
|
delete msg._topic;
|
||||||
if (node.payonly) {
|
if (node.payonly) {
|
||||||
if (typeof msg.payload !== "object") { msg.payload = {"payload":msg.payload}; }
|
if (typeof msg.payload !== "object") { msg.payload = {"payload":msg.payload}; }
|
||||||
coll.insert(msg.payload,function(err,item){ if (err){node.error(err);} });
|
coll.insert(msg.payload,function(err,item){ if (err){node.error(err);} });
|
||||||
}
|
} else {
|
||||||
else coll.insert(msg,function(err,item){if (err){node.error(err);}});
|
coll.insert(msg,function(err,item){if (err){node.error(err);}});
|
||||||
}
|
}
|
||||||
if (node.operation == "delete") {
|
}
|
||||||
coll.remove(msg.payload, {w:1}, function(err, items){ if (err) node.error(err); });
|
if (node.operation == "delete") {
|
||||||
}
|
coll.remove(msg.payload, {w:1}, function(err, items){ if (err) node.error(err); });
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@ -90,25 +143,25 @@ function MongoInNode(n) {
|
|||||||
|
|
||||||
if (this.mongoConfig) {
|
if (this.mongoConfig) {
|
||||||
var node = this;
|
var node = this;
|
||||||
this.clientDb = new mongo.Db(node.mongoConfig.db, new mongo.Server(node.mongoConfig.hostname, node.mongoConfig.port, {}), {w: 1});
|
MongoClient.connect(this.mongoConfig.url, function(err,db) {
|
||||||
this.clientDb.open(function(err,cli) {
|
if (err) {
|
||||||
if (err) { node.error(err); }
|
node.error(err);
|
||||||
else {
|
} else {
|
||||||
node.clientDb.collection(node.collection,function(err,coll) {
|
node.clientDb = db;
|
||||||
if (err) { node.error(err); }
|
var coll = db.collection(node.collection);
|
||||||
else {
|
node.on("input",function(msg) {
|
||||||
node.on("input",function(msg) {
|
msg.projection = msg.projection || {};
|
||||||
msg.projection = msg.projection || {};
|
coll.find(msg.payload,msg.projection).sort(msg.sort).limit(msg.limit).toArray(function(err, items) {
|
||||||
coll.find(msg.payload,msg.projection).sort(msg.sort).limit(msg.limit).toArray(function(err, items) {
|
if (err) {
|
||||||
if (err) { node.error(err); }
|
node.error(err);
|
||||||
msg.payload = items;
|
} else {
|
||||||
delete msg.projection;
|
msg.payload = items;
|
||||||
delete msg.sort;
|
delete msg.projection;
|
||||||
delete msg.limit;
|
delete msg.sort;
|
||||||
node.send(msg);
|
delete msg.limit;
|
||||||
});
|
node.send(msg);
|
||||||
});
|
}
|
||||||
}
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user