caddyfile: Fix variadic placeholder false positive when token contains : (#5883)

This commit is contained in:
WeidiDeng 2023-10-13 14:28:20 +08:00 committed by Matthew Holt
parent 0e204b730a
commit ae5e2d96b7
2 changed files with 11 additions and 0 deletions

View File

@ -52,6 +52,13 @@ func parseVariadic(token Token, argCount int) (bool, int, int) {
return false, 0, 0
}
// A valid token may contain several placeholders, and
// they may be separated by ":". It's not variadic.
// https://github.com/caddyserver/caddy/issues/5716
if strings.Contains(start, "}") || strings.Contains(end, "{") {
return false, 0, 0
}
var (
startIndex = 0
endIndex = argCount

View File

@ -91,6 +91,10 @@ func TestParseVariadic(t *testing.T) {
input: "{args[0:10]}",
result: true,
},
{
input: "{args[0]}:{args[1]}:{args[2]}",
result: false,
},
} {
token := Token{
File: "test",