aboutsummaryrefslogtreecommitdiffstats
path: root/anteater/main.py
blob: 3a23ceb2d7e659c95c2b28cfaea9f08a87dd2f1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/env python
# -*- coding: utf-8 -*-
##############################################################################
# Copyright (c) 2017 Luke Hinds <lhinds@redhat.com>, Red Hat
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################

# from __future__ import division, print_function, absolute_import

"""Anteater - CI Gate Checks.

Usage:
  anteater (-p |--project) <project> [(-ps |--patchset) <patchset>]
  anteater (-p |--project) <project> [--path <project_path>]
  anteater (-h | --help)
  anteater --version

Options:
  -h --help     Show this screen.
  --version     Show version.
"""
from __future__ import absolute_import

import six.moves.configparser
from docopt import docopt
import os
from anteater.src.patch_scan import prepare_patchset
from anteater.src.project_scan import prepare_project
from anteater.utils import anteater_logger as antlog


config = six.moves.configparser.RawConfigParser()
config.read('anteater.conf')
reports_dir = config.get('config', 'reports_dir')
logger = antlog.Logger(__name__).getLogger()
__version__ = "0.1"


def check_dir():
    """ Creates a directory for scan reports """
    try:
        os.makedirs(reports_dir)
        logger.info('Creating reports directory: {0}'.format(reports_dir))
    except OSError as e:
        if not os.path.isdir(reports_dir):
            logger.error(e)


def main():
    """ Main function, mostly for passing arguments """
    check_dir()
    arguments = docopt(__doc__, version=__version__)

    if arguments['<patchset>']:
        prepare_patchset(arguments['<project>'], arguments['<patchset>'])
    elif arguments['<project_path>']:
        prepare_project(arguments['<project>'], arguments['<project_path>'])


if __name__ == "__main__":
    main()