S3 Presigned Post需要特定的Content-Type

时间:2016-04-30 19:10:19

标签: ruby amazon-web-services amazon-s3 pre-signed-url

首先,我正在使用ruby的aws-sdk,但我所面对的似乎是对S3的预约帖子的误解。

我希望能够确保使用我的预先发布的帖子上传到S3的任何内容都是视频。

我尝试过做的是在presigned_post哈希中设置content_type_starts_with: "video/"。这会导致所有上传内容被Policy Condition failed: ["starts-with", "$Content-Type", "video/"]拒绝。

然后我尝试了content_type: "video/mp4",但这会导致s3允许上传任何文件,然后只在元数据中用Content-Type: "video/mp4"标记它。

然后我注意到,当我上传没有Content-Type约束的文件时,S3会将文件标记为binary/octet-stream。所以我再次尝试了第一种方法,但这次是content_type_starts_with: "binary/"。与之前的结果相同,Policy Condition Failed

我应该如何使用Content-Type字段?它似乎永远不会做我想做的事。

以下是我正在使用的代码片段:

# In the controller

client = Aws::S3::Client.new(region: 'us-east-1')
resource = Aws::S3::Resource.new(client: client)
bucket = resource.bucket("my-bucket")

object_id = SecureRandom.uuid
object = bucket.object(object_id)

@presigned_post = object.presigned_post({
  acl: "private",
  content_length_range: 0..104857600, # 100 MB
  content_type_starts_with: "video/",
})

# In the presigned post erb

<form action="<%= presigned_post.url %>" method="post" enctype="multipart/form-data">
<% presigned_post.fields.each do |name, value| %>
    <input type="hidden" name="<%= name %>" value="<%= value %>"/>
<% end %>
    <input type="file" name="file" accept="*.mp4,*.ogg,video/*" />
    <input type="submit">
</form>

1 个答案:

答案 0 :(得分:1)

我遇到了一个非常类似的问题,我想我已经解决了。我希望这会有所帮助。

我意识到设置content_type_starts_with实际上并不限制上传的文件类型,但它限制了表单数据中content-type键的实际内容,但您仍然需要设置表单要发布的内容类型。

由于我使用JavaScript进行客户端上传,我只是将其添加到我的上传代码中: formData.set('content-type', file.type)其中formData是我最终通过XMLHttpRequest发送到服务器的FormData对象的实例。

执行此操作后,上传pdf将开始上传,但不会将文件保存在S3上,因为MIME类型限制。

如果您需要更多信息,请告诉我,我的上传代码基于此http://blog.teamtreehouse.com/uploading-files-ajax