Accept urlencoded form for authentication

This commit is contained in:
Matthew Ryan Dillon 2015-10-20 16:19:21 -07:00
parent 88ac9569ee
commit 6b69668616

20
jwt.go
View file

@ -143,7 +143,21 @@ func (m *Middleware) Authenticate() http.Handler {
message: "receiving request",
}
}
var b map[string]string
b := make(map[string]string, 0)
contentType := r.Header.Get("content-type")
switch contentType {
case "application/x-www-form-urlencoded":
identity, verify := r.FormValue(m.identityField), r.FormValue(m.verifyField)
if identity == "" || verify == "" {
return &jwtError{
status: http.StatusInternalServerError,
err: ErrParsingCredentials,
message: "parsing authorization",
}
}
b[m.identityField], b[m.verifyField] = identity, verify
default:
err := json.NewDecoder(r.Body).Decode(&b)
if err != nil {
return &jwtError{
@ -152,6 +166,8 @@ func (m *Middleware) Authenticate() http.Handler {
message: "parsing authorization",
}
}
}
// Check if required fields are in the body
if _, ok := b[m.identityField]; !ok {
return &jwtError{
@ -167,7 +183,7 @@ func (m *Middleware) Authenticate() http.Handler {
message: "parsing credentials, missing verify field",
}
}
err = m.auth(b[m.identityField], b[m.verifyField])
err := m.auth(b[m.identityField], b[m.verifyField])
if err != nil {
return &jwtError{
status: http.StatusInternalServerError,