mirror of
https://github.com/xiaoxinpro/nginx-proxy-manager-zh.git
synced 2025-01-23 13:18:14 -05:00
dns_conoha, dns_dpi, dns_euserv, dns_tele3
This commit is contained in:
parent
523449f050
commit
b221446bb0
@ -44,16 +44,19 @@ func List() []Provider {
|
|||||||
getDNSAzure(),
|
getDNSAzure(),
|
||||||
getDNSCf(),
|
getDNSCf(),
|
||||||
getDNSCloudns(),
|
getDNSCloudns(),
|
||||||
|
getDNSConoha(),
|
||||||
getDNSCx(),
|
getDNSCx(),
|
||||||
getDNSCyon(),
|
getDNSCyon(),
|
||||||
getDNSDgon(),
|
getDNSDgon(),
|
||||||
getDNSDNSimple(),
|
getDNSDNSimple(),
|
||||||
getDNSDa(),
|
getDNSDa(),
|
||||||
getDNSDp(),
|
getDNSDp(),
|
||||||
|
getDNSDpi(),
|
||||||
getDNSDreamhost(),
|
getDNSDreamhost(),
|
||||||
getDNSDuckDNS(),
|
getDNSDuckDNS(),
|
||||||
getDNSDyn(),
|
getDNSDyn(),
|
||||||
getDNSDynu(),
|
getDNSDynu(),
|
||||||
|
getDNSEuserv(),
|
||||||
getDNSFreeDNS(),
|
getDNSFreeDNS(),
|
||||||
getDNSGandiLiveDNS(),
|
getDNSGandiLiveDNS(),
|
||||||
getDNSGd(),
|
getDNSGd(),
|
||||||
@ -70,6 +73,7 @@ func List() []Provider {
|
|||||||
getDNSNamesilo(),
|
getDNSNamesilo(),
|
||||||
getDNSSelectel(),
|
getDNSSelectel(),
|
||||||
getDNSServercow(),
|
getDNSServercow(),
|
||||||
|
getDNSTele3(),
|
||||||
getDNSOne(),
|
getDNSOne(),
|
||||||
getDNSPDNS(),
|
getDNSPDNS(),
|
||||||
getDNSUnoeuro(),
|
getDNSUnoeuro(),
|
||||||
|
70
backend/internal/dnsproviders/dns_conoha.go
Normal file
70
backend/internal/dnsproviders/dns_conoha.go
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
package dnsproviders
|
||||||
|
|
||||||
|
const conohaSchema = `
|
||||||
|
{
|
||||||
|
"type": "object",
|
||||||
|
"required": [
|
||||||
|
"subscription_id",
|
||||||
|
"tenant_id",
|
||||||
|
"app_id",
|
||||||
|
"client_secret"
|
||||||
|
],
|
||||||
|
"additionalProperties": false,
|
||||||
|
"properties": {
|
||||||
|
"api_url": {
|
||||||
|
"type": "string",
|
||||||
|
"minLength": 4
|
||||||
|
},
|
||||||
|
"user": {
|
||||||
|
"type": "string",
|
||||||
|
"minLength": 1
|
||||||
|
},
|
||||||
|
"pass": {
|
||||||
|
"type": "string",
|
||||||
|
"minLength": 1
|
||||||
|
},
|
||||||
|
"tenant_id": {
|
||||||
|
"type": "string",
|
||||||
|
"minLength": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
`
|
||||||
|
|
||||||
|
func getDNSConoha() Provider {
|
||||||
|
return Provider{
|
||||||
|
AcmeshName: "dns_conoha",
|
||||||
|
Schema: conohaSchema,
|
||||||
|
Fields: []providerField{
|
||||||
|
{
|
||||||
|
Name: "API URL",
|
||||||
|
Type: "text",
|
||||||
|
MetaKey: "api_url",
|
||||||
|
EnvKey: "CONOHA_IdentityServiceApi",
|
||||||
|
IsRequired: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "Username",
|
||||||
|
Type: "text",
|
||||||
|
MetaKey: "user",
|
||||||
|
EnvKey: "CONOHA_Username",
|
||||||
|
IsRequired: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "Password",
|
||||||
|
Type: "password",
|
||||||
|
MetaKey: "password",
|
||||||
|
EnvKey: "CONOHA_Password",
|
||||||
|
IsRequired: true,
|
||||||
|
IsSecret: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "Tenant ID",
|
||||||
|
Type: "text",
|
||||||
|
MetaKey: "tenant_id",
|
||||||
|
EnvKey: "CONOHA_TenantId",
|
||||||
|
IsRequired: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
46
backend/internal/dnsproviders/dns_dpi.go
Normal file
46
backend/internal/dnsproviders/dns_dpi.go
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
package dnsproviders
|
||||||
|
|
||||||
|
const dnsPodComSchema = `
|
||||||
|
{
|
||||||
|
"type": "object",
|
||||||
|
"required": [
|
||||||
|
"id",
|
||||||
|
"api_key"
|
||||||
|
],
|
||||||
|
"additionalProperties": false,
|
||||||
|
"properties": {
|
||||||
|
"id": {
|
||||||
|
"type": "string",
|
||||||
|
"minLength": 1
|
||||||
|
},
|
||||||
|
"api_key": {
|
||||||
|
"type": "string",
|
||||||
|
"minLength": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
`
|
||||||
|
|
||||||
|
func getDNSDpi() Provider {
|
||||||
|
return Provider{
|
||||||
|
AcmeshName: "dns_dpi",
|
||||||
|
Schema: dnsPodComSchema,
|
||||||
|
Fields: []providerField{
|
||||||
|
{
|
||||||
|
Name: "ID",
|
||||||
|
Type: "text",
|
||||||
|
MetaKey: "id",
|
||||||
|
EnvKey: "DPI_Id",
|
||||||
|
IsRequired: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "Key",
|
||||||
|
Type: "password",
|
||||||
|
MetaKey: "api_key",
|
||||||
|
EnvKey: "DPI_Key",
|
||||||
|
IsRequired: true,
|
||||||
|
IsSecret: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
50
backend/internal/dnsproviders/dns_euserv.go
Normal file
50
backend/internal/dnsproviders/dns_euserv.go
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
package dnsproviders
|
||||||
|
|
||||||
|
const euservSchema = `
|
||||||
|
{
|
||||||
|
"type": "object",
|
||||||
|
"required": [
|
||||||
|
"user",
|
||||||
|
"password"
|
||||||
|
],
|
||||||
|
"additionalProperties": false,
|
||||||
|
"properties": {
|
||||||
|
"user": {
|
||||||
|
"type": "string",
|
||||||
|
"minLength": 1
|
||||||
|
},
|
||||||
|
"password": {
|
||||||
|
"type": "string",
|
||||||
|
"minLength": 1
|
||||||
|
},
|
||||||
|
"otp_secret": {
|
||||||
|
"type": "string",
|
||||||
|
"minLength": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
`
|
||||||
|
|
||||||
|
func getDNSEuserv() Provider {
|
||||||
|
return Provider{
|
||||||
|
AcmeshName: "dns_euserv",
|
||||||
|
Schema: euservSchema,
|
||||||
|
Fields: []providerField{
|
||||||
|
{
|
||||||
|
Name: "User",
|
||||||
|
Type: "text",
|
||||||
|
MetaKey: "user",
|
||||||
|
EnvKey: "EUSERV_Username",
|
||||||
|
IsRequired: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "Password",
|
||||||
|
Type: "password",
|
||||||
|
MetaKey: "password",
|
||||||
|
EnvKey: "EUSERV_Password",
|
||||||
|
IsRequired: true,
|
||||||
|
IsSecret: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
25
backend/internal/dnsproviders/dns_tele3.go
Normal file
25
backend/internal/dnsproviders/dns_tele3.go
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
package dnsproviders
|
||||||
|
|
||||||
|
func getDNSTele3() Provider {
|
||||||
|
return Provider{
|
||||||
|
AcmeshName: "dns_tele3",
|
||||||
|
Schema: commonKeySecretSchema,
|
||||||
|
Fields: []providerField{
|
||||||
|
{
|
||||||
|
Name: "Key",
|
||||||
|
Type: "text",
|
||||||
|
MetaKey: "api_key",
|
||||||
|
EnvKey: "TELE3_Key",
|
||||||
|
IsRequired: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "Secret",
|
||||||
|
Type: "password",
|
||||||
|
MetaKey: "secret",
|
||||||
|
EnvKey: "TELE3_Secret",
|
||||||
|
IsRequired: true,
|
||||||
|
IsSecret: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
@ -26,6 +26,9 @@
|
|||||||
"acmesh.dns_cloudns": {
|
"acmesh.dns_cloudns": {
|
||||||
"defaultMessage": "ClouDNS.net"
|
"defaultMessage": "ClouDNS.net"
|
||||||
},
|
},
|
||||||
|
"acmesh.dns_conoha": {
|
||||||
|
"defaultMessage": "Conoha"
|
||||||
|
},
|
||||||
"acmesh.dns_cx": {
|
"acmesh.dns_cx": {
|
||||||
"defaultMessage": "CloudXNS"
|
"defaultMessage": "CloudXNS"
|
||||||
},
|
},
|
||||||
@ -44,6 +47,9 @@
|
|||||||
"acmesh.dns_dp": {
|
"acmesh.dns_dp": {
|
||||||
"defaultMessage": "DNSPod.cn"
|
"defaultMessage": "DNSPod.cn"
|
||||||
},
|
},
|
||||||
|
"acmesh.dns_dpi": {
|
||||||
|
"defaultMessage": "DNSPod.com"
|
||||||
|
},
|
||||||
"acmesh.dns_dreamhost": {
|
"acmesh.dns_dreamhost": {
|
||||||
"defaultMessage": "DreamHost"
|
"defaultMessage": "DreamHost"
|
||||||
},
|
},
|
||||||
@ -56,6 +62,9 @@
|
|||||||
"acmesh.dns_dynu": {
|
"acmesh.dns_dynu": {
|
||||||
"defaultMessage": "Dynu"
|
"defaultMessage": "Dynu"
|
||||||
},
|
},
|
||||||
|
"acmesh.dns_euserv": {
|
||||||
|
"defaultMessage": "Euserv"
|
||||||
|
},
|
||||||
"acmesh.dns_freedns": {
|
"acmesh.dns_freedns": {
|
||||||
"defaultMessage": "FreeDNS"
|
"defaultMessage": "FreeDNS"
|
||||||
},
|
},
|
||||||
@ -110,6 +119,9 @@
|
|||||||
"acmesh.dns_servercow": {
|
"acmesh.dns_servercow": {
|
||||||
"defaultMessage": "Servercow"
|
"defaultMessage": "Servercow"
|
||||||
},
|
},
|
||||||
|
"acmesh.dns_tele3": {
|
||||||
|
"defaultMessage": "TELE3"
|
||||||
|
},
|
||||||
"acmesh.dns_unoeuro": {
|
"acmesh.dns_unoeuro": {
|
||||||
"defaultMessage": "UnoEuro"
|
"defaultMessage": "UnoEuro"
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user