mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Add no_proxy to http-request node.
also make it support HTTP_PROXY and NO_PROXY (ie uppercase)
This commit is contained in:
parent
38ab1550d2
commit
956050434f
@ -185,6 +185,13 @@ module.exports = function(RED) {
|
|||||||
var nodeMethod = n.method || "GET";
|
var nodeMethod = n.method || "GET";
|
||||||
this.ret = n.ret || "txt";
|
this.ret = n.ret || "txt";
|
||||||
var node = this;
|
var node = this;
|
||||||
|
|
||||||
|
var prox, noprox;
|
||||||
|
if (process.env.http_proxy != null) { prox = process.env.http_proxy; }
|
||||||
|
if (process.env.HTTP_PROXY != null) { prox = process.env.HTTP_PROXY; }
|
||||||
|
if (process.env.no_proxy != null) { noprox = process.env.no_proxy.split(","); }
|
||||||
|
if (process.env.NO_PROXY != null) { noprox = process.env.NO_PROXY.split(","); }
|
||||||
|
|
||||||
this.on("input",function(msg) {
|
this.on("input",function(msg) {
|
||||||
var preRequestTimestamp = process.hrtime();
|
var preRequestTimestamp = process.hrtime();
|
||||||
node.status({fill:"blue",shape:"dot",text:"requesting"});
|
node.status({fill:"blue",shape:"dot",text:"requesting"});
|
||||||
@ -256,8 +263,14 @@ module.exports = function(RED) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
var urltotest = url;
|
var urltotest = url;
|
||||||
if (process.env.http_proxy != null) {
|
var noproxy;
|
||||||
var match = process.env.http_proxy.match(/^(http:\/\/)?([^:\/]+)(:([0-9]+))?/i);
|
if (noprox) {
|
||||||
|
for (var i in noprox) {
|
||||||
|
if (url.indexOf(noprox[i]) !== -1) { noproxy=true; }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (prox && !noproxy) {
|
||||||
|
var match = prox.match(/^(http:\/\/)?([^:\/]+)(:([0-9]+))?/i);
|
||||||
if (match) {
|
if (match) {
|
||||||
opts.protocol = "http:";
|
opts.protocol = "http:";
|
||||||
opts.headers['Host'] = opts.host;
|
opts.headers['Host'] = opts.host;
|
||||||
|
Loading…
Reference in New Issue
Block a user