mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-08 23:18:15 -05:00
32 lines
1.0 KiB
Go
32 lines
1.0 KiB
Go
package rpc
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/OffchainLabs/prysm/v7/io/file"
|
|
"github.com/OffchainLabs/prysm/v7/monitoring/tracing/trace"
|
|
"github.com/OffchainLabs/prysm/v7/network/httputil"
|
|
"github.com/OffchainLabs/prysm/v7/validator/accounts/wallet"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
// Initialize returns metadata regarding whether the caller has authenticated and has a wallet.
|
|
func (s *Server) Initialize(w http.ResponseWriter, r *http.Request) {
|
|
_, span := trace.StartSpan(r.Context(), "validator.web.Initialize")
|
|
defer span.End()
|
|
walletExists, err := wallet.Exists(s.walletDir)
|
|
if err != nil {
|
|
httputil.HandleError(w, errors.Wrap(err, "Could not check if wallet exists").Error(), http.StatusInternalServerError)
|
|
return
|
|
}
|
|
exists, err := file.Exists(s.authTokenPath, file.Regular)
|
|
if err != nil {
|
|
httputil.HandleError(w, errors.Wrap(err, "Could not check if auth token exists").Error(), http.StatusInternalServerError)
|
|
return
|
|
}
|
|
httputil.WriteJson(w, &InitializeAuthResponse{
|
|
HasSignedUp: exists,
|
|
HasWallet: walletExists,
|
|
})
|
|
}
|