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:
186
vendor/github.com/cloudflare/cloudflare-go/account_members.go
generated
vendored
Normal file
186
vendor/github.com/cloudflare/cloudflare-go/account_members.go
generated
vendored
Normal file
@@ -0,0 +1,186 @@
|
||||
package cloudflare
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"net/url"
|
||||
"strconv"
|
||||
|
||||
"github.com/pkg/errors"
|
||||
)
|
||||
|
||||
// AccountMember is the definition of a member of an account.
|
||||
type AccountMember struct {
|
||||
ID string `json:"id"`
|
||||
Code string `json:"code"`
|
||||
User AccountMemberUserDetails `json:"user"`
|
||||
Status string `json:"status"`
|
||||
Roles []AccountRole `json:"roles"`
|
||||
}
|
||||
|
||||
// AccountMemberUserDetails outlines all the personal information about
|
||||
// a member.
|
||||
type AccountMemberUserDetails struct {
|
||||
ID string `json:"id"`
|
||||
FirstName string `json:"first_name"`
|
||||
LastName string `json:"last_name"`
|
||||
Email string `json:"email"`
|
||||
TwoFactorAuthenticationEnabled bool
|
||||
}
|
||||
|
||||
// AccountMembersListResponse represents the response from the list
|
||||
// account members endpoint.
|
||||
type AccountMembersListResponse struct {
|
||||
Result []AccountMember `json:"result"`
|
||||
Response
|
||||
ResultInfo `json:"result_info"`
|
||||
}
|
||||
|
||||
// AccountMemberDetailResponse is the API response, containing a single
|
||||
// account member.
|
||||
type AccountMemberDetailResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Errors []string `json:"errors"`
|
||||
Messages []string `json:"messages"`
|
||||
Result AccountMember `json:"result"`
|
||||
}
|
||||
|
||||
// AccountMemberInvitation represents the invitation for a new member to
|
||||
// the account.
|
||||
type AccountMemberInvitation struct {
|
||||
Email string `json:"email"`
|
||||
Roles []string `json:"roles"`
|
||||
}
|
||||
|
||||
// AccountMembers returns all members of an account.
|
||||
//
|
||||
// API reference: https://api.cloudflare.com/#accounts-list-accounts
|
||||
func (api *API) AccountMembers(accountID string, pageOpts PaginationOptions) ([]AccountMember, ResultInfo, error) {
|
||||
if accountID == "" {
|
||||
return []AccountMember{}, ResultInfo{}, errors.New(errMissingAccountID)
|
||||
}
|
||||
|
||||
v := url.Values{}
|
||||
if pageOpts.PerPage > 0 {
|
||||
v.Set("per_page", strconv.Itoa(pageOpts.PerPage))
|
||||
}
|
||||
if pageOpts.Page > 0 {
|
||||
v.Set("page", strconv.Itoa(pageOpts.Page))
|
||||
}
|
||||
|
||||
uri := "/accounts/" + accountID + "/members"
|
||||
if len(v) > 0 {
|
||||
uri = uri + "?" + v.Encode()
|
||||
}
|
||||
|
||||
res, err := api.makeRequest("GET", uri, nil)
|
||||
if err != nil {
|
||||
return []AccountMember{}, ResultInfo{}, errors.Wrap(err, errMakeRequestError)
|
||||
}
|
||||
|
||||
var accountMemberListresponse AccountMembersListResponse
|
||||
err = json.Unmarshal(res, &accountMemberListresponse)
|
||||
if err != nil {
|
||||
return []AccountMember{}, ResultInfo{}, errors.Wrap(err, errUnmarshalError)
|
||||
}
|
||||
|
||||
return accountMemberListresponse.Result, accountMemberListresponse.ResultInfo, nil
|
||||
}
|
||||
|
||||
// CreateAccountMember invites a new member to join an account.
|
||||
//
|
||||
// API reference: https://api.cloudflare.com/#account-members-add-member
|
||||
func (api *API) CreateAccountMember(accountID string, emailAddress string, roles []string) (AccountMember, error) {
|
||||
if accountID == "" {
|
||||
return AccountMember{}, errors.New(errMissingAccountID)
|
||||
}
|
||||
|
||||
uri := "/accounts/" + accountID + "/members"
|
||||
|
||||
var newMember = AccountMemberInvitation{
|
||||
Email: emailAddress,
|
||||
Roles: roles,
|
||||
}
|
||||
res, err := api.makeRequest("POST", uri, newMember)
|
||||
if err != nil {
|
||||
return AccountMember{}, errors.Wrap(err, errMakeRequestError)
|
||||
}
|
||||
|
||||
var accountMemberListResponse AccountMemberDetailResponse
|
||||
err = json.Unmarshal(res, &accountMemberListResponse)
|
||||
if err != nil {
|
||||
return AccountMember{}, errors.Wrap(err, errUnmarshalError)
|
||||
}
|
||||
|
||||
return accountMemberListResponse.Result, nil
|
||||
}
|
||||
|
||||
// DeleteAccountMember removes a member from an account.
|
||||
//
|
||||
// API reference: https://api.cloudflare.com/#account-members-remove-member
|
||||
func (api *API) DeleteAccountMember(accountID string, userID string) error {
|
||||
if accountID == "" {
|
||||
return errors.New(errMissingAccountID)
|
||||
}
|
||||
|
||||
uri := fmt.Sprintf("/accounts/%s/members/%s", accountID, userID)
|
||||
|
||||
_, err := api.makeRequest("DELETE", uri, nil)
|
||||
if err != nil {
|
||||
return errors.Wrap(err, errMakeRequestError)
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
// UpdateAccountMember modifies an existing account member.
|
||||
//
|
||||
// API reference: https://api.cloudflare.com/#account-members-update-member
|
||||
func (api *API) UpdateAccountMember(accountID string, userID string, member AccountMember) (AccountMember, error) {
|
||||
if accountID == "" {
|
||||
return AccountMember{}, errors.New(errMissingAccountID)
|
||||
}
|
||||
|
||||
uri := fmt.Sprintf("/accounts/%s/members/%s", accountID, userID)
|
||||
|
||||
res, err := api.makeRequest("PUT", uri, member)
|
||||
if err != nil {
|
||||
return AccountMember{}, errors.Wrap(err, errMakeRequestError)
|
||||
}
|
||||
|
||||
var accountMemberListResponse AccountMemberDetailResponse
|
||||
err = json.Unmarshal(res, &accountMemberListResponse)
|
||||
if err != nil {
|
||||
return AccountMember{}, errors.Wrap(err, errUnmarshalError)
|
||||
}
|
||||
|
||||
return accountMemberListResponse.Result, nil
|
||||
}
|
||||
|
||||
// AccountMember returns details of a single account member.
|
||||
//
|
||||
// API reference: https://api.cloudflare.com/#account-members-member-details
|
||||
func (api *API) AccountMember(accountID string, memberID string) (AccountMember, error) {
|
||||
if accountID == "" {
|
||||
return AccountMember{}, errors.New(errMissingAccountID)
|
||||
}
|
||||
|
||||
uri := fmt.Sprintf(
|
||||
"/accounts/%s/members/%s",
|
||||
accountID,
|
||||
memberID,
|
||||
)
|
||||
|
||||
res, err := api.makeRequest("GET", uri, nil)
|
||||
if err != nil {
|
||||
return AccountMember{}, errors.Wrap(err, errMakeRequestError)
|
||||
}
|
||||
|
||||
var accountMemberResponse AccountMemberDetailResponse
|
||||
err = json.Unmarshal(res, &accountMemberResponse)
|
||||
if err != nil {
|
||||
return AccountMember{}, errors.Wrap(err, errUnmarshalError)
|
||||
}
|
||||
|
||||
return accountMemberResponse.Result, nil
|
||||
}
|
Reference in New Issue
Block a user