繁体   English   中英

Rails 直接上传到 Amazon S3

[英]Rails direct upload to Amazon S3

我正在寻找向我的 Rails 应用程序添加功能以将文件直接上传到 Amazon S3。 根据我的研究,普遍的共识似乎是使用s3-swf-upload-plugin 我已经使用该 gem 设置了一个示例应用程序,但是仅允许选择单个文件,我无法让它很好地发挥作用。 我还想创建一个记录上传并使用回形针创建一个缩略图,我可以找到很少的指导。

所以我的问题是:

(1) 我是在使用该宝石的正确轨道上还是应该采取另一种方法?

(2) 有没有我可以参考的样本?

任何帮助将不胜感激。

克里斯

尝试一个名为CarrierWaveDirect的新 Gem,它允许您使用 html 表单将文件直接上传到 S3,并轻松将图像处理移动到后台进程中

不确定您是否可以轻松地将其修改为一次只上传一个文件,但这个 gem 对我来说非常有效。 它基于Ryan Bates 的 Railscast之一:

https://github.com/waynehoover/s3_direct_upload

尝试查看carrierwave https://github.com/jnicklas/carrierwave (支持s3)使用carrierwave上传多文件并上传http://blog.assimov.net/post/4306595758/multi-file-upload-with-up和-carrierwave-on

如果您使用的是 Rails 3,请查看我的示例项目:

使用 Rails 3、Flash 和基于 MooTools 的 FancyUploader 直接上传到 S3 的示例项目: https://github.com/iwasrobbed/Rails3-S3-Uploader-FancyUploader

使用 Rails 3、Flash/Silverlight/GoogleGears/BrowserPlus 和基于 jQuery 的 Plupload 直接上传到 S3 的示例项目: https://github.com/iwasrobbed/Rails3-S3-Uploader-Plupload

顺便说一句,您可以使用 Paperclip 进行后处理,使用类似于此博客文章描述的内容:

http://www.railstoolkit.com/posts/fancyupload-amazon-s3-uploader-with-paperclip

我已经在 Rails 中调整 了 Heroku 的直接到 S3 上传解决方案(它使用jQuery-File-Uploadaws-sdk gem ),因此可以使用 ajax 远程上传到 S3。 我希望这是有用的:

post_controller.rb

before_action :set_s3_direct_post, only: [:index, :create]
before_action :delete_picture_from_s3, only: [:destroy]

class PostsController < ApplicationController

  def index
    .
    .
  end

  def create
    @post = @user.posts.build(post_params)
    if @post.save
      format.html
      format.js
    end
  end

  def destroy
    Post.find(params[:id]).destroy
  end

  private

    def set_s3_direct_post
      return S3_BUCKET.presigned_post(key: "uploads/#{SecureRandom.uuid}/${filename}", success_action_status: '201', acl: 'public-read')
    end    

    def delete_picture_from_s3
      key = params[:picture_url].split('amazonaws.com/')[1]
      S3_BUCKET.object(key).delete
      return true
      rescue => e
        # If anyone knows a good way to deal with a defunct file sitting in the bucket, please speak up.
        return true
    end

    def post_params
      params.require(:post).permit(:content, :picture_url)
    end

end

帖子.html.erb

<div class="info"      data-url="<%= @s3_direct_post.url %>"
                  data-formdata="<%= (@s3_direct_post.fields.to_json) %>"
                      data-host="<%= URI.parse(@s3_direct_post.url).host %>">
</div>

表格

<%= form_for(:post, url: :posts, method: :post,
              html: { class: "post_form", id: "post_form-#{post.id}" }
            ) do |f| %>
  <%= f.text_area :content, id: "postfield-#{post.id}", class: "postText" %>
  <%= f.button( :submit, name: "Post", title: "Post" ) do %>
    <span class="glyphicon glyphicon-ok" aria-hidden="true"></span>
  <% end %>
  <span class="postuploadbutton" id="postUp-<%= post.id %>" title="Add file" >
    <span class="glyphicon glyphicon-upload" aria-hidden="true"></span>
  </span>
  <span title="Cancel file" class="noticecancelupload" id="postCancel-<%= post.id %>" >
    <span class="glyphicon glyphicon-remove-circle" aria-hidden="true"></span>
  </span>
  <%= f.file_field :picture_url, accept: 'image/jpeg,image/gif,image/png', 
               class: "notice_file_field", id: "postFile-#{post.id}" %>
<% end %>

_post.html.erb

<%= button_to post_path(
                      params: {
                        id: post.id,
                        picture_url: post.picture_url
                      }
                    ),
                    class: 'btn btn-default btn-xs blurme',
                    data: { confirm: "Delete post: are you sure?" },
                    method: :delete do %>
        <span class="glyphicon glyphicon-remove" aria-hidden="true"></span>
<% end %>

Javascript 在每个_post.html.erb

$(document).off('click',"#postUp-<%= post.id %>");
$(document).on('click', '#postUp-<%= post.id %>', function(e) {
  prepareUpload("#post_form-<%= post.id %>");
  $('#postFile-<%= post.id %>').trigger("click");
});

$(document).off('click',"#postCancel-<%= post.id %>");
$(document).on('click', '#postCancel-<%= post.id %>', function(e) {
  $(".appendedInput").remove(); //  $('#postFile-<% post.id %>').val(""); doesn't work for me
  $('.progBar').css('background','white').text("");
});

