docs: Update relnotes to remove "node_modules".
[mediagoblin.git] / mediagoblin / gmg_commands / shell.py
CommitLineData
dbb92c60 1# GNU MediaGoblin -- federated, autonomous media hosting
cf29e8a8 2# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
dbb92c60
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
17
18import code
dbb92c60 19
6e7ce8d1 20from mediagoblin import mg_globals
8820121a 21from mediagoblin.gmg_commands import util as commands_util
dbb92c60 22
f08e3152
CAW
23from mediagoblin.tools.transition import DISABLE_GLOBALS
24
dbb92c60
CAW
25
26def shell_parser_setup(subparser):
0e93443f
CAW
27 subparser.add_argument(
28 '--ipython', help='Use ipython',
29 action="store_true")
dbb92c60
CAW
30
31
f08e3152
CAW
32if DISABLE_GLOBALS:
33 SHELL_BANNER = (
34 "GNU MediaGoblin shell!\n"
35 "----------------------\n"
36 "Available vars:\n"
37 " - app: instantiated mediagoblin application\n"
a4768df0
CAW
38 " - db: database session\n"
39 " - ctx: context object\n")
f08e3152
CAW
40else:
41 SHELL_BANNER = (
42 "GNU MediaGoblin shell!\n"
43 "----------------------\n"
44 "Available vars:\n"
45 " - app: instantiated mediagoblin application\n"
46 " - mg_globals: mediagoblin.globals\n"
a4768df0
CAW
47 " - db: database instance\n"
48 " - ctx: context object\n")
dbb92c60 49
0e93443f
CAW
50def py_shell(**user_namespace):
51 """
52 Run a shell using normal python shell.
53 """
54 code.interact(
55 banner=SHELL_BANNER,
56 local=user_namespace)
57
58
59def ipython_shell(**user_namespace):
60 """
4d9b426c 61 Run a shell for the user using ipython. Return False if there is no IPython
0e93443f
CAW
62 """
63 try:
64 from IPython import embed
65 except:
4d9b426c
SS
66 return False
67
0e93443f
CAW
68 embed(
69 banner1=SHELL_BANNER,
70 user_ns=user_namespace)
4d9b426c 71 return True
dbb92c60 72
f08e3152 73
dbb92c60
CAW
74def shell(args):
75 """
4d9b426c 76 Setup a shell for the user either a normal Python shell or an IPython one
dbb92c60 77 """
f08e3152
CAW
78 app = commands_util.setup_app(args)
79
a4768df0 80 def run_shell(db, ctx):
f08e3152
CAW
81 user_namespace = {
82 'mg_globals': mg_globals,
83 'app': app,
a4768df0
CAW
84 'db': db,
85 "ctx": ctx}
f08e3152
CAW
86
87 if args.ipython:
88 ipython_shell(**user_namespace)
89 else:
90 # Try ipython_shell first and fall back if not available
91 if not ipython_shell(**user_namespace):
92 py_shell(**user_namespace)
0e93443f 93
a4768df0
CAW
94 with app.gen_context() as ctx:
95 db = ctx.db
96 run_shell(db, ctx)