feat: return error if validation is failed

This commit is contained in:
Adrien Raffin-Caboisse 2022-05-13 09:47:34 +02:00
parent ad4401aa40
commit fdbc9657bc
No known key found for this signature in database
GPG Key ID: 7FB60532DEBEAD6A

View File

@ -3,6 +3,7 @@ package headscale
import (
"context"
"strings"
"time"
v1 "github.com/juanfont/headscale/gen/go/headscale/v1"
@ -191,6 +192,15 @@ func (api headscaleV1APIServer) SetTags(
return nil, err
}
for _, tag := range request.GetTags() {
if strings.Index(tag, "tag:") != 0 {
return &v1.SetTagsResponse{Machine: nil, Error: &v1.Error{
Status: 400,
Message: "Invalid tag detected. Each tag must start with the string 'tag:'",
}}, nil
}
}
api.h.SetTags(machine, request.GetTags())
log.Trace().