$(document).off('submit',"#post_form-<%= post.id %>"); // without this the form submitted multiple times in production
$(document).on('submit', '#post_form-<%= post.id %>', function(e) { // don't use $('#post_form-<%= post.id %>').submit(function() { so it doesn't bind to the #post_form (so it still works after ajax loading)
  e.preventDefault(); // prevent normal form submission
  if ( validatePostForm('<%= post.id %>') ) {
    $.ajax({
      type: 'POST',
      url:  $(this).attr('action'),
      data: $(this).serialize(),
      dataType: 'script'
    });
    $('#postCancel-<%= post.id %>').trigger("click");
  }
});

function validatePostForm(postid) {
  if ( jQuery.isBlank($('#postfield-' + postid).val()) && jQuery.isBlank($('#postFile-' + postid).val()) ) {
    alert("Write something fascinating or add a picture.");
    return false;
  } else {
    return true;
  }
}

application.js 中的 Javascript

function prepareUpload(feckid) {
  $(feckid).find("input:file").each(function(i, elem) {
    var fileInput    = $(elem);
    var progressBar  = $("<div class='progBar'></div>");
    var barContainer = $("<div class='progress'></div>").append(progressBar);
    fileInput.after(barContainer);
    var maxFS = 10 * 1024 * 1024;

    var info             = $(".info");
    var urlnumbnuts      = info.attr("data-url");
    var formdatanumbnuts = jQuery.parseJSON(info.attr("data-formdata"));
    var hostnumbnuts     = info.attr("data-host");

    var form             = $(fileInput.parents('form:first'));

    fileInput.fileupload({
      fileInput:        fileInput,
      maxFileSize:      maxFS,
      url:              urlnumbnuts,
      type:             'POST',
      autoUpload:       true,
      formData:         formdatanumbnuts,
      paramName:        'file',
      dataType:         'XML',
      replaceFileInput: false,
      add: function (e, data) {
        $.each(data.files, function (index, file) {
          if (file.size > maxFS) {
            alert('Alas, the file exceeds the maximum file size of 10MB.');
            form[0].reset();
            return false;
          } else {
            data.submit();
            return true;
          }
        });
      },
      progressall: function (e, data) {
        var progress = parseInt(data.loaded / data.total * 100, 10);
        progressBar.css('width', progress + '%')
      },
      start: function (e) {
        progressBar.
          css('background', 'orange').
          css('display', 'block').
          css('width', '0%').
          text("Preparing...");
      },
      done: function(e, data) {
        var key   = $(data.jqXHR.responseXML).find("Key").text();
        var url   = '//' + hostnumbnuts + '/' + key;
        var input = $('<input />', { type:'hidden', class:'appendedInput', 
                     name: fileInput.attr('name'), value: url });
        form.append(input);
        progressBar.
          css('background', 'green').
          text("Ready");
      },
      fail: function(e, data) {
        progressBar.
          css("background", "red").
          css("color", "black").
          text("Failed");
      }
    });
  });
} // function prepareUpload()

创建.js.erb

$(".info").attr("data-formdata",  '<%=raw @s3_direct_post.fields.to_json   %>'); // don't use .data() to set attributes 
$(".info").attr("data-url",       "<%= @s3_direct_post.url                 %>");
$(".info").attr("data-host",      "<%= URI.parse(@s3_direct_post.url).host %>");

$('.post_form')[0].reset();
$('.postText').val('');

应用程序.js

//= require jquery-fileupload/basic

配置/初始化程序/aws.rb

Aws.config.update({
  region: 'us-east-1',
  credentials: Aws::Credentials.new(ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']),
})
S3_BUCKET = Aws::S3::Resource.new.bucket(ENV['S3_BUCKET'])

笔记:

此解决方案专为 index.html.erb 页面上的多个帖子 forms 设计。 这就是为什么@s3_direct_post信息被放置在 index.html.erb 内的 class info的 div 中,而不是在每个帖子表单中。 这意味着无论页面上的 forms 的数量如何,任何时候页面上都只会出现一个@s3_direct_post @s3_direct_post中的数据只有在单击文件上传按钮时才会被抓取(通过调用prepareUpload() )。 提交后,帖子 controller 中会生成一个新的@s3_direct_post ,并且.info中的信息由 create.js.erb 更新。 @s3_direct_post数据存储在表单中意味着@s3_direct_post的许多不同实例可以同时存在,从而导致文件名生成错误。

您需要:set_s3_direct_post在 controller 索引操作(准备好第一次上传)和创建操作(准备好第二次和后续上传)中。

e.preventDefault(); 因此可以使用$.ajax({手动完成。为什么不在表单中使用remote: true ?因为在 Rails 中,文件上传是通过 HTML 请求和页面刷新完成的,即使您尝试远程执行。

使用info.attr()而不是info.data()来设置和检索@s3_direct_post属性,因为 info.data 没有得到更新(例如参见这个问题)。 这意味着您还必须使用jQuery.parseJSON()手动将属性解析为 object(which.data() 实际上会自动执行)。

不要在 application.js 中使用//= require jquery-fileupload 这个错误是一个真正难以识别的问题(见这里)。 原来的 Heroku 解决方案在我改变它之前不起作用。

您可以使用 Paperclip 上传到 S3(请参阅文档)并创建缩略图,尽管它首先上传到临时文件夹,之后可以在将文件上传到 S3 之前应用图像处理。

至于这种配置的示例,在整个博客圈和 StackOverflow 上都有很多,例如this

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM