mirror of
https://github.com/node-red/node-red.git
synced 2025-03-01 10:36:34 +00:00
Remove global access + reduce header list
This commit is contained in:
parent
7916dc9c05
commit
7e10093bb8
@ -41,14 +41,20 @@
|
|||||||
(function() {
|
(function() {
|
||||||
|
|
||||||
const headerTypes = [
|
const headerTypes = [
|
||||||
|
/*
|
||||||
{ value: "Accept", label: "Accept", hasValue: false },
|
{ value: "Accept", label: "Accept", hasValue: false },
|
||||||
{ value: "Accept-Encoding", label: "Accept-Encoding", hasValue: false },
|
{ value: "Accept-Encoding", label: "Accept-Encoding", hasValue: false },
|
||||||
{ value: "Accept-Language", label: "Accept-Language", hasValue: false },
|
{ value: "Accept-Language", label: "Accept-Language", hasValue: false },
|
||||||
|
*/
|
||||||
{ value: "Authorization", label: "Authorization", hasValue: false },
|
{ value: "Authorization", label: "Authorization", hasValue: false },
|
||||||
|
/*
|
||||||
{ value: "Content-Type", label: "Content-Type", hasValue: false },
|
{ value: "Content-Type", label: "Content-Type", hasValue: false },
|
||||||
{ value: "Cache-Control", label: "Cache-Control", hasValue: false },
|
{ value: "Cache-Control", label: "Cache-Control", hasValue: false },
|
||||||
|
*/
|
||||||
{ value: "User-Agent", label: "User-Agent", hasValue: false },
|
{ value: "User-Agent", label: "User-Agent", hasValue: false },
|
||||||
|
/*
|
||||||
{ value: "Location", label: "Location", hasValue: false },
|
{ value: "Location", label: "Location", hasValue: false },
|
||||||
|
*/
|
||||||
{ value: "other", label: RED._("node-red:httpin.label.other"),
|
{ value: "other", label: RED._("node-red:httpin.label.other"),
|
||||||
hasValue: true, icon: "red/images/typedInput/az.svg" },
|
hasValue: true, icon: "red/images/typedInput/az.svg" },
|
||||||
]
|
]
|
||||||
@ -57,9 +63,9 @@
|
|||||||
const defaultOptions = [
|
const defaultOptions = [
|
||||||
{ value: "other", label: RED._("node-red:httpin.label.other"),
|
{ value: "other", label: RED._("node-red:httpin.label.other"),
|
||||||
hasValue: true, icon: "red/images/typedInput/az.svg" },
|
hasValue: true, icon: "red/images/typedInput/az.svg" },
|
||||||
{ value: "global", label: "global.", hasValue: true },
|
|
||||||
{ value: "env", label: "env", hasValue: true },
|
{ value: "env", label: "env", hasValue: true },
|
||||||
];
|
];
|
||||||
|
/*
|
||||||
headerOptions["accept"] = [
|
headerOptions["accept"] = [
|
||||||
{ value: "text/plain", label: "text/plain", hasValue: false },
|
{ value: "text/plain", label: "text/plain", hasValue: false },
|
||||||
{ value: "text/html", label: "text/html", hasValue: false },
|
{ value: "text/html", label: "text/html", hasValue: false },
|
||||||
@ -67,6 +73,7 @@
|
|||||||
{ value: "application/xml", label: "application/xml", hasValue: false },
|
{ value: "application/xml", label: "application/xml", hasValue: false },
|
||||||
...defaultOptions,
|
...defaultOptions,
|
||||||
];
|
];
|
||||||
|
|
||||||
headerOptions["accept-encoding"] = [
|
headerOptions["accept-encoding"] = [
|
||||||
{ value: "gzip", label: "gzip", hasValue: false },
|
{ value: "gzip", label: "gzip", hasValue: false },
|
||||||
{ value: "deflate", label: "deflate", hasValue: false },
|
{ value: "deflate", label: "deflate", hasValue: false },
|
||||||
@ -114,7 +121,7 @@
|
|||||||
{ value: "no-cache", label: "no-cache", hasValue: false },
|
{ value: "no-cache", label: "no-cache", hasValue: false },
|
||||||
...defaultOptions,
|
...defaultOptions,
|
||||||
];
|
];
|
||||||
|
*/
|
||||||
headerOptions["user-agent"] = [
|
headerOptions["user-agent"] = [
|
||||||
{ value: "Mozilla/5.0", label: "Mozilla/5.0", hasValue: false },
|
{ value: "Mozilla/5.0", label: "Mozilla/5.0", hasValue: false },
|
||||||
...defaultOptions,
|
...defaultOptions,
|
||||||
@ -346,7 +353,7 @@
|
|||||||
propertyName.typedInput('value', keyValue);
|
propertyName.typedInput('value', keyValue);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(valueType == "other" || valueType == "flow" || valueType == "global" || valueType == "env" ) {
|
if(valueType == "other" || valueType == "env" ) {
|
||||||
propertyValue.typedInput('type', valueType);
|
propertyValue.typedInput('type', valueType);
|
||||||
propertyValue.typedInput('value', valueValue);
|
propertyValue.typedInput('value', valueValue);
|
||||||
} else if (headerValueIsAPreset(propertyName.typedInput('type'), valueType)) {
|
} else if (headerValueIsAPreset(propertyName.typedInput('type'), valueType)) {
|
||||||
|
@ -118,7 +118,6 @@ module.exports = function(RED) {
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case 'env':
|
case 'env':
|
||||||
case 'global':
|
|
||||||
headerValue = RED.util.evaluateNodeProperty(valueValue,valueType,node);
|
headerValue = RED.util.evaluateNodeProperty(valueValue,valueType,node);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user