Class: Grape::Validations::ExceptValuesValidator
- Defined in:
- lib/grape/validations/validators/except_values.rb
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
-
#initialize(attrs, options, required, scope, opts = {}) ⇒ ExceptValuesValidator
constructor
A new instance of ExceptValuesValidator.
- #validate_param!(attr_name, params) ⇒ Object
Methods inherited from Base
convert_to_short_name, #fail_fast?, inherited, #message, #options_key?, #validate, #validate!
Constructor Details
#initialize(attrs, options, required, scope, opts = {}) ⇒ ExceptValuesValidator
Returns a new instance of ExceptValuesValidator.
6 7 8 9 |
# File 'lib/grape/validations/validators/except_values.rb', line 6 def initialize(attrs, , required, scope, opts = {}) @except = .is_a?(Hash) ? [:value] : super end |
Instance Method Details
#validate_param!(attr_name, params) ⇒ Object
11 12 13 14 15 16 17 18 19 |
# File 'lib/grape/validations/validators/except_values.rb', line 11 def validate_param!(attr_name, params) return unless params.respond_to?(:key?) && params.key?(attr_name) excepts = @except.is_a?(Proc) ? @except.call : @except return if excepts.nil? param_array = params[attr_name].nil? ? [nil] : Array.wrap(params[attr_name]) raise Grape::Exceptions::Validation.new(params: [@scope.full_name(attr_name)], message: (:except_values)) if param_array.any? { |param| excepts.include?(param) } end |