fix: compare claims subject (user ID) instead of token's ID
This commit is contained in:
parent
2b65bf70d8
commit
c5a56c8479
@ -78,7 +78,7 @@ func ownerOnlyMiddleware(next http.Handler) http.Handler {
|
|||||||
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||||
user, ok := r.Context().Value(userCtxKey{}).(*userClaims)
|
user, ok := r.Context().Value(userCtxKey{}).(*userClaims)
|
||||||
requestedID := chi.URLParam(r, "id")
|
requestedID := chi.URLParam(r, "id")
|
||||||
if !ok || user.ID != requestedID {
|
if !ok || user.Subject != requestedID {
|
||||||
respondError(w, http.StatusForbidden, "Forbidden")
|
respondError(w, http.StatusForbidden, "Forbidden")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user