Skip to content

Commit

Permalink
fixing jwt auth checks (#13565)
Browse files Browse the repository at this point in the history
  • Loading branch information
james-prysm authored and rkapka committed Feb 1, 2024
1 parent 1f651b0 commit 096c0f3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion api/constants.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
package api

const WebUrlPrefix = "/v2/validator/"
const (
WebUrlPrefix = "/v2/validator/"
WebApiUrlPrefix = "/api/v2/validator/"
KeymanagerApiPrefix = "/eth/v1"
)
4 changes: 2 additions & 2 deletions validator/rpc/intercepter.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ func (s *Server) JWTInterceptor() grpc.UnaryServerInterceptor {
func (s *Server) JwtHttpInterceptor(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
// if it's not initialize or has a web prefix
if !strings.Contains(r.URL.Path, api.WebUrlPrefix+"initialize") && // ignore some routes
!strings.Contains(r.URL.Path, api.WebUrlPrefix+"health/logs") {
if strings.Contains(r.URL.Path, api.WebApiUrlPrefix) || strings.Contains(r.URL.Path, api.KeymanagerApiPrefix) {
// ignore some routes
reqToken := r.Header.Get("Authorization")
if reqToken == "" {
http.Error(w, "unauthorized: no Authorization header passed. Please use an Authorization header with the jwt created in the prysm wallet", http.StatusUnauthorized)
Expand Down

0 comments on commit 096c0f3

Please sign in to comment.