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.
17 lines
418 B
Python
17 lines
418 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]
|