拒绝直接访问 S3 上的文件

发布于 2024-12-12 07:53:20 字数 324 浏览 0 评论 0原文

我正在构建一个具有以下行为的 django/s3 应用程序:

  1. 用户登录
  2. 用户上传文档 ->文档转到 S3(最终在数据库中带有 UID 名称和别名?)
  3. 用户可以下载该文档

我正在寻找一种方法来拒绝其他用户(或者更糟糕的是,未登录)查询和访问文件。我能找到的一个解决方案是:

  • 对于每个文件,页面都有指向处理脚本的链接
  • ,当单击该链接时,视图会对其进行处理(检查用户是否经过身份验证,确定 S3 中的正确文件)并重定向到它,这样

就足够了吗?有更优雅的解决方案吗?

I am building a django/s3 application with the following behaviour:

  1. User logs in
  2. User uploads a document -> document goes to S3 (eventually with a UID name and an alias in the DB?)
  3. User can download the document

I'm looking for a way to deny the other users (or, even worse, not logged) to query and get access to the files. One solution I could find is:

  • for every file, the page has links to a processing script
  • when the link is clicked, the view processes it (checks user is authenticated, determines the right file in S3) and redirects to it

Is this enough? Are there more elegant solutions to this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空气里的味道 2024-12-19 07:53:21

不要公开您的文件。这将防止未经授权的用户访问这些文件。

然后在您的 Django 应用程序中,您可以使用查询字符串生成 url,允许授权用户在有限的时间内访问 S3 文件。

查询字符串请求身份验证的亚马逊文档有更多内容信息。

Don't make your files public. This will prevent non-authorised users from accessing the files.

Then in your Django app, you can generate urls with a querystring that allows an authorised user to access an S3 file for a limited time.

The amazon docs for querystring request authentication have more information.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文