diff downloads/management/commands/dlwgetcat.py @ 581:ee87ea74d46b

For Django 1.4, rearranged project structure for new manage.py.
author Brian Neal <bgneal@gmail.com>
date Sat, 05 May 2012 17:10:48 -0500
parents gpp/downloads/management/commands/dlwgetcat.py@311c926dd218
children 161b56849114
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/downloads/management/commands/dlwgetcat.py	Sat May 05 17:10:48 2012 -0500
@@ -0,0 +1,53 @@
+"""
+dlwgetcat - a management command to produce a bash script that wgets all the
+files in a given category.
+
+"""
+import os.path
+
+from django.core.management.base import LabelCommand, CommandError
+from django.template.loader import render_to_string
+from django.template.defaultfilters import slugify
+from django.contrib.sites.models import Site
+from django.conf import settings
+
+from downloads.models import Category, Download
+
+
+class Command(LabelCommand):
+    help = ("Produce on standard output a bash script that wgets all the files"
+            " in a category. The files are downloaded with a slugified name.")
+    
+    args = "category-slug"
+
+    def handle_label(self, slug, **options):
+        """
+        Render a template using the downloads in a given category and send it to
+        stdout.
+
+        """
+        try:
+            category = Category.objects.get(slug=slug)
+        except Category.DoesNotExist:
+            raise CommandError("category slug '%s' does not exist" % slug)
+
+        downloads = Download.public_objects.filter(category=category).order_by(
+                'title').select_related()
+
+        # Create new destination names for the files since the uploaders often
+        # give the files terrible names. The new names will be slugified
+        # versions of the titles, with the same extension.
+
+        for dl in downloads:
+            ext = os.path.splitext(dl.file.name)[1]
+            dl.dest_filename = slugify(dl.title) + ext
+
+        output = render_to_string('downloads/commands/wget_cat.html', {
+            'downloads': downloads,
+            'domain': Site.objects.get_current().domain,
+            'MEDIA_URL': settings.MEDIA_URL,
+            })
+
+        # encode it ourselves since it can fail if you try to redirect output to
+        # a file and any of the content is not ASCII...
+        print output.encode('utf-8')