zitadel/internal/api/http/parser.go

29 lines
493 B
Go
Raw Normal View History

2020-03-23 06:01:59 +00:00
package http
import (
"net/http"
"github.com/gorilla/schema"
"github.com/zitadel/zitadel/internal/errors"
2020-03-23 06:01:59 +00:00
)
type Parser struct {
decoder *schema.Decoder
}
func NewParser() *Parser {
d := schema.NewDecoder()
d.IgnoreUnknownKeys(true)
return &Parser{d}
}
func (p *Parser) Parse(r *http.Request, data interface{}) error {
err := r.ParseForm()
if err != nil {
return errors.ThrowInternal(err, "FORM-lCC9zI", "error parsing http form")
}
return p.decoder.Decode(data, r.Form)
}