7

我正在尝试遵循此“操作方法”(从 POST 到 S3 存储桶),但我的策略和签名似乎失败了。

我不太确定我的保单和签名有误?但我知道我在评估我在助手中创建的方法时遇到了问题。我尝试将策略和签名值转换为符号,并且尝试了<%= :S3_UPLOAD_SIGNATURE %><%=h, <%=raw, "#{<%=..}"。

我之前调用过辅助方法没有任何问题,所以我有点迷茫。

错误:

NameError in Proj_files#new

Showing /app/views/proj_files/new.html.erb where line #8 raised:

uninitialized constant ActionView::CompiledTemplates::S3_UPLOAD_POLICY
Extracted source (around line #8):

5:       <input type="hidden" name="AWSAccessKeyId" value= <%= ENV['AWS_ACCESS_KEY_ID'] %> > 
6:       <input type="hidden" name="acl" value="private"> 
7:       <input type="hidden" name="success_action_redirect" value="http://localhost/">
8:       <input type="hidden" name="policy" value= <%= S3_UPLOAD_POLICY %> >
9:       <input type="hidden" name="signature" value= <%= S3_UPLOAD_SIGNATURE %> >
10:       <input type="hidden" name="Content-Type" value="image/png">
11:       <!-- Include any additional input fields here -->

我有一个带有相应 new.html.erb 的 proj_files 控制器:

<form action="https://s3.amazonaws.com/MY_BUCKET" method="post" enctype="multipart/form-data">
  <input type="hidden" name="key" value="uploads/${filename}">
  <input type="hidden" name="AWSAccessKeyId" value= <%= ENV['AWS_ACCESS_KEY_ID'] %> > 
  <input type="hidden" name="acl" value="private"> 
  <input type="hidden" name="success_action_redirect" value="http://localhost/">
  <input type="hidden" name="policy" value= <%= S3_UPLOAD_POLICY %> >
  <input type="hidden" name="signature" value= <%= S3_UPLOAD_SIGNATURE %> >
  <input type="hidden" name="Content-Type" value="image/png">
  <!-- Include any additional input fields here -->

  File to upload to S3: 
  <input name="file" type="file"> 
  <br> 
  <input type="submit" value="Upload File to S3"> 
</form> 

和 proj_files_helper.rb:

module ProjFilesHelper

  def S3_UPLOAD_POLICY options = {}
    options[:content_type] ||= ''
    options[:acl] ||= 'private'
    options[:max_file_size] ||= 500.megabyte
    options[:path] ||= ''

    Base64.encode64(
      "{'expiration': '#{10.hours.from_now.utc.strftime('%Y-%m-%dT%H:%M:%S.000Z')}',
        'conditions': [
          {'bucket': '#{ENV['S3_BUCKET']}'},
          ['starts-with', '$key', ''],
          {'acl': '#{options[:acl]}'},
          {'success_action_status': '201'},
          ['content-length-range', 0, #{options[:max_file_size]}],
          ['starts-with','$Content-Type','']
        ]
    }").gsub(/\n|\r/, '')
  end


  def S3_UPLOAD_SIGNATURE options = {}
    Base64.encode64(
      OpenSSL::HMAC.digest(
      OpenSSL::Digest::Digest.new('sha1'),
      ENV['AWS_SECRET_ACCESS_KEY'], s3_policy(options))).gsub("\n","")
  end

end

谢谢参观!

更新: 我将方法名称更改为小写,这让我更进一步(我应该意识到这一点!)。

现在我收到一个 S3 错误:

<Error>
<Code>AccessDenied</Code>
<Message>
Invalid according to Policy: Policy Condition failed: ["eq", "$bucket", "MY_BUCKETS_NAME"]
</Message>

似乎可能有一个 ENV 变量 $bucket 错误参考我会寻找......“MY_BUCKETS_NAME”确实显示了正确的存储桶名称......如果有人可以提供任何帮助,让 Rails 发布表单到 S3 并运行/指出我的错误,我将不胜感激。

谢谢

UPDATE2 根据下面的评论,我将表单操作修改为“ https://s3.amazonaws.com/MY_BUCKET ”并收到此错误:

Invalid according to Policy: Policy Condition failed: ["eq", "$acl", "public-read"]

接近...谢谢!

UPDATE3 我正在战斗!

我已修改策略并形成 ACL 以具有相同的一致值(私有或公共读取)。

下面的评论使我将表单操作修改为:http://MY_BUCKET.s3.amazonaws.com/我收到此错误:

<Code>AccessDenied</Code>
<Message>
Invalid according to Policy: Policy Condition failed: ["eq", "$success_action_status", "201"]
</Message>

奇怪的是,当我转到 AWS S3 管理控制台并将文件上传到我的存储桶时,它告诉我链接是“ http://s3.amazonaws.com/MY_BUCKET ”形式的。我在 amazonaws 之前和之后添加了 MY_BUCKET ,但仍然收到相同的错误...

我不确定哪里发生了错误配置...我将创建一个新存储桶,看看我是否设置错误...。

谢谢!

现在可以使用了!!! 我从答案中修复了所有内容......但后来不得不再做一个改变......

我的表单有一个“success_action_redirect”字段,但我的策略有一个success_action_status!

政策和表单字段必须匹配!呃!

感谢所有的帮助......是时候进一步调整它了!

4

2 回答 2

6

1/ 要上传文件,您必须使用此 url "http://#{bucket_name}.s3.amazonaws.com/"它在文档中明确说明:

action 定义了处理请求的 URL;这必须设置为存储桶的 URL。例如,如果您的存储桶的名称是“johnsmith”,那么 URL 将是“ http://johnsmith.s3.amazonaws.com/

2/ 您必须有一致的政策,似乎您public-read在签名和private表格中设置。

于 2012-12-26T21:49:49.487 回答
1

我收到以下错误:根据策略无效:策略条件失败:[\"eq\", \"$bucket\"

几个小时后,我知道你不能有一个大写字母的桶。将存储桶更改为小写即可修复它。

于 2013-06-07T16:47:18.453 回答