2018-12-19 10:19:07 +00:00
|
|
|
__author__ = "Robert Kaussow"
|
|
|
|
__project__ = "ansible-later"
|
2019-02-19 10:13:28 +00:00
|
|
|
__version__ = "0.1.4"
|
2018-12-19 10:19:07 +00:00
|
|
|
__license__ = "MIT"
|
|
|
|
__maintainer__ = "Robert Kaussow"
|
|
|
|
__email__ = "mail@geeklabor.de"
|
|
|
|
__status__ = "Production"
|
|
|
|
|
|
|
|
|
|
|
|
import re
|
|
|
|
import os
|
|
|
|
import codecs
|
|
|
|
import ansible
|
|
|
|
from distutils.version import LooseVersion
|
|
|
|
from ansiblelater.utils import info, warn, abort, error
|
|
|
|
from ansiblelater.utils import read_standards
|
|
|
|
from ansiblelater.utils import get_property
|
|
|
|
from ansiblelater.utils import standards_latest
|
|
|
|
from ansiblelater.utils import is_line_in_ranges
|
|
|
|
from ansiblelater.utils import lines_ranges
|
|
|
|
|
|
|
|
try:
|
|
|
|
# Ansible 2.4 import of module loader
|
|
|
|
from ansible.plugins.loader import module_loader
|
|
|
|
except ImportError:
|
|
|
|
try:
|
|
|
|
from ansible.plugins import module_loader
|
|
|
|
except ImportError:
|
|
|
|
from ansible.utils import module_finder as module_loader
|
|
|
|
|
|
|
|
|
|
|
|
class AnsibleReviewFormatter(object):
|
|
|
|
def format(self, match):
|
|
|
|
formatstr = u"{0}:{1}: [{2}] {3} {4}"
|
|
|
|
return formatstr.format(match.filename,
|
|
|
|
match.linenumber,
|
|
|
|
match.rule.id,
|
|
|
|
match.message,
|
|
|
|
match.line
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class Standard(object):
|
|
|
|
def __init__(self, standard_dict):
|
|
|
|
if 'id' not in standard_dict:
|
|
|
|
standard_dict.update(id='')
|
|
|
|
else:
|
|
|
|
standard_dict.update(id='[{}] '.format(standard_dict.get("id")))
|
|
|
|
self.id = standard_dict.get("id")
|
|
|
|
self.name = standard_dict.get("name")
|
|
|
|
self.version = standard_dict.get("version")
|
|
|
|
self.check = standard_dict.get("check")
|
|
|
|
self.types = standard_dict.get("types")
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "Standard: %s (version: %s, types: %s)" % (
|
|
|
|
self.name, self.version, self.types)
|
|
|
|
|
|
|
|
|
|
|
|
class Error(object):
|
|
|
|
def __init__(self, lineno, message):
|
|
|
|
self.lineno = lineno
|
|
|
|
self.message = message
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
if self.lineno:
|
|
|
|
return "%s: %s" % (self.lineno, self.message)
|
|
|
|
else:
|
|
|
|
return " %s" % (self.message)
|
|
|
|
|
|
|
|
|
|
|
|
class Result(object):
|
|
|
|
def __init__(self, candidate, errors=None):
|
|
|
|
self.candidate = candidate
|
|
|
|
self.errors = errors or []
|
|
|
|
|
|
|
|
def message(self):
|
|
|
|
return "\n".join(["{0}:{1}".format(self.candidate, error)
|
|
|
|
for error in self.errors])
|
|
|
|
|
|
|
|
|
|
|
|
class Candidate(object):
|
|
|
|
def __init__(self, filename):
|
|
|
|
self.path = filename
|
2019-01-29 15:27:56 +00:00
|
|
|
self.binary = False
|
|
|
|
self.vault = False
|
|
|
|
|
2018-12-19 10:19:07 +00:00
|
|
|
try:
|
|
|
|
self.version = find_version(filename)
|
2019-01-29 15:27:56 +00:00
|
|
|
with codecs.open(filename, mode='rb', encoding='utf-8') as f:
|
|
|
|
if f.readline().startswith("$ANSIBLE_VAULT"):
|
|
|
|
self.vault = True
|
2018-12-19 10:19:07 +00:00
|
|
|
except UnicodeDecodeError:
|
|
|
|
self.binary = True
|
|
|
|
|
|
|
|
self.filetype = type(self).__name__.lower()
|
|
|
|
self.expected_version = True
|
|
|
|
|
|
|
|
def review(self, settings, lines=None):
|
|
|
|
return candidate_review(self, settings, lines)
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "%s (%s)" % (type(self).__name__, self.path)
|
|
|
|
|
|
|
|
def __getitem__(self, item):
|
|
|
|
return self.__dict__.get(item)
|
|
|
|
|
|
|
|
|
|
|
|
class RoleFile(Candidate):
|
|
|
|
def __init__(self, filename):
|
|
|
|
super(RoleFile, self).__init__(filename)
|
|
|
|
self.version = None
|
|
|
|
parentdir = os.path.dirname(os.path.abspath(filename))
|
|
|
|
while parentdir != os.path.dirname(parentdir):
|
|
|
|
meta_file = os.path.join(parentdir, "meta", "main.yml")
|
|
|
|
if os.path.exists(meta_file):
|
|
|
|
self.version = find_version(meta_file)
|
|
|
|
if self.version:
|
|
|
|
break
|
|
|
|
parentdir = os.path.dirname(parentdir)
|
|
|
|
role_modules = os.path.join(parentdir, 'library')
|
|
|
|
if os.path.exists(role_modules):
|
|
|
|
module_loader.add_directory(role_modules)
|
|
|
|
|
|
|
|
|
|
|
|
class Playbook(Candidate):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class Task(RoleFile):
|
|
|
|
def __init__(self, filename):
|
|
|
|
super(Task, self).__init__(filename)
|
|
|
|
self.filetype = 'tasks'
|
|
|
|
|
|
|
|
|
|
|
|
class Handler(RoleFile):
|
|
|
|
def __init__(self, filename):
|
|
|
|
super(Handler, self).__init__(filename)
|
|
|
|
self.filetype = 'handlers'
|
|
|
|
|
|
|
|
|
|
|
|
class Vars(Candidate):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class Unversioned(Candidate):
|
|
|
|
def __init__(self, filename):
|
|
|
|
super(Unversioned, self).__init__(filename)
|
|
|
|
self.expected_version = False
|
|
|
|
|
|
|
|
|
|
|
|
class InventoryVars(Unversioned):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class HostVars(InventoryVars):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class GroupVars(InventoryVars):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class RoleVars(RoleFile):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class Meta(RoleFile):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class Inventory(Unversioned):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class Code(Unversioned):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class Template(RoleFile):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class Doc(Unversioned):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
# For ease of checking files for tabs
|
|
|
|
class Makefile(Unversioned):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class File(RoleFile):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class Rolesfile(Unversioned):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
def classify(filename):
|
|
|
|
parentdir = os.path.basename(os.path.dirname(filename))
|
|
|
|
|
|
|
|
if parentdir in ['tasks']:
|
|
|
|
return Task(filename)
|
|
|
|
if parentdir in ['handlers']:
|
|
|
|
return Handler(filename)
|
|
|
|
if parentdir in ['vars', 'defaults']:
|
|
|
|
return RoleVars(filename)
|
|
|
|
if 'group_vars' in filename.split(os.sep):
|
|
|
|
return GroupVars(filename)
|
|
|
|
if 'host_vars' in filename.split(os.sep):
|
|
|
|
return HostVars(filename)
|
|
|
|
if parentdir in ['meta']:
|
|
|
|
return Meta(filename)
|
|
|
|
if parentdir in ['library', 'lookup_plugins', 'callback_plugins',
|
|
|
|
'filter_plugins'] or filename.endswith('.py'):
|
|
|
|
return Code(filename)
|
|
|
|
if 'inventory' in filename or 'hosts' in filename or parentdir in ['inventory']:
|
|
|
|
return Inventory(filename)
|
|
|
|
if 'rolesfile' in filename or 'requirements' in filename:
|
|
|
|
return Rolesfile(filename)
|
|
|
|
if 'Makefile' in filename:
|
|
|
|
return Makefile(filename)
|
|
|
|
if 'templates' in filename.split(os.sep) or filename.endswith('.j2'):
|
|
|
|
return Template(filename)
|
|
|
|
if 'files' in filename.split(os.sep):
|
|
|
|
return File(filename)
|
|
|
|
if filename.endswith('.yml') or filename.endswith('.yaml'):
|
|
|
|
return Playbook(filename)
|
|
|
|
if 'README' in filename:
|
|
|
|
return Doc(filename)
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
|
|
def candidate_review(candidate, settings, lines=None):
|
|
|
|
errors = 0
|
|
|
|
standards = read_standards(settings)
|
|
|
|
if getattr(standards, 'ansible_min_version', None) and \
|
|
|
|
LooseVersion(standards.ansible_min_version) > LooseVersion(ansible.__version__):
|
|
|
|
raise SystemExit("Standards require ansible version %s (current version %s). "
|
|
|
|
"Please upgrade ansible." %
|
|
|
|
(standards.ansible_min_version, ansible.__version__))
|
|
|
|
|
|
|
|
if getattr(standards, 'ansible_review_min_version', None) and \
|
|
|
|
LooseVersion(standards.ansible_review_min_version) > LooseVersion(
|
|
|
|
get_property("__version__")):
|
|
|
|
raise SystemExit("Standards require ansible-later version %s (current version %s). "
|
|
|
|
"Please upgrade ansible-later." %
|
|
|
|
(standards.ansible_review_min_version, get_property("__version__")))
|
|
|
|
|
|
|
|
if not candidate.version:
|
|
|
|
candidate.version = standards_latest(standards.standards)
|
|
|
|
if candidate.expected_version:
|
|
|
|
if isinstance(candidate, RoleFile):
|
|
|
|
warn("%s %s is in a role that contains a meta/main.yml without a declared "
|
|
|
|
"standards version. "
|
|
|
|
"Using latest standards version %s" %
|
|
|
|
(type(candidate).__name__, candidate.path, candidate.version),
|
|
|
|
settings)
|
|
|
|
else:
|
|
|
|
warn("%s %s does not present standards version. "
|
|
|
|
"Using latest standards version %s" %
|
|
|
|
(type(candidate).__name__, candidate.path, candidate.version),
|
|
|
|
settings)
|
|
|
|
|
|
|
|
info("%s %s declares standards version %s" %
|
|
|
|
(type(candidate).__name__, candidate.path, candidate.version),
|
|
|
|
settings)
|
|
|
|
|
|
|
|
for standard in standards.standards:
|
|
|
|
if type(candidate).__name__.lower() not in standard.types:
|
|
|
|
continue
|
|
|
|
if settings.standards_filter and standard.name not in settings.standards_filter:
|
|
|
|
continue
|
|
|
|
result = standard.check(candidate, settings)
|
|
|
|
|
|
|
|
if not result:
|
|
|
|
abort("Standard '%s' returns an empty result object." %
|
|
|
|
(standard.check.__name__))
|
|
|
|
|
|
|
|
for err in [err for err in result.errors
|
|
|
|
if not err.lineno or is_line_in_ranges(err.lineno, lines_ranges(lines))]:
|
|
|
|
if not standard.version:
|
|
|
|
warn("{id}Best practice '{name}' not met:\n{path}:{error}".format(
|
|
|
|
id=standard.id, name=standard.name, path=candidate.path, error=err), settings)
|
|
|
|
elif LooseVersion(standard.version) > LooseVersion(candidate.version):
|
|
|
|
warn("{id}Future standard '{name}' not met:\n{path}:{error}".format(
|
|
|
|
id=standard.id, name=standard.name, path=candidate.path, error=err), settings)
|
|
|
|
else:
|
|
|
|
error("{id}Standard '{name}' not met:\n{path}:{error}".format(
|
|
|
|
id=standard.id, name=standard.name, path=candidate.path, error=err))
|
|
|
|
errors = errors + 1
|
|
|
|
if not result.errors:
|
|
|
|
if not standard.version:
|
|
|
|
info("Best practice '%s' met" % standard.name, settings)
|
|
|
|
elif LooseVersion(standard.version) > LooseVersion(candidate.version):
|
|
|
|
info("Future standard '%s' met" % standard.name, settings)
|
|
|
|
else:
|
|
|
|
info("Standard '%s' met" % standard.name, settings)
|
|
|
|
|
|
|
|
return errors
|
|
|
|
|
|
|
|
|
|
|
|
def find_version(filename, version_regex=r"^# Standards:\s*([\d.]+)"):
|
|
|
|
version_re = re.compile(version_regex)
|
|
|
|
|
|
|
|
with codecs.open(filename, mode='rb', encoding='utf-8') as f:
|
|
|
|
for line in f:
|
|
|
|
match = version_re.match(line)
|
|
|
|
if match:
|
|
|
|
return match.group(1)
|
|
|
|
return None
|