ドキュメントと添付ファイルの 2 つのモデルがあります。多くのファイルをheroku dbにインポートしようとしています。私はそれのためのトールタスクもあります。このタスクをローカル データベースで実行すると問題なく動作しますが、ステージ環境で実行しようとすると、「document.save」アクションでエラーが発生します。
$ RAILS_ENV=stage thor import:documents '/path/to/files/'
/../gems/fog-1.10.0/lib/fog/core/hmac.rb:23:in `digest': can't convert Fixnum into String (TypeError)
また、heroku アプリのフォームからファイルをアップロードすると、すべてうまくいきます。だから問題は何ですか?
モデルは次のとおりです。
添付ファイル:
class Attachment < ActiveRecord::Base
IMAGE_TYPES = ['jpg', 'jpeg', 'gif', 'png']
DOC_TYPES = ['pdf', 'doc', 'docx', 'rtf', 'pages', 'txt']
belongs_to :attachable, polymorphic: true
attr_accessible :attachment_file, :attachment_file_cache, :attachment_type
mount_uploader :attachment_file, AttachmentUploader
validates :attachment_file, presence: true
...
end
書類:
class Document < ActiveRecord::Base
attr_accessible :description, :title, :visible, :attachment_attributes
has_one :attachment, as: :attachable, dependent: :destroy, class_name: 'Attachment', conditions: { attachment_type: 'document' }
...
end
トールのタスク:
class Import < Gearup::TasksBase
desc "documents <DOCUMENTS_FOLDER>", 'Upload documents'
def documents(dir_path)
dir_path += "#{dir_path.last == '/' ? '*' : '/*'}"
print_color_message('! Directory is empty !', 'red') if Dir[dir_path].empty?
Dir[dir_path].each do |file_path|
document = Document.new(title: 'document_title')
document.build_attachment(attachment_type: 'document', attachment_file: File.open(file_path))
if document.save ### HERE IS A PROBLEM ###
print_color_message("-= document \"#{document.title}\" successfully created =-", 'green')
else
print_color_message("! document not saved !", 'red')
print_color_message(document.errors.messages.inspect, 'red')
end
end
end
end
そして、database.yml を次のように編集することを忘れませんでした
heroku pg:credentials HEROKU_POSTGRESQL_ORANGE_URL
データベース.yml
...
stage:
adapter: postgresql
encoding: unicode
database: <database_name>
host: <host_name>
sslmode: <sslmode>
port: <port>
pool: <pool>
username: <username>
password: <password>
ありがとう。