mirror of
https://github.com/Luzifer/named-blacklist.git
synced 2024-11-08 07:20:07 +00:00
37 lines
643 B
Go
37 lines
643 B
Go
package main
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
var (
|
|
providerRegistry = map[providerType]provider{}
|
|
providerRegistryLock sync.Mutex
|
|
)
|
|
|
|
type entry struct {
|
|
Domain string
|
|
Comment string
|
|
}
|
|
|
|
type provider interface {
|
|
GetDomainList(providerDefinition) ([]entry, error)
|
|
}
|
|
|
|
func registerProvider(t providerType, p provider) {
|
|
providerRegistryLock.Lock()
|
|
defer providerRegistryLock.Unlock()
|
|
|
|
providerRegistry[t] = p
|
|
}
|
|
|
|
func getDomainList(p providerDefinition) ([]entry, error) {
|
|
pro, ok := providerRegistry[p.Type]
|
|
if !ok {
|
|
return nil, errors.Errorf("Unknown provider type %q", p.Type)
|
|
}
|
|
|
|
return pro.GetDomainList(p)
|
|
}
|