/** * Copyright 2013,2015 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. **/ module.exports = function(RED) { "use strict"; var http = require("follow-redirects").http; var https = require("follow-redirects").https; var urllib = require("url"); var express = require("express"); var getBody = require('raw-body'); var mustache = require("mustache"); var querystring = require("querystring"); var cors = require('cors'); var jsonParser = express.json(); var urlencParser = express.urlencoded(); var onHeaders = require('on-headers'); 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(); }); } function HTTPIn(n) { RED.nodes.createNode(this,n); if (RED.settings.httpNodeRoot !== false) { this.url = n.url; this.method = n.method; this.swaggerDoc = n.swaggerDoc; var node = this; 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}); } }; var corsHandler = function(req,res,next) { next(); } if (RED.settings.httpNodeCors) { corsHandler = cors(RED.settings.httpNodeCors); RED.httpNode.options(this.url,corsHandler); } var metricsHandler = function(req,res,next) { next(); } if (this.metric()) { metricsHandler = function(req, res, next) { var startAt = process.hrtime(); onHeaders(res, function() { if(res._msgId) { var diff = process.hrtime(startAt); var ms = diff[0] * 1e3 + diff[1] * 1e-6; var metricResponseTime = ms.toFixed(3); var metricContentLength = res._headers["content-length"]; //assuming that _id has been set for res._metrics in HttpOut node! node.metric("response.time.millis", {_id:res._msgId} , metricResponseTime); node.metric("response.content-length.bytes", {_id:res._msgId} , metricContentLength); } }); next(); }; } if (this.method == "get") { RED.httpNode.get(this.url,corsHandler,metricsHandler,this.callback,this.errorHandler); } else if (this.method == "post") { RED.httpNode.post(this.url,corsHandler,metricsHandler,jsonParser,urlencParser,rawBodyParser,this.callback,this.errorHandler); } else if (this.method == "put") { RED.httpNode.put(this.url,corsHandler,metricsHandler,jsonParser,urlencParser,rawBodyParser,this.callback,this.errorHandler); } else if (this.method == "delete") { RED.httpNode.delete(this.url,corsHandler,metricsHandler,this.callback,this.errorHandler); } this.on("close",function() { var routes = RED.httpNode.routes[this.method]; for (var i = 0; i