django загрузка файлов из списка (s3 в качестве фонового) - PullRequest
0 голосов
/ 23 апреля 2020

Мне нужно указать в таблице html содержимое корзины S3 и включить возможность загрузки файла. Для этого я сделал следующее: Код правильно отображает список файлов корзины, но я не уверен, как написать код для загрузки файлов.

инвентарь. html:

{% block title %} title{% endblock %}

{% block content %}
<table class="table table-striped">
  <thead>
    <tr>
      <th scope="col">Date&nbsp;<a href="?order_by=ord_date&direction=desc">{% load static %}<img src="{% static "arrow.png" %}" width="12" height="12" alt="order desc"></a><a href="?order_by=ord_date&direction=asc">{% load static %}<img src="{% static "sort-down.png" %}" width="12" height="12" alt="order asc"></a></th>

      <th scope="col">Name&nbsp;<a href="?order_by=ord_source&direction=desc">{% load static %}<img src="{% static "arrow.png" %}" width="12" height="12" alt="order desc"></a><a href="?order_by=ord_source&direction=asc">{% load static %}<img src="{% static "sort-down.png" %}" width="12" height="12" alt="order asc"></a></th>

      <th scope="col">Size</th>

      <th scope="col">Action</th>

    </tr>
  </thead>
  <tbody>  
     {% for item in items %}
        <tr>
          <td>{{ item.LastModified }}</td>
          <td>{{ item.Key }}</td>
          <td>{{ item.Size }}</td>
          <td><button type="Button" class="btn btn-secondary btn-sm"><a href="?key_download={{ item.Key }}">Download</button></a></td>
        </tr>
    {% endfor %}
</tbody>
</table>
{% endblock %}

views.py:

client = boto3.client('s3')

def inventory(request):
    if request.GET.get('key_download'):
        url = client.generate_presigned_url('get_object', Params = { 
                                                                    'Bucket':'url_of_the_bucket',
                                                                    'Key':request.GET.get('key_download')},
                                                          ExpiresIn = 86400)

        return **"I don't know how I can return it"**
    else:
        fdc_inventories = client.list_objects_v2(Bucket='url_of_the_bucket')
        fdc_inventories['Contents'].sort(key=itemgetter('LastModified'), reverse=True)
        return render(request, 'inventory.html', {'items': fdc_inventories['Contents']})

Так что я не уверен, как его вернуть. Имейте в виду, что список в шаблоне или html содержит список объекта, и он не является c содержимым.

Любой другой способ сделать это, я очень ценю. Большое вам спасибо.

1 Ответ

1 голос
/ 23 апреля 2020

Вы можете вернуть перенаправление, при правильном ACL он должен начать загрузку return HttpResponseRedirect(url)

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...