web-dev-qa-db-ja.com

Rails 5 throw abort:エラーメッセージを設定するにはどうすればよいですか?

Railsはこのthrow(:abort)構文を導入しましたが、意味のある破棄エラーを取得するにはどうすればよいですか?

検証エラーの場合は

if not user.save
  # => user.errors has information

if not user.destroy
  # => user.errors is empty

これが私のモデルです

class User

  before_destroy :destroy_validation,
    if: :some_reason

  private

  def destroy_validation
    throw(:abort) if some_condition
  end
9

クラスメソッドにはerrors.addを使用できます。

ユーザーモデル:

def destroy_validation
  if some_condition
    errors.add(:base, "can't be destroyed cause x,y or z")
    throw(:abort)
  end
end

ユーザーコントローラー:

def destroy
  if @user.destroy
    respond_to do |format|
      format.html { redirect_to users_path, notice: ':)' }
      format.json { head :no_content }
    end
  else
    respond_to do |format|
      format.html { redirect_to users_path, alert: ":( #{@user.errors[:base]}"}
    end
  end
end
17
Gonzalo S

ゴンザロSの答え は完全に大丈夫です。ただし、もう少しクリーンなコードが必要な場合は、ヘルパーメソッドを検討できます。次のコードは、ApplicationRecordモデルを利用できるため、Rails 5.0以降で最適に機能します。

class ApplicationRecord < ActiveRecord::Base
  self.abstract_class = true

private

  def halt(tag: :abort, attr: :base, msg: nil)
    errors.add(attr, msg) if msg
    throw(tag)
  end

end

今、あなたはすることができます:

class User < ApplicationRecord

  before_destroy(if: :condition) { halt msg: 'Your message.' }

  # or if you have some longer condition:
  before_destroy if: -> { condition1 && condition2 && condition3 } do
    halt msg: 'Your message.'
  end

  # or more in lines with your example:
  before_destroy :destroy_validation, if: :some_reason

private

  def destroy_validation
    halt msg: 'Your message.' if some_condition
  end

end
3
3limin4t0r