It's 2012 all up in here
[mediagoblin.git] / mediagoblin / gmg_commands / shell.py
1 # GNU MediaGoblin -- federated, autonomous media hosting
2 # Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
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
18 import code
19
20 from mediagoblin import mg_globals
21 from mediagoblin.gmg_commands import util as commands_util
22
23
24 def shell_parser_setup(subparser):
25 pass
26
27
28 SHELL_BANNER = """\
29 GNU MediaGoblin shell!
30 ----------------------
31 Available vars:
32 - mgoblin_app: instantiated mediagoblin application
33 - mg_globals: mediagoblin.globals
34 - db: database instance
35 """
36
37
38 def shell(args):
39 """
40 Setup a shell for the user
41 """
42 mgoblin_app = commands_util.setup_app(args)
43
44 code.interact(
45 banner=SHELL_BANNER,
46 local={
47 'mgoblin_app': mgoblin_app,
48 'mg_globals': mg_globals,
49 'db': mg_globals.database})