Module | Sequel::Plugins::ValidationHelpers::InstanceMethods |
In: |
lib/sequel/plugins/validation_helpers.rb
|
Check that the attribute values are the given exact length.
# File lib/sequel/plugins/validation_helpers.rb, line 98 98: def validates_exact_length(exact, atts, opts=OPTS) 99: validatable_attributes_for_type(:exact_length, atts, opts){|a,v,m| validation_error_message(m, exact) if v.nil? || v.length != exact} 100: end
Check the string representation of the attribute value(s) against the regular expression with.
# File lib/sequel/plugins/validation_helpers.rb, line 103 103: def validates_format(with, atts, opts=OPTS) 104: validatable_attributes_for_type(:format, atts, opts){|a,v,m| validation_error_message(m, with) unless v.to_s =~ with} 105: end
Check attribute value(s) is included in the given set.
# File lib/sequel/plugins/validation_helpers.rb, line 108 108: def validates_includes(set, atts, opts=OPTS) 109: validatable_attributes_for_type(:includes, atts, opts){|a,v,m| validation_error_message(m, set) unless set.send(set.respond_to?(:cover?) ? :cover? : :include?, v)} 110: end
Check attribute value(s) string representation is a valid integer.
# File lib/sequel/plugins/validation_helpers.rb, line 113 113: def validates_integer(atts, opts=OPTS) 114: validatable_attributes_for_type(:integer, atts, opts) do |a,v,m| 115: begin 116: Kernel.Integer(v.to_s) 117: nil 118: rescue 119: validation_error_message(m) 120: end 121: end 122: end
Check that the attribute values length is in the specified range.
# File lib/sequel/plugins/validation_helpers.rb, line 125 125: def validates_length_range(range, atts, opts=OPTS) 126: validatable_attributes_for_type(:length_range, atts, opts){|a,v,m| validation_error_message(m, range) if v.nil? || !range.send(range.respond_to?(:cover?) ? :cover? : :include?, v.length)} 127: end
Check that the attribute values are not longer than the given max length.
Accepts a :nil_message option that is the error message to use when the value is nil instead of being too long.
# File lib/sequel/plugins/validation_helpers.rb, line 133 133: def validates_max_length(max, atts, opts=OPTS) 134: validatable_attributes_for_type(:max_length, atts, opts){|a,v,m| v ? validation_error_message(m, max) : validation_error_message(opts[:nil_message] || DEFAULT_OPTIONS[:max_length][:nil_message]) if v.nil? || v.length > max} 135: end
Check that the attribute values are not shorter than the given min length.
# File lib/sequel/plugins/validation_helpers.rb, line 138 138: def validates_min_length(min, atts, opts=OPTS) 139: validatable_attributes_for_type(:min_length, atts, opts){|a,v,m| validation_error_message(m, min) if v.nil? || v.length < min} 140: end
Check attribute value(s) are not NULL/nil.
# File lib/sequel/plugins/validation_helpers.rb, line 143 143: def validates_not_null(atts, opts=OPTS) 144: validatable_attributes_for_type(:not_null, atts, opts){|a,v,m| validation_error_message(m) if v.nil?} 145: end
Check attribute value(s) string representation is a valid float.
# File lib/sequel/plugins/validation_helpers.rb, line 148 148: def validates_numeric(atts, opts=OPTS) 149: validatable_attributes_for_type(:numeric, atts, opts) do |a,v,m| 150: begin 151: Kernel.Float(v.to_s) 152: nil 153: rescue 154: validation_error_message(m) 155: end 156: end 157: end
Check attribute value(s) against a specified value and operation, e.g. validates_operator(:>, 3, :value) validates that value > 3.
# File lib/sequel/plugins/validation_helpers.rb, line 161 161: def validates_operator(operator, rhs, atts, opts=OPTS) 162: validatable_attributes_for_type(:operator, atts, opts){|a,v,m| validation_error_message(m, operator, rhs) if v.nil? || !v.send(operator, rhs)} 163: end
Check attribute value(s) is not considered blank by the database, but allow false values.
# File lib/sequel/plugins/validation_helpers.rb, line 188 188: def validates_presence(atts, opts=OPTS) 189: validatable_attributes_for_type(:presence, atts, opts){|a,v,m| validation_error_message(m) if model.db.send(:blank_object?, v) && v != false} 190: end
Validates for all of the model columns (or just the given columns) that the column value is an instance of the expected class based on the column‘s schema type.
# File lib/sequel/plugins/validation_helpers.rb, line 168 168: def validates_schema_types(atts=keys, opts=OPTS) 169: Array(atts).each do |k| 170: if type = schema_type_class(k) 171: validates_type(type, k, {:allow_nil=>true}.merge!(opts)) 172: end 173: end 174: end
Check if value is an instance of a class. If klass is an array, the value must be an instance of one of the classes in the array.
# File lib/sequel/plugins/validation_helpers.rb, line 178 178: def validates_type(klass, atts, opts=OPTS) 179: klass = klass.to_s.constantize if klass.is_a?(String) || klass.is_a?(Symbol) 180: validatable_attributes_for_type(:type, atts, opts) do |a,v,m| 181: if klass.is_a?(Array) ? !klass.any?{|kls| v.is_a?(kls)} : !v.is_a?(klass) 182: validation_error_message(m, klass) 183: end 184: end 185: end
Checks that there are no duplicate values in the database for the given attributes. Pass an array of fields instead of multiple fields to specify that the combination of fields must be unique, instead of that each field should have a unique value.
This means that the code:
validates_unique([:column1, :column2])
validates the grouping of column1 and column2 while
validates_unique(:column1, :column2)
validates them separately.
You can pass a block, which is yielded the dataset in which the columns must be unique. So if you are doing a soft delete of records, in which the name must be unique, but only for active records:
validates_unique(:name){|ds| ds.filter(:active)}
You should also add a unique index in the database, as this suffers from a fairly obvious race condition.
This validation does not respect the :allow_* options that the other validations accept, since it can deal with a grouping of multiple attributes.
Possible Options:
:dataset : | The base dataset to use for the unique query, defaults to the model‘s dataset. |
:message : | The message to use (default: ‘is already taken’) |
:only_if_modified : | Only check the uniqueness if the object is new or one of the columns has been modified. |
:where : | A callable object where call takes three arguments, a dataset, the current object, and an array of columns, and should return a modified dataset that is filtered to include only rows with the same values as the current object for each column in the array. |
If you want to do a case insensitive uniqueness validation on a database that is case sensitive by default, you can use:
validates_unique :column, :where=>(proc do |ds, obj, cols| ds.where(cols.map do |c| v = obj.send(c) v = v.downcase if v [Sequel.function(:lower, c), v] end) end)
# File lib/sequel/plugins/validation_helpers.rb, line 236 236: def validates_unique(*atts) 237: opts = default_validation_helpers_options(:unique) 238: if atts.last.is_a?(Hash) 239: opts = Hash[opts].merge!(atts.pop) 240: end 241: message = validation_error_message(opts[:message]) 242: from_values = opts[:from] == :values 243: where = opts[:where] 244: atts.each do |a| 245: arr = Array(a) 246: next if arr.any?{|x| errors.on(x)} 247: next if opts[:only_if_modified] && !new? && !arr.any?{|x| changed_columns.include?(x)} 248: ds = opts[:dataset] || model.dataset 249: ds = if where 250: where.call(ds, self, arr) 251: else 252: vals = arr.map{|x| from_values ? values[x] : get_column_value(x)} 253: next if vals.any?(&:nil?) 254: ds.where(arr.zip(vals)) 255: end 256: ds = yield(ds) if block_given? 257: unless new? 258: h = ds.joined_dataset? ? qualified_pk_hash : pk_hash 259: ds = ds.exclude(h) 260: end 261: errors.add(a, message) unless ds.count == 0 262: end 263: end