mirror of https://github.com/avast/PurpleDome
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.4 KiB
Python
47 lines
1.4 KiB
Python
#!/usr/bin/env python3
|
|
""" Managing plugins """
|
|
|
|
import argparse
|
|
from app.pluginmanager import PluginManager
|
|
|
|
|
|
def list_plugins(arguments):
|
|
""" List plugins """
|
|
p = PluginManager()
|
|
p.print_list()
|
|
|
|
|
|
def get_default_config(arguments):
|
|
""" print default config of a specific plugin """
|
|
p = PluginManager()
|
|
p.print_default_config(arguments.subclass_name, arguments.plugin_name)
|
|
|
|
|
|
def create_parser():
|
|
""" Creates the parser for the command line arguments"""
|
|
|
|
main_parser = argparse.ArgumentParser("Manage plugins")
|
|
subparsers = main_parser.add_subparsers(help="sub-commands")
|
|
|
|
# Sub parser for machine creation
|
|
parser_list = subparsers.add_parser("list", help="list plugins")
|
|
parser_list.set_defaults(func=list_plugins)
|
|
# parser_list.add_argument("--configfile", default="experiment.yaml", help="Config file to create from")
|
|
|
|
parser_default_config = subparsers.add_parser("raw_config", help="print raw default config of the given plugin")
|
|
parser_default_config.set_defaults(func=get_default_config)
|
|
parser_default_config.add_argument("subclass_name", help="name of the subclass")
|
|
parser_default_config.add_argument("plugin_name", help="name of the plugin")
|
|
|
|
# TODO: Get default config
|
|
return main_parser
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
parser = create_parser()
|
|
|
|
args = parser.parse_args()
|
|
|
|
args.func(args)
|