godns/hosts/hosts.go

49 lines
872 B
Go
Raw Normal View History

2020-01-25 17:43:02 +00:00
package hosts
2013-07-26 04:06:16 +00:00
import (
"time"
2019-09-26 04:43:17 +00:00
)
2013-07-26 04:06:16 +00:00
var (
zeroDuration = time.Duration(0)
)
2020-01-25 17:43:02 +00:00
type Hosts interface {
Get(queryType uint16, domain string) ([]string, time.Duration, bool)
2020-01-25 17:43:02 +00:00
}
type ProviderList struct {
providers []Provider
2013-07-26 04:06:16 +00:00
}
type Provider interface {
Get(queryType uint16, domain string) ([]string, time.Duration, bool)
Set(t, domain, value string) (bool, error)
2018-07-01 03:08:29 +00:00
}
func NewHosts(providers []Provider) Hosts {
return &ProviderList{providers}
2013-07-26 10:54:19 +00:00
}
/*
2015-10-14 04:41:08 +00:00
Match local /etc/hosts file first, remote redis records second
2013-07-26 10:54:19 +00:00
*/
func (h *ProviderList) Get(queryType uint16, domain string) ([]string, time.Duration, bool) {
var vals []string
2018-07-01 03:08:29 +00:00
var ok bool
var ttl time.Duration
2015-02-12 06:54:02 +00:00
2018-07-01 03:08:29 +00:00
for _, provider := range h.providers {
vals, ttl, ok = provider.Get(queryType, domain)
2018-07-01 03:08:29 +00:00
if ok {
break
2015-02-12 06:54:02 +00:00
}
2013-07-26 10:54:19 +00:00
}
2015-02-03 12:32:18 +00:00
if vals == nil {
return nil, zeroDuration, false
2013-07-26 10:54:19 +00:00
}
return vals, ttl, true
2020-01-25 17:43:02 +00:00
}