16

现在我正在使用 Amazon S3 和 Paperclip,它允许我的用户上传与他们正在创建的事件相关联的图像。我的最终目标是因为其他人可以查看此事件,因此能够单击图像并让它提示保存到他们的计算机。截至目前,单击该链接将在浏览器窗口中打开该图像。我宁愿让它要求他们下载。所有图像仅保存在 S3 上,而非本地。如果可能,还需要隐藏暴露的 s3 url 或伪装它

这是我目前的设置

索引.html

<%= link_to 'Download Creative', event.creative.url, class: "btn btn-info" %>

事件.rb

has_attached_file :creative,
                :styles => { :thumb => "150x150", :custcreative => "250x75" },
                :path => ":attachment/:id/:style.:extension",
                :s3_domain_url => "******.s3.amazonaws.com",
                :storage => :s3,
                :s3_credentials => Rails.root.join("config/s3.yml"),
                :bucket => '*****',
                :s3_permissions => :public_read,
                :s3_protocol => "http",
                :convert_options => { :all => "-auto-orient" },
                :encode => 'utf8'

希望有人可以帮助我。

4

5 回答 5

30

为了避免给您的应用程序带来额外的负载(在 Heroku 中节省 dyno 的时间),我宁愿做这样的事情:将此方法添加到您的模型中,并附上附件:

def download_url(style_name=:original)
  creative.s3_bucket.objects[creative.s3_object(style_name).key].url_for(:read,
      :secure => true,
      :expires => 24*3600,  # 24 hours
      :response_content_disposition => "attachment; filename='#{creative_file_name}'").to_s
end

然后在您的视图/控制器中使用它,如下所示:

<%= link_to 'Download Creative', event.download_url, class: "btn btn-info" %>
于 2013-05-07T18:32:14.630 回答
17

为了使这项工作,我刚刚在控制器中添加了一个新动作,所以在你的情况下它可能是:

#routes
resources :events do
  member { get :download }
end

#index
<%= link_to 'Download Creative', download_event_path(event), class: "btn btn-info" %>

#events_controller
def download
  data = open(event.creative_url)
  send_data data.read, :type => data.content_type, :x_sendfile => true
end

编辑:下载控制器操作的正确解决方案可以在这里找到(我已经更新了上面的代码):强制链接下载 MP3 而不是播放它?

于 2012-11-21T11:32:25.903 回答
2

现在在 aws-sdk v2 中,在 Aws::S3::Object 中定义了一个 :presigned_url 方法,您可以使用此方法构造 s3 对象的直接下载 url:

s3 = Aws::S3::Resource.new
# YOUR-OBJECT-KEY should be the relative path of the object like 'uploads/user/logo/123/pic.png'
obj = s3.bucket('YOUR-BUCKET-NAME').object('YOUR-OBJECT-KEY')
url = obj.presigned_url(:get, expires_in: 3600, response_content_disposition: "attachment; filename='FILENAME'")

然后在您看来,只需使用:

= link_to 'download', url
于 2016-10-31T09:42:25.103 回答
1
event = Event.find(params[:id])
  data = open(event.creative.url)
  send_data data.read, :type => data.content_type, :x_sendfile => true, :url_based_filename => true
end
于 2012-11-27T16:27:19.133 回答
0

您需要在 HTTP 响应标头中将“ Content-Disposition ”设置为“附件”。我不是 Rails 开发人员 - 所以只要谷歌一下,你会看到很多例子 - 但它可能看起来像这样:

    :content_disposition => "attachment"

或者

     ...
    :disposition => "attachment"
于 2012-10-24T07:20:02.790 回答