nginx-proxy-manager/backend/internal/dnsproviders/common.go

147 lines
2.7 KiB
Go
Raw Normal View History

package dnsproviders
import (
"errors"
"npm/internal/util"
)
type providerField struct {
Name string `json:"name"`
Type string `json:"type"`
IsRequired bool `json:"is_required"`
IsSecret bool `json:"is_secret"`
MetaKey string `json:"meta_key"`
EnvKey string `json:"-"` // not exposed in api
}
// Provider is a simple struct
type Provider struct {
AcmeshName string `json:"acmesh_name"`
Schema string `json:"-"`
Fields []providerField `json:"fields"`
}
// GetAcmeEnvVars will map the meta given to the env var required for
// acme.sh to use this dns provider
func (p *Provider) GetAcmeEnvVars(meta interface{}) map[string]string {
res := make(map[string]string)
for _, field := range p.Fields {
if acmeShEnvValue, found := util.FindItemInInterface(field.MetaKey, meta); found {
res[field.EnvKey] = acmeShEnvValue.(string)
}
}
return res
}
// List returns an array of providers
func List() []Provider {
return []Provider{
getDNSAd(),
getDNSAli(),
getDNSAws(),
2022-06-01 04:57:20 +00:00
getDNSAutoDNS(),
2022-06-01 05:02:57 +00:00
getDNSAzure(),
getDNSCf(),
getDNSCloudns(),
getDNSCx(),
getDNSCyon(),
getDNSDgon(),
getDNSDNSimple(),
2022-06-01 08:09:35 +00:00
getDNSDa(),
getDNSDp(),
2022-06-01 05:22:40 +00:00
getDNSDreamhost(),
getDNSDuckDNS(),
getDNSDyn(),
getDNSDynu(),
getDNSFreeDNS(),
getDNSGandiLiveDNS(),
getDNSGd(),
getDNSHe(),
getDNSInfoblox(),
2022-06-01 04:49:31 +00:00
getDNSInwx(),
getDNSIspconfig(),
2022-06-01 08:14:16 +00:00
getDNSKinghost(),
getDNSLinodeV4(),
getDNSLua(),
getDNSMe(),
getDNSNamecom(),
2022-06-01 04:54:21 +00:00
getDNSNamesilo(),
2022-06-01 05:06:09 +00:00
getDNSSelectel(),
2022-06-01 04:51:23 +00:00
getDNSServercow(),
getDNSOne(),
getDNSPDNS(),
getDNSUnoeuro(),
getDNSVscale(),
getDNSYandex(),
2022-06-01 08:14:16 +00:00
getDNSDNZilore(),
2022-06-01 05:11:06 +00:00
getDNSZonomi(),
}
}
// GetAll returns all the configured providers
func GetAll() map[string]Provider {
mp := make(map[string]Provider)
items := List()
for _, item := range items {
mp[item.AcmeshName] = item
}
return mp
}
// Get returns a single provider by name
func Get(provider string) (Provider, error) {
all := GetAll()
if item, found := all[provider]; found {
return item, nil
}
return Provider{}, errors.New("provider_not_found")
}
// GetAllSchemas returns a flat array with just the schemas
func GetAllSchemas() []string {
items := List()
mp := make([]string, 0)
for _, item := range items {
mp = append(mp, item.Schema)
}
return mp
}
const commonKeySchema = `
{
"type": "object",
"required": [
"api_key"
],
"additionalProperties": false,
"properties": {
"api_key": {
"type": "string",
"minLength": 1
}
}
}
`
// nolint: gosec
const commonKeySecretSchema = `
{
"type": "object",
"required": [
"api_key",
"secret"
],
"additionalProperties": false,
"properties": {
"api_key": {
"type": "string",
"minLength": 1
},
"secret": {
"type": "string",
"minLength": 1
}
}
}
`