Я успешно использовал подписанные URL для моего изображения и видео в хранилище Google. Мой Django Apis возвращает 100 объектов Google Storage, а создание 100 подписанных URL-адресов занимает буквально много времени. Есть ли другой способ генерировать подписанные URL-адреса быстрее или несколько одновременно?
class FileUploadSignedURL(APIView):
@method_decorator(login_required(login_url='/login/'))
def post(self, request):
filename = request.POST.get('filename')
filetype = request.POST.get('type')
filesize = request.POST.get('size', 0)
uuid = get_random_string(11)
path = '{0}-{1}/{2}/'.format(request.user, request.user.id, uuid)
logging.info(path);
video = Video.objects.create(title=filename,
uuid=uuid,
path=path,
user=request.user,
type=filetype,
size=filesize,
status="signed")
# create the blob - the blob has to be created in order to get a signed URL
full_path = '{0}{1}'.format(video.path, video.name)
blob = default_storage.open(full_path, 'wb')
signed_url = blob.blob.generate_signed_url(expiration=default_storage.expiration, method='PUT', content_type=filetype)
logging.debug(signed_url);
logging.debug("FileUploadSignedURL(APIView) end")
return Response({"uuid":video.uuid, "title": video.title, "signed_url":signed_url})