2018-12-19 10:19:07 +00:00
|
|
|
#!/usr/bin/env python
|
2019-04-04 14:06:18 +00:00
|
|
|
"""Main program."""
|
2018-12-19 10:19:07 +00:00
|
|
|
|
2019-03-28 15:54:45 +00:00
|
|
|
import argparse
|
2019-04-16 09:33:21 +00:00
|
|
|
import multiprocessing
|
2019-04-16 08:09:14 +00:00
|
|
|
import sys
|
2019-03-28 00:20:43 +00:00
|
|
|
|
2019-04-10 14:09:37 +00:00
|
|
|
from ansiblelater import LOG
|
|
|
|
from ansiblelater import __version__
|
|
|
|
from ansiblelater import logger
|
2021-01-30 15:52:48 +00:00
|
|
|
from ansiblelater.candidate import Candidate
|
|
|
|
from ansiblelater.settings import Settings
|
|
|
|
from ansiblelater.standard import SingleStandards
|
2018-12-19 10:19:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
def main():
|
2019-04-04 14:06:18 +00:00
|
|
|
"""Run main program."""
|
2019-03-28 15:54:45 +00:00
|
|
|
parser = argparse.ArgumentParser(
|
2020-06-03 14:23:46 +00:00
|
|
|
description="Validate Ansible files against best practice guideline"
|
2020-04-05 12:33:43 +00:00
|
|
|
)
|
|
|
|
parser.add_argument(
|
2021-01-30 15:52:48 +00:00
|
|
|
"-c", "--config", dest="config_file", metavar="CONFIG", help="path to configuration file"
|
2020-04-05 12:33:43 +00:00
|
|
|
)
|
|
|
|
parser.add_argument(
|
2021-01-30 15:52:48 +00:00
|
|
|
"-r",
|
|
|
|
"--rules-dir",
|
|
|
|
dest="rules.standards",
|
|
|
|
metavar="RULES",
|
|
|
|
action="append",
|
|
|
|
help="directory of standard rules"
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"-B",
|
|
|
|
"--no-buildin",
|
|
|
|
dest="rules.buildin",
|
|
|
|
action="store_false",
|
|
|
|
help="disables build-in standard rules"
|
2020-04-05 12:33:43 +00:00
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"-s",
|
|
|
|
"--standards",
|
|
|
|
dest="rules.filter",
|
2021-01-30 15:52:48 +00:00
|
|
|
metavar="FILTER",
|
2020-04-05 12:33:43 +00:00
|
|
|
action="append",
|
|
|
|
help="limit standards to given ID's"
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"-x",
|
|
|
|
"--exclude-standards",
|
|
|
|
dest="rules.exclude_filter",
|
2021-01-30 15:52:48 +00:00
|
|
|
metavar="EXCLUDE_FILTER",
|
2020-04-05 12:33:43 +00:00
|
|
|
action="append",
|
|
|
|
help="exclude standards by given ID's"
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"-v", dest="logging.level", action="append_const", const=-1, help="increase log level"
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"-q", dest="logging.level", action="append_const", const=1, help="decrease log level"
|
|
|
|
)
|
2019-04-02 14:34:03 +00:00
|
|
|
parser.add_argument("rules.files", nargs="*")
|
2021-01-30 15:52:48 +00:00
|
|
|
parser.add_argument(
|
|
|
|
"-V", "--version", action="version", version="%(prog)s {}".format(__version__)
|
|
|
|
)
|
2019-03-28 15:54:45 +00:00
|
|
|
|
|
|
|
args = parser.parse_args().__dict__
|
2018-12-19 10:19:07 +00:00
|
|
|
|
2021-01-30 15:52:48 +00:00
|
|
|
settings = Settings(args=args)
|
2019-04-03 15:42:46 +00:00
|
|
|
config = settings.config
|
2019-04-02 14:34:03 +00:00
|
|
|
|
2019-04-03 15:42:46 +00:00
|
|
|
logger.update_logger(LOG, config["logging"]["level"], config["logging"]["json"])
|
2021-01-30 15:52:48 +00:00
|
|
|
SingleStandards(config["rules"]["standards"]).rules
|
2019-04-03 15:42:46 +00:00
|
|
|
|
2019-04-16 09:33:21 +00:00
|
|
|
workers = max(multiprocessing.cpu_count() - 2, 2)
|
|
|
|
p = multiprocessing.Pool(workers)
|
|
|
|
tasks = []
|
2021-01-30 15:52:48 +00:00
|
|
|
for filename in config["rules"]["files"]:
|
|
|
|
candidate = Candidate.classify(filename, settings)
|
2019-04-02 14:34:03 +00:00
|
|
|
if candidate:
|
|
|
|
if candidate.binary:
|
2020-04-11 14:20:41 +00:00
|
|
|
LOG.info("Not reviewing binary file {name}".format(name=filename))
|
2019-04-02 14:34:03 +00:00
|
|
|
continue
|
|
|
|
if candidate.vault:
|
2020-04-11 14:20:41 +00:00
|
|
|
LOG.info("Not reviewing vault file {name}".format(name=filename))
|
2019-04-02 14:34:03 +00:00
|
|
|
continue
|
|
|
|
else:
|
2020-04-11 14:20:41 +00:00
|
|
|
LOG.info("Reviewing all of {candidate}".format(candidate=candidate))
|
2021-01-30 15:52:48 +00:00
|
|
|
tasks.append(candidate)
|
2019-04-02 14:34:03 +00:00
|
|
|
else:
|
2020-04-11 14:20:41 +00:00
|
|
|
LOG.info("Couldn't classify file {name}".format(name=filename))
|
2019-04-08 14:55:07 +00:00
|
|
|
|
2019-04-16 09:33:21 +00:00
|
|
|
errors = (sum(p.map(_review_wrapper, tasks)))
|
|
|
|
p.close()
|
|
|
|
p.join()
|
|
|
|
|
2019-04-16 08:09:14 +00:00
|
|
|
if not errors == 0:
|
|
|
|
return_code = 1
|
|
|
|
else:
|
|
|
|
return_code = 0
|
|
|
|
|
|
|
|
sys.exit(return_code)
|
2019-04-15 15:26:02 +00:00
|
|
|
|
2018-12-19 10:19:07 +00:00
|
|
|
|
2021-01-30 15:52:48 +00:00
|
|
|
def _review_wrapper(candidate):
|
|
|
|
return candidate.review()
|
2019-04-16 09:33:21 +00:00
|
|
|
|
|
|
|
|
2019-01-08 15:22:19 +00:00
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|