aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2011-05-22 09:56:33 -0500
committerChristopher Allan Webber <cwebber@dustycloud.org>2011-05-22 09:56:33 -0500
commit8820121ad125728613477f3dec098aa2df5f47ac (patch)
tree1131684d6c40cbb9ac48a37e34d004b15ecfbb08
parentdbb92c602075c768d88d0c21b774d75203af3fc1 (diff)
downloadmediagoblin-8820121ad125728613477f3dec098aa2df5f47ac.tar.lz
mediagoblin-8820121ad125728613477f3dec098aa2df5f47ac.tar.xz
mediagoblin-8820121ad125728613477f3dec098aa2df5f47ac.zip
Move the general applicaiton setup commands to a utility module
-rw-r--r--mediagoblin/gmg_commands/__init__.py6
-rw-r--r--mediagoblin/gmg_commands/shell.py22
-rw-r--r--mediagoblin/gmg_commands/util.py45
3 files changed, 51 insertions, 22 deletions
diff --git a/mediagoblin/gmg_commands/__init__.py b/mediagoblin/gmg_commands/__init__.py
index e585785c..9ece2ec5 100644
--- a/mediagoblin/gmg_commands/__init__.py
+++ b/mediagoblin/gmg_commands/__init__.py
@@ -16,7 +16,7 @@
import argparse
-from mediagoblin import util
+from mediagoblin import util as mg_util
SUBCOMMAND_MAP = {
@@ -39,8 +39,8 @@ def main_cli():
else:
subparser = subparsers.add_parser(command_name)
- setup_func = util.import_component(command_struct['setup'])
- exec_func = util.import_component(command_struct['func'])
+ setup_func = mg_util.import_component(command_struct['setup'])
+ exec_func = mg_util.import_component(command_struct['func'])
setup_func(subparser)
diff --git a/mediagoblin/gmg_commands/shell.py b/mediagoblin/gmg_commands/shell.py
index 5e70d556..9c0259de 100644
--- a/mediagoblin/gmg_commands/shell.py
+++ b/mediagoblin/gmg_commands/shell.py
@@ -16,12 +16,9 @@
import code
-import os
-from paste.deploy.loadwsgi import NicerConfigParser
-
-from mediagoblin import app
from mediagoblin import globals as mgoblin_globals
+from mediagoblin.gmg_commands import util as commands_util
def shell_parser_setup(subparser):
@@ -45,22 +42,9 @@ Available vars:
def shell(args):
"""
+ Setup a shell for the user
"""
- # Duplicated from from_celery.py, remove when we have the generic util
- parser = NicerConfigParser(args.conf_file)
- parser.read(args.conf_file)
- parser._defaults.setdefault(
- 'here', os.path.dirname(os.path.abspath(args.conf_file)))
- parser._defaults.setdefault(
- '__file__', os.path.abspath(args.conf_file))
-
- mgoblin_section = dict(parser.items(args.app_section))
- mgoblin_conf = dict(
- [(section_name, dict(parser.items(section_name)))
- for section_name in parser.sections()])
-
- mgoblin_app = app.paste_app_factory(
- mgoblin_conf, **mgoblin_section)
+ mgoblin_app = commands_util.setup_app(args)
code.interact(
banner=SHELL_BANNER,
diff --git a/mediagoblin/gmg_commands/util.py b/mediagoblin/gmg_commands/util.py
new file mode 100644
index 00000000..41a21a1e
--- /dev/null
+++ b/mediagoblin/gmg_commands/util.py
@@ -0,0 +1,45 @@
+# GNU MediaGoblin -- federated, autonomous media hosting
+# Copyright (C) 2011 Free Software Foundation, Inc
+#
+# 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/>.
+
+
+import os
+
+from paste.deploy.loadwsgi import NicerConfigParser
+
+from mediagoblin import app
+
+
+def setup_app(args):
+ """
+ Setup the application after reading the mediagoblin config files
+ """
+ # Duplicated from from_celery.py, remove when we have the generic util
+ parser = NicerConfigParser(args.conf_file)
+ parser.read(args.conf_file)
+ parser._defaults.setdefault(
+ 'here', os.path.dirname(os.path.abspath(args.conf_file)))
+ parser._defaults.setdefault(
+ '__file__', os.path.abspath(args.conf_file))
+
+ mgoblin_section = dict(parser.items(args.app_section))
+ mgoblin_conf = dict(
+ [(section_name, dict(parser.items(section_name)))
+ for section_name in parser.sections()])
+
+ mgoblin_app = app.paste_app_factory(
+ mgoblin_conf, **mgoblin_section)
+
+ return mgoblin_app