moulinette/yunohost
2012-10-06 20:29:00 +02:00

165 lines
4.4 KiB
Python
Executable file

#!/usr/bin/env python
# -*- coding: utf-8 -*-
__credits__ = '''Copyright (C) 2012 YunoHost
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program; if not, see http://www.gnu.org/licenses
'''
__author__ = 'Kload'
__version__ = '2.0_beta1'
import sys
import argparse
sys.path.append('lib') # Local temporary hack
""" Useful string-to-function definition """
def str2fun(astr):
module, _, function = astr.rpartition('.')
if module:
__import__(module)
mod = sys.modules[module]
else:
mod = sys.modules['__main__'] # or whatever's the "default module"
try:
func = getattr(mod, function)
except NameError:
print 'Error: Function ' + category + '_' + action + '() is not defined'
sys.exit(1)
return func
"""""""""""""""""""""""""""""""""""""""""""""""""""""
CATEGORIES / ACTIONS
array = {
'category1' : {
'actions' : {
'action1' : 'text of action1 help'
'action2' : 'text of action2 help'
'action3' : 'text of action3 help'
},
'help' : 'text of category1 help'
},
'category2' : {
'actions' : {
'action4' : 'text of action4 help'
'action5' : 'text of action5 help'
'action6' : 'text of action6 help'
},
'help' : 'text of category2 help'
},
}
Leads to functions:
category1_action1()
category1_action2()
category1_action3()
category2_action4()
category2_action5()
category6_action6()
"""""""""""""""""""""""""""""""""""""""""""""""""""""
def parse_args(parser):
parser_array = {
'user' : {
'actions' : {
'list' : 'list users'
},
'help' : 'manage users'
},
'domain' : {
'actions' : {},
'help' : 'manage domains'
},
'app' : {
'actions' : {},
'help' : 'manage apps'
},
'monitor' : {
'actions' : {},
'help' : 'monitoring functions'
},
'tools' : {
'actions' : {},
'help' : 'specific tools'
}
}
""" Intialize parsers """
subparsers = parser.add_subparsers()
parsers = subparsers_category = subparsers_action = dict()
"""
Turn above array into subparsers (e.g. parsers['user_list'])
and assign functions related to (e.g. user_list())
"""
for category, info in parser_array.items():
subparsers_category[category] = subparsers.add_parser(category, help = info['help'])
subparsers_action[category] = subparsers_category[category].add_subparsers()
for action, helper in info['actions'].items():
parsers[category + '_' + action] = subparsers_action[category].add_parser(action, help = helper)
parsers[category + '_' + action].set_defaults(func = str2fun('yunohost_' + category + '.' + category + '_' + action))
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""
ARGUMENT PARSING
Add general argument:
parser.add_argument( options )
Add specific argument:
parsers['user_delete'].add_argument( options )
Documentation:
http://docs.python.org/dev/library/argparse.html
#argparse.ArgumentParser.add_argument
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""
""" General """
parser.add_argument(
'-v',
'--version',
action = 'version',
version = '%(prog)s '+ version
)
""" User """
parsers['user_list'].add_argument(
'-a',
'--all',
action = 'store'
)
""" Call arguments parsing """
args = parser.parse_args()
return args
def main(args):
parser = argparse.ArgumentParser()
args = parse_args(parser)
args.func(vars(args))
if __name__ == '__main__':
main(args)