我想通过 S3 存储上的回形针从 URL 上传图片。我与:
Ruby 1.9.3
Rails 3.2.6
paperclip 3.1.3
aws-sdk 1.3.9
我有我的图片模型:
class Asset
has_attached_file :asset,
:styles => {:thumb => "60x60>"},
:storage => :s3,
:s3_credentials => "#{Rails.root}/config/s3.yml",
:path => "/pictures/:id/:style.:extension"
validates_attachment_content_type :asset, :content_type => ['image/gif', 'image/jpeg', 'image/png', 'image/x-ms-bmp']
end
所以基本上我这样做是为了从 URL 下载我的文件:
picture = Asset.new(asset: open("http://www.my_url.com/my_picture.jpg"))
picture.save
但它使用错误的文件名保存我的文件,并且没有设置文件的扩展名:
#<Asset id: 5, asset_file_name: "open-uri20120717-6028-1k3f7xz", asset_content_type: "image/jpeg", asset_update_at: nil, asset_file_size: 91565, created_at: "2012-07-17 12:41:40", updated_at: "2012-07-17 12:41:40">
p.asset.url
=> http://s3.amazonaws.com/my_assets_path/pictures/5/original.
如您所见,没有扩展名。
我找到了解决它的方法,但我相信我可以有更好的方法。此解决方案是将文件复制到我的计算机上,然后我将其发送到 S3,如下所示:
filename = "#{Rails.root}/tmp/my_picture.jpg"
open(filename, 'wb') do |file|
file << open("http://www.my_url.com/my_picture.jpg").read
end
picture = Asset::Picture.new(asset: open(filename))
picture.save
这适用于我的电脑:
#<Asset::Picture id: 10, asset_file_name: "my_picture.jpg", asset_content_type: "image/jpeg", asset_update_at: nil, asset_file_size: 91565, created_at: "2012-07-17 12:45:30", updated_at: "2012-07-17 12:45:30">
p.asset.url
=> "http://s3.amazonaws.com/assets.tests/my_assets_path/10/original.jpg"
但是我不知道这种方法是否适用于 Heroku(我在上面托管我的应用程序)。
没有通过临时文件没有更好的方法吗?