5
0
mirror of git://git.proxmox.com/git/proxmox-acme.git synced 2025-02-25 21:57:20 +03:00

DNSChallenge: make plugins a hash with an optional schema

so that we can use that schema to generate form fields in the gui

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak 2020-05-05 14:38:11 +02:00 committed by Thomas Lamprecht
parent f4ee95aec5
commit 6f5be4aa3c

View File

@ -18,109 +18,138 @@ sub type {
return 'dns';
}
my $plugin_names = [
'acmedns',
'acmeproxy',
'active24',
'ad',
'ali',
'autodns',
'aws',
'azure',
'cf',
'clouddns',
'cloudns',
'cn',
'conoha',
'constellix',
'cx',
'cyon',
'da',
'ddnss',
'desec',
'dgon',
'dnsimple',
'do',
'doapi',
'domeneshop',
'dp',
'dpi',
'dreamhost',
'duckdns',
'durabledns',
'dyn',
'dynu',
'dynv6',
'easydns',
'euserv',
'exoscale',
'freedns',
'gandi_livedns',
'gcloud',
'gd',
'gdnsdk',
'he',
'hexonet',
'hostingde',
'infoblox',
'internetbs',
'inwx',
'ispconfig',
'jd',
'kas',
'kinghost',
'knot',
'leaseweb',
'lexicon',
'linode',
'linode_v4',
'loopia',
'lua',
'maradns',
'me',
'miab',
'misaka',
'myapi',
'mydevil',
'mydnsjp',
'namecheap',
'namecom',
'namesilo',
'nederhost',
'neodigit',
'netcup',
'nic',
'nsd',
'nsone',
'nsupdate',
'nw',
'one',
'online',
'openprovider',
'opnsense',
'ovh',
'pdns',
'pleskxml',
'pointhq',
'rackspace',
'rcode0',
'regru',
'schlundtech',
'selectel',
'servercow',
'tele3',
'ultra',
'unoeuro',
'variomedia',
'vscale',
'vultr',
'yandex',
'zilore',
'zone',
'zonomi',
];
# describe the data schema of the supported plugins
my $plugins = {
'acmedns' => {},
'acmeproxy' => {},
'active24' => {},
'ad' => {},
'ali' => {},
'autodns' => {},
'aws' => {},
'azure' => {},
'cf' => {},
'clouddns' => {},
'cloudns' => {},
'cn' => {},
'conoha' => {},
'constellix' => {},
'cx' => {},
'cyon' => {},
'da' => {},
'ddnss' => {},
'desec' => {},
'dgon' => {},
'dnsimple' => {},
'do' => {},
'doapi' => {},
'domeneshop' => {},
'dp' => {},
'dpi' => {},
'dreamhost' => {},
'duckdns' => {},
'durabledns' => {},
'dyn' => {},
'dynu' => {},
'dynv6' => {},
'easydns' => {},
'euserv' => {},
'exoscale' => {},
'freedns' => {},
'gandi_livedns' => {},
'gcloud' => {},
'gd' => {},
'gdnsdk' => {},
'he' => {},
'hexonet' => {},
'hostingde' => {},
'infoblox' => {},
'internetbs' => {},
'inwx' => {},
'ispconfig' => {},
'jd' => {},
'kas' => {},
'kinghost' => {},
'knot' => {},
'leaseweb' => {},
'lexicon' => {},
'linode' => {},
'linode_v4' => {},
'loopia' => {},
'lua' => {},
'maradns' => {},
'me' => {},
'miab' => {},
'misaka' => {},
'myapi' => {},
'mydevil' => {},
'mydnsjp' => {},
'namecheap' => {},
'namecom' => {},
'namesilo' => {},
'nederhost' => {},
'neodigit' => {},
'netcup' => {},
'nic' => {},
'nsd' => {},
'nsone' => {},
'nsupdate' => {},
'nw' => {},
'one' => {},
'online' => {},
'openprovider' => {},
'opnsense' => {},
'ovh' => {
'OVH_END_POINT' => {
description => "The OVH endpoint",
type => 'string',
},
'OVH_AK' => {
description => "The application key.",
type => 'string',
},
'OVH_AS' => {
description => "The application secret.",
type => 'string',
},
},
'pdns' => {
'PDNS_Url' => {
description => "The PowerDNS API endpoint.",
type => 'string',
},
'PDNS_ServerId'=> {
type => 'string',
},
'PDNS_Token'=> {
type => 'string',
},
'PDNS_Ttl'=> {
type => 'integer',
},
},
'pleskxml' => {},
'pointhq' => {},
'rackspace' => {},
'rcode0' => {},
'regru' => {},
'schlundtech' => {},
'selectel' => {},
'servercow' => {},
'tele3' => {},
'ultra' => {},
'unoeuro' => {},
'variomedia' => {},
'vscale' => {},
'vultr' => {},
'yandex' => {},
'zilore' => {},
'zone' => {},
'zonomi' => {},
};
sub get_supported_plugins {
return $plugin_names;
return $plugins;
}
sub properties {
@ -128,7 +157,7 @@ sub properties {
api => {
description => "API plugin name",
type => 'string',
enum => $plugin_names,
enum => [sort keys %$plugins],
},
data => {
type => 'string',