mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-17 07:41:26 +00:00
61 lines
1.9 KiB
Python
61 lines
1.9 KiB
Python
# Copyright (c) 2012-2016 Seafile Ltd.
|
|
import logging
|
|
import posixpath
|
|
|
|
from rest_framework.response import Response
|
|
from rest_framework.views import APIView
|
|
from rest_framework import status
|
|
|
|
from seaserv import seafile_api
|
|
|
|
from seahub.api2.throttling import UserRateThrottle
|
|
from seahub.api2.utils import api_error
|
|
|
|
from seahub.settings import ENABLE_RESUMABLE_FILEUPLOAD
|
|
|
|
logger = logging.getLogger(__name__)
|
|
json_content_type = 'application/json; charset=utf-8'
|
|
|
|
class RepoFileUploadedBytesView(APIView):
|
|
|
|
throttle_classes = (UserRateThrottle,)
|
|
|
|
def get(self, request, repo_id):
|
|
""" For resumable fileupload
|
|
"""
|
|
|
|
# argument check
|
|
parent_dir = request.GET.get('parent_dir', None)
|
|
if not parent_dir:
|
|
error_msg = 'parent_dir invalid.'
|
|
return api_error(status.HTTP_400_BAD_REQUEST, error_msg)
|
|
|
|
file_name = request.GET.get('file_name')
|
|
if not file_name:
|
|
error_msg = 'file_name invalid.'
|
|
return api_error(status.HTTP_400_BAD_REQUEST, error_msg)
|
|
|
|
# resource check
|
|
repo = seafile_api.get_repo(repo_id)
|
|
if not repo:
|
|
error_msg = 'Library %s not found.' % repo_id
|
|
return api_error(status.HTTP_404_NOT_FOUND, error_msg)
|
|
|
|
if not seafile_api.get_dir_id_by_path(repo_id, parent_dir):
|
|
error_msg = 'Folder %s not found.' % parent_dir
|
|
return api_error(status.HTTP_404_NOT_FOUND, error_msg)
|
|
|
|
file_path = posixpath.join(parent_dir, file_name)
|
|
try:
|
|
uploadedBytes = seafile_api.get_upload_tmp_file_offset(repo_id, file_path)
|
|
except Exception as e:
|
|
logger.error(e)
|
|
error_msg = 'Internal Server Error'
|
|
return api_error(status.HTTP_500_INTERNAL_SERVER_ERROR, error_msg)
|
|
|
|
response = Response({"uploadedBytes": uploadedBytes})
|
|
if ENABLE_RESUMABLE_FILEUPLOAD:
|
|
response["Accept-Ranges"] = "bytes"
|
|
|
|
return response
|