读取带有“+”符号的S3存储桶文件时,Amazon S3 Access被拒绝

时间:2013-04-30 19:22:33

标签: amazon-s3 carrierwave fog

我正在开发一个rails应用程序,我使用带有雾存储的carrierwave。我的表单中有几个字段,用户可以在其中提交应用程序(名称,简短和长描述,图像字段)。上传文件的名称来自表单“名称”字段中的字段名称。

例如,当我上传名称为Notepad的文件时,一切正常,图片会显示在我的应用页面上。但是,当我在表单字段中上传名为Notepad++的图像时,它会成功上传到亚马逊,但是我的图像会损坏。查看其源并尝试打开其URL会产生错误

<Error>
   <Code>AccessDenied</Code>
   <Message>Access Denied</Message>
   <RequestId>0DBACCF4C0301B02</RequestId>
   <HostId>
      raYVzr9xubG0NA/b57saIJzfc2YhnvhD0tafYmo34ewOBY6/0j1AKUFC/lEoY+6h
   </HostId>
</Error>

对于带有加号的所有名称都会发生这种情况。可能是什么问题呢。我已尽力而为,但没有。这是我的image_uploader类

# encoding: utf-8

class ImageUploader < CarrierWave::Uploader::Base

   include CarrierWave::RMagick

   storage :fog

   include CarrierWave::MimeTypes
   process :set_content_type

   def store_dir
      "uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.name.to_s.downcase.underscore || model.id.to_s.underscore.downcase}"
   end

   def filename
      "#{model.name.to_s.underscore.downcase}-#{secure_token}" if original_filename.present?
   end

   def default_url
      "fallback/#{model.class.to_s.underscore}/" + [version_name, "noimage.gif"].compact.join('_')
   end

   version :nano_thumb do
       process :resize_to_fill => [20, 20]
   end

   version :mini_thumb do
       process :resize_to_fill => [25, 25]
   end

   version :small_thumb do
       process :resize_to_fill => [34, 34]
   end

   version :thumb do
      process :resize_to_fill => [48, 48]
   end

   version :small do
      process :resize_to_fill => [86, 86]
   end

   version :medium do
       process :resize_to_fill => [259, 259]
   end

   version :large do
       process :resize_to_fill => [518, 518]
   end

   def extension_white_list
      ["jpg", "jpeg", "gif", "png", ""]
   end

   protected
     def secure_token(length=9)
        var = :"@#{mounted_as}_secure_token"
        model.instance_variable_get(var) or model.instance_variable_set(var, SecureRandom.hex(length/2))
     end

  end

由于

2 个答案:

答案 0 :(得分:3)

这是carrierwave中的一个已知问题,已经在master上修复但尚未发布。您的选择是:

  1. 使用carrierwave master而不是官方gem发布。

  2. 更新sanitize_regexp以排除+字符。

    CarrierWave :: SanitizedFile.sanitize_regexp = / [^ a-zA-Z0-9。-_] /

  3. 新上传将适用于其中任何一种,但您仍然需要手动修复旧版本(通过s3挖掘以找到正确的文件名,然后更新您的数据库)。或者只是删除它们。

答案 1 :(得分:2)

很可能您错误地对网址进行了编码,因为“+”符号必须先进行网址编码。

我建议您运行某种流量分析工具(例如Wireshark)并查看您向Amazon S3服务器发送的流量类型。

希望它有所帮助!