Module: ClassyHash

Defined in:
lib/classy_hash.rb,
lib/classy_hash/generate.rb

Overview

Classy Hash extended validation generators Copyright ©2016 Deseret Book and Contributors (see git history) frozen_string_literal: true

Defined Under Namespace

Modules: Generate Classes: SchemaViolationError

Constant Summary collapse

NO_VALUE =

Internal symbol representing the absence of a value for error message generation. Generated at runtime to prevent potential malicious use of the no-value symbol.

"__ch_no_value_#{SecureRandom.hex(10)}".to_sym
G =

Shortcut to ClassyHash::Generate

Generate

Class Method Summary collapse

Class Method Details

.add_error(raise_errors, errors, parent_path, key, constraint, value) ⇒ Object

Raises or adds to errors an error indicating that the given key under the given parent_path fails because the value is not valid. If constraint is a String, then it will be used as the error message. Otherwise

If raise_errors is true, raises an error immediately. Otherwise adds an error to errors.

See .constraint_string.



446
447
448
449
450
451
452
453
454
455
456
457
458
# File 'lib/classy_hash.rb', line 446

def self.add_error(raise_errors, errors, parent_path, key, constraint, value)
  message = constraint.is_a?(String) ? constraint : constraint_string(constraint, value)
  entry = { full_path: self.join_path(parent_path, key) || 'Top level', message: message }

  if raise_errors
    errors ||= []
    errors << entry
    raise SchemaViolationError, errors
  else
    errors << entry if errors
    return false
  end
end

.check_multi(value, constraints, strict: nil, full: nil, verbose: nil, raise_errors: nil, parent_path: nil, key: nil, errors: nil) ⇒ Object

Raises an error unless the given value matches one of the given multiple choice constraints. Other parameters are used for internal state. If full is true, the error message for an invalid value will include the errors for all of the failing components of the multiple choice constraint.



286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
# File 'lib/classy_hash.rb', line 286

def self.check_multi(value, constraints, strict: nil, full: nil, verbose: nil, raise_errors: nil,
                     parent_path: nil, key: nil, errors: nil)
  if constraints.length == 0 || constraints.length == 1 && constraints.first == :optional
    return add_error(raise_errors, errors,
      parent_path,
      key,
      "a valid multiple choice constraint (array must not be empty)",
      NO_VALUE
    )
  end

  # Optimize the common case of a direct class match
  return true if constraints.include?(value.class)

  local_errors = []
  constraints.each do |c|
    next if c == :optional

    constraint_errors = []

    # Only need one match to accept the value, so return if one is found
    return true if self.validate(
      value,
      c,
      strict: strict,
      full: full,
      verbose: verbose,
      raise_errors: false,
      parent_path: parent_path,
      key: key,
      errors: constraint_errors
    )

    local_errors << { constraint: c, errors: constraint_errors }
  end

  # Accumulate all errors if full, the constraint with the most similar keys
  # and fewest errors if a Hash or Array, or just the constraint with the
  # fewest errors otherwise.  This doesn't always choose the intended
  # constraint for error reporting, which would require a more complex
  # algorithm.
  #
  # See https://github.com/deseretbook/classy_hash/pull/16#issuecomment-257484267
  if full
    local_errors.map!{|e| e[:errors] }
    local_errors.flatten!
  elsif value.is_a?(Hash)
    # Prefer error messages from similar-looking hash constraints for hashes
    local_errors = local_errors.min_by{|err|
      c = err[:constraint]
      e = err[:errors]

      if c.is_a?(Hash)
        keydiff = (c.keys | value.keys) - (c.keys & value.keys)
        [ keydiff.length, e.length ]
      else
        [ 1<<30, e.length ] # Put non-hashes after hashes
      end
    }[:errors]
  elsif value.is_a?(Array)
    # Prefer error messages from array constraints for arrays
    local_errors = local_errors.min_by{|err|
      c = err[:constraint]
      [
        c.is_a?(Array) ? (c.first.is_a?(Array) ? 0 : 1) : 2,
        err[:errors].length
      ]
    }[:errors]
  else
    # FIXME: if full is false, e.length should always be 1 (or 2 if strict)
    # Also, array and multiple-choice errors have lots of room for improvement
    local_errors = local_errors.min_by{|e| e[:errors].length }[:errors]
  end

  errors.concat(local_errors) if errors
  add_error(raise_errors, errors || local_errors, parent_path, key, constraints, value)
end

.constraint_string(constraint, value) ⇒ Object

