2022-05-11 22:47:31 +00:00
|
|
|
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{
|
2022-06-01 09:11:21 +00:00
|
|
|
getDNSAcmeDNS(),
|
2022-05-11 22:47:31 +00:00
|
|
|
getDNSAd(),
|
|
|
|
getDNSAli(),
|
|
|
|
getDNSAws(),
|
2022-06-01 04:57:20 +00:00
|
|
|
getDNSAutoDNS(),
|
2022-06-01 05:02:57 +00:00
|
|
|
getDNSAzure(),
|
2022-05-11 22:47:31 +00:00
|
|
|
getDNSCf(),
|
|
|
|
getDNSCloudns(),
|
2022-06-01 09:23:56 +00:00
|
|
|
getDNSConoha(),
|
2022-05-11 22:47:31 +00:00
|
|
|
getDNSCx(),
|
|
|
|
getDNSCyon(),
|
|
|
|
getDNSDgon(),
|
2022-06-01 09:45:31 +00:00
|
|
|
getDNSMe(),
|
2022-05-11 22:47:31 +00:00
|
|
|
getDNSDNSimple(),
|
2022-06-01 08:09:35 +00:00
|
|
|
getDNSDa(),
|
2022-05-11 22:47:31 +00:00
|
|
|
getDNSDp(),
|
2022-06-01 09:23:56 +00:00
|
|
|
getDNSDpi(),
|
2022-06-01 05:22:40 +00:00
|
|
|
getDNSDreamhost(),
|
2022-05-11 22:47:31 +00:00
|
|
|
getDNSDuckDNS(),
|
|
|
|
getDNSDyn(),
|
|
|
|
getDNSDynu(),
|
2022-06-01 09:23:56 +00:00
|
|
|
getDNSEuserv(),
|
2022-05-11 22:47:31 +00:00
|
|
|
getDNSFreeDNS(),
|
|
|
|
getDNSGandiLiveDNS(),
|
|
|
|
getDNSGd(),
|
|
|
|
getDNSHe(),
|
|
|
|
getDNSInfoblox(),
|
2022-06-01 04:49:31 +00:00
|
|
|
getDNSInwx(),
|
2022-05-11 22:47:31 +00:00
|
|
|
getDNSIspconfig(),
|
2022-06-01 08:14:16 +00:00
|
|
|
getDNSKinghost(),
|
2022-05-11 22:47:31 +00:00
|
|
|
getDNSLinodeV4(),
|
2022-06-01 08:21:14 +00:00
|
|
|
getDNSLoopia(),
|
2022-05-11 22:47:31 +00:00
|
|
|
getDNSLua(),
|
|
|
|
getDNSNamecom(),
|
2022-06-01 04:54:21 +00:00
|
|
|
getDNSNamesilo(),
|
2022-06-01 09:45:31 +00:00
|
|
|
getDNSOne(),
|
|
|
|
getDNSYandex(),
|
2022-06-01 05:06:09 +00:00
|
|
|
getDNSSelectel(),
|
2022-06-01 04:51:23 +00:00
|
|
|
getDNSServercow(),
|
2022-06-01 09:23:56 +00:00
|
|
|
getDNSTele3(),
|
2022-05-11 22:47:31 +00:00
|
|
|
getDNSPDNS(),
|
|
|
|
getDNSUnoeuro(),
|
|
|
|
getDNSVscale(),
|
2022-06-01 08:14:16 +00:00
|
|
|
getDNSDNZilore(),
|
2022-06-01 05:11:06 +00:00
|
|
|
getDNSZonomi(),
|
2022-05-11 22:47:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|