view forums/attachments.py @ 887:9a15f7c27526

Actually save model object upon change. This commit was tested on the comments model. Additional logging added. Added check for Markdown image references. Added TODOs after observing behavior on comments.
author Brian Neal <bgneal@gmail.com>
date Tue, 03 Feb 2015 21:09:44 -0600
parents ee87ea74d46b
children
line wrap: on
line source
"""
This module contains a class for handling attachments on forum posts.
"""
from oembed.models import Oembed
from forums.models import Attachment


class AttachmentProcessor(object):
    """
    This class is aggregated by various form classes to handle
    attachments on forum posts. New posts can receive attachments and edited
    posts can have their attachments replaced, augmented, or deleted.

    """
    def __init__(self, ids):
        """
        This class is constructed with a list of Oembed ids. We retrieve the
        actual Oembed objects associated with these keys for use in subsequent
        operations.

        """
        # ensure all ids are integers
        self.pks = []
        for pk in ids:
            try:
                pk = int(pk)
            except ValueError:
                continue
            self.pks.append(pk)

        self.embeds = []
        if self.pks:
            self.embeds = Oembed.objects.in_bulk(self.pks)

    def save_attachments(self, post):
        """
        Create and save attachments to the supplied post object.
        Any existing attachments on the post are removed first.

        """
        post.attachments.clear()

        for n, pk in enumerate(self.pks):
            attachment = Attachment(post=post, embed=self.embeds[pk], order=n)
            attachment.save()

    def has_attachments(self):
        """
        Return true if we have valid pending attachments.

        """
        return len(self.embeds) > 0

    def get_ids(self):
        """
        Return the list of Oembed ids.

        """
        return self.pks