2013-09-05 16:02:48 +02:00
|
|
|
<!--
|
2017-01-11 16:24:33 +01:00
|
|
|
Copyright JS Foundation and other contributors, http://js.foundation
|
2013-09-05 16:02:48 +02:00
|
|
|
|
|
|
|
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="http in">
|
|
|
|
<div class="form-row">
|
2015-05-10 22:47:22 +02:00
|
|
|
<label for="node-input-method"><i class="fa fa-tasks"></i> <span data-i18n="httpin.label.method"></span></label>
|
2016-06-27 00:48:59 +02:00
|
|
|
<select type="text" id="node-input-method" style="width:70%;">
|
2013-09-05 16:02:48 +02:00
|
|
|
<option value="get">GET</option>
|
|
|
|
<option value="post">POST</option>
|
|
|
|
<option value="put">PUT</option>
|
|
|
|
<option value="delete">DELETE</option>
|
2016-06-08 12:31:59 +02:00
|
|
|
<option value="patch">PATCH</option>
|
2013-09-05 16:02:48 +02:00
|
|
|
</select>
|
|
|
|
</div>
|
2017-01-16 23:39:30 +01:00
|
|
|
<div class="form-row form-row-http-in-upload hide">
|
|
|
|
<label> </label>
|
|
|
|
<input type="checkbox" id="node-input-upload" style="display: inline-block; width: auto; vertical-align: top;">
|
|
|
|
<label for="node-input-upload" style="width: 70%;" data-i18n="httpin.label.upload"></label>
|
|
|
|
</div>
|
2013-09-05 16:02:48 +02:00
|
|
|
<div class="form-row">
|
2015-05-10 22:47:22 +02:00
|
|
|
<label for="node-input-url"><i class="fa fa-globe"></i> <span data-i18n="httpin.label.url"></span></label>
|
2016-10-28 09:37:33 +02:00
|
|
|
<input id="node-input-url" type="text" placeholder="/url">
|
2013-09-05 16:02:48 +02:00
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
2015-05-10 22:47:22 +02:00
|
|
|
<label for="node-input-name"><i class="fa fa-tag"></i> <span data-i18n="common.label.name"></span></label>
|
2015-05-26 22:11:14 +02:00
|
|
|
<input type="text" id="node-input-name" data-i18n="[placeholder]common.label.name">
|
2013-09-05 16:02:48 +02:00
|
|
|
</div>
|
2015-04-24 20:53:38 +02:00
|
|
|
<div class="form-row row-swagger-doc">
|
2015-09-28 00:49:14 +02:00
|
|
|
<label for="node-input-swaggerDoc"><i class="fa fa-file-text-o"></i> <span data-i18n="httpin.label.doc"></span></label>
|
2015-04-24 20:53:38 +02:00
|
|
|
<input type="text" id="node-input-swaggerDoc">
|
|
|
|
</div>
|
2015-05-26 22:11:14 +02:00
|
|
|
<div id="node-input-tip" class="form-tips"><span data-i18n="httpin.tip.in"></span><code><span id="node-input-path"></span></code>.</div>
|
2013-09-05 16:02:48 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/x-red" data-help-name="http in">
|
2014-06-08 16:05:08 +02:00
|
|
|
<p>Provides an input node for http requests, allowing the creation of simple web services.</p>
|
|
|
|
<p>The resulting message has the following properties:
|
|
|
|
<ul>
|
|
|
|
<li>msg.req : <a href="http://expressjs.com/api.html#req">http request</a></li>
|
|
|
|
<li>msg.res : <a href="http://expressjs.com/api.html#res">http response</a></li>
|
|
|
|
</ul>
|
2013-09-05 16:02:48 +02:00
|
|
|
</p>
|
2014-06-08 16:05:08 +02:00
|
|
|
<p>For POST/PUT requests, the body is available under <code>msg.req.body</code>. This
|
|
|
|
uses the <a href="http://expressjs.com/api.html#bodyParser">Express bodyParser middleware</a> to parse the content to a JSON object.
|
2013-09-05 16:02:48 +02:00
|
|
|
</p>
|
2014-06-08 16:05:08 +02:00
|
|
|
<p>
|
|
|
|
By default, this expects the body of the request to be url encoded:
|
|
|
|
<pre>foo=bar&this=that</pre>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
To send JSON encoded data to the node, the content-type header of the request must be set to
|
|
|
|
<code>application/json</code>.
|
|
|
|
</p>
|
2017-01-16 23:39:30 +01:00
|
|
|
<p>
|
|
|
|
If file uploads are enabled for POST requests, the files will be available under
|
|
|
|
<code>msg.req.files</code>.
|
2014-06-08 16:05:08 +02:00
|
|
|
<p>
|
2015-06-03 23:52:48 +02:00
|
|
|
<b>Note: </b>This node does not send any response to the http request.
|
|
|
|
This should be done with a subsequent HTTP Response node.
|
2013-09-05 16:02:48 +02:00
|
|
|
</p>
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
2013-09-28 23:18:41 +02:00
|
|
|
<script type="text/x-red" data-template-name="http response">
|
2013-10-01 18:03:17 +02:00
|
|
|
<div class="form-row">
|
2015-05-10 22:47:22 +02:00
|
|
|
<label for="node-input-name"><i class="fa fa-tag"></i> <span data-i18n="common.label.name"></span></label>
|
2015-05-26 22:11:14 +02:00
|
|
|
<input type="text" id="node-input-name" data-i18n="[placeholder]common.label.name">
|
2013-10-01 18:03:17 +02:00
|
|
|
</div>
|
2017-01-24 15:56:48 +01:00
|
|
|
<div class="form-row">
|
|
|
|
<label for="node-input-statusCode"><i class="fa fa-long-arrow-left"></i> <span data-i18n="httpin.label.status"></span></label>
|
|
|
|
<input type="text" id="node-input-statusCode" placeholder="msg.statusCode">
|
|
|
|
</div>
|
|
|
|
<div class="form-row" style="margin-bottom:0;">
|
|
|
|
<label><i class="fa fa-list"></i> <span data-i18n="httpin.label.headers"></span></label>
|
|
|
|
</div>
|
|
|
|
<div class="form-row node-input-headers-container-row">
|
|
|
|
<ol id="node-input-headers-container"></ol>
|
|
|
|
</div>
|
2015-05-26 22:11:14 +02:00
|
|
|
<div class="form-tips"><span data-i18n="[html]httpin.tip.res"></span></div>
|
2013-09-28 23:18:41 +02:00
|
|
|
</script>
|
2013-09-05 16:02:48 +02:00
|
|
|
|
2013-09-28 23:18:41 +02:00
|
|
|
<script type="text/x-red" data-help-name="http response">
|
2014-06-08 16:05:08 +02:00
|
|
|
<p>Sends responses back to http requests received from an HTTP Input node.</p>
|
|
|
|
<p>The response can be customised using the following message properties:</p>
|
|
|
|
<ul>
|
2014-07-14 10:26:09 +02:00
|
|
|
<li><code>payload</code> is sent as the body of the response</li>
|
2014-06-08 16:05:08 +02:00
|
|
|
<li><code>statusCode</code>, if set, is used as the response status code (default: 200)</li>
|
|
|
|
<li><code>headers</code>, if set, should be an object containing field/value
|
|
|
|
pairs to be added as response headers.</li>
|
2016-06-08 12:09:18 +02:00
|
|
|
<li><code>cookies</code>, if set, can be used to set or delete cookies.
|
2014-06-08 16:05:08 +02:00
|
|
|
</ul>
|
2017-01-24 15:56:48 +01:00
|
|
|
<p>The <code>statusCode</code> and <code>headers</code> can also be set within
|
|
|
|
the node itself. If a property is set within the node, it cannot be overridden
|
|
|
|
by the corresponding message property.</p>
|
2016-06-08 12:09:18 +02:00
|
|
|
<h3>Cookie handling</h3>
|
|
|
|
<p>The <code>cookies</code> property must be an object of name/value pairs.
|
|
|
|
The value can be either a string to set the value of the cookie with default
|
|
|
|
options, or it can be an object of options.<p>
|
|
|
|
<p>The following example sets two cookies - one called <code>name</code> with
|
|
|
|
a value of <code>nick</code>, the other called <code>session</code> with a
|
|
|
|
value of <code>1234</code> and an expiry set to 15 minutes.</p>
|
|
|
|
<pre>
|
|
|
|
msg.cookies = {
|
|
|
|
name: 'nick',
|
|
|
|
session: {
|
|
|
|
value: '1234',
|
|
|
|
maxAge: 900000
|
|
|
|
}
|
|
|
|
}</pre>
|
|
|
|
<p>The valid options include:</p>
|
|
|
|
<ul>
|
|
|
|
<li><code>domain</code> - (String) domain name for the cookie</li>
|
|
|
|
<li><code>expires</code> - (Date) expiry date in GMT. If not specified or set to 0, creates a session cookie</li>
|
|
|
|
<li><code>maxAge</code> - (String) expiry date as relative to the current time in milliseconds</li>
|
|
|
|
<li><code>path</code> - (String) path for the cookie. Defaults to /</li>
|
|
|
|
<li><code>value</code> - (String) the value to use for the cookie</li>
|
|
|
|
</ul>
|
|
|
|
<p>To delete a cookie, set its <code>value</code> to <code>null</code>.</p>
|
|
|
|
|
2013-09-28 23:18:41 +02:00
|
|
|
</script>
|
|
|
|
|
2013-10-01 18:03:17 +02:00
|
|
|
<script type="text/javascript">
|
2017-01-24 15:56:48 +01:00
|
|
|
(function() {
|
2014-04-15 23:49:39 +02:00
|
|
|
RED.nodes.registerType('http in',{
|
|
|
|
category: 'input',
|
|
|
|
color:"rgb(231, 231, 174)",
|
|
|
|
defaults: {
|
|
|
|
name: {value:""},
|
2016-10-28 09:37:33 +02:00
|
|
|
url: {value:"",required:true},
|
2015-04-24 20:53:38 +02:00
|
|
|
method: {value:"get",required:true},
|
2017-01-16 23:39:30 +01:00
|
|
|
upload: {value:false},
|
2015-07-08 23:12:52 +02:00
|
|
|
swaggerDoc: {type:"swagger-doc", required:false}
|
2014-04-15 23:49:39 +02:00
|
|
|
},
|
|
|
|
inputs:0,
|
|
|
|
outputs:1,
|
|
|
|
icon: "white-globe.png",
|
|
|
|
label: function() {
|
|
|
|
if (this.name) {
|
|
|
|
return this.name;
|
|
|
|
} else if (this.url) {
|
2014-10-08 12:03:18 +02:00
|
|
|
var root = RED.settings.httpNodeRoot;
|
2014-11-03 14:41:45 +01:00
|
|
|
if (root.slice(-1) != "/") {
|
2014-10-08 12:03:18 +02:00
|
|
|
root = root+"/";
|
|
|
|
}
|
|
|
|
if (this.url.charAt(0) == "/") {
|
|
|
|
root += this.url.slice(1);
|
|
|
|
} else {
|
|
|
|
root += this.url;
|
|
|
|
}
|
2014-04-15 23:49:39 +02:00
|
|
|
return "["+this.method+"] "+root;
|
|
|
|
} else {
|
|
|
|
return "http";
|
|
|
|
}
|
|
|
|
},
|
|
|
|
labelStyle: function() {
|
|
|
|
return this.name?"node_label_italic":"";
|
|
|
|
},
|
|
|
|
oneditprepare: function() {
|
2014-10-08 12:03:18 +02:00
|
|
|
var root = RED.settings.httpNodeRoot;
|
2014-11-03 14:41:45 +01:00
|
|
|
if (root.slice(-1) == "/") {
|
2014-10-08 12:03:18 +02:00
|
|
|
root = root.slice(0,-1);
|
|
|
|
}
|
2014-04-15 23:49:39 +02:00
|
|
|
if (root == "") {
|
|
|
|
$("#node-input-tip").hide();
|
|
|
|
} else {
|
|
|
|
$("#node-input-path").html(root);
|
|
|
|
$("#node-input-tip").show();
|
|
|
|
}
|
2015-05-13 14:54:47 +02:00
|
|
|
if(!RED.nodes.getType("swagger-doc")){
|
|
|
|
$('.row-swagger-doc').hide();
|
|
|
|
}
|
2017-01-16 23:39:30 +01:00
|
|
|
$("#node-input-method").change(function() {
|
|
|
|
if ($(this).val() === "post") {
|
|
|
|
$(".form-row-http-in-upload").show();
|
|
|
|
} else {
|
|
|
|
$(".form-row-http-in-upload").hide();
|
|
|
|
}
|
|
|
|
}).change();
|
|
|
|
|
|
|
|
|
2014-04-15 23:49:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
});
|
2017-01-24 15:56:48 +01:00
|
|
|
var headerTypes = [
|
|
|
|
{value:"content-type",label:"Content-Type",hasValue: false},
|
|
|
|
{value:"location",label:"Location",hasValue: false},
|
|
|
|
{value:"other",label:"other",icon:"red/images/typedInput/az.png"}
|
|
|
|
]
|
|
|
|
var contentTypes = [
|
|
|
|
{value:"application/json",label:"application/json",hasValue: false},
|
|
|
|
{value:"application/xml",label:"application/xml",hasValue: false},
|
|
|
|
{value:"text/css",label:"text/css",hasValue: false},
|
|
|
|
{value:"text/html",label:"text/html",hasValue: false},
|
|
|
|
{value:"text/plain",label:"text/plain",hasValue: false},
|
|
|
|
{value:"image/gif",label:"image/gif",hasValue: false},
|
|
|
|
{value:"image/png",label:"image/png",hasValue: false},
|
|
|
|
{value:"other",label:"other",icon:"red/images/typedInput/az.png"}
|
|
|
|
];
|
2014-06-08 16:05:08 +02:00
|
|
|
|
2014-04-15 23:49:39 +02:00
|
|
|
RED.nodes.registerType('http response',{
|
|
|
|
category: 'output',
|
|
|
|
color:"rgb(231, 231, 174)",
|
|
|
|
defaults: {
|
2017-01-24 15:56:48 +01:00
|
|
|
name: {value:""},
|
|
|
|
statusCode: {value:"",validate: RED.validators.number(true)},
|
|
|
|
headers: {value:{}}
|
2014-04-15 23:49:39 +02:00
|
|
|
},
|
|
|
|
inputs:1,
|
|
|
|
outputs:0,
|
|
|
|
align: "right",
|
|
|
|
icon: "white-globe.png",
|
|
|
|
label: function() {
|
2017-01-24 15:56:48 +01:00
|
|
|
return this.name||("http"+(this.statusCode?" ("+this.statusCode+")":""));
|
2014-04-15 23:49:39 +02:00
|
|
|
},
|
|
|
|
labelStyle: function() {
|
|
|
|
return this.name?"node_label_italic":"";
|
2017-01-24 15:56:48 +01:00
|
|
|
},
|
|
|
|
oneditprepare: function() {
|
|
|
|
function resizeRule(rule) {
|
|
|
|
var newWidth = rule.width();
|
|
|
|
rule.find('.red-ui-typedInput').typedInput("width",(newWidth-15)/2);
|
|
|
|
|
|
|
|
}
|
|
|
|
var headerList = $("#node-input-headers-container").css('min-height','150px').css('min-width','450px').editableList({
|
|
|
|
addItem: function(container,i,header) {
|
|
|
|
var row = $('<div/>').appendTo(container);
|
|
|
|
var propertyName = $('<input/>',{class:"node-input-header-name",type:"text"})
|
|
|
|
.appendTo(row)
|
|
|
|
.typedInput({types:headerTypes});
|
|
|
|
|
|
|
|
var propertyValue = $('<input/>',{class:"node-input-header-value",type:"text",style:"margin-left: 10px"})
|
|
|
|
.appendTo(row)
|
|
|
|
.typedInput({types:
|
|
|
|
header.h === 'content-type'?contentTypes:[{value:"other",label:"other",icon:"red/images/typedInput/az.png"}]
|
|
|
|
});
|
|
|
|
|
|
|
|
var matchedType = headerTypes.filter(function(ht) {
|
|
|
|
return ht.value === header.h
|
|
|
|
});
|
|
|
|
if (matchedType.length === 0) {
|
|
|
|
propertyName.typedInput('type','other');
|
|
|
|
propertyName.typedInput('value',header.h);
|
|
|
|
propertyValue.typedInput('value',header.v);
|
|
|
|
} else {
|
|
|
|
propertyName.typedInput('type',header.h);
|
|
|
|
|
|
|
|
if (header.h === "content-type") {
|
|
|
|
matchedType = contentTypes.filter(function(ct) {
|
|
|
|
return ct.value === header.v;
|
|
|
|
});
|
|
|
|
if (matchedType.length === 0) {
|
|
|
|
propertyValue.typedInput('type','other');
|
|
|
|
propertyValue.typedInput('value',header.v);
|
|
|
|
} else {
|
|
|
|
propertyValue.typedInput('type',header.v);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
propertyValue.typedInput('value',header.v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
matchedType = headerTypes.filter(function(ht) {
|
|
|
|
return ht.value === header.h
|
|
|
|
});
|
|
|
|
if (matchedType.length === 0) {
|
|
|
|
propertyName.typedInput('type','other');
|
|
|
|
propertyName.typedInput('value',header.h);
|
|
|
|
} else {
|
|
|
|
propertyName.typedInput('type',header.h);
|
|
|
|
}
|
|
|
|
|
|
|
|
propertyName.on('change',function(event) {
|
|
|
|
var type = propertyName.typedInput('type');
|
|
|
|
if (type === 'content-type') {
|
|
|
|
propertyValue.typedInput('types',contentTypes);
|
|
|
|
} else {
|
|
|
|
propertyValue.typedInput('types',[{value:"other",label:"other",icon:"red/images/typedInput/az.png"}]);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
resizeRule(container);
|
|
|
|
},
|
|
|
|
resizeItem: resizeRule,
|
|
|
|
removable: true
|
|
|
|
});
|
|
|
|
|
|
|
|
if (this.headers) {
|
|
|
|
for (var key in this.headers) {
|
|
|
|
if (this.headers.hasOwnProperty(key)) {
|
|
|
|
headerList.editableList('addItem',{h:key,v:this.headers[key]});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
oneditsave: function() {
|
|
|
|
var headers = $("#node-input-headers-container").editableList('items');
|
|
|
|
var node = this;
|
|
|
|
node.headers = {};
|
|
|
|
headers.each(function(i) {
|
|
|
|
var header = $(this);
|
|
|
|
var keyType = header.find(".node-input-header-name").typedInput('type');
|
|
|
|
var keyValue = header.find(".node-input-header-name").typedInput('value');
|
|
|
|
var valueType = header.find(".node-input-header-value").typedInput('type');
|
|
|
|
var valueValue = header.find(".node-input-header-value").typedInput('value');
|
|
|
|
var key = keyType;
|
|
|
|
var value = valueType;
|
|
|
|
if (keyType === 'other') {
|
|
|
|
key = keyValue;
|
|
|
|
}
|
|
|
|
if (valueType === 'other') {
|
|
|
|
value = valueValue;
|
|
|
|
}
|
|
|
|
if (key !== '') {
|
|
|
|
node.headers[key] = value;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
oneditresize: function(size) {
|
|
|
|
var rows = $("#dialog-form>div:not(.node-input-headers-container-row)");
|
|
|
|
var height = size.height;
|
|
|
|
for (var i=0; i<rows.size(); i++) {
|
|
|
|
height -= $(rows[i]).outerHeight(true);
|
|
|
|
}
|
|
|
|
var editorRow = $("#dialog-form>div.node-input-headers-container-row");
|
|
|
|
height -= (parseInt(editorRow.css("marginTop"))+parseInt(editorRow.css("marginBottom")));
|
|
|
|
|
|
|
|
$("#node-input-headers-container").editableList('height',height);
|
2014-04-15 23:49:39 +02:00
|
|
|
}
|
|
|
|
});
|
2017-01-24 15:56:48 +01:00
|
|
|
})();
|
2013-09-05 16:02:48 +02:00
|
|
|
</script>
|