レガシー移行の一環として Rails アプリに移行する必要がある既存のファイルのディレクトリがあります。基本的に、これらのファイルを手動でアップロードし、それらの新しいレコードをデータベースに保存する必要があります。これを行う適切な方法がまったく見つかりませんでした。現在、レーキタスクには次のものがあります。
@attachments.each do |attachment|
begin
new_attachment = Attachment.new
@attachment_file_path = "/home/username/Attachments/" + attachment.Filename
file = File.open(@attachment_file_path)
new_attachment[:file] = new_attachment.file.store!(file)
# Map old record fields to new
new_attachment.attributes = {
:project_id => attachment.ProjectID,
:name => attachment.Description,
:user_id => attachment.UserId,
:created_at => attachment.CreatedDate,
:updated_at => attachment.LastModifiedDate
}
new_attachment.save!
puts "Attachment added successfully "
rescue => error
puts "Error migrating Attachment: #{error}"
end
end
添付.rb
class Attachment < ActiveRecord::Base
mount_uploader :file, FileUploader
end
アップローダ:
class FileUploader < CarrierWave::Uploader::Base
include CarrierWave::RMagick
include CarrierWave::MimeTypes
process :set_content_type
storage :fog
def store_dir
"uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
end
def extension_white_list
%w(jpg jpeg gif png pdf doc docx txt)
end
version :thumb do
process resize_to_fit: [152, nil]
end
def default_url
ActionController::Base.helpers.asset_path("fallback/" + [version_name, "default.png"].compact.join('_'))
end
protected
def image?(new_file)
if new_file.content_type == nil
return false
else
new_file.content_type.include? 'image'
end
end
end
これは現在機能しません。ファイルがアップロードされず、時々次のエラーが発生します。
Failed to manipulate with rmagick, maybe it is not an image? Original Error: no decode delegate for this image format
この場合、ファイルは「.doc」ファイルです。
ローカル ファイルを開いて Carrierwave 経由で手動でアップロードする正しい方法は何ですか?
どんな助けでも大歓迎です。