mirror of
				https://github.com/coredns/coredns.git
				synced 2025-10-31 10:13:14 -04:00 
			
		
		
		
	* Fix linter errors * More linting fixes * More docs and making members private that dont need to be public * Fix linter errors * More linting fixes * More docs and making members private that dont need to be public * More lint fixes This leaves: ~~~ middleware/kubernetes/nametemplate/nametemplate.go:64:6: exported type NameTemplate should have comment or be unexported middleware/kubernetes/nametemplate/nametemplate.go:71:1: exported method NameTemplate.SetTemplate should have comment or be unexported middleware/kubernetes/nametemplate/nametemplate.go:108:1: exported method NameTemplate.GetZoneFromSegmentArray should have comment or be unexported middleware/kubernetes/nametemplate/nametemplate.go:116:1: exported method NameTemplate.GetNamespaceFromSegmentArray should have comment or be unexported middleware/kubernetes/nametemplate/nametemplate.go:120:1: exported method NameTemplate.GetServiceFromSegmentArray should have comment or be unexported middleware/kubernetes/nametemplate/nametemplate.go:124:1: exported method NameTemplate.GetTypeFromSegmentArray should have comment or be unexported middleware/kubernetes/nametemplate/nametemplate.go:135:1: exported method NameTemplate.GetSymbolFromSegmentArray should have comment or be unexported middleware/kubernetes/nametemplate/nametemplate.go:167:1: exported method NameTemplate.IsValid should have comment or be unexported middleware/kubernetes/nametemplate/nametemplate.go:182:6: exported type NameValues should have comment or be unexported middleware/kubernetes/util/util.go:1:1: package comment should be of the form "Package util ..." middleware/kubernetes/util/util.go:27:2: exported const WildcardStar should have comment (or a comment on this block) or be unexported middleware/proxy/lookup.go:66:1: exported method Proxy.Forward should have comment or be unexported middleware/proxy/proxy.go:24:6: exported type Client should have comment or be unexported middleware/proxy/proxy.go:107:1: exported function Clients should have comment or be unexported middleware/proxy/reverseproxy.go:10:6: exported type ReverseProxy should have comment or be unexported middleware/proxy/reverseproxy.go:16:1: exported method ReverseProxy.ServeDNS should have comment or be unexported middleware/proxy/upstream.go:42:6: exported type Options should have comment or be unexported ~~~ I plan on reworking the proxy anyway, so I'll leave that be.
		
			
				
	
	
		
			102 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			102 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package cache
 | |
| 
 | |
| import (
 | |
| 	"strconv"
 | |
| 	"time"
 | |
| 
 | |
| 	"github.com/miekg/dns"
 | |
| )
 | |
| 
 | |
| type item struct {
 | |
| 	Authoritative      bool
 | |
| 	AuthenticatedData  bool
 | |
| 	RecursionAvailable bool
 | |
| 	Answer             []dns.RR
 | |
| 	Ns                 []dns.RR
 | |
| 	Extra              []dns.RR
 | |
| 
 | |
| 	origTTL uint32
 | |
| 	stored  time.Time
 | |
| }
 | |
| 
 | |
| func newItem(m *dns.Msg, d time.Duration) *item {
 | |
| 	i := new(item)
 | |
| 	i.Authoritative = m.Authoritative
 | |
| 	i.AuthenticatedData = m.AuthenticatedData
 | |
| 	i.RecursionAvailable = m.RecursionAvailable
 | |
| 	i.Answer = m.Answer
 | |
| 	i.Ns = m.Ns
 | |
| 	i.Extra = make([]dns.RR, len(m.Extra))
 | |
| 	// Don't copy OPT record as these are hop-by-hop.
 | |
| 	j := 0
 | |
| 	for _, e := range m.Extra {
 | |
| 		if e.Header().Rrtype == dns.TypeOPT {
 | |
| 			continue
 | |
| 		}
 | |
| 		i.Extra[j] = e
 | |
| 		j++
 | |
| 	}
 | |
| 	i.Extra = i.Extra[:j]
 | |
| 
 | |
| 	i.origTTL = uint32(d.Seconds())
 | |
| 	i.stored = time.Now().UTC()
 | |
| 
 | |
| 	return i
 | |
| }
 | |
| 
 | |
| // toMsg turns i into a message, it tailers to reply to m.
 | |
| func (i *item) toMsg(m *dns.Msg) *dns.Msg {
 | |
| 	m1 := new(dns.Msg)
 | |
| 	m1.SetReply(m)
 | |
| 	m1.Authoritative = i.Authoritative
 | |
| 	m1.AuthenticatedData = i.AuthenticatedData
 | |
| 	m1.RecursionAvailable = i.RecursionAvailable
 | |
| 	m1.Compress = true
 | |
| 
 | |
| 	m1.Answer = i.Answer
 | |
| 	m1.Ns = i.Ns
 | |
| 	m1.Extra = i.Extra
 | |
| 
 | |
| 	ttl := int(i.origTTL) - int(time.Now().UTC().Sub(i.stored).Seconds())
 | |
| 	if ttl < baseTTL {
 | |
| 		ttl = baseTTL
 | |
| 	}
 | |
| 	setCap(m1, uint32(ttl))
 | |
| 	return m1
 | |
| }
 | |
| 
 | |
| // setCap sets the ttl on all RRs in all sections.
 | |
| func setCap(m *dns.Msg, ttl uint32) {
 | |
| 	for _, r := range m.Answer {
 | |
| 		r.Header().Ttl = uint32(ttl)
 | |
| 	}
 | |
| 	for _, r := range m.Ns {
 | |
| 		r.Header().Ttl = uint32(ttl)
 | |
| 	}
 | |
| 	for _, r := range m.Extra {
 | |
| 		if r.Header().Rrtype == dns.TypeOPT {
 | |
| 			continue
 | |
| 		}
 | |
| 		r.Header().Ttl = uint32(ttl)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| // nodataKey returns a caching key for NODATA responses.
 | |
| func noDataKey(qname string, qtype uint16, do bool) string {
 | |
| 	if do {
 | |
| 		return "1" + qname + ".." + strconv.Itoa(int(qtype))
 | |
| 	}
 | |
| 	return "0" + qname + ".." + strconv.Itoa(int(qtype))
 | |
| }
 | |
| 
 | |
| // nameErrorKey returns a caching key for NXDOMAIN responses.
 | |
| func nameErrorKey(qname string, do bool) string {
 | |
| 	if do {
 | |
| 		return "1" + qname
 | |
| 	}
 | |
| 	return "0" + qname
 | |
| }
 | |
| 
 | |
| // successKey returns a caching key for successfull answers.
 | |
| func successKey(qname string, qtype uint16, do bool) string { return noDataKey(qname, qtype, do) }
 |