Switching the addmedia tool over to using the get_upload_file_limits tool also.
authorChristopher Allan Webber <cwebber@dustycloud.org>
Thu, 14 Nov 2013 17:09:18 +0000 (11:09 -0600)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Thu, 14 Nov 2013 17:09:18 +0000 (11:09 -0600)
This commit sponsored by Damien Radtke.  Thanks!

mediagoblin/gmg_commands/addmedia.py

index 263df079b97c4044a6bdc0bb9dfc7d8d7b52554c..c33a8c56f80738056abe3223a3fc7feb244e3fdc 100644 (file)
@@ -18,7 +18,7 @@ import os
 
 from mediagoblin.gmg_commands import util as commands_util
 from mediagoblin.submit.lib import (
-    submit_media,
+    submit_media, get_upload_file_limits,
     FileUploadLimit, UserUploadLimit, UserPastUploadLimit)
 
 from mediagoblin import mg_globals
@@ -78,12 +78,7 @@ def addmedia(args):
         print "Can't find a file with filename '%s'" % args.filename
         return
 
-    if user.upload_limit >= 0:
-        upload_limit = user.upload_limit
-    else:
-        upload_limit = mg_globals.app_config.get('upload_limit', None)
-
-    max_file_size = mg_globals.app_config.get('max_file_size', None)
+    upload_limit, max_file_size = get_upload_file_limits(user)
 
     def maybe_unicodeify(some_string):
         # this is kinda terrible