2015-06-13 19:47:00 +02:00
|
|
|
|
2020-09-14 18:21:41 +02:00
|
|
|
|
2015-06-13 19:47:00 +02:00
|
|
|
<script type="text/x-red" data-template-name="mongodb">
|
|
|
|
<div class="form-row">
|
2020-09-14 18:21:41 +02:00
|
|
|
<label for="node-config-input-hostname"><i class="fa fa-bookmark"></i><span data-i18n="mongodb.label.host"></span></label>
|
|
|
|
<input class="input-append-left" type="text" id="node-config-input-hostname" placeholder="localhost">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-row node-config-input-clustered">
|
|
|
|
<label for="node-config-input-clustered"><i class="fa fa-sitemap"></i><span data-i18n="mongodb.label.clustered"></span></label>
|
|
|
|
<input type="checkbox" id="node-config-input-clustered" style="width:20px;">
|
|
|
|
</div>
|
|
|
|
<div class="form-row node-config-input-port">
|
|
|
|
<label for="node-config-input-port"><i class="fa fa-plug"></i><span data-i18n="mongodb.label.port"></span></label>
|
|
|
|
<input type="text" id="node-config-input-port" style="width:55px;">
|
|
|
|
</div>
|
|
|
|
<div class="form-row node-config-clusterVersion">
|
|
|
|
<label> </label>
|
|
|
|
<span data-i18n="mongodb.label.clusteredVersion"></span>
|
2015-06-13 19:47:00 +02:00
|
|
|
</div>
|
2020-09-14 18:21:41 +02:00
|
|
|
|
2015-06-13 19:47:00 +02:00
|
|
|
<div class="form-row">
|
2015-06-16 11:36:19 +02:00
|
|
|
<label for="node-config-input-db"><i class="fa fa-database"></i> <span data-i18n="mongodb.label.database"></span></label>
|
|
|
|
<input type="text" id="node-config-input-db">
|
2015-06-13 19:47:00 +02:00
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
2015-06-16 11:36:19 +02:00
|
|
|
<label for="node-config-input-user"><i class="fa fa-user"></i> <span data-i18n="mongodb.label.username"></span></label>
|
2015-06-13 19:47:00 +02:00
|
|
|
<input type="text" id="node-config-input-user">
|
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
2015-06-16 11:36:19 +02:00
|
|
|
<label for="node-config-input-password"><i class="fa fa-lock"></i> <span data-i18n="mongodb.label.password"></span></label>
|
2015-06-13 19:47:00 +02:00
|
|
|
<input type="password" id="node-config-input-password">
|
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
2015-06-16 12:16:29 +02:00
|
|
|
<label for="node-config-input-name"><i class="fa fa-tag"></i> <span data-i18n="node-red:common.label.name"></span></label>
|
|
|
|
<input type="text" id="node-config-input-name" data-i18n="[placeholder]node-red:common.label.name">
|
2015-06-13 19:47:00 +02:00
|
|
|
</div>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
RED.nodes.registerType('mongodb', {
|
|
|
|
category: 'config',
|
|
|
|
color: "rgb(218, 196, 180)",
|
|
|
|
defaults: {
|
|
|
|
hostname: {value: "127.0.0.1", required: true},
|
2020-09-14 18:21:41 +02:00
|
|
|
clustered: {value: true, required: true},
|
2015-06-13 19:47:00 +02:00
|
|
|
port: {value: 27017, required: true},
|
|
|
|
db: {value: "", required: true},
|
|
|
|
name: {value: ""}
|
|
|
|
},
|
|
|
|
credentials: {
|
|
|
|
user: {type: "text"},
|
|
|
|
password: {type: "password"}
|
|
|
|
},
|
|
|
|
label: function() {
|
2020-09-14 18:21:41 +02:00
|
|
|
return this.name || this.db + "@" + this.hostname;
|
|
|
|
},
|
|
|
|
oneditprepare: function() {
|
|
|
|
$("#node-config-input-clustered").on("change",function () {
|
|
|
|
if ( $("#node-config-input-clustered").is(":checked") ) {
|
|
|
|
$(".node-config-input-port").hide();
|
|
|
|
$(".node-config-clusterVersion").show();
|
|
|
|
} else {
|
|
|
|
$(".node-config-input-port").show();
|
|
|
|
$(".node-config-clusterVersion").hide();
|
|
|
|
}
|
|
|
|
})
|
|
|
|
},
|
2015-06-13 19:47:00 +02:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<script type="text/x-red" data-template-name="mongodb out">
|
|
|
|
<div class="form-row">
|
2015-06-16 11:36:19 +02:00
|
|
|
<label for="node-input-mongodb"><i class="fa fa-bookmark"></i> <span data-i18n="mongodb.label.server"></span></label>
|
2015-06-13 19:47:00 +02:00
|
|
|
<input type="text" id="node-input-mongodb">
|
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
2015-06-16 11:36:19 +02:00
|
|
|
<label for="node-input-collection"><i class="fa fa-briefcase"></i> <span data-i18n="mongodb.label.collection"></span></label>
|
|
|
|
<input type="text" id="node-input-collection">
|
2015-06-13 19:47:00 +02:00
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
2015-06-16 11:36:19 +02:00
|
|
|
<label for="node-input-operation"><i class="fa fa-wrench"></i> <span data-i18n="mongodb.label.operation"></span></label>
|
2015-06-13 19:47:00 +02:00
|
|
|
<select type="text" id="node-input-operation" style="display: inline-block; vertical-align: top;">
|
2015-06-16 11:36:19 +02:00
|
|
|
<option value="store" data-i18n="mongodb.operation.save"></option>
|
|
|
|
<option value="insert" data-i18n="mongodb.operation.insert"></option>
|
|
|
|
<option value="update" data-i18n="mongodb.operation.update"></option>
|
|
|
|
<option value="delete" data-i18n="mongodb.operation.remove"></option>
|
2015-06-13 19:47:00 +02:00
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
<div class="form-row node-input-payonly">
|
|
|
|
<label> </label>
|
2015-06-16 11:36:19 +02:00
|
|
|
<input type="checkbox" id="node-input-payonly" style="display: inline-block; width: auto; vertical-align: top;">
|
|
|
|
<label for="node-input-payonly" style="width: 70%;"><span data-i18n="mongodb.label.onlystore"></span></label>
|
2015-06-13 19:47:00 +02:00
|
|
|
</div>
|
|
|
|
<div class="form-row node-input-upsert">
|
|
|
|
<label> </label>
|
2015-06-16 11:36:19 +02:00
|
|
|
<input type="checkbox" id="node-input-upsert" style="display: inline-block; width: auto; vertical-align: top;">
|
|
|
|
<label for="node-input-upsert" style="width: 70%;"><span data-i18n="mongodb.label.createnew"></span></label>
|
2015-06-13 19:47:00 +02:00
|
|
|
</div>
|
|
|
|
<div class="form-row node-input-multi">
|
|
|
|
<label> </label>
|
2015-06-16 11:36:19 +02:00
|
|
|
<input type="checkbox" id="node-input-multi" style="display: inline-block; width: auto; vertical-align: top;;">
|
|
|
|
<label for="node-input-multi" style="width: 70%;"><span data-i18n="mongodb.label.updateall"></span></label>
|
2015-06-13 19:47:00 +02:00
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
2015-06-16 12:16:29 +02:00
|
|
|
<label for="node-input-name"><i class="fa fa-tag"></i> <span data-i18n="node-red:common.label.name"></span></label>
|
|
|
|
<input type="text" id="node-input-name" data-i18n="[placeholder]node-red:common.label.name">
|
2015-06-13 19:47:00 +02:00
|
|
|
</div>
|
2015-06-16 11:36:19 +02:00
|
|
|
<div class="form-tips" id="node-warning" style="display: none"><span data-i18n="[html]mongodb.tip"></span></div>
|
2015-06-13 19:47:00 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/x-red" data-help-name="mongodb out">
|
|
|
|
<p>A simple MongoDB output node. Can save, insert, update and remove objects from a chosen collection.</p>
|
|
|
|
<p>Save will update an existing object or insert a new object if one does not already exist.</p>
|
|
|
|
<p>Insert will insert a new object.</p>
|
2016-03-02 14:27:22 +01:00
|
|
|
<p>Save and insert either store <code>msg</code> or <code>msg.payload</code>.</p>
|
2020-09-14 18:21:41 +02:00
|
|
|
<p>Update will modify an existing object or objects. The query to select objects to update uses <code>msg.query</code>
|
2016-11-02 16:25:35 +01:00
|
|
|
and the update to the element uses <code>msg.payload</code>. If <code>msg.query._id</code> is
|
|
|
|
a valid mongo ObjectId string it will be converted to an ObjectId type.</p>
|
2020-09-14 18:21:41 +02:00
|
|
|
<p>Update can add a object if it does not exist or update multiple objects.</p>
|
2016-03-02 14:27:22 +01:00
|
|
|
<p>Remove will remove objects that match the query passed in on <code>msg.payload</code>. A blank query will delete
|
|
|
|
<i>all of the objects</i> in the collection.</p>
|
|
|
|
<p>You can either set the collection method in the node config or on <code>msg.collection</code>. Setting it in the
|
|
|
|
node will override <code>msg.collection</code>.</p>
|
2020-09-14 18:21:41 +02:00
|
|
|
<p>By default MongoDB creates an <i>_id</i> property as the primary key - so repeated injections of the
|
2016-03-02 14:27:22 +01:00
|
|
|
same <code>msg</code> will result in many database entries.</p>
|
2020-09-14 18:21:41 +02:00
|
|
|
<p>If this is NOT the desired behaviour - ie. you want repeated entries to overwrite, then you must set
|
2016-03-02 14:27:22 +01:00
|
|
|
the <code>msg._id</code> property to be a constant by the use of a previous function node.</p>
|
2015-06-13 19:47:00 +02:00
|
|
|
<p>This could be a unique constant or you could create one based on some other msg property.</p>
|
2020-09-14 18:21:41 +02:00
|
|
|
<p>Currently we do not limit or cap the collection size at all... this may well change.</p>
|
2015-06-13 19:47:00 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
|
|
|
function oneditprepare() {
|
|
|
|
$("#node-input-operation").change(function () {
|
|
|
|
var id = $("#node-input-operation option:selected").val();
|
|
|
|
|
|
|
|
if (id === "update") {
|
|
|
|
$(".node-input-payonly").hide();
|
|
|
|
$(".node-input-upsert, .node-input-multi").show();
|
|
|
|
} else if (id === "delete") {
|
|
|
|
$(".node-input-payonly, .node-input-upsert, .node-input-multi").hide();
|
|
|
|
} else {
|
|
|
|
$(".node-input-payonly").show();
|
|
|
|
$(".node-input-upsert, .node-input-multi").hide();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#node-input-collection").change(function () {
|
|
|
|
if($("#node-input-collection").val() === "") {
|
|
|
|
$("#node-warning").show();
|
|
|
|
} else {
|
|
|
|
$("#node-warning").hide();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
RED.nodes.registerType('mongodb out', {
|
|
|
|
category: 'storage-output',
|
|
|
|
color: "rgb(218, 196, 180)",
|
|
|
|
defaults: {
|
|
|
|
mongodb: {type: "mongodb", required: true},
|
|
|
|
name: {value: ""},
|
|
|
|
collection: {value: ""},
|
|
|
|
payonly: {value: false},
|
|
|
|
upsert: {value: false},
|
|
|
|
multi: {value: false},
|
|
|
|
operation: {value: "store"}
|
|
|
|
},
|
|
|
|
inputs: 1,
|
|
|
|
outputs: 0,
|
|
|
|
icon: "mongodb.png",
|
|
|
|
align: "right",
|
|
|
|
label: function() {
|
|
|
|
var mongoNode = RED.nodes.node(this.mongodb);
|
2020-09-14 18:21:41 +02:00
|
|
|
return this.name || (mongoNode ? mongoNode.label() + " " + this.collection : "mongodb");
|
2015-06-13 19:47:00 +02:00
|
|
|
},
|
|
|
|
labelStyle: function() {
|
|
|
|
return this.name ? "node_label_italic" : "";
|
|
|
|
},
|
|
|
|
oneditprepare: oneditprepare
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<script type="text/x-red" data-template-name="mongodb in">
|
|
|
|
<div class="form-row">
|
2015-06-16 11:36:19 +02:00
|
|
|
<label for="node-input-mongodb"><i class="fa fa-bookmark"></i> <span data-i18n="mongodb.label.server"></span></label>
|
2015-06-13 19:47:00 +02:00
|
|
|
<input type="text" id="node-input-mongodb">
|
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
2015-06-16 11:36:19 +02:00
|
|
|
<label for="node-input-collection"><i class="fa fa-briefcase"></i> <span data-i18n="mongodb.label.collection"></span></label>
|
|
|
|
<input type="text" id="node-input-collection">
|
2015-06-13 19:47:00 +02:00
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
2015-06-16 11:36:19 +02:00
|
|
|
<label for="node-input-operation"><i class="fa fa-wrench"></i> <span data-i18n="mongodb.label.operation"></span></label>
|
2015-06-13 19:47:00 +02:00
|
|
|
<select type="text" id="node-input-operation" style="display: inline-block; vertical-align: top;">
|
2015-06-16 11:36:19 +02:00
|
|
|
<option value="find" data-i18n="mongodb.operation.find"></option>
|
|
|
|
<option value="count" data-i18n="mongodb.operation.count"></option>
|
|
|
|
<option value="aggregate" data-i18n="mongodb.operation.aggregate"></option>
|
2015-06-13 19:47:00 +02:00
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
2015-06-16 12:16:29 +02:00
|
|
|
<label for="node-input-name"><i class="fa fa-tag"></i> <span data-i18n="node-red:common.label.name"></span></label>
|
|
|
|
<input type="text" id="node-input-name" data-i18n="[placeholder]node-red:common.label.name">
|
2015-06-13 19:47:00 +02:00
|
|
|
</div>
|
2015-06-16 11:36:19 +02:00
|
|
|
<div class="form-tips" id="node-warning" style="display: none"><span data-i18n="[html]mongodb.tip"></span></div>
|
2015-06-13 19:47:00 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/x-red" data-help-name="mongodb in">
|
|
|
|
<p>Calls a MongoDB collection method based on the selected operator.</p>
|
2016-03-02 14:27:22 +01:00
|
|
|
<p>Find queries a collection using the <code>msg.payload</code> as the query statement as per the .find() function.
|
2020-09-14 18:21:41 +02:00
|
|
|
Optionally, you may also (via a function) set a <code>msg.projection</code> object to constrain the returned
|
|
|
|
fields, a <code>msg.sort</code> object, a <code>msg.limit</code> number and a <code>msg.skip</code> number.</p>
|
|
|
|
<p>Count returns a count of the number of documents in a collection or matching a query using the
|
2016-03-02 14:27:22 +01:00
|
|
|
<code>msg.payload</code> as the query statement.</p>
|
|
|
|
<p>Aggregate provides access to the aggregation pipeline using the <code>msg.payload</code> as the pipeline array.</p>
|
|
|
|
<p>You can either set the collection method in the node config or on <code>msg.collection</code>. Setting it in
|
|
|
|
the node will override <code>msg.collection</code>.</p>
|
|
|
|
<p>See the <a href="http://docs.mongodb.org/manual/reference/method/db.collection.find/" target="new"><i>MongoDB
|
|
|
|
collection methods docs</i></a> for examples.</p>
|
|
|
|
<p>The result is returned in <code>msg.payload</code>.</p>
|
2015-06-13 19:47:00 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
|
|
|
RED.nodes.registerType('mongodb in', {
|
|
|
|
category: 'storage-input',
|
|
|
|
color: "rgb(218, 196, 180)",
|
|
|
|
defaults: {
|
|
|
|
mongodb: {type: "mongodb", required: true},
|
|
|
|
name: {value: ""},
|
|
|
|
collection: {value: ""},
|
|
|
|
operation: {value: "find"}
|
|
|
|
},
|
|
|
|
inputs: 1,
|
|
|
|
outputs: 1,
|
|
|
|
icon: "mongodb.png",
|
|
|
|
label: function() {
|
|
|
|
var mongoNode = RED.nodes.node(this.mongodb);
|
2020-09-14 18:21:41 +02:00
|
|
|
return this.name || (mongoNode ? mongoNode.label() + " " + this.collection : "mongodb");
|
2015-06-13 19:47:00 +02:00
|
|
|
},
|
|
|
|
labelStyle: function() {
|
|
|
|
return this.name ? "node_label_italic" : "";
|
|
|
|
},
|
|
|
|
oneditprepare: oneditprepare
|
|
|
|
});
|
|
|
|
</script>
|