view user_photos/s3.py @ 821:71db8076dc3d

Bandmap WIP: geocoding integrated with add form. Add form works. Before submitting the form, client side JS makes a geocode request to Google and populates hidden lat/lon fields with the result. Successfully created a model instance on the server side. Still need to update admin dashboard, admin approval, and give out badges for adding bands to the map. Once that is done, then work on displaying the map with filtering.
author Brian Neal <bgneal@gmail.com>
date Tue, 23 Sep 2014 20:40:31 -0500
parents bf5340705d0c
children
line wrap: on
line source
"""Module for all S3 related operations for the user_photos application."""

import logging

from django.conf import settings

from core.s3 import S3Bucket


logger = logging.getLogger(__name__)


def delete_photos(qs):
    """Delete the photos stored on S3 for the given Photo queryset.

    Returns the number of photos actually deleted.

    """

    bucket = S3Bucket(settings.USER_PHOTOS_ACCESS_KEY,
                      settings.USER_PHOTOS_SECRET_KEY,
                      settings.USER_PHOTOS_BASE_URL,
                      settings.USER_PHOTOS_BUCKET)

    key_urls = []
    for photo in qs:
        key_urls.append(photo.url)
        key_urls.append(photo.thumb_url)
    req_cnt = len(key_urls)

    logger.info("Requesting deletion of %d user photo(s) from S3", req_cnt)

    act_cnt = bucket.delete_keys(key_urls)

    if act_cnt == req_cnt:
        logger.info("Deleted %d user photo(s) from S3", act_cnt)
    else:
        logger.warning("Deleted %d user photo(s) out of %d", act_cnt, req_cnt)

    return act_cnt