Remove global access + reduce header list

This commit is contained in:
Marcus Davies 2024-03-12 19:26:27 +00:00
parent 7916dc9c05
commit 7e10093bb8
2 changed files with 10 additions and 4 deletions

View File

@ -41,14 +41,20 @@
(function() {
const headerTypes = [
/*
{ value: "Accept", label: "Accept", hasValue: false },
{ value: "Accept-Encoding", label: "Accept-Encoding", hasValue: false },
{ value: "Accept-Language", label: "Accept-Language", hasValue: false },
*/
{ value: "Authorization", label: "Authorization", hasValue: false },
/*
{ value: "Content-Type", label: "Content-Type", hasValue: false },
{ value: "Cache-Control", label: "Cache-Control", hasValue: false },
*/
{ value: "User-Agent", label: "User-Agent", hasValue: false },
/*
{ value: "Location", label: "Location", hasValue: false },
*/
{ value: "other", label: RED._("node-red:httpin.label.other"),
hasValue: true, icon: "red/images/typedInput/az.svg" },
]
@ -57,9 +63,9 @@
const defaultOptions = [
{ value: "other", label: RED._("node-red:httpin.label.other"),
hasValue: true, icon: "red/images/typedInput/az.svg" },
{ value: "global", label: "global.", hasValue: true },
{ value: "env", label: "env", hasValue: true },
];
/*
headerOptions["accept"] = [
{ value: "text/plain", label: "text/plain", hasValue: false },
{ value: "text/html", label: "text/html", hasValue: false },
@ -67,6 +73,7 @@
{ value: "application/xml", label: "application/xml", hasValue: false },
...defaultOptions,
];
headerOptions["accept-encoding"] = [
{ value: "gzip", label: "gzip", hasValue: false },
{ value: "deflate", label: "deflate", hasValue: false },
@ -114,7 +121,7 @@
{ value: "no-cache", label: "no-cache", hasValue: false },
...defaultOptions,
];
*/
headerOptions["user-agent"] = [
{ value: "Mozilla/5.0", label: "Mozilla/5.0", hasValue: false },
...defaultOptions,
@ -346,7 +353,7 @@
propertyName.typedInput('value', keyValue);
}
if(valueType == "other" || valueType == "flow" || valueType == "global" || valueType == "env" ) {
if(valueType == "other" || valueType == "env" ) {
propertyValue.typedInput('type', valueType);
propertyValue.typedInput('value', valueValue);
} else if (headerValueIsAPreset(propertyName.typedInput('type'), valueType)) {

View File

@ -118,7 +118,6 @@ module.exports = function(RED) {
break;
case 'env':
case 'global':
headerValue = RED.util.evaluateNodeProperty(valueValue,valueType,node);
break;