Generates a String describing the value‘s failure to match the constraint. The value itself should not be included in the string to avoid attacker-controlled plaintext. If value is CH::NO_VALUE, then generic error messages will be used for constraints (e.g. Procs) that would otherwise have been value-dependent.



369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
# File 'lib/classy_hash.rb', line 369

def self.constraint_string(constraint, value)
  case constraint
  when Hash
    "a Hash matching {schema with keys #{constraint.keys.inspect}}"

  when Class
    if constraint == TrueClass || constraint == FalseClass
      'true or false'
    else
      "a/an #{constraint}"
    end

  when Array
    if constraint.length == 1 && constraint.first.is_a?(Array)
      "an Array of #{constraint_string(constraint.first, NO_VALUE)}"
    else
      "one of #{constraint.map{|c| constraint_string(c, value) }.join(', ')}"
    end

  when Regexp
    "a String matching #{constraint.inspect}"

  when Proc
    if value != NO_VALUE && (result = constraint.call(value)).is_a?(String)
      result
    else
      "accepted by Proc"
    end

  when Range
    base = "in range #{constraint.inspect}"

    if constraint.min.is_a?(Integer) && constraint.max.is_a?(Integer)
      "an Integer #{base}"
    elsif constraint.min.is_a?(Numeric)
      "a Numeric #{base}"
    elsif constraint.min.is_a?(String)
      "a String #{base}"
    else
      base
    end

  when Set
    "an element of #{constraint.to_a.inspect}"

  when CH::G::Composite
    constraint.describe(value)

  when :optional
    "absent (marked as :optional)"

  else
    "a valid schema constraint: #{constraint.inspect}"

  end
end

.join_path(parent_path, key) ⇒ Object

Joins parent_path and key for display in error messages.



427
428
429
430
431
432
433
434
435
# File 'lib/classy_hash.rb', line 427

def self.join_path(parent_path, key)
  if parent_path
    "#{parent_path}[#{key.inspect}]"
  elsif key == NO_VALUE
    nil
  else
    key.inspect
  end
end

.validate(value, constraint, strict: false, full: false, verbose: false, raise_errors: true, errors: nil, parent_path: nil, key: NO_VALUE) ⇒ Object

Validates a value against a ClassyHash constraint. Typically value is a Hash and constraint is a ClassyHash schema.

Returns false if validation fails and raise_errors was false. Otherwise returns true.

Parameters:

value - The Hash or other value to validate.
constraint - The schema or single constraint against which to validate.
:strict - If true, rejects Hashes with members not in the schema.
        Applies to the top level and to nested Hashes.
:full - If true, gathers all invalid values.  If false, stops checking at
        the first invalid value.
:verbose - If true, the error message for failed strictness will include
        the names of the unexpected keys.  Note that this can be a
        security risk if the key names are controlled by an attacker and
        the result is sent via HTTPS (see e.g. the CRIME attack).
:raise_errors - If true, any errors will be raised.  If false, they will
        be returned as a String.  Default is true.
:errors - Used internally for aggregating error messages.  You can also
        pass in an Array here to collect any errors (useful if
        raise_errors is false).  If you pass a non-empty array,
        validation will fail.
:parent_path - Used internally for tracking the current validation path
        in error messages (e.g. :key1[:key2][0]).
:key - Used internally for tracking the current validation key in error
        messages (e.g. :key1 or 0).

Examples:

ClassyHash.validate({a: 1}, {a: Integer})
ClassyHash.validate(1, Integer)


78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
# File 'lib/classy_hash.rb', line 78

def self.validate(value, constraint, strict: false, full: false, verbose: false,
                  raise_errors: true, errors: nil, parent_path: nil, key: NO_VALUE)
  errors = [] if errors.nil? && (full || !raise_errors)
  raise_below = raise_errors && !full

  case constraint
  when Class
    # Constrain value to be a specific class
    if constraint == TrueClass || constraint == FalseClass
      unless value == true || value == false
        add_error(raise_below, errors, parent_path, key, constraint, value)
        return false unless full
      end
    elsif !value.is_a?(constraint)
      add_error(raise_below, errors, parent_path, key, constraint, value)
      return false unless full
    end

  when Hash
    # Recursively check nested Hashes
    if !value.is_a?(Hash)
      add_error(raise_below, errors, parent_path, key, constraint, value)
      return false unless full
    else
      if strict
        extra_keys = value.keys - constraint.keys
        if extra_keys.any?
          if verbose
            msg = "valid: contains members #{extra_keys.map(&:inspect).join(', ')} not specified in schema"
          else
            msg = 'valid: contains members not specified in schema'
          end

          add_error(raise_below, errors, parent_path, key, msg, NO_VALUE)
          return false unless full
        end
      end

      parent_path = join_path(parent_path, key)

      constraint.each do |k, c|
        if value.include?(k)
          # TODO: Benchmark how much slower allocating a state object is than
          # passing lots of parameters?
          res = self.validate(
            value[k],
            c,
            strict: strict,
            full: full,
            verbose: verbose,
            raise_errors: raise_below,
            parent_path: parent_path,
            key: k,
            errors: errors
          )
          return false unless res || full
        elsif !(c.is_a?(Array) && c.first == :optional)
          add_error(raise_below, errors, parent_path, k, "present", NO_VALUE)
          return false unless full
        end
      end
    end

  when Array
    # Multiple choice or array validation
    if constraint.length == 1 && constraint.first.is_a?(Array)
      # Array validation
      if !value.is_a?(Array)
        add_error(raise_below, errors, parent_path, key, constraint, value)
        return false unless full
      else
        constraints = constraint.first
        value.each_with_index do |v, idx|
          res = self.check_multi(
            v,
            constraints,
            strict: strict,
            full: full,
            verbose: verbose,
            raise_errors: raise_below,
            parent_path: join_path(parent_path, key),
            key: idx,
            errors: errors
          )
          return false unless res || full
        end
      end
    else
      # Multiple choice
      res = self.check_multi(
        value,
        constraint,
        strict: strict,
        full: full,
        verbose: verbose,
        raise_errors: raise_below,
        parent_path: parent_path,
        key: key,
        errors: errors
      )
      return false unless res || full
    end

  when Regexp
    # Constrain value to be a String matching a Regexp
    unless value.is_a?(String) && value =~ constraint
      add_error(raise_below, errors, parent_path, key, constraint, value)
      return false unless full
    end

  when Proc
    # User-specified validator
    result = constraint.call(value)
    if result != true
      if result.is_a?(String)
        add_error(raise_below, errors, parent_path, key, result, NO_VALUE)
      else
        add_error(raise_below, errors, parent_path, key, constraint, value)
      end
      return false unless full
    end

  when Range
    # Range (with type checking for common classes)
    range_type_valid = true

    if constraint.min.is_a?(Integer) && constraint.max.is_a?(Integer)
      unless value.is_a?(Integer)
        add_error(raise_below, errors, parent_path, key, constraint, value)
        return false unless full
        range_type_valid = false
      end
    elsif constraint.min.is_a?(Numeric)
      unless value.is_a?(Numeric)
        add_error(raise_below, errors, parent_path, key, constraint, value)
        return false unless full
        range_type_valid = false
      end
    elsif constraint.min.is_a?(String)
      unless value.is_a?(String)
        add_error(raise_below, errors, parent_path, key, constraint, value)
        return false unless full
        range_type_valid = false
      end
    end

    if range_type_valid && !constraint.cover?(value)
      add_error(raise_below, errors, parent_path, key, constraint, value)
      return false unless full
    end

  when Set
    # Set/enumeration
    unless constraint.include?(value)
      add_error(raise_below, errors, parent_path, key, constraint, value)
      return false unless full
    end

  when CH::G::Composite
    constraint.constraints.each do |c|
      result = self.validate(
        value,
        c,
        strict: strict,
        full: full,
        verbose: verbose,
        raise_errors: false,
        parent_path: parent_path,
        key: key,
        errors: nil
      )

      if constraint.negate == result
        add_error(raise_below, errors, parent_path, key, constraint, value)
        return false unless full
        break
      end
    end

  when :optional
    # Optional key marker in multiple choice validators (do nothing)

  else
    # Unknown schema constraint
    add_error(raise_below, errors, parent_path, key, constraint, value)
    return false unless full
  end

  # If full was true, we need to raise here now that all the errors were
  # gathered.
  if raise_errors && errors && errors.any?
    raise SchemaViolationError, errors
  end

  errors.nil? || errors.empty?
end

.validate_strict(hash, schema, verbose = false, parent_path = nil) ⇒ Object

Deprecated. Retained for compatibility with v0.1.x. Calls .validate with :strict set to true. If verbose is true, the names of unexpected keys will be included in the error message.



278
279
280
# File 'lib/classy_hash.rb', line 278

def self.validate_strict(hash, schema, verbose=false, parent_path=nil)
  validate(hash, schema, parent_path: parent_path, verbose: verbose, strict: true)
end