You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
417 B
Python
16 lines
417 B
Python
from rest_framework.parsers import FileUploadParser
|
|
|
|
|
|
class ChunkUploadParser(FileUploadParser):
|
|
"""
|
|
Parser for chunk upload data.
|
|
"""
|
|
media_type = 'application/octet-stream'
|
|
|
|
def get_filename(self, stream, media_type, parser_context):
|
|
"""
|
|
Detects the uploaded file name.
|
|
"""
|
|
view = parser_context['view']
|
|
return parser_context['kwargs'][view.lookup_field]
|