Module: ActiveModel::Validations
- Extended by:
- ActiveSupport::Concern
- Included in:
- API, ActiveRecord::Validations
- Defined in:
- lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activemodel-7.0.4/lib/active_model/validations.rb,
lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activemodel-7.0.4/lib/active_model/validations/with.rb,
lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activemodel-7.0.4/lib/active_model/validations/format.rb,
lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activemodel-7.0.4/lib/active_model/validations/length.rb,
lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activemodel-7.0.4/lib/active_model/validations/absence.rb,
lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activemodel-7.0.4/lib/active_model/validations/presence.rb,
lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activemodel-7.0.4/lib/active_model/validations/callbacks.rb,
lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activemodel-7.0.4/lib/active_model/validations/clusivity.rb,
lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activemodel-7.0.4/lib/active_model/validations/exclusion.rb,
lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activemodel-7.0.4/lib/active_model/validations/inclusion.rb,
lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activemodel-7.0.4/lib/active_model/validations/validates.rb,
lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activemodel-7.0.4/lib/active_model/validations/acceptance.rb,
lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activemodel-7.0.4/lib/active_model/validations/comparison.rb,
lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activemodel-7.0.4/lib/active_model/validations/confirmation.rb,
lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activemodel-7.0.4/lib/active_model/validations/numericality.rb,
lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activemodel-7.0.4/lib/active_model/validations/comparability.rb,
lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activemodel-7.0.4/lib/active_model/validations/helper_methods.rb
Overview
Active Model Validations
Provides a full validation framework to your objects.
A minimal implementation could be:
class Person
include ActiveModel::Validations
attr_accessor :first_name, :last_name
validates_each :first_name, :last_name do |record, attr, value|
record.errors.add attr, "starts with z." if value.start_with?("z")
end
end
Which provides you with the full standard validation stack that you know from Active Record:
person = Person.new
person.valid? # => true
person.invalid? # => false
person.first_name = 'zoolander'
person.valid? # => false
person.invalid? # => true
person.errors. # => {first_name:["starts with z."]}
Note that ActiveModel::Validations
automatically adds an errors
method to your instances initialized with a new ActiveModel::Errors object, so there is no need for you to do this manually.
Defined Under Namespace
Modules: Callbacks, ClassMethods, Clusivity, Comparability, HelperMethods Classes: AbsenceValidator, AcceptanceValidator, ComparisonValidator, ConfirmationValidator, ExclusionValidator, FormatValidator, InclusionValidator, LengthValidator, NumericalityValidator, PresenceValidator, WithValidator
Instance Method Summary collapse
-
#errors ⇒ Object
Returns the
Errors
object that holds all information about attribute error messages. -
#initialize_dup(other) ⇒ Object
Clean the
Errors
object if instance is duped. -
#invalid?(context = nil) ⇒ Boolean
Performs the opposite of
valid?
. -
#valid?(context = nil) ⇒ Boolean
(also: #validate)
Runs all the specified validations and returns
true
if no errors were added otherwisefalse
. -
#validate!(context = nil) ⇒ Object
Runs all the validations within the specified context.
-
#validates_with(*args, &block) ⇒ Object
Passes the record off to the class or classes specified and allows them to add errors based on more complex conditions.
Methods included from ActiveSupport::Concern
append_features, class_methods, extended, included, prepend_features, prepended
Instance Method Details
#errors ⇒ Object
Returns the Errors
object that holds all information about attribute error messages.
class Person
include ActiveModel::Validations
attr_accessor :name
validates_presence_of :name
end
person = Person.new
person.valid? # => false
person.errors # => #<ActiveModel::Errors:0x007fe603816640 @messages={name:["can't be blank"]}>
301 302 303 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activemodel-7.0.4/lib/active_model/validations.rb', line 301 def errors @errors ||= Errors.new(self) end |
#initialize_dup(other) ⇒ Object
Clean the Errors
object if instance is duped.
283 284 285 286 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activemodel-7.0.4/lib/active_model/validations.rb', line 283 def initialize_dup(other) # :nodoc: @errors = nil super end |
#invalid?(context = nil) ⇒ Boolean
Performs the opposite of valid?
. Returns true
if errors were added, false
otherwise.
class Person
include ActiveModel::Validations
attr_accessor :name
validates_presence_of :name
end
person = Person.new
person.name = ''
person.invalid? # => true
person.name = 'david'
person.invalid? # => false
Context can optionally be supplied to define which callbacks to test against (the context is defined on the validations using :on
).
class Person
include ActiveModel::Validations
attr_accessor :name
validates_presence_of :name, on: :new
end
person = Person.new
person.invalid? # => false
person.invalid?(:new) # => true
373 374 375 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activemodel-7.0.4/lib/active_model/validations.rb', line 373 def invalid?(context = nil) !valid?(context) end |
#valid?(context = nil) ⇒ Boolean Also known as: validate
Runs all the specified validations and returns true
if no errors were added otherwise false
.
class Person
include ActiveModel::Validations
attr_accessor :name
validates_presence_of :name
end
person = Person.new
person.name = ''
person.valid? # => false
person.name = 'david'
person.valid? # => true
Context can optionally be supplied to define which callbacks to test against (the context is defined on the validations using :on
).
class Person
include ActiveModel::Validations
attr_accessor :name
validates_presence_of :name, on: :new
end
person = Person.new
person.valid? # => true
person.valid?(:new) # => false
334 335 336 337 338 339 340 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activemodel-7.0.4/lib/active_model/validations.rb', line 334 def valid?(context = nil) current_context, self.validation_context = validation_context, context errors.clear run_validations! ensure self.validation_context = current_context end |
#validate!(context = nil) ⇒ Object
Runs all the validations within the specified context. Returns true
if no errors are found, raises ValidationError
otherwise.
Validations with no :on
option will run no matter the context. Validations with some :on
option will only run in the specified context.
382 383 384 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activemodel-7.0.4/lib/active_model/validations.rb', line 382 def validate!(context = nil) valid?(context) || raise_validation_error end |
#validates_with(*args, &block) ⇒ Object
Passes the record off to the class or classes specified and allows them to add errors based on more complex conditions.
class Person
include ActiveModel::Validations
validate :instance_validations
def instance_validations
validates_with MyValidator
end
end
Please consult the class method documentation for more information on creating your own validator.
You may also pass it multiple classes, like so:
class Person
include ActiveModel::Validations
validate :instance_validations, on: :create
def instance_validations
validates_with MyValidator, MyOtherValidator
end
end
Standard configuration options (:on
, :if
and :unless
), which are available on the class version of validates_with
, should instead be placed on the validates
method as these are applied and tested in the callback.
If you pass any additional configuration options, they will be passed to the class and available as options
, please refer to the class version of this method for more information.
137 138 139 140 141 142 143 144 145 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activemodel-7.0.4/lib/active_model/validations/with.rb', line 137 def validates_with(*args, &block) = args. [:class] = self.class args.each do |klass| validator = klass.new(, &block) validator.validate(self) end end |