mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 03:30:35 +00:00
fixing jwt auth checks (#13565)
This commit is contained in:
parent
73ce28c356
commit
2cddb5ca86
@ -1,3 +1,7 @@
|
|||||||
package api
|
package api
|
||||||
|
|
||||||
const WebUrlPrefix = "/v2/validator/"
|
const (
|
||||||
|
WebUrlPrefix = "/v2/validator/"
|
||||||
|
WebApiUrlPrefix = "/api/v2/validator/"
|
||||||
|
KeymanagerApiPrefix = "/eth/v1"
|
||||||
|
)
|
||||||
|
@ -39,8 +39,8 @@ func (s *Server) JWTInterceptor() grpc.UnaryServerInterceptor {
|
|||||||
func (s *Server) JwtHttpInterceptor(next http.Handler) http.Handler {
|
func (s *Server) JwtHttpInterceptor(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) {
|
||||||
// if it's not initialize or has a web prefix
|
// if it's not initialize or has a web prefix
|
||||||
if !strings.Contains(r.URL.Path, api.WebUrlPrefix+"initialize") && // ignore some routes
|
if strings.Contains(r.URL.Path, api.WebApiUrlPrefix) || strings.Contains(r.URL.Path, api.KeymanagerApiPrefix) {
|
||||||
!strings.Contains(r.URL.Path, api.WebUrlPrefix+"health/logs") {
|
// ignore some routes
|
||||||
reqToken := r.Header.Get("Authorization")
|
reqToken := r.Header.Get("Authorization")
|
||||||
if reqToken == "" {
|
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)
|
http.Error(w, "unauthorized: no Authorization header passed. Please use an Authorization header with the jwt created in the prysm wallet", http.StatusUnauthorized)
|
||||||
|
Loading…
Reference in New Issue
Block a user