Removing wipealldata command and deleting env_export/env_import for now.
[mediagoblin.git] / mediagoblin / gmg_commands / __init__.py
CommitLineData
029cad45 1# GNU MediaGoblin -- federated, autonomous media hosting
cf29e8a8 2# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
029cad45
CAW
3#
4# This program is free software: you can redistribute it and/or modify
5# it under the terms of the GNU Affero General Public License as published by
6# the Free Software Foundation, either version 3 of the License, or
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU Affero General Public License for more details.
13#
14# You should have received a copy of the GNU Affero General Public License
15# along with this program. If not, see <http://www.gnu.org/licenses/>.
16
029cad45 17import argparse
9d0a613b 18import os
029cad45 19
b43b17fc 20from mediagoblin.tools.common import import_component
029cad45
CAW
21
22
23SUBCOMMAND_MAP = {
24 'shell': {
dbb92c60
CAW
25 'setup': 'mediagoblin.gmg_commands.shell:shell_parser_setup',
26 'func': 'mediagoblin.gmg_commands.shell:shell',
029cad45 27 'help': 'Run a shell with some tools pre-setup'},
757f37a5
CAW
28 'migrate': {
29 'setup': 'mediagoblin.gmg_commands.migrate:migrate_parser_setup',
30 'func': 'mediagoblin.gmg_commands.migrate:migrate',
31 'help': 'Apply all unapplied bulk migrations to the database'},
243c3843 32 'adduser': {
96108ea2
AV
33 'setup': 'mediagoblin.gmg_commands.users:adduser_parser_setup',
34 'func': 'mediagoblin.gmg_commands.users:adduser',
7f4b4471 35 'help': 'Creates an user'},
96108ea2
AV
36 'makeadmin': {
37 'setup': 'mediagoblin.gmg_commands.users:makeadmin_parser_setup',
38 'func': 'mediagoblin.gmg_commands.users:makeadmin',
7f4b4471 39 'help': 'Changes a user\'s password'},
96108ea2
AV
40 'changepw': {
41 'setup': 'mediagoblin.gmg_commands.users:changepw_parser_setup',
42 'func': 'mediagoblin.gmg_commands.users:changepw',
7f4b4471 43 'help': 'Makes admin an user'},
3ea1cf36
CAW
44 'dbupdate': {
45 'setup': 'mediagoblin.gmg_commands.dbupdate:dbupdate_parse_setup',
46 'func': 'mediagoblin.gmg_commands.dbupdate:dbupdate',
47 'help': 'Set up or update the SQL database'},
98913512
E
48 'convert_mongo_to_sql': {
49 'setup': 'mediagoblin.gmg_commands.mongosql:mongosql_parser_setup',
50 'func': 'mediagoblin.gmg_commands.mongosql:mongosql',
51 'help': 'Convert Mongo DB data to SQL DB data'},
63578ee3
CAW
52
53 ## These might be useful, mayyyybe, but don't really work anymore
54 ## due to mongo change and the "versatility" of sql options.
55 ##
56 ## For now, commenting out. Might re-enable soonish?
57 #
58 # 'env_export': {
59 # 'setup': 'mediagoblin.gmg_commands.import_export:import_export_parse_setup',
60 # 'func': 'mediagoblin.gmg_commands.import_export:env_export',
61 # 'help': 'Exports the data for this MediaGoblin instance'},
62 # 'env_import': {
63 # 'setup': 'mediagoblin.gmg_commands.import_export:import_export_parse_setup',
64 # 'func': 'mediagoblin.gmg_commands.import_export:env_import',
65 # 'help': 'Imports the data for this MediaGoblin instance'},
029cad45
CAW
66 }
67
68
029cad45
CAW
69def main_cli():
70 parser = argparse.ArgumentParser(
71 description='GNU MediaGoblin utilities.')
15ac1458 72 parser.add_argument(
9d0a613b
CAW
73 '-cf', '--conf_file', default=None,
74 help=(
75 "Config file used to set up environment. "
76 "Default to mediagoblin_local.ini if readable, "
77 "otherwise mediagoblin.ini"))
029cad45
CAW
78
79 subparsers = parser.add_subparsers(help='sub-command help')
80 for command_name, command_struct in SUBCOMMAND_MAP.iteritems():
285ffedd 81 if 'help' in command_struct:
029cad45
CAW
82 subparser = subparsers.add_parser(
83 command_name, help=command_struct['help'])
84 else:
85 subparser = subparsers.add_parser(command_name)
86
b43b17fc
CAW
87 setup_func = import_component(command_struct['setup'])
88 exec_func = import_component(command_struct['func'])
029cad45
CAW
89
90 setup_func(subparser)
91
92 subparser.set_defaults(func=exec_func)
93
94 args = parser.parse_args()
9d0a613b
CAW
95 if args.conf_file is None:
96 if os.path.exists('mediagoblin_local.ini') \
97 and os.access('mediagoblin_local.ini', os.R_OK):
98 args.conf_file = 'mediagoblin_local.ini'
99 else:
100 args.conf_file = 'mediagoblin.ini'
101
029cad45
CAW
102 args.func(args)
103
104
105if __name__ == '__main__':
106 main_cli()