I have this class that provides a POST endpoint to an API user using the Django REST framework.
The code should receive a file download, and then upload it to S3. The file loads correctly in the Django application ( file_obj.length returns the actual file size), and the object is created in S3. However, the file size in S3 is zero. If I register a return file_obj.read() , it is also empty.
What's wrong?
from django.conf import settings from rest_framework.views import APIView from rest_framework.response import Response from rest_framework.parsers import FileUploadParser from boto.s3.connection import S3Connection from boto.s3.key import Key from .models import Upload from .serializers import UploadSerializer class UploadList(APIView): parser_classes = (FileUploadParser,) def post(self, request, format=None): file_obj = request.FILES['file'] upload = Upload(user=request.user, file=file_obj) upload.save() conn = S3Connection(settings.AWS_ACCESS_KEY, settings.AWS_SECRET_KEY) k = Key(conn.get_bucket(settings.AWS_S3_BUCKET)) k.key = 'upls/%s/%s.png' % (request.user.id, upload.key) k.set_contents_from_string(file_obj.read()) serializer = UploadSerializer(upload) return Response(serializer.data, status=201)
source share