mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 11:57:18 +00:00
20f4d21b83
* Initial setup * Fix + Cleanup * Add query * Fix * Add epoch * James' review part 1 * James' review part 2 * James' review part 3 * Radek' review * Gazelle * Fix cycle * Start unit test * fixing part of the test * Mostly fix test * Fix tests * Cleanup * Handle error * Remove times * Fix all tests * Fix accidental deletion * Unmarshal epoch * Add custom_type * Small fix * Fix epoch * Lint fix * Add test + fix empty query panic * Add comment * Fix regex * Add correct error message * Change current epoch to use slot * Return error if incorrect epoch passed * Remove redundant type conversion * Fix tests * gaz * Remove nodeClient + pass slot * Remove slot from parameters * Fix tests * Fix test attempt 2 * Fix test attempt 2 * Remove nodeClient from ProposeExit * Fix * Fix tests --------- Co-authored-by: james-prysm <james@prysmaticlabs.com> Co-authored-by: james-prysm <90280386+james-prysm@users.noreply.github.com>
63 lines
2.3 KiB
Go
63 lines
2.3 KiB
Go
package apimiddleware
|
|
|
|
import (
|
|
"github.com/pkg/errors"
|
|
"github.com/prysmaticlabs/prysm/v4/api/gateway/apimiddleware"
|
|
)
|
|
|
|
// ValidatorEndpointFactory creates endpoints used for running validator API calls through the API Middleware.
|
|
type ValidatorEndpointFactory struct {
|
|
}
|
|
|
|
func (f *ValidatorEndpointFactory) IsNil() bool {
|
|
return f == nil
|
|
}
|
|
|
|
// Paths is a collection of all valid validator API paths.
|
|
func (*ValidatorEndpointFactory) Paths() []string {
|
|
return []string{
|
|
"/eth/v1/keystores",
|
|
"/eth/v1/remotekeys",
|
|
"/eth/v1/validator/{pubkey}/feerecipient",
|
|
"/eth/v1/validator/{pubkey}/gas_limit",
|
|
"/eth/v1/validator/{pubkey}/voluntary_exit",
|
|
}
|
|
}
|
|
|
|
// Create returns a new endpoint for the provided API path.
|
|
func (*ValidatorEndpointFactory) Create(path string) (*apimiddleware.Endpoint, error) {
|
|
endpoint := apimiddleware.DefaultEndpoint()
|
|
switch path {
|
|
case "/eth/v1/keystores":
|
|
endpoint.GetResponse = &ListKeystoresResponseJson{}
|
|
endpoint.PostRequest = &ImportKeystoresRequestJson{}
|
|
endpoint.PostResponse = &ImportKeystoresResponseJson{}
|
|
endpoint.DeleteRequest = &DeleteKeystoresRequestJson{}
|
|
endpoint.DeleteResponse = &DeleteKeystoresResponseJson{}
|
|
case "/eth/v1/remotekeys":
|
|
endpoint.GetResponse = &ListRemoteKeysResponseJson{}
|
|
endpoint.PostRequest = &ImportRemoteKeysRequestJson{}
|
|
endpoint.PostResponse = &ImportRemoteKeysResponseJson{}
|
|
endpoint.DeleteRequest = &DeleteRemoteKeysRequestJson{}
|
|
endpoint.DeleteResponse = &DeleteRemoteKeysResponseJson{}
|
|
case "/eth/v1/validator/{pubkey}/feerecipient":
|
|
endpoint.GetResponse = &GetFeeRecipientByPubkeyResponseJson{}
|
|
endpoint.PostRequest = &SetFeeRecipientByPubkeyRequestJson{}
|
|
endpoint.DeleteRequest = &DeleteFeeRecipientByPubkeyRequestJson{}
|
|
case "/eth/v1/validator/{pubkey}/gas_limit":
|
|
endpoint.GetResponse = &GetGasLimitResponseJson{}
|
|
endpoint.PostRequest = &SetGasLimitRequestJson{}
|
|
endpoint.DeleteRequest = &DeleteGasLimitRequestJson{}
|
|
case "/eth/v1/validator/{pubkey}/voluntary_exit":
|
|
endpoint.PostRequest = &SetVoluntaryExitRequestJson{}
|
|
endpoint.PostResponse = &SetVoluntaryExitResponseJson{}
|
|
endpoint.Hooks = apimiddleware.HookCollection{
|
|
OnPreDeserializeRequestBodyIntoContainer: setVoluntaryExitEpoch,
|
|
}
|
|
default:
|
|
return nil, errors.New("invalid path")
|
|
}
|
|
endpoint.Path = path
|
|
return &endpoint, nil
|
|
}
|