mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
48dabffefc
This makes it easier to distinguish core nodes from those added later
164 lines
7.0 KiB
HTML
164 lines
7.0 KiB
HTML
<!--
|
|
Copyright 2013 IBM Corp.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<script type="text/x-red" data-template-name="mongodb">
|
|
<div class="form-row">
|
|
<label for="node-config-input-hostname"><i class="icon-bookmark"></i> Host</label>
|
|
<input class="input-append-left" type="text" id="node-config-input-hostname" placeholder="localhost" style="width: 40%;" >
|
|
<label for="node-config-input-port" style="margin-left: 10px; width: 35px; "> Port</label>
|
|
<input type="text" id="node-config-input-port" placeholder="27017" style="width:45px">
|
|
</div>
|
|
<div class="form-row">
|
|
<label for="node-config-input-db"><i class="icon-briefcase"></i> Database</label>
|
|
<input type="text" id="node-config-input-db" placeholder="test">
|
|
</div>
|
|
<div class="form-row">
|
|
<label for="node-config-input-name"><i class="icon-tag"></i> Name</label>
|
|
<input type="text" id="node-config-input-name" placeholder="Name">
|
|
</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},
|
|
port: { value: 27017,required:true},
|
|
db: { value:"",required:true},
|
|
name: { value:"" }
|
|
},
|
|
label: function() {
|
|
return this.name||this.hostname+":"+this.port+"//"+this.db;
|
|
}
|
|
});
|
|
</script>
|
|
|
|
|
|
<script type="text/x-red" data-template-name="mongodb out">
|
|
<div class="form-row">
|
|
<label for="node-input-mongodb"><i class="icon-tag"></i> Server</label>
|
|
<input type="text" id="node-input-mongodb">
|
|
</div>
|
|
<div class="form-row">
|
|
<label for="node-input-collection"><i class="icon-briefcase"></i> Collection</label>
|
|
<input type="text" id="node-input-collection" placeholder="collection">
|
|
</div>
|
|
<div class="form-row">
|
|
<label for="node-input-operation"><i class="icon-wrench"></i> Operation</label>
|
|
<select type="text" id="node-input-operation" style="display: inline-block; vertical-align: top;">
|
|
<option value=store>save</option>
|
|
<option value=insert>insert</option>
|
|
<option value=delete>remove</option>
|
|
</select>
|
|
</div>
|
|
<div class="form-row node-input-payonly">
|
|
<label> </label>
|
|
<input type="checkbox" id="node-input-payonly" placeholder="Only" style="display: inline-block; width: auto; vertical-align: top;">
|
|
<label for="node-input-payonly" style="width: 70%;">Only store msg.payload object ?</label>
|
|
</div>
|
|
<div class="form-row">
|
|
<label for="node-input-name"><i class="icon-tag"></i> Name</label>
|
|
<input type="text" id="node-input-name" placeholder="Name">
|
|
</div>
|
|
<script>
|
|
$("#node-input-operation").change(function() {
|
|
var id = $("#node-input-operation option:selected").val();
|
|
if (id == "delete") $(".node-input-payonly").hide();
|
|
else $(".node-input-payonly").show();
|
|
});
|
|
</script>
|
|
</script>
|
|
|
|
<script type="text/x-red" data-help-name="mongodb out">
|
|
<p>A simple MongoDB output node. Stores the <b>msg</b> object in a chosen collection.</p>
|
|
<p>By default MongoDB creates an <i>_id</i> property as the primary key - so repeated injections of the same <b>msg</b> will result in many database entries.</p>
|
|
<p>If this is NOT the desired behaviour - ie you want repeated entries to overwrite, then you must set the <b>msg._id</b> property to be a constant by the use of a previous function node.</p>
|
|
<p>This could be a unique constant or you could create one based on some other msg property.</p>
|
|
<p>Currently we do not limit or cap the collection size at all... this may well change.</p>
|
|
<p>You can also choose to <b>remove</b> items. To do so the <b>msg.payload</b> <i>MUST</i> contain an object that will select the items(s) to remove.
|
|
A blank object will delete <i>all of the objects</i> in the collection. You have been warned...</p>
|
|
</script>
|
|
|
|
<script type="text/javascript">
|
|
RED.nodes.registerType('mongodb out',{
|
|
category: 'storage-output',
|
|
color:"rgb(218, 196, 180)",
|
|
defaults: {
|
|
mongodb: { type:"mongodb",required:true},
|
|
name: {value:""},
|
|
collection: {value:"",required:true},
|
|
payonly: {value:false},
|
|
operation: {value:"store"}
|
|
},
|
|
inputs:1,
|
|
outputs:0,
|
|
icon: "mongodb.png",
|
|
align: "right",
|
|
label: function() {
|
|
var mongoNode = RED.nodes.node(this.mongodb);
|
|
return this.name||(mongoNode?mongoNode.label()+"//"+this.collection:"mongodb");
|
|
},
|
|
labelStyle: function() {
|
|
return this.name?"node_label_italic":"";
|
|
}
|
|
});
|
|
</script>
|
|
|
|
|
|
<script type="text/x-red" data-template-name="mongodb in">
|
|
<div class="form-row">
|
|
<label for="node-input-mongodb"><i class="icon-tag"></i> Server</label>
|
|
<input type="text" id="node-input-mongodb">
|
|
</div>
|
|
<div class="form-row">
|
|
<label for="node-input-collection"><i class="icon-briefcase"></i> Collection</label>
|
|
<input type="text" id="node-input-collection" placeholder="collection">
|
|
</div>
|
|
<div class="form-row">
|
|
<label for="node-input-name"><i class="icon-tag"></i> Name</label>
|
|
<input type="text" id="node-input-name" placeholder="Name">
|
|
</div>
|
|
</script>
|
|
|
|
<script type="text/x-red" data-help-name="mongodb in">
|
|
<p>Queries a MongoDB collection by using the <b>msg.payload</b> to be a MongoDB query statement as per the .find() function.</p>
|
|
<p>You may also (via a function) set a <b>msg.projection</b> object to constrain the returned fields, a <b>msg.sort</b> object and a <b>msg.limit</b> object.</p>
|
|
<p>All are optional - see the <a href="http://docs.mongodb.org/manual/reference/method/db.collection.find/" target="new"><i>MongoDB find docs</i></a> for examples.</p>
|
|
</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:"",required:true}
|
|
},
|
|
inputs:1,
|
|
outputs:1,
|
|
icon: "mongodb.png",
|
|
label: function() {
|
|
var mongoNode = RED.nodes.node(this.mongodb);
|
|
return this.name||(mongoNode?mongoNode.label()+"//"+this.collection:"mongodb");
|
|
},
|
|
labelStyle: function() {
|
|
return this.name?"node_label_italic":"";
|
|
}
|
|
});
|
|
</script>
|