Sha256: 643d87eda1a05a3e5c655a023086d93f46c0e4165971e94eff1e701a5d1c14a1

Contents?: true

Size: 1.81 KB

Versions: 9

Compression:

Stored size: 1.81 KB

Contents

module Surveyor
  module Models
    module ValidationMethods
      def self.included(base)
        # Associations
        base.send :belongs_to, :answer
        base.send :has_many, :validation_conditions, :dependent => :destroy

        # Scopes
        
        @@validations_already_included ||= nil
        unless @@validations_already_included
          # Validations
          base.send :validates_presence_of, :rule
          base.send :validates_format_of, :rule, :with => /^(?:and|or|\)|\(|[A-Z]|\s)+$/
          # this causes issues with building and saving
          # base.send :validates_numericality_of, :answer_id
          
          @@validations_already_included = true
        end
        
        # Whitelisting attributes
        base.send :attr_accessible, :answer, :answer_id, :rule, :message
      end

      # 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
  end
end

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
hssc_surveyor-1.4.3.pre lib/surveyor/models/validation_methods.rb
hssc_surveyor-1.4.2.pre lib/surveyor/models/validation_methods.rb
hssc_surveyor-1.4.1.pre lib/surveyor/models/validation_methods.rb
surveyor-1.4.0 lib/surveyor/models/validation_methods.rb
surveyor-1.3.0 lib/surveyor/models/validation_methods.rb
surveyor-1.2.0 lib/surveyor/models/validation_methods.rb
surveyor-1.1.0 lib/surveyor/models/validation_methods.rb
surveyor-1.0.1 lib/surveyor/models/validation_methods.rb
surveyor-1.0.0 lib/surveyor/models/validation_methods.rb