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
しかし、それは私のファイルを悪い file_name で保存し、ファイルの拡張子を設定しません:
#<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 で機能するかどうかはわかりません (アプリをホストしています)。
一時ファイルを使わずに良い方法はありませんか?