Merge pull request #597 from ZogStriP/fix-s3-image-upload

FIX: S3 image upload
This commit is contained in:
Sam 2013-04-01 03:12:58 -07:00
commit dce2847b4f
1 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,6 @@ class Upload < ActiveRecord::Base
blob = file.read
sha1 = Digest::SHA1.hexdigest(blob)
Fog.credentials_path = "#{Rails.root}/config/fog_credentials.yml"
fog = Fog::Storage.new(provider: 'AWS')
@ -83,7 +82,8 @@ class Upload < ActiveRecord::Base
public: true,
content_type: file.content_type)
upload.width, upload.height = ImageSizer.resize(*image_info.size)
upload.url = "#{Rails.configuration.action_controller.asset_host}#{path}/#{remote_filename}"
upload.url = "https://#{SiteSetting.s3_upload_bucket}.s3.amazonaws.com#{path}/#{remote_filename}"
upload.save
upload