Sha256: 803ded3322a49f4a6ac401cf91bf8b0491aec8e587d93dd00b4ca28054eb5aab

Contents?: true

Size: 1.65 KB

Versions: 2

Compression:

Stored size: 1.65 KB

Contents

require 'rein/util'

module Rein
  module Constraint
    # This module contains methods for defining numericality constraints.
    module Numericality
      OPERATORS = {
        greater_than: :>,
        greater_than_or_equal_to: :>=,
        equal_to: :"=",
        not_equal_to: :"!=",
        less_than: :<,
        less_than_or_equal_to: :<=
      }.freeze

      def add_numericality_constraint(*args)
        reversible do |dir|
          dir.up { _add_numericality_constraint(*args) }
          dir.down { _remove_numericality_constraint(*args) }
        end
      end

      def remove_numericality_constraint(*args)
        reversible do |dir|
          dir.up { _remove_numericality_constraint(*args) }
          dir.down { _add_numericality_constraint(*args) }
        end
      end

      private

      def _add_numericality_constraint(table, attribute, options = {})
        name = Util.constraint_name(table, attribute, 'numericality', options)
        table = Util.wrap_identifier(table)
        attribute = Util.wrap_identifier(attribute)
        conditions = OPERATORS.slice(*options.keys).map do |key, operator|
          value = options[key]
          [attribute, operator, value].join(' ')
        end.join(' AND ')
        conditions = Util.conditions_with_if(conditions, options)
        execute("ALTER TABLE #{table} ADD CONSTRAINT #{name} CHECK (#{conditions})")
      end

      def _remove_numericality_constraint(table, attribute, options = {})
        name = Util.constraint_name(table, attribute, 'numericality', options)
        table = Util.wrap_identifier(table)
        execute("ALTER TABLE #{table} DROP CONSTRAINT #{name}")
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rein-5.0.0 lib/rein/constraint/numericality.rb
rein-4.0.0 lib/rein/constraint/numericality.rb