From: Rodney Ewing Date: Thu, 1 Aug 2013 19:35:49 +0000 (-0700) Subject: Added a set_media_type function that has checks to only reprocess one media_type... X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=99b34c4ce68b636583657bccec137d04875a5bf1;p=mediagoblin.git Added a set_media_type function that has checks to only reprocess one media_type at a time --- diff --git a/mediagoblin/gmg_commands/reprocess.py b/mediagoblin/gmg_commands/reprocess.py index 1cc9f71a..9dbadefb 100644 --- a/mediagoblin/gmg_commands/reprocess.py +++ b/mediagoblin/gmg_commands/reprocess.py @@ -13,6 +13,9 @@ # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . +from mediagoblin.db.models import MediaEntry +from mediagoblin.gmg_commands import util as commands_util +from mediagoblin.tools.translate import lazy_pass_to_ugettext as _ def reprocess_parser_setup(subparser): @@ -37,5 +40,48 @@ def reprocess_parser_setup(subparser): help="The media_entry id(s) you wish to reprocess.") -def reprocess(args): +class MismatchingMediaTypes(Exception): + """ + Error that should be raised if the media_types are not the same + """ pass + + +def _set_media_type(args): + if len(args[0].media_id) == 1: + media_type = MediaEntry.query.filter_by(id=args[0].media_id[0])\ + .first().media_type.split('.')[-1] + + if not args[0].type: + args[0].type = media_type + elif args[0].type != media_type: + raise MismatchingMediaTypes(_('The type that you set does not' + ' match the type of the given' + ' media_id.')) + elif len(args[0].media_id) > 1: + media_types = [] + + for id in args[0].media_id: + media_types.append(MediaEntry.query.filter_by(id=id).first()\ + .media_type.split('.')[-1]) + for type in media_types: + if media_types[0] != type: + raise MismatchingMediaTypes((u'You cannot reprocess different' + ' media_types at the same time.')) + + if not args[0].type: + args[0].type = media_types[0] + elif args[0].type != media_types[0]: + raise MismatchingMediaTypes(_('The type that you set does not' + ' match the type of the given' + ' media_ids.')) + + elif not args[0].type: + raise MismatchingMediaTypes(_('You must provide either a media_id or' + ' set the --type flag')) + + +def reprocess(args): + commands_util.setup_app(args[0]) + + _set_media_type(args)