Optimized cert speed, testing etc.

This commit is contained in:
2025-04-29 05:16:55 +02:00
parent 8d5408bf42
commit d38d4204f8
8 changed files with 187 additions and 90 deletions

View File

@@ -1,36 +1,7 @@
#!/usr/bin/python
from __future__ import absolute_import, division, print_function
__metaclass__ = type
import os
from ansible.module_utils.basic import AnsibleModule
from ansible.module_utils.cert_utils import CertUtils
def cert_exists(domain, cert_files, debug=False):
for cert_path in cert_files:
cert_text = CertUtils.run_openssl(cert_path)
if not cert_text:
continue
sans = CertUtils.extract_sans(cert_text)
if debug:
print(f"Checking {cert_path}: {sans}")
for entry in sans:
if CertUtils.matches(domain, entry):
return True
return False
def cert_check_exists(module):
domain = module.params['domain']
cert_base_path = module.params['cert_base_path']
debug = module.params['debug']
cert_files = CertUtils.list_cert_files(cert_base_path)
exists = cert_exists(domain, cert_files, debug)
module.exit_json(exists=exists)
def main():
module_args = dict(
domain=dict(type='str', required=True),
@@ -39,11 +10,17 @@ def main():
)
module = AnsibleModule(
argument_spec=module_args,
supports_check_mode=True
argument_spec=module_args
)
cert_check_exists(module)
domain = module.params['domain']
cert_base_path = module.params['cert_base_path']
debug = module.params['debug']
folder = CertUtils.find_cert_for_domain(domain, cert_base_path, debug)
exists = folder is not None
module.exit_json(exists=exists)
if __name__ == '__main__':
main()
main()

View File

@@ -1,48 +1,6 @@
#!/usr/bin/python
from __future__ import absolute_import, division, print_function
__metaclass__ = type
import os
from ansible.module_utils.basic import AnsibleModule
from ansible.module_utils.cert_utils import CertUtils
def cert_folder_find(module):
domain = module.params['domain']
cert_base_path = module.params['cert_base_path']
debug = module.params['debug']
cert_files = CertUtils.list_cert_files(cert_base_path)
if debug:
print(f"Found {len(cert_files)} cert.pem files under {cert_base_path}")
matching_folders = []
for cert_path in cert_files:
cert_text = CertUtils.run_openssl(cert_path)
if not cert_text:
continue
sans = CertUtils.extract_sans(cert_text)
if debug:
print(f"Checking {cert_path}: {sans}")
for entry in sans:
if CertUtils.matches(domain, entry):
folder = os.path.basename(os.path.dirname(cert_path))
matching_folders.append(folder)
if debug:
print(f"Match found in folder: {folder}")
break # No need to check further SANs for this cert
if not matching_folders:
# No matching cert found
module.exit_json(folder=None)
# Prefer shortest and least-dashed folder name (SAN bundles often have more dashes)
matching_folders = sorted(matching_folders, key=lambda f: (f.count('-'), len(f)))
module.exit_json(folder=matching_folders[0])
def main():
module_args = dict(
domain=dict(type='str', required=True),
@@ -51,11 +9,19 @@ def main():
)
module = AnsibleModule(
argument_spec=module_args,
supports_check_mode=True
argument_spec=module_args
)
cert_folder_find(module)
domain = module.params['domain']
cert_base_path = module.params['cert_base_path']
debug = module.params['debug']
folder = CertUtils.find_cert_for_domain(domain, cert_base_path, debug)
if folder is None:
module.fail_json(msg=f"No certificate covering domain {domain} found.")
else:
module.exit_json(folder=folder)
if __name__ == '__main__':
main()
main()