Merge branch 'master' into processing
[mediagoblin.git] / mediagoblin / gmg_commands / shell.py
CommitLineData
dbb92c60
CAW
1# GNU MediaGoblin -- federated, autonomous media hosting
2# Copyright (C) 2011 Free Software Foundation, Inc
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
17
18import code
dbb92c60 19
6e7ce8d1 20from mediagoblin import mg_globals
8820121a 21from mediagoblin.gmg_commands import util as commands_util
dbb92c60
CAW
22
23
24def shell_parser_setup(subparser):
25 subparser.add_argument(
26 '-cf', '--conf_file', default='mediagoblin.ini',
27 help="Config file used to set up environment")
dbb92c60
CAW
28
29
30SHELL_BANNER = """\
31GNU MediaGoblin shell!
32----------------------
33Available vars:
34 - mgoblin_app: instantiated mediagoblin application
6e7ce8d1 35 - mg_globals: mediagoblin.globals
dbb92c60
CAW
36 - db: database instance
37"""
38
39
40def shell(args):
41 """
8820121a 42 Setup a shell for the user
dbb92c60 43 """
8820121a 44 mgoblin_app = commands_util.setup_app(args)
dbb92c60
CAW
45
46 code.interact(
47 banner=SHELL_BANNER,
48 local={
49 'mgoblin_app': mgoblin_app,
6e7ce8d1
CAW
50 'mg_globals': mg_globals,
51 'db': mg_globals.database})