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

153 lines
4.9 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(process.env.NODE_RED_HOME+"/red/red");
2013-09-05 16:02:48 +02:00
var util = require("util");
var http = require("follow-redirects").http;
var https = require("follow-redirects").https;
2013-10-01 18:03:17 +02:00
var urllib = require("url");
2013-10-30 22:18:07 +01:00
var express = require("express");
2014-02-12 22:30:49 +01:00
var getBody = require('raw-body');
2013-10-30 22:18:07 +01:00
var jsonParser = express.json();
var urlencParser = express.urlencoded();
2013-09-05 16:02:48 +02:00
2014-02-12 22:30:49 +01:00
function rawBodyParser(req, res, next) {
if (req._body) return next();
req.body = "";
req._body = true;
getBody(req, {
limit: '1mb',
length: req.headers['content-length'],
encoding: 'utf8'
}, function (err, buf) {
if (err) return next(err);
req.body = buf;
next();
});
}
2013-09-05 16:02:48 +02:00
function HTTPIn(n) {
RED.nodes.createNode(this,n);
this.url = n.url;
this.method = n.method;
2013-09-05 16:02:48 +02:00
var node = this;
2014-02-12 22:30:49 +01:00
this.errorHandler = function(err,req,res,next) {
node.warn(err);
res.send(500);
};
this.callback = function(req,res) {
if (node.method == "post") { node.send({req:req,res:res,payload:req.body}); }
else if (node.method == "get") { node.send({req:req,res:res,payload:req.query}); }
else node.send({req:req,res:res});
}
if (this.method == "get") {
2014-02-16 01:39:30 +01:00
RED.httpNode.get(this.url,this.callback,this.errorHandler);
} else if (this.method == "post") {
2014-02-16 01:39:30 +01:00
RED.httpNode.post(this.url,jsonParser,urlencParser,rawBodyParser,this.callback,this.errorHandler);
} else if (this.method == "put") {
2014-02-16 01:39:30 +01:00
RED.httpNode.put(this.url,jsonParser,urlencParser,rawBodyParser,this.callback,this.errorHandler);
} else if (this.method == "delete") {
2014-02-16 01:39:30 +01:00
RED.httpNode.delete(this.url,this.callback,errorHandler);
}
this.on("close",function() {
2014-02-16 01:39:30 +01:00
var routes = RED.httpNode.routes[this.method];
for (var i in routes) {
if (routes[i].path == this.url) {
routes.splice(i,1);
//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) {
msg.res.set(msg.headers);
}
var statusCode = msg.statusCode || 200;
if (typeof msg.payload == "object" && !Buffer.isBuffer(msg.payload)) {
msg.res.jsonp(statusCode,msg.payload);
} else {
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 nodeUrl = n.url;
2014-02-17 23:16:42 +01:00
var nodeMethod = n.method || "GET";
var node = this;
this.on("input",function(msg) {
var url = msg.url||nodeUrl;
2014-02-17 23:16:42 +01:00
var method = (msg.method||nodeMethod).toUpperCase();
var opts = urllib.parse(url);
2014-02-17 23:16:42 +01:00
opts.method = method;
if (msg.headers) {
opts.headers = msg.headers;
}
var req = ((/^https/.test(url))?https:http).request(opts,function(res) {
res.setEncoding('utf8');
msg.statusCode = res.statusCode;
msg.headers = res.headers;
msg.payload = "";
res.on('data',function(chunk) {
msg.payload += chunk;
});
res.on('end',function() {
node.send(msg);
});
});
req.on('error',function(err) {
msg.payload = err.toString();
msg.statusCode = err.code;
node.send(msg);
});
if (msg.payload && (method == "POST" || method == "PUT") ) {
if (typeof msg.payload === "string" || Buffer.isBuffer(msg.payload)) {
2013-10-01 18:03:17 +02:00
req.write(msg.payload);
} else if (typeof msg.payload == "number") {
req.write(msg.payload+"");
} else {
req.write(JSON.stringify(msg.payload));
}
}
req.end();
});
2013-10-01 18:03:17 +02:00
}
RED.nodes.registerType("http request",HTTPRequest);