mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 19:40:37 +00:00
d077483577
* v3 import renamings * tidy * fmt * rev * Update beacon-chain/core/epoch/precompute/reward_penalty_test.go * Update beacon-chain/core/helpers/validators_test.go * Update beacon-chain/db/alias.go * Update beacon-chain/db/alias.go * Update beacon-chain/db/alias.go * Update beacon-chain/db/iface/BUILD.bazel * Update beacon-chain/db/kv/kv.go * Update beacon-chain/db/kv/state.go * Update beacon-chain/rpc/prysm/v1alpha1/validator/attester_test.go * Update beacon-chain/rpc/prysm/v1alpha1/validator/attester_test.go * Update beacon-chain/sync/initial-sync/service.go * fix deps * fix bad replacements * fix bad replacements * change back * gohashtree version * fix deps Co-authored-by: Nishant Das <nishdas93@gmail.com> Co-authored-by: Potuz <potuz@prysmaticlabs.com>
79 lines
2.1 KiB
Go
79 lines
2.1 KiB
Go
package network
|
|
|
|
import (
|
|
"errors"
|
|
"net/http"
|
|
"strings"
|
|
|
|
"github.com/prysmaticlabs/prysm/v3/network/authorization"
|
|
)
|
|
|
|
// Endpoint is an endpoint with authorization data.
|
|
type Endpoint struct {
|
|
Url string
|
|
Auth AuthorizationData
|
|
}
|
|
|
|
// AuthorizationData holds all information necessary to authorize with HTTP.
|
|
type AuthorizationData struct {
|
|
Method authorization.AuthorizationMethod
|
|
Value string
|
|
}
|
|
|
|
// Equals compares two endpoints for equality.
|
|
func (e Endpoint) Equals(other Endpoint) bool {
|
|
return e.Url == other.Url && e.Auth.Equals(other.Auth)
|
|
}
|
|
|
|
// HttpClient creates a http client object dependant
|
|
// on the properties of the network endpoint.
|
|
func (e Endpoint) HttpClient() *http.Client {
|
|
if e.Auth.Method != authorization.Bearer {
|
|
return http.DefaultClient
|
|
}
|
|
return NewHttpClientWithSecret(e.Auth.Value)
|
|
}
|
|
|
|
// Equals compares two authorization data objects for equality.
|
|
func (d AuthorizationData) Equals(other AuthorizationData) bool {
|
|
return d.Method == other.Method && d.Value == other.Value
|
|
}
|
|
|
|
// ToHeaderValue retrieves the value of the authorization header from AuthorizationData.
|
|
func (d *AuthorizationData) ToHeaderValue() (string, error) {
|
|
switch d.Method {
|
|
case authorization.Basic:
|
|
return "Basic " + d.Value, nil
|
|
case authorization.Bearer:
|
|
return "Bearer " + d.Value, nil
|
|
case authorization.None:
|
|
return "", nil
|
|
}
|
|
|
|
return "", errors.New("could not create HTTP header for unknown authorization method")
|
|
}
|
|
|
|
// Method returns the authorizationmethod.AuthorizationMethod corresponding with the parameter value.
|
|
func Method(auth string) authorization.AuthorizationMethod {
|
|
if strings.HasPrefix(strings.ToLower(auth), "basic") {
|
|
return authorization.Basic
|
|
}
|
|
if strings.HasPrefix(strings.ToLower(auth), "bearer") {
|
|
return authorization.Bearer
|
|
}
|
|
return authorization.None
|
|
}
|
|
|
|
// NewHttpClientWithSecret returns a http client that utilizes
|
|
// jwt authentication.
|
|
func NewHttpClientWithSecret(secret string) *http.Client {
|
|
authTransport := &jwtTransport{
|
|
underlyingTransport: http.DefaultTransport,
|
|
jwtSecret: []byte(secret),
|
|
}
|
|
return &http.Client{
|
|
Timeout: DefaultRPCHTTPTimeout,
|
|
Transport: authTransport,
|
|
}
|
|
}
|