Ensure that authenticate only handles POST
This commit is contained in:
parent
e80c34437b
commit
b3e5aa96ee
2 changed files with 19 additions and 0 deletions
8
jwt.go
8
jwt.go
|
@ -31,6 +31,7 @@ var (
|
||||||
ErrMalformedToken = errors.New("please provide a valid token")
|
ErrMalformedToken = errors.New("please provide a valid token")
|
||||||
ErrInvalidSignature = errors.New("signature could not be verified")
|
ErrInvalidSignature = errors.New("signature could not be verified")
|
||||||
ErrParsingCredentials = errors.New("error parsing credentials")
|
ErrParsingCredentials = errors.New("error parsing credentials")
|
||||||
|
ErrInvalidMethod = errors.New("invalid request method")
|
||||||
)
|
)
|
||||||
|
|
||||||
// AuthFunc is a type for delegating user authentication to the client-code.
|
// AuthFunc is a type for delegating user authentication to the client-code.
|
||||||
|
@ -175,6 +176,13 @@ func (m *Middleware) Secure(h http.Handler, v VerifyClaimsFunc) http.Handler {
|
||||||
// the requester.
|
// the requester.
|
||||||
func (m *Middleware) GenerateToken() http.Handler {
|
func (m *Middleware) GenerateToken() http.Handler {
|
||||||
generateHandler := func(w http.ResponseWriter, r *http.Request) *jwtError {
|
generateHandler := func(w http.ResponseWriter, r *http.Request) *jwtError {
|
||||||
|
if r.Method != "POST" {
|
||||||
|
return &jwtError{
|
||||||
|
status: http.StatusBadRequest,
|
||||||
|
err: ErrInvalidMethod,
|
||||||
|
message: "receiving request",
|
||||||
|
}
|
||||||
|
}
|
||||||
var b map[string]string
|
var b map[string]string
|
||||||
err := json.NewDecoder(r.Body).Decode(&b)
|
err := json.NewDecoder(r.Body).Decode(&b)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
11
jwt_test.go
11
jwt_test.go
|
@ -221,3 +221,14 @@ func TestSecureHandlerGoodToken(t *testing.T) {
|
||||||
t.Errorf("wanted %s, got %s", "test", body)
|
t.Errorf("wanted %s, got %s", "test", body)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestGenerateTokenHandlerNotPOST(t *testing.T) {
|
||||||
|
middleware := newMiddlewareOrFatal(t)
|
||||||
|
resp := httptest.NewRecorder()
|
||||||
|
req, _ := http.NewRequest("PUT", "http://example.com", nil)
|
||||||
|
middleware.GenerateToken().ServeHTTP(resp, req)
|
||||||
|
body := strings.TrimSpace(resp.Body.String())
|
||||||
|
if body != ErrInvalidMethod.Error() {
|
||||||
|
t.Errorf("wanted %q, got %q", ErrInvalidMethod.Error(), body)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue