Sha256: 77bdb384011e01f42b793cf027dd9283801779274a79aeeda9560106f7d243c5

Contents?: true

Size: 1.33 KB

Versions: 5

Compression:

Stored size: 1.33 KB

Contents

class Validation < ActiveRecord::Base

  # Extending surveyor
  include "#{self.name}Extensions".constantize if Surveyor::Config['extend'].include?(self.name.underscore)

  
  # Associations
  belongs_to :answer
  has_many :validation_conditions
  
  # Scopes
  
  # Validations
  validates_presence_of :rule
  validates_format_of :rule, :with => /^(?:and|or|\)|\(|[A-Z]|\s)+$/
  validates_numericality_of :answer_id
  
  # Instance Methods
  def is_valid?(response_set)
    ch = conditions_hash(response_set)
    rgx = Regexp.new(self.validation_conditions.map{|vc| ["a","o"].include?(vc.rule_key) ? "#{vc.rule_key}(?!nd|r)" : vc.rule_key}.join("|")) # exclude and, or
    # logger.debug "v: #{self.inspect}"
    # logger.debug "rule: #{self.rule.inspect}"
    # logger.debug "rexp: #{rgx.inspect}"
    # logger.debug "keyp: #{ch.inspect}"
    # logger.debug "subd: #{self.rule.gsub(rgx){|m| ch[m.to_sym]}}"
    eval(self.rule.gsub(rgx){|m| ch[m.to_sym]})
  end
  
  # A hash of the conditions (keyed by rule_key) and their evaluation (boolean) in the context of response_set
  def conditions_hash(response_set)
    hash = {}
    response = response_set.responses.detect{|r| r.answer_id.to_i == self.answer_id.to_i}
    # logger.debug "r: #{response.inspect}"
    self.validation_conditions.each{|vc| hash.merge!(vc.to_hash(response))}
    return hash
  end
end

Version data entries

5 entries across 5 versions & 3 rubygems

Version Path
ccls-surveyor-1.0.0 app/models/validation.rb
jakewendt-surveyor-0.11.3 app/models/validation.rb
surveyor-0.12.1 app/models/validation.rb
surveyor-0.11.0 app/models/validation.rb
surveyor-0.10.0 app/models/validation.rb