mirror of
https://github.com/thegeeklab/ansible-doctor.git
synced 2024-11-04 20:30:43 +00:00
63 lines
1.7 KiB
Python
63 lines
1.7 KiB
Python
#!/usr/bin/env python3
|
|
import glob
|
|
import os
|
|
import sys
|
|
|
|
from ansibledoctor.Config import SingleConfig
|
|
from ansibledoctor.Contstants import YAML_EXTENSIONS
|
|
from ansibledoctor.Utils import SingleLog
|
|
|
|
|
|
class Registry:
|
|
|
|
_doc = {}
|
|
log = None
|
|
config = None
|
|
|
|
def __init__(self):
|
|
self._doc = []
|
|
self.config = SingleConfig()
|
|
self.log = SingleLog()
|
|
self._scan_for_yamls()
|
|
|
|
def get_files(self):
|
|
return self._doc
|
|
|
|
def _scan_for_yamls(self):
|
|
"""
|
|
Search for the yaml files in each project/role root and append to the corresponding object.
|
|
|
|
:param base: directory in witch we are searching
|
|
:return: None
|
|
"""
|
|
extensions = YAML_EXTENSIONS
|
|
base_dir = self.config.get_base_dir()
|
|
|
|
self.log.debug("Scan for files: " + base_dir)
|
|
|
|
for extension in extensions:
|
|
for filename in glob.iglob(base_dir + "/**/*." + extension, recursive=True):
|
|
if self._is_excluded_yaml_file(filename, base_dir):
|
|
self.log.trace("Excluding: " + filename)
|
|
else:
|
|
self.log.trace("Adding to role:" + base_dir + " => " + filename)
|
|
self._doc.append(filename)
|
|
|
|
def _is_excluded_yaml_file(self, file, role_base_dir=None):
|
|
"""
|
|
Sub method for handling file exclusions based on the full path starts with.
|
|
|
|
:param file:
|
|
:param role_base_dir:
|
|
:return:
|
|
"""
|
|
base_dir = role_base_dir
|
|
excluded = self.config.excluded_roles_dirs.copy()
|
|
|
|
is_filtered = False
|
|
for excluded_dir in excluded:
|
|
if file.startswith(base_dir + "/" + excluded_dir):
|
|
is_filtered = True
|
|
|
|
return is_filtered
|