完璧な方法ではないかもしれませんが、うまくいきます。
アップロードされたファイルのいくつかのバージョンをredactor_rails_picture_uploader.rbに作成しました。
version :item_text do
process :resize_to_limit => [478, 478]
end
version :thumb do
process :resize_to_fill => [100, 100]
end
クラスRedactorRails::PicturesControllerの初期化子を作成し、メソッド 'create' を再定義しました。これで、フォームで渡したバージョンが「バージョン」パラメーターで保存されます。
RedactorRails::PicturesController.class_eval do
def create
@picture = RedactorRails::Picture.new
file = params[:file]
version = params[:version]
@picture.data = RedactorRails::Http.normalize_param(file, request)
if @picture.respond_to?(:user_id)
@picture.user = current_user
@picture.assetable = current_user
end
if @picture.save
if version
file_link = @picture.send(:url, version)
else
file_link = @picture.url
end
render :text => { :filelink => file_link }.to_json
else
render :nothing => true
end
end
end
最後に、このフォームに保存したいアップローダーからのバージョンの値を含む非表示の入力を追加しました。
%input{:id => 'redactor_version', :value => 'item_text', :type => 'hidden'}
このようなもの。