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.
|
|
|
|
**/
|
|
|
|
|
2013-11-14 16:44:54 +01:00
|
|
|
var RED = require(process.env.NODE_RED_HOME+"/red/red");
|
2013-09-05 16:02:48 +02:00
|
|
|
var util = require("util");
|
2013-12-20 12:11:50 +01:00
|
|
|
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');
|
2014-02-17 23:32:53 +01:00
|
|
|
var cors = require('cors');
|
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) {
|
2013-10-23 22:27:54 +02:00
|
|
|
RED.nodes.createNode(this,n);
|
|
|
|
this.url = n.url;
|
|
|
|
this.method = n.method;
|
2013-09-05 16:02:48 +02:00
|
|
|
|
2013-10-23 22:27:54 +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);
|
|
|
|
};
|
|
|
|
|
2013-10-23 22:27:54 +02:00
|
|
|
this.callback = function(req,res) {
|
2014-02-17 23:32:53 +01:00
|
|
|
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});
|
|
|
|
}
|
2013-10-23 22:27:54 +02:00
|
|
|
}
|
2014-02-17 23:32:53 +01:00
|
|
|
|
|
|
|
var corsHandler = function(req,res,next) { next(); }
|
|
|
|
|
|
|
|
if (RED.settings.httpNodeCors) {
|
|
|
|
corsHandler = cors(RED.settings.httpNodeCors);
|
|
|
|
RED.httpNode.options(this.url,corsHandler);
|
|
|
|
}
|
|
|
|
|
2013-10-23 22:27:54 +02:00
|
|
|
if (this.method == "get") {
|
2014-02-17 23:32:53 +01:00
|
|
|
RED.httpNode.get(this.url,corsHandler,this.callback,this.errorHandler);
|
2013-10-23 22:27:54 +02:00
|
|
|
} else if (this.method == "post") {
|
2014-02-17 23:32:53 +01:00
|
|
|
RED.httpNode.post(this.url,corsHandler,jsonParser,urlencParser,rawBodyParser,this.callback,this.errorHandler);
|
2013-10-23 22:27:54 +02:00
|
|
|
} else if (this.method == "put") {
|
2014-02-17 23:32:53 +01:00
|
|
|
RED.httpNode.put(this.url,corsHandler,jsonParser,urlencParser,rawBodyParser,this.callback,this.errorHandler);
|
2013-10-23 22:27:54 +02:00
|
|
|
} else if (this.method == "delete") {
|
2014-02-17 23:32:53 +01:00
|
|
|
RED.httpNode.delete(this.url,corsHandler,this.callback,errorHandler);
|
2013-10-23 22:27:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
this.on("close",function() {
|
2014-02-17 23:32:53 +01:00
|
|
|
var routes = RED.httpNode.routes[this.method];
|
|
|
|
for (var i = 0; i<routes.length; i++) {
|
|
|
|
if (routes[i].path == this.url) {
|
|
|
|
routes.splice(i,1);
|
|
|
|
//break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (RED.settings.httpNodeCors) {
|
|
|
|
var routes = RED.httpNode.routes['options'];
|
|
|
|
for (var i = 0; i<routes.length; i++) {
|
2013-10-23 22:27:54 +02:00
|
|
|
if (routes[i].path == this.url) {
|
|
|
|
routes.splice(i,1);
|
|
|
|
//break;
|
|
|
|
}
|
|
|
|
}
|
2014-02-17 23:32:53 +01:00
|
|
|
}
|
2013-10-23 22:27:54 +02:00
|
|
|
});
|
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
|
|
|
|
2013-09-28 23:18:41 +02:00
|
|
|
|
|
|
|
function HTTPOut(n) {
|
2013-10-23 22:27:54 +02:00
|
|
|
RED.nodes.createNode(this,n);
|
|
|
|
var node = this;
|
|
|
|
this.on("input",function(msg) {
|
|
|
|
if (msg.res) {
|
|
|
|
if (msg.headers) {
|
2013-11-06 22:08:00 +01:00
|
|
|
msg.res.set(msg.headers);
|
2013-10-23 22:27:54 +02:00
|
|
|
}
|
|
|
|
var statusCode = msg.statusCode || 200;
|
2013-12-08 20:28:52 +01:00
|
|
|
if (typeof msg.payload == "object" && !Buffer.isBuffer(msg.payload)) {
|
|
|
|
msg.res.jsonp(statusCode,msg.payload);
|
|
|
|
} else {
|
|
|
|
msg.res.send(statusCode,msg.payload);
|
|
|
|
}
|
2013-10-23 22:27:54 +02:00
|
|
|
} else {
|
|
|
|
node.warn("No response object");
|
|
|
|
}
|
|
|
|
});
|
2013-09-05 16:02:48 +02:00
|
|
|
}
|
|
|
|
|
2013-09-28 23:18:41 +02:00
|
|
|
RED.nodes.registerType("http response",HTTPOut);
|
2013-10-01 18:03:17 +02:00
|
|
|
|
|
|
|
function HTTPRequest(n) {
|
2013-10-23 22:27:54 +02:00
|
|
|
RED.nodes.createNode(this,n);
|
2014-02-06 23:14:27 +01:00
|
|
|
var nodeUrl = n.url;
|
2014-02-17 23:16:42 +01:00
|
|
|
var nodeMethod = n.method || "GET";
|
2013-10-23 22:27:54 +02:00
|
|
|
var node = this;
|
2014-02-19 21:31:42 +01:00
|
|
|
var credentials = RED.nodes.getCredentials(n.id);
|
|
|
|
if (credentials) {
|
|
|
|
this.username = credentials.user;
|
|
|
|
this.password = credentials.password;
|
|
|
|
}
|
2013-10-23 22:27:54 +02:00
|
|
|
this.on("input",function(msg) {
|
2014-02-06 23:14:27 +01:00
|
|
|
|
|
|
|
var url = msg.url||nodeUrl;
|
2014-02-17 23:16:42 +01:00
|
|
|
var method = (msg.method||nodeMethod).toUpperCase();
|
2014-02-06 23:14:27 +01:00
|
|
|
var opts = urllib.parse(url);
|
2014-02-17 23:16:42 +01:00
|
|
|
opts.method = method;
|
2013-10-23 22:27:54 +02:00
|
|
|
if (msg.headers) {
|
|
|
|
opts.headers = msg.headers;
|
|
|
|
}
|
2014-02-19 21:31:42 +01:00
|
|
|
if (credentials) {
|
|
|
|
opts.auth = credentials.user+":"+credentials.password;
|
|
|
|
}
|
2014-02-06 23:14:27 +01:00
|
|
|
var req = ((/^https/.test(url))?https:http).request(opts,function(res) {
|
2013-10-23 22:27:54 +02:00
|
|
|
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);
|
|
|
|
});
|
2013-11-11 15:25:50 +01:00
|
|
|
if (msg.payload && (method == "POST" || method == "PUT") ) {
|
2013-10-23 22:27:54 +02:00
|
|
|
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));
|
|
|
|
}
|
2013-10-23 22:27:54 +02:00
|
|
|
}
|
|
|
|
req.end();
|
|
|
|
|
|
|
|
|
|
|
|
});
|
2013-10-01 18:03:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
RED.nodes.registerType("http request",HTTPRequest);
|
2014-02-19 21:31:42 +01:00
|
|
|
|
|
|
|
var querystring = require('querystring');
|
|
|
|
|
|
|
|
RED.httpAdmin.get('/http-request/:id',function(req,res) {
|
|
|
|
var credentials = RED.nodes.getCredentials(req.params.id);
|
|
|
|
if (credentials) {
|
|
|
|
res.send(JSON.stringify({user:credentials.user,hasPassword:(credentials.password&&credentials.password!="")}));
|
|
|
|
} else {
|
|
|
|
res.send(JSON.stringify({}));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
RED.httpAdmin.delete('/http-request/:id',function(req,res) {
|
|
|
|
RED.nodes.deleteCredentials(req.params.id);
|
|
|
|
res.send(200);
|
|
|
|
});
|
|
|
|
|
|
|
|
RED.httpAdmin.post('/http-request/:id',function(req,res) {
|
|
|
|
var body = "";
|
|
|
|
req.on('data', function(chunk) {
|
|
|
|
body+=chunk;
|
|
|
|
});
|
|
|
|
req.on('end', function(){
|
|
|
|
var newCreds = querystring.parse(body);
|
|
|
|
var credentials = RED.nodes.getCredentials(req.params.id)||{};
|
|
|
|
if (newCreds.user == null || newCreds.user == "") {
|
|
|
|
delete credentials.user;
|
|
|
|
} else {
|
|
|
|
credentials.user = newCreds.user;
|
|
|
|
}
|
|
|
|
if (newCreds.password == "") {
|
|
|
|
delete credentials.password;
|
|
|
|
} else {
|
|
|
|
credentials.password = newCreds.password||credentials.password;
|
|
|
|
}
|
|
|
|
RED.nodes.addCredentials(req.params.id,credentials);
|
|
|
|
res.send(200);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|