Accept urlencoded form for authentication
This commit is contained in:
parent
88ac9569ee
commit
6b69668616
1 changed files with 24 additions and 8 deletions
32
jwt.go
32
jwt.go
|
@ -143,15 +143,31 @@ func (m *Middleware) Authenticate() http.Handler {
|
||||||
message: "receiving request",
|
message: "receiving request",
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
var b map[string]string
|
|
||||||
err := json.NewDecoder(r.Body).Decode(&b)
|
b := make(map[string]string, 0)
|
||||||
if err != nil {
|
contentType := r.Header.Get("content-type")
|
||||||
return &jwtError{
|
switch contentType {
|
||||||
status: http.StatusInternalServerError,
|
case "application/x-www-form-urlencoded":
|
||||||
err: ErrParsingCredentials,
|
identity, verify := r.FormValue(m.identityField), r.FormValue(m.verifyField)
|
||||||
message: "parsing authorization",
|
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{
|
||||||
|
status: http.StatusInternalServerError,
|
||||||
|
err: ErrParsingCredentials,
|
||||||
|
message: "parsing authorization",
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check if required fields are in the body
|
// Check if required fields are in the body
|
||||||
if _, ok := b[m.identityField]; !ok {
|
if _, ok := b[m.identityField]; !ok {
|
||||||
return &jwtError{
|
return &jwtError{
|
||||||
|
@ -167,7 +183,7 @@ func (m *Middleware) Authenticate() http.Handler {
|
||||||
message: "parsing credentials, missing verify field",
|
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 {
|
if err != nil {
|
||||||
return &jwtError{
|
return &jwtError{
|
||||||
status: http.StatusInternalServerError,
|
status: http.StatusInternalServerError,
|
||||||
|
|
Loading…
Add table
Reference in a new issue