mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-21 23:43:15 +01:00
fix: query parameters containing a colon (:) are not parsed correctly when changed
Adjust Bruno grammar so that dictionary key may optionally be quoted. Automatically quote query parameter keys if they contain ':' or '"'. Quoted keys stored in .bru files now support escaping, so it is possible to store keys that themselves contain '"' character.
This commit is contained in:
parent
4ef5534d41
commit
d64dffe7fa
@ -43,8 +43,14 @@ const grammar = ohm.grammar(`Bru {
|
|||||||
// Dictionary Blocks
|
// Dictionary Blocks
|
||||||
dictionary = st* "{" pairlist? tagend
|
dictionary = st* "{" pairlist? tagend
|
||||||
pairlist = optionalnl* pair (~tagend stnl* pair)* (~tagend space)*
|
pairlist = optionalnl* pair (~tagend stnl* pair)* (~tagend space)*
|
||||||
pair = st* key st* ":" st* value st*
|
pair = st* (quoted_key | key) st* ":" st* value st*
|
||||||
key = keychar*
|
disable_char = "~"
|
||||||
|
quote_char = "\\""
|
||||||
|
esc_char = "\\\\"
|
||||||
|
esc_quote_char = esc_char quote_char
|
||||||
|
quoted_key_char = ~(quote_char | esc_quote_char | nl) any
|
||||||
|
quoted_key = disable_char? quote_char (esc_quote_char | quoted_key_char)* quote_char
|
||||||
|
key = keychar+
|
||||||
value = multilinetextblock | valuechar*
|
value = multilinetextblock | valuechar*
|
||||||
|
|
||||||
// Dictionary for Assert Block
|
// Dictionary for Assert Block
|
||||||
@ -213,6 +219,14 @@ const sem = grammar.createSemantics().addAttribute('ast', {
|
|||||||
res[key.ast] = value.ast ? value.ast.trim() : '';
|
res[key.ast] = value.ast ? value.ast.trim() : '';
|
||||||
return res;
|
return res;
|
||||||
},
|
},
|
||||||
|
esc_quote_char(_1, quote) {
|
||||||
|
// unescape
|
||||||
|
return quote.sourceString;
|
||||||
|
},
|
||||||
|
quoted_key(disabled, _1, chars, _2) {
|
||||||
|
// unquote
|
||||||
|
return (disabled? disabled.sourceString : "") + chars.ast.join("");
|
||||||
|
},
|
||||||
key(chars) {
|
key(chars) {
|
||||||
return chars.sourceString ? chars.sourceString.trim() : '';
|
return chars.sourceString ? chars.sourceString.trim() : '';
|
||||||
},
|
},
|
||||||
@ -264,6 +278,9 @@ const sem = grammar.createSemantics().addAttribute('ast', {
|
|||||||
tagend(_1, _2) {
|
tagend(_1, _2) {
|
||||||
return '';
|
return '';
|
||||||
},
|
},
|
||||||
|
_terminal(){
|
||||||
|
return this.sourceString;
|
||||||
|
},
|
||||||
_iter(...elements) {
|
_iter(...elements) {
|
||||||
return elements.map((e) => e.ast);
|
return elements.map((e) => e.ast);
|
||||||
},
|
},
|
||||||
|
@ -4,6 +4,10 @@ const { indentString } = require('../../v1/src/utils');
|
|||||||
|
|
||||||
const enabled = (items = []) => items.filter((item) => item.enabled);
|
const enabled = (items = []) => items.filter((item) => item.enabled);
|
||||||
const disabled = (items = []) => items.filter((item) => !item.enabled);
|
const disabled = (items = []) => items.filter((item) => !item.enabled);
|
||||||
|
const quoteKey = (key) => {
|
||||||
|
const quotableChars = [':', '"', '{', '}', ' '];
|
||||||
|
return quotableChars.some(char => key.includes(char)) ? ('"' + key.replaceAll('"', '\\"') + '"') : key;
|
||||||
|
}
|
||||||
|
|
||||||
// remove the last line if two new lines are found
|
// remove the last line if two new lines are found
|
||||||
const stripLastLine = (text) => {
|
const stripLastLine = (text) => {
|
||||||
@ -71,7 +75,7 @@ const jsonToBru = (json) => {
|
|||||||
if (enabled(queryParams).length) {
|
if (enabled(queryParams).length) {
|
||||||
bru += `\n${indentString(
|
bru += `\n${indentString(
|
||||||
enabled(queryParams)
|
enabled(queryParams)
|
||||||
.map((item) => `${item.name}: ${item.value}`)
|
.map((item) => `${quoteKey(item.name)}: ${item.value}`)
|
||||||
.join('\n')
|
.join('\n')
|
||||||
)}`;
|
)}`;
|
||||||
}
|
}
|
||||||
@ -79,7 +83,7 @@ const jsonToBru = (json) => {
|
|||||||
if (disabled(queryParams).length) {
|
if (disabled(queryParams).length) {
|
||||||
bru += `\n${indentString(
|
bru += `\n${indentString(
|
||||||
disabled(queryParams)
|
disabled(queryParams)
|
||||||
.map((item) => `~${item.name}: ${item.value}`)
|
.map((item) => `~${quoteKey(item.name)}: ${item.value}`)
|
||||||
.join('\n')
|
.join('\n')
|
||||||
)}`;
|
)}`;
|
||||||
}
|
}
|
||||||
|
@ -13,6 +13,9 @@ get {
|
|||||||
params:query {
|
params:query {
|
||||||
apiKey: secret
|
apiKey: secret
|
||||||
numbers: 998877665
|
numbers: 998877665
|
||||||
|
"colon:parameter": is allowed
|
||||||
|
"nested escaped \"quote\"": is allowed
|
||||||
|
~"disabled:colon:parameter": is allowed
|
||||||
~message: hello
|
~message: hello
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,6 +23,24 @@
|
|||||||
"type": "query",
|
"type": "query",
|
||||||
"enabled": true
|
"enabled": true
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name" : "colon:parameter",
|
||||||
|
"value" : "is allowed",
|
||||||
|
"type": "query",
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name" : "nested escaped \"quote\"",
|
||||||
|
"value" : "is allowed",
|
||||||
|
"type": "query",
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name" : "disabled:colon:parameter",
|
||||||
|
"value" : "is allowed",
|
||||||
|
"type": "query",
|
||||||
|
"enabled": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "message",
|
"name": "message",
|
||||||
"value": "hello",
|
"value": "hello",
|
||||||
|
Loading…
Reference in New Issue
Block a user