node-red/nodes/io/21-httpin.js

125 lines
3.7 KiB
JavaScript
Raw Normal View History

2013-09-05 16:02:48 +02:00
/**
* 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.
**/
var RED = require("../../red/red");
var util = require("util");
2013-10-01 18:03:17 +02:00
var http = require("http");
var https = require("https");
var urllib = require("url");
var bodyParser = require("express").bodyParser();
2013-09-05 16:02:48 +02:00
function HTTPIn(n) {
RED.nodes.createNode(this,n);
this.url = n.url;
this.method = n.method;
var node = this;
this.callback = function(req,res) {
node.send({req:req,res:res});
}
if (this.method == "get") {
RED.app.get(this.url,this.callback);
} else if (this.method == "post") {
2013-10-01 18:03:17 +02:00
RED.app.post(this.url,bodyParser,this.callback);
2013-09-05 16:02:48 +02:00
} else if (this.method == "put") {
2013-10-01 18:03:17 +02:00
RED.app.put(this.url,bodyParser,this.callback);
2013-09-05 16:02:48 +02:00
} else if (this.method == "delete") {
RED.app.delete(this.url,this.callback);
}
this.on("close",function() {
var routes = RED.app.routes[this.method];
for (var i in routes) {
if (routes[i].path == this.url) {
routes.splice(i,1);
2013-10-01 18:03:17 +02:00
//break;
}
}
});
2013-09-05 16:02:48 +02:00
}
2013-09-18 10:21:12 +02:00
RED.nodes.registerType("http in",HTTPIn);
2013-09-05 16:02:48 +02:00
function HTTPOut(n) {
RED.nodes.createNode(this,n);
var node = this;
this.on("input",function(msg) {
if (msg.res) {
if (msg.headers) {
res.set(msg.headers);
}
2013-10-01 18:03:17 +02:00
var statusCode = msg.statusCode || 200;
msg.res.send(statusCode,msg.payload);
} else {
node.warn("No response object");
}
});
2013-09-05 16:02:48 +02:00
}
RED.nodes.registerType("http response",HTTPOut);
2013-10-01 18:03:17 +02:00
function HTTPRequest(n) {
RED.nodes.createNode(this,n);
var url = n.url;
var method = n.method || "GET";
var httplib = (/^https/.test(url))?https:http;
var node = this;
this.on("input",function(msg) {
if (msg.url) {
httplib = (/^https/.test(msg.url))?https:http;
}
2013-10-01 18:03:17 +02:00
var opts = urllib.parse(msg.url||url);
opts.method = (msg.method||method).toUpperCase();
2013-10-01 18:03:17 +02:00
if (msg.headers) {
opts.headers = msg.headers;
2013-10-01 18:03:17 +02:00
}
var req = httplib.request(opts,function(res) {
res.setEncoding('utf8');
var message = {
statusCode: res.statusCode,
headers: res.headers,
payload: ""
};
res.on('data',function(chunk) {
message.payload += chunk;
});
res.on('end',function() {
node.send(message);
});
});
req.on('error',function(err) {
msg.payload = err.toString();
msg.statusCode = err.code;
node.send(msg);
});
2013-10-23 09:42:14 +02:00
if (msg.payload && (method == "POST" || method == "PUT") ) {
2013-10-01 18:03:17 +02:00
if (typeof msg.payload === "string" || Buffer.isBuffer(msg.payload)) {
req.write(msg.payload);
} else if (typeof msg.payload == "number") {
req.write(msg.payload+"");
} else {
req.write(JSON.stringify(msg.payload));
}
}
req.end();
});
}
RED.nodes.registerType("http request",HTTPRequest);