p2p/dnsdisc: add implementation of EIP-1459 (#20094)
This adds an implementation of node discovery via DNS TXT records to the go-ethereum library. The implementation doesn't match EIP-1459 exactly, the main difference being that this implementation uses separate merkle trees for tree links and ENRs. The EIP will be updated to match p2p/dnsdisc. To maintain DNS trees, cmd/devp2p provides a frontend for the p2p/dnsdisc library. The new 'dns' subcommands can be used to create, sign and deploy DNS discovery trees.
This commit is contained in:
158
vendor/github.com/cloudflare/cloudflare-go/spectrum.go
generated
vendored
Normal file
158
vendor/github.com/cloudflare/cloudflare-go/spectrum.go
generated
vendored
Normal file
@@ -0,0 +1,158 @@
|
||||
package cloudflare
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"time"
|
||||
|
||||
"github.com/pkg/errors"
|
||||
)
|
||||
|
||||
// SpectrumApplication defines a single Spectrum Application.
|
||||
type SpectrumApplication struct {
|
||||
ID string `json:"id,omitempty"`
|
||||
Protocol string `json:"protocol,omitempty"`
|
||||
IPv4 bool `json:"ipv4,omitempty"`
|
||||
DNS SpectrumApplicationDNS `json:"dns,omitempty"`
|
||||
OriginDirect []string `json:"origin_direct,omitempty"`
|
||||
OriginPort int `json:"origin_port,omitempty"`
|
||||
OriginDNS *SpectrumApplicationOriginDNS `json:"origin_dns,omitempty"`
|
||||
IPFirewall bool `json:"ip_firewall,omitempty"`
|
||||
ProxyProtocol bool `json:"proxy_protocol,omitempty"`
|
||||
TLS string `json:"tls,omitempty"`
|
||||
CreatedOn *time.Time `json:"created_on,omitempty"`
|
||||
ModifiedOn *time.Time `json:"modified_on,omitempty"`
|
||||
}
|
||||
|
||||
// SpectrumApplicationDNS holds the external DNS configuration for a Spectrum
|
||||
// Application.
|
||||
type SpectrumApplicationDNS struct {
|
||||
Type string `json:"type"`
|
||||
Name string `json:"name"`
|
||||
}
|
||||
|
||||
// SpectrumApplicationOriginDNS holds the origin DNS configuration for a Spectrum
|
||||
// Application.
|
||||
type SpectrumApplicationOriginDNS struct {
|
||||
Name string `json:"name"`
|
||||
}
|
||||
|
||||
// SpectrumApplicationDetailResponse is the structure of the detailed response
|
||||
// from the API.
|
||||
type SpectrumApplicationDetailResponse struct {
|
||||
Response
|
||||
Result SpectrumApplication `json:"result"`
|
||||
}
|
||||
|
||||
// SpectrumApplicationsDetailResponse is the structure of the detailed response
|
||||
// from the API.
|
||||
type SpectrumApplicationsDetailResponse struct {
|
||||
Response
|
||||
Result []SpectrumApplication `json:"result"`
|
||||
}
|
||||
|
||||
// SpectrumApplications fetches all of the Spectrum applications for a zone.
|
||||
//
|
||||
// API reference: https://developers.cloudflare.com/spectrum/api-reference/#list-spectrum-applications
|
||||
func (api *API) SpectrumApplications(zoneID string) ([]SpectrumApplication, error) {
|
||||
uri := "/zones/" + zoneID + "/spectrum/apps"
|
||||
|
||||
res, err := api.makeRequest("GET", uri, nil)
|
||||
if err != nil {
|
||||
return []SpectrumApplication{}, errors.Wrap(err, errMakeRequestError)
|
||||
}
|
||||
|
||||
var spectrumApplications SpectrumApplicationsDetailResponse
|
||||
err = json.Unmarshal(res, &spectrumApplications)
|
||||
if err != nil {
|
||||
return []SpectrumApplication{}, errors.Wrap(err, errUnmarshalError)
|
||||
}
|
||||
|
||||
return spectrumApplications.Result, nil
|
||||
}
|
||||
|
||||
// SpectrumApplication fetches a single Spectrum application based on the ID.
|
||||
//
|
||||
// API reference: https://developers.cloudflare.com/spectrum/api-reference/#list-spectrum-applications
|
||||
func (api *API) SpectrumApplication(zoneID string, applicationID string) (SpectrumApplication, error) {
|
||||
uri := fmt.Sprintf(
|
||||
"/zones/%s/spectrum/apps/%s",
|
||||
zoneID,
|
||||
applicationID,
|
||||
)
|
||||
|
||||
res, err := api.makeRequest("GET", uri, nil)
|
||||
if err != nil {
|
||||
return SpectrumApplication{}, errors.Wrap(err, errMakeRequestError)
|
||||
}
|
||||
|
||||
var spectrumApplication SpectrumApplicationDetailResponse
|
||||
err = json.Unmarshal(res, &spectrumApplication)
|
||||
if err != nil {
|
||||
return SpectrumApplication{}, errors.Wrap(err, errUnmarshalError)
|
||||
}
|
||||
|
||||
return spectrumApplication.Result, nil
|
||||
}
|
||||
|
||||
// CreateSpectrumApplication creates a new Spectrum application.
|
||||
//
|
||||
// API reference: https://developers.cloudflare.com/spectrum/api-reference/#create-a-spectrum-application
|
||||
func (api *API) CreateSpectrumApplication(zoneID string, appDetails SpectrumApplication) (SpectrumApplication, error) {
|
||||
uri := "/zones/" + zoneID + "/spectrum/apps"
|
||||
|
||||
res, err := api.makeRequest("POST", uri, appDetails)
|
||||
if err != nil {
|
||||
return SpectrumApplication{}, errors.Wrap(err, errMakeRequestError)
|
||||
}
|
||||
|
||||
var spectrumApplication SpectrumApplicationDetailResponse
|
||||
err = json.Unmarshal(res, &spectrumApplication)
|
||||
if err != nil {
|
||||
return SpectrumApplication{}, errors.Wrap(err, errUnmarshalError)
|
||||
}
|
||||
|
||||
return spectrumApplication.Result, nil
|
||||
}
|
||||
|
||||
// UpdateSpectrumApplication updates an existing Spectrum application.
|
||||
//
|
||||
// API reference: https://developers.cloudflare.com/spectrum/api-reference/#update-a-spectrum-application
|
||||
func (api *API) UpdateSpectrumApplication(zoneID, appID string, appDetails SpectrumApplication) (SpectrumApplication, error) {
|
||||
uri := fmt.Sprintf(
|
||||
"/zones/%s/spectrum/apps/%s",
|
||||
zoneID,
|
||||
appID,
|
||||
)
|
||||
|
||||
res, err := api.makeRequest("PUT", uri, appDetails)
|
||||
if err != nil {
|
||||
return SpectrumApplication{}, errors.Wrap(err, errMakeRequestError)
|
||||
}
|
||||
|
||||
var spectrumApplication SpectrumApplicationDetailResponse
|
||||
err = json.Unmarshal(res, &spectrumApplication)
|
||||
if err != nil {
|
||||
return SpectrumApplication{}, errors.Wrap(err, errUnmarshalError)
|
||||
}
|
||||
|
||||
return spectrumApplication.Result, nil
|
||||
}
|
||||
|
||||
// DeleteSpectrumApplication removes a Spectrum application based on the ID.
|
||||
//
|
||||
// API reference: https://developers.cloudflare.com/spectrum/api-reference/#delete-a-spectrum-application
|
||||
func (api *API) DeleteSpectrumApplication(zoneID string, applicationID string) error {
|
||||
uri := fmt.Sprintf(
|
||||
"/zones/%s/spectrum/apps/%s",
|
||||
zoneID,
|
||||
applicationID,
|
||||
)
|
||||
|
||||
_, err := api.makeRequest("DELETE", uri, nil)
|
||||
if err != nil {
|
||||
return errors.Wrap(err, errMakeRequestError)
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
Reference in New Issue
Block a user