fixing linting issues
This commit is contained in:
parent
5d2f603c84
commit
4a027797e0
|
@ -10,8 +10,6 @@
|
|||
.. moduleauthor:: Christopher Jolley <chris@alwaysjolley.com>
|
||||
"""
|
||||
import hvac
|
||||
|
||||
#import lemur_vault
|
||||
from flask import current_app
|
||||
|
||||
from lemur.common.defaults import common_name
|
||||
|
@ -21,7 +19,6 @@ from lemur.plugins.bases import DestinationPlugin
|
|||
from cryptography import x509
|
||||
from cryptography.hazmat.backends import default_backend
|
||||
|
||||
|
||||
class VaultDestinationPlugin(DestinationPlugin):
|
||||
"""Hashicorp Vault Destination plugin for Lemur"""
|
||||
title = 'Vault'
|
||||
|
@ -101,7 +98,6 @@ class VaultDestinationPlugin(DestinationPlugin):
|
|||
|
||||
secret = get_secret(url, token, mount, path)
|
||||
|
||||
|
||||
if bundle == 'Nginx' and cert_chain:
|
||||
secret['data'][cert_name] = '{0}\n{1}'.format(body, cert_chain)
|
||||
elif bundle == 'Apache' and cert_chain:
|
||||
|
@ -120,6 +116,7 @@ class VaultDestinationPlugin(DestinationPlugin):
|
|||
current_app.logger.exception(
|
||||
"Exception uploading secret to vault: {0}".format(err), exc_info=True)
|
||||
|
||||
|
||||
def get_san_list(body):
|
||||
""" parse certificate for SAN names and return list, return empty list on error """
|
||||
try:
|
||||
|
@ -127,15 +124,16 @@ def get_san_list(body):
|
|||
cert = x509.load_pem_x509_certificate(byte_body, default_backend())
|
||||
ext = cert.extensions.get_extension_for_oid(x509.oid.ExtensionOID.SUBJECT_ALTERNATIVE_NAME)
|
||||
return ext.value.get_values_for_type(x509.DNSName)
|
||||
except:
|
||||
except ValueError:
|
||||
pass
|
||||
return []
|
||||
|
||||
|
||||
def get_secret(url, token, mount, path):
|
||||
result = {'data': {}}
|
||||
try:
|
||||
client = hvac.Client(url=url, token=token)
|
||||
result = client.secrets.kv.v1.read_secret(path=path, mount_point=mount)
|
||||
except:
|
||||
except ConnectionError:
|
||||
pass
|
||||
return result
|
||||
|
|
Loading…
Reference in New Issue