DNS Providers list returned
This commit is contained in:
parent
a66d85b63d
commit
2d6d2357b5
|
@ -102,7 +102,7 @@ class Certificate(db.Model):
|
||||||
serial = Column(String(128))
|
serial = Column(String(128))
|
||||||
cn = Column(String(128))
|
cn = Column(String(128))
|
||||||
deleted = Column(Boolean, index=True)
|
deleted = Column(Boolean, index=True)
|
||||||
dns_provider = Column(Integer(), nullable=True)
|
dns_provider_id = Column(Integer(), nullable=True)
|
||||||
|
|
||||||
not_before = Column(ArrowType)
|
not_before = Column(ArrowType)
|
||||||
not_after = Column(ArrowType)
|
not_after = Column(ArrowType)
|
||||||
|
|
|
@ -6,15 +6,13 @@ from lemur.database import db
|
||||||
|
|
||||||
|
|
||||||
class DnsProviders(db.Model):
|
class DnsProviders(db.Model):
|
||||||
db.Table('dns_providers',
|
__tablename__ = 'dns_providers'
|
||||||
Column('id', Integer(), nullable=False),
|
id = Column(Integer(), primary_key=True)
|
||||||
Column('name', String(length=256), nullable=True),
|
name = Column(String(length=256), unique=True, nullable=True)
|
||||||
Column('description', String(length=1024), nullable=True),
|
description = Column(String(length=1024), nullable=True)
|
||||||
Column('provider_type', String(length=256), nullable=True),
|
provider_type = Column(String(length=256), nullable=True)
|
||||||
Column('credentials', String(length=256), nullable=True),
|
credentials = Column(String(length=256), nullable=True)
|
||||||
Column('api_endpoint', String(length=256), nullable=True),
|
api_endpoint = Column(String(length=256), nullable=True)
|
||||||
Column('date_created', ArrowType(), server_default=text('now()'), nullable=False),
|
date_created = Column(ArrowType(), server_default=text('now()'), nullable=False)
|
||||||
Column('status', String(length=128), nullable=True),
|
status = Column(String(length=128), nullable=True)
|
||||||
Column('options', JSON),
|
options = Column(JSON)
|
||||||
PrimaryKeyConstraint('id'),
|
|
||||||
UniqueConstraint('name'))
|
|
||||||
|
|
|
@ -7,4 +7,10 @@ def get_all_dns_providers(status="active"):
|
||||||
|
|
||||||
:return:
|
:return:
|
||||||
"""
|
"""
|
||||||
return DnsProviders.query.all(status=status)
|
all_dns_providers = DnsProviders.query.all()
|
||||||
|
dns_provider_result = []
|
||||||
|
for provider in all_dns_providers:
|
||||||
|
print(provider)
|
||||||
|
if provider.status == status:
|
||||||
|
dns_provider_result.append(provider.__dict__)
|
||||||
|
return dns_provider_result
|
||||||
|
|
|
@ -234,14 +234,18 @@
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- <div class="form-group">
|
<div class="col-sm-10">
|
||||||
<label class="control-label col-sm-2">
|
<!-- two -->
|
||||||
DNS Provider (Only needed for LetsEncrypt or ACME implementations)
|
<div class="form-group">
|
||||||
</label>
|
<label class="control-label col-sm-2">
|
||||||
<div class="col-sm-10">
|
DNS Provider
|
||||||
<select class="form-control" ng-model="certificate.extensions.crlDistributionPoints.includeCrlDp"
|
</label>
|
||||||
ng-options="item for item in ['yes', 'no', 'default']"></select>
|
<div class="col-sm-10">
|
||||||
</div> -->
|
<select class="form-control" ng-model="selected" ng-options="item as item.name for item in dnsProviders"></select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -47,8 +47,8 @@ angular.module('lemur')
|
||||||
|
|
||||||
PluginService.getByType('destination').then(function (plugins) {
|
PluginService.getByType('destination').then(function (plugins) {
|
||||||
$scope.plugins = plugins;
|
$scope.plugins = plugins;
|
||||||
_.each($scope.plugins, function (plugin) {
|
|
||||||
|
|
||||||
|
_.each($scope.plugins, function (plugin) {
|
||||||
if (plugin.slug === $scope.destination.plugin.slug) {
|
if (plugin.slug === $scope.destination.plugin.slug) {
|
||||||
plugin.pluginOptions = $scope.destination.plugin.pluginOptions;
|
plugin.pluginOptions = $scope.destination.plugin.pluginOptions;
|
||||||
$scope.destination.plugin = plugin;
|
$scope.destination.plugin = plugin;
|
||||||
|
|
Loading…
Reference in New Issue