1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
package domain
import (
"fmt"
"time"
"github.com/scaleway/scaleway-sdk-go/internal/async"
"github.com/scaleway/scaleway-sdk-go/internal/errors"
"github.com/scaleway/scaleway-sdk-go/scw"
)
const (
defaultRetryInterval = 15 * time.Second
defaultTimeout = 5 * time.Minute
)
const (
// ErrCodeNoSuchDNSZone for service response error code
//
// The specified dns zone does not exist.
ErrCodeNoSuchDNSZone = "NoSuchDNSZone"
)
// WaitForDNSZoneRequest is used by WaitForDNSZone method.
type WaitForDNSZoneRequest struct {
DNSZone string
Timeout *time.Duration
RetryInterval *time.Duration
}
func (s *API) WaitForDNSZone(
req *WaitForDNSZoneRequest,
opts ...scw.RequestOption,
) (*DNSZone, error) {
timeout := defaultTimeout
if req.Timeout != nil {
timeout = *req.Timeout
}
retryInterval := defaultRetryInterval
if req.RetryInterval != nil {
retryInterval = *req.RetryInterval
}
terminalStatus := map[DNSZoneStatus]struct{}{
DNSZoneStatusActive: {},
DNSZoneStatusLocked: {},
DNSZoneStatusError: {},
}
dns, err := async.WaitSync(&async.WaitSyncConfig{
Get: func() (interface{}, bool, error) {
// listing dns zones and take the first one
DNSZones, err := s.ListDNSZones(&ListDNSZonesRequest{
DNSZone: req.DNSZone,
}, opts...)
if err != nil {
return nil, false, err
}
if len(DNSZones.DNSZones) == 0 {
return nil, true, fmt.Errorf(ErrCodeNoSuchDNSZone)
}
Dns := DNSZones.DNSZones[0]
_, isTerminal := terminalStatus[Dns.Status]
return Dns, isTerminal, nil
},
Timeout: timeout,
IntervalStrategy: async.LinearIntervalStrategy(retryInterval),
})
if err != nil {
return nil, errors.Wrap(err, "waiting for DNS failed")
}
return dns.(*DNSZone), nil
}
|