| | 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 | import argparse |
| | 18 | import os |
| | 19 | |
| | 20 | from alembic import config |
| | 21 | from sqlalchemy.orm import sessionmaker |
| | 22 | |
| | 23 | from mediagoblin.db.open import setup_connection_and_db_from_config |
| | 24 | from mediagoblin.init import setup_global_and_app_config |
| | 25 | |
| | 26 | |
| | 27 | class FudgedCommandLine(config.CommandLine): |
| | 28 | def main(self, args, db): |
| | 29 | options = self.parser.parse_args(args.args_for_alembic) |
| | 30 | if not hasattr(options, "cmd"): |
| | 31 | # see http://bugs.python.org/issue9253, argparse |
| | 32 | # behavior changed incompatibly in py3.3 |
| | 33 | self.parser.error("too few arguments") |
| | 34 | else: |
| | 35 | Session = sessionmaker(bind=db.engine) |
| | 36 | |
| | 37 | root_dir = os.path.abspath(os.path.dirname(os.path.dirname( |
| | 38 | os.path.dirname(__file__)))) |
| | 39 | alembic_cfg_path = os.path.join(root_dir, 'alembic.ini') |
| | 40 | cfg = config.Config(alembic_cfg_path, |
| | 41 | cmd_opts=options) |
| | 42 | cfg.attributes["session"] = Session() |
| | 43 | self.run_cmd(cfg, options) |
| | 44 | |
| | 45 | def parser_setup(subparser): |
| | 46 | subparser.add_argument("args_for_alembic", nargs=argparse.REMAINDER) |
| | 47 | |
| | 48 | def raw_alembic_cli(args): |
| | 49 | global_config, app_config = setup_global_and_app_config(args.conf_file) |
| | 50 | db = setup_connection_and_db_from_config(app_config, migrations=False) |
| | 51 | FudgedCommandLine().main(args, db) |