view gpp/podcast/management/commands/import_old_podcasts.py @ 265:1ba2c6bf6eb7

Closing #98. Animated GIFs were losing their transparency and animated properties when saved as avatars. Reworked the avatar save process to only run the avatar through PIL if it is too big. This preserves the original uploaded file if it is within the desired size settings. This may still mangle big animated gifs. If this becomes a problem, then maybe look into calling the PIL Image.resize() method directly. Moved the PIL image specific functions from bio.forms to a new module: core.image for better reusability in the future.
author Brian Neal <bgneal@gmail.com>
date Fri, 24 Sep 2010 02:12:09 +0000
parents 1085dc38399e
children
line wrap: on
line source
"""
import_old_podcasts.py - For importing podcasts from SG101 1.0 as csv files.
"""
import csv
import datetime

from django.core.management.base import LabelCommand, CommandError

from podcast.models import Channel, Item


class Command(LabelCommand):
    args = '<filename filename ...>'
    help = 'Imports podcasts from the old database in CSV format'

    def handle_label(self, filename, **options):
        """
        Process each line in the CSV file given by filename by
        creating a new weblink object and saving it to the database.

        """
        try:
            self.channel = Channel.objects.get(pk=1)
        except Channel.DoesNotExist:
            raise CommandError("Need a default channel with pk=1")

        try:
            with open(filename, "rb") as f:
                self.reader = csv.DictReader(f)
                try:
                    for row in self.reader:
                        self.process_row(row)
                except csv.Error, e:
                    raise CommandError("CSV error: %s %s %s" % (
                        filename, self.reader.line_num, e))

        except IOError:
            raise CommandError("Could not open file: %s" % filename)

    def process_row(self, row):
        """
        Process one row from the CSV file: create an object for the row
        and save it in the database.

        """
        item = Item(channel=self.channel,
            title=row['title'],
            author=row['author'],
            subtitle=row['subtitle'],
            summary=row['summary'],
            enclosure_url=row['enclosure_url'],
            alt_enclosure_url='',
            enclosure_length=int(row['enclosure_length']),
            enclosure_type=row['enclosure_type'],
            guid=row['guid'],
            pubdate=datetime.datetime.strptime(row['pubdate'],
                "%Y-%m-%d %H:%M:%S"),
            duration=row['duration'],
            keywords=row['keywords'],
            explicit=row['explicit'])

        item.save()