1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00

Rename provider handles to *Provider (#914)

This commit is contained in:
Tom Limoncelli
2020-10-26 09:25:30 -04:00
committed by GitHub
parent 29c7ff3a05
commit ca30c9c34f
43 changed files with 318 additions and 318 deletions

View File

@@ -14,7 +14,7 @@ const (
baseURL = "https://dns.hetzner.com/api/v1"
)
type api struct {
type hetznerProvider struct {
apiKey string
zones map[string]zone
requestRateLimiter requestRateLimiter
@@ -29,7 +29,7 @@ func checkIsLockedSystemRecord(record record) error {
return nil
}
func (api *api) createRecord(record record) error {
func (api *hetznerProvider) createRecord(record record) error {
if err := checkIsLockedSystemRecord(record); err != nil {
return err
}
@@ -44,14 +44,14 @@ func (api *api) createRecord(record record) error {
return api.request("/records", "POST", request, nil)
}
func (api *api) createZone(name string) error {
func (api *hetznerProvider) createZone(name string) error {
request := createZoneRequest{
Name: name,
}
return api.request("/zones", "POST", request, nil)
}
func (api *api) deleteRecord(record record) error {
func (api *hetznerProvider) deleteRecord(record record) error {
if err := checkIsLockedSystemRecord(record); err != nil {
return err
}
@@ -60,7 +60,7 @@ func (api *api) deleteRecord(record record) error {
return api.request(url, "DELETE", nil, nil)
}
func (api *api) getAllRecords(domain string) ([]record, error) {
func (api *hetznerProvider) getAllRecords(domain string) ([]record, error) {
zone, err := api.getZone(domain)
if err != nil {
return nil, err
@@ -94,7 +94,7 @@ func (api *api) getAllRecords(domain string) ([]record, error) {
return records, nil
}
func (api *api) getAllZones() error {
func (api *hetznerProvider) getAllZones() error {
if api.zones != nil {
return nil
}
@@ -119,7 +119,7 @@ func (api *api) getAllZones() error {
return nil
}
func (api *api) getZone(name string) (*zone, error) {
func (api *hetznerProvider) getZone(name string) (*zone, error) {
if err := api.getAllZones(); err != nil {
return nil, err
}
@@ -130,7 +130,7 @@ func (api *api) getZone(name string) (*zone, error) {
return &zone, nil
}
func (api *api) request(endpoint string, method string, request interface{}, target interface{}) error {
func (api *hetznerProvider) request(endpoint string, method string, request interface{}, target interface{}) error {
var requestBody io.Reader
if request != nil {
requestBodySerialised, err := json.Marshal(request)
@@ -179,13 +179,13 @@ func (api *api) request(endpoint string, method string, request interface{}, tar
}
}
func (api *api) startRateLimited() {
func (api *hetznerProvider) startRateLimited() {
// Simulate a request that is getting a 429 response.
api.requestRateLimiter.afterRequest()
api.requestRateLimiter.bumpDelay()
}
func (api *api) updateRecord(record record) error {
func (api *hetznerProvider) updateRecord(record record) error {
if err := checkIsLockedSystemRecord(record); err != nil {
return err
}

View File

@@ -34,7 +34,7 @@ func New(settings map[string]string, _ json.RawMessage) (providers.DNSServicePro
return nil, fmt.Errorf("missing HETZNER api_key")
}
api := &api{}
api := &hetznerProvider{}
api.apiKey = settings["api_key"]
@@ -46,7 +46,7 @@ func New(settings map[string]string, _ json.RawMessage) (providers.DNSServicePro
}
// EnsureDomainExists creates the domain if it does not exist.
func (api *api) EnsureDomainExists(domain string) error {
func (api *hetznerProvider) EnsureDomainExists(domain string) error {
domains, err := api.ListZones()
if err != nil {
return err
@@ -62,7 +62,7 @@ func (api *api) EnsureDomainExists(domain string) error {
}
// GetDomainCorrections returns the corrections for a domain.
func (api *api) GetDomainCorrections(dc *models.DomainConfig) ([]*models.Correction, error) {
func (api *hetznerProvider) GetDomainCorrections(dc *models.DomainConfig) ([]*models.Correction, error) {
dc, err := dc.Copy()
if err != nil {
return nil, err
@@ -135,7 +135,7 @@ func (api *api) GetDomainCorrections(dc *models.DomainConfig) ([]*models.Correct
}
// GetNameservers returns the nameservers for a domain.
func (api *api) GetNameservers(domain string) ([]*models.Nameserver, error) {
func (api *hetznerProvider) GetNameservers(domain string) ([]*models.Nameserver, error) {
zone, err := api.getZone(domain)
if err != nil {
return nil, err
@@ -148,7 +148,7 @@ func (api *api) GetNameservers(domain string) ([]*models.Nameserver, error) {
}
// GetZoneRecords gets the records of a zone and returns them in RecordConfig format.
func (api *api) GetZoneRecords(domain string) (models.Records, error) {
func (api *hetznerProvider) GetZoneRecords(domain string) (models.Records, error) {
records, err := api.getAllRecords(domain)
if err != nil {
return nil, err
@@ -161,7 +161,7 @@ func (api *api) GetZoneRecords(domain string) (models.Records, error) {
}
// ListZones lists the zones on this account.
func (api *api) ListZones() ([]string, error) {
func (api *hetznerProvider) ListZones() ([]string, error) {
if err := api.getAllZones(); err != nil {
return nil, err
}