如何在heroku上正确配置Rails 5,paperclip 5,aws-sdk 2?

问题描述 投票:3回答:1

我使用回形针附件在本地部署了Rails 5应用程序:一切正常。仅在heroku上我需要AWS s3,它不适用于Rails 5.0.1 / paperclip 5.1.0 / aws-sdk 2.7.3。

有没有人在s3上存储附件的工作配置?

这是我的models / article.rb:

class Article < ApplicationRecord
  has_many :comments, dependent: :destroy
  validates :title, presence: true,
                length: { minimum: 5 }
  has_attached_file :attachment,
            :url => ":s3_domain_url",
            #:path => ':filename',
            :storage => :s3,
            :bucket => ENV['AWS_BUCKET'],
            :s3_bucket => ENV['AWS_BUCKET'],
            :s3_permissions => :private,
            :s3_protocol => 'http',
            :s3_host_name => 's3.amazonaws.com',
            #:s3_host_alias => 's3.amazonaws.com',
            :s3_region => ENV['AWS_REGION'],
            #:region => ENV['AWS_REGION'],
            :s3_credentials => { :access_key_id => ENV['AWS_ACCESS_KEY_ID'],
                                 :secret_access_key => ENV['AWS_SECRET_KEY_ID'],
                                 :endpoint => 's3.amazonaws.com' }

  # Explicitly do not validate
  do_not_validate_attachment_file_type :attachment
  #validates_attachment :attachment, content_type: { content_type: 'application/x-java-archive'}, size: { in: 0..10.megabytes }
end

环境变量设置为:

AWS_ACCESS_KEY_ID=....
AWS_BUCKET=....
AWS_REGION=us-east-1
AWS_SECRET_KEY_ID=....

articles_controller是:

class ArticlesController < ApplicationController

  http_basic_authenticate_with name: "gerrit", password: "_tVo1I44iyLe", except: [:index, :show]

  def index
    @articles = Article.all
  end

  def show
    @article = Article.find(params[:id])
  end



def new
  @article = Article.new
end

def edit
  @article = Article.find(params[:id])
end

def create
  @article = Article.new(article_params)

  if @article.save
    redirect_to @article
  else
    render 'new'
  end
end

def update
  @article = Article.find(params[:id])

  if @article.update(article_params)
    redirect_to @article
  else
    render 'edit'
  end
end

def destroy
  @article = Article.find(params[:id])
  @article.destroy

  redirect_to articles_path
end

private
  def article_params
    #article_params =
    params.require(:article).permit(:title, :text, :attachment)
    #@article.update_attributes( article_params )
  end
end

这是我现在在本地和heroku上的错误,与之前的许多其他错误相同:

未初始化的常量Paperclip :: Storage :: S3 :: AWS提取的源(第26行):

  @article = Article.new(article_params)

  if @article.save #line 26
    redirect_to @article
  else
    render 'new'

参数:

{"utf8"=>"✓", "authenticity_token"=>"snGgVwA5tqQTPHXwXW1Fx/lmLMS1bL+94jF68KQh031gpX2N78gOK45hCP8w71ObFo6moHQuJXxNnUW0bCUeVw==",
 "article"=>
  {"title"=>"test1",
   "text"=>"",
   "attachment"=>
    #<ActionDispatch::Http::UploadedFile:0x007f46c00881e0
     @content_type="application/x-desktop",
     @headers="Content-Disposition: form-data; name=\"article[attachment]\"; filename=\"Antichamber.desktop\"\r\n" + "Content-Type: application/x-desktop\r\n",
     @original_filename="Antichamber.desktop",
     @tempfile=#<File:/tmp/RackMultipart20170306-5350-esbhtd.desktop>>},
 "commit"=>"Create Article"}

为方便起见,我在这里将URL添加到损坏的Rails 5应用程序中:

gmr-heroku

现在一切都很好!

注意:您希望我提出不同的问题而不是添加原始问题。现在你不想要重复的答案。

amazon-web-services heroku amazon-s3 ruby-on-rails-5 aws-sdk-ruby
1个回答
1
投票

:url => :s3_domain_url应该是:url => ":s3_domain_url"

© www.soinside.com 2019 - 2024. All rights reserved.