mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-05-11 05:55:12 +00:00
DNSimple: Implement GetZones and ListZones (#637)
* Update to latest dnsimple-go * Implement GetZoneRecords * Better naming * Return NS records in GetZoneRecords * Be clearer with the comment. As an employee I confirm this is exactly how this works. No guessing needed. * Respect that Puncycode encoding can blow up * Implement ListZones and the ZoneLister Interface * Categorize DNSIMPLE * Update docs with go generate * vendor modules * Don't store intermediary Zone data
This commit is contained in:
2
vendor/github.com/dnsimple/dnsimple-go/LICENSE.txt
generated
vendored
2
vendor/github.com/dnsimple/dnsimple-go/LICENSE.txt
generated
vendored
@ -1,6 +1,6 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2014-2018 Aetrion LLC dba DNSimple
|
||||
Copyright (c) 2014-2020 DNSimple Corporation
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
4
vendor/github.com/dnsimple/dnsimple-go/dnsimple/dnsimple.go
generated
vendored
4
vendor/github.com/dnsimple/dnsimple-go/dnsimple/dnsimple.go
generated
vendored
@ -23,7 +23,7 @@ const (
|
||||
// This is a pro-forma convention given that Go dependencies
|
||||
// tends to be fetched directly from the repo.
|
||||
// It is also used in the user-agent identify the client.
|
||||
Version = "0.20.0"
|
||||
Version = "0.31.0"
|
||||
|
||||
// defaultBaseURL to the DNSimple production API.
|
||||
defaultBaseURL = "https://api.dnsimple.com"
|
||||
@ -146,7 +146,7 @@ func formatUserAgent(customUserAgent string) string {
|
||||
return defaultUserAgent
|
||||
}
|
||||
|
||||
return fmt.Sprintf("%s %s", defaultUserAgent, customUserAgent)
|
||||
return fmt.Sprintf("%s %s", customUserAgent, defaultUserAgent)
|
||||
}
|
||||
|
||||
func versioned(path string) string {
|
||||
|
14
vendor/github.com/dnsimple/dnsimple-go/dnsimple/domains.go
generated
vendored
14
vendor/github.com/dnsimple/dnsimple-go/dnsimple/domains.go
generated
vendored
@ -129,18 +129,10 @@ func (s *DomainsService) DeleteDomain(accountID string, domainIdentifier string)
|
||||
return domainResponse, nil
|
||||
}
|
||||
|
||||
// ResetDomainToken resets the domain token.
|
||||
// DEPRECATED
|
||||
//
|
||||
// See https://developer.dnsimple.com/v2/domains/#reset-token
|
||||
func (s *DomainsService) ResetDomainToken(accountID string, domainIdentifier string) (*domainResponse, error) {
|
||||
path := versioned(domainPath(accountID, domainIdentifier) + "/token")
|
||||
domainResponse := &domainResponse{}
|
||||
|
||||
resp, err := s.client.post(path, nil, domainResponse)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
domainResponse.HttpResponse = resp
|
||||
return domainResponse, nil
|
||||
// noop
|
||||
return &domainResponse{}, nil
|
||||
}
|
||||
|
2
vendor/github.com/dnsimple/dnsimple-go/dnsimple/registrar.go
generated
vendored
2
vendor/github.com/dnsimple/dnsimple-go/dnsimple/registrar.go
generated
vendored
@ -62,7 +62,7 @@ type DomainPremiumPriceOptions struct {
|
||||
Action string `url:"action,omitempty"`
|
||||
}
|
||||
|
||||
// Gets the premium price for a domain.
|
||||
// GetDomainPremiumPrice gets the premium price for a domain.
|
||||
//
|
||||
// You must specify an action to get the price for. Valid actions are:
|
||||
// - registration
|
||||
|
36
vendor/github.com/dnsimple/dnsimple-go/dnsimple/registrar_whois_privacy.go
generated
vendored
36
vendor/github.com/dnsimple/dnsimple-go/dnsimple/registrar_whois_privacy.go
generated
vendored
@ -14,12 +14,30 @@ type WhoisPrivacy struct {
|
||||
UpdatedAt string `json:"updated_at,omitempty"`
|
||||
}
|
||||
|
||||
// WhoisPrivacyRenewal represents a whois privacy renewal in DNSimple.
|
||||
type WhoisPrivacyRenewal struct {
|
||||
ID int64 `json:"id,omitempty"`
|
||||
DomainID int64 `json:"domain_id,omitempty"`
|
||||
WhoisPrivacyID int64 `json:"whois_privacy_id,omitempty"`
|
||||
State string `json:"string,omitempty"`
|
||||
Enabled bool `json:"enabled,omitempty"`
|
||||
ExpiresOn string `json:"expires_on,omitempty"`
|
||||
CreatedAt string `json:"created_at,omitempty"`
|
||||
UpdatedAt string `json:"updated_at,omitempty"`
|
||||
}
|
||||
|
||||
// whoisPrivacyResponse represents a response from an API method that returns a WhoisPrivacy struct.
|
||||
type whoisPrivacyResponse struct {
|
||||
Response
|
||||
Data *WhoisPrivacy `json:"data"`
|
||||
}
|
||||
|
||||
// whoisPrivacyRenewalResponse represents a response from an API method that returns a WhoisPrivacyRenewal struct.
|
||||
type whoisPrivacyRenewalResponse struct {
|
||||
Response
|
||||
Data *WhoisPrivacyRenewal `json:"data"`
|
||||
}
|
||||
|
||||
// GetWhoisPrivacy gets the whois privacy for the domain.
|
||||
//
|
||||
// See https://developer.dnsimple.com/v2/registrar/whois-privacy/#get
|
||||
@ -52,7 +70,7 @@ func (s *RegistrarService) EnableWhoisPrivacy(accountID string, domainName strin
|
||||
return privacyResponse, nil
|
||||
}
|
||||
|
||||
// DisablePrivacy disables the whois privacy for the domain.
|
||||
// DisableWhoisPrivacy disables the whois privacy for the domain.
|
||||
//
|
||||
// See https://developer.dnsimple.com/v2/registrar/whois-privacy/#enable
|
||||
func (s *RegistrarService) DisableWhoisPrivacy(accountID string, domainName string) (*whoisPrivacyResponse, error) {
|
||||
@ -67,3 +85,19 @@ func (s *RegistrarService) DisableWhoisPrivacy(accountID string, domainName stri
|
||||
privacyResponse.HttpResponse = resp
|
||||
return privacyResponse, nil
|
||||
}
|
||||
|
||||
// RenewWhoisPrivacy renews the whois privacy for the domain.
|
||||
//
|
||||
// See https://developer.dnsimple.com/v2/registrar/whois-privacy/#renew
|
||||
func (s *RegistrarService) RenewWhoisPrivacy(accountID string, domainName string) (*whoisPrivacyRenewalResponse, error) {
|
||||
path := versioned(fmt.Sprintf("/%v/registrar/domains/%v/whois_privacy/renewals", accountID, domainName))
|
||||
privacyRenewalResponse := &whoisPrivacyRenewalResponse{}
|
||||
|
||||
resp, err := s.client.post(path, nil, privacyRenewalResponse)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
privacyRenewalResponse.HttpResponse = resp
|
||||
return privacyRenewalResponse, nil
|
||||
}
|
||||
|
2
vendor/github.com/dnsimple/dnsimple-go/dnsimple/tlds.go
generated
vendored
2
vendor/github.com/dnsimple/dnsimple-go/dnsimple/tlds.go
generated
vendored
@ -100,7 +100,7 @@ func (s *TldsService) GetTld(tld string) (*tldResponse, error) {
|
||||
return tldResponse, nil
|
||||
}
|
||||
|
||||
// GetTld fetches the extended attributes of a TLD.
|
||||
// GetTldExtendedAttributes fetches the extended attributes of a TLD.
|
||||
//
|
||||
// See https://developer.dnsimple.com/v2/tlds/#get
|
||||
func (s *TldsService) GetTldExtendedAttributes(tld string) (*tldExtendedAttributesResponse, error) {
|
||||
|
Reference in New Issue
Block a user