Sha256: f80b2a16e1eefce7d32c96fe999b51b3ef6badcff356e89e4ab701c624606c91

Contents?: true

Size: 1.29 KB

Versions: 1

Compression:

Stored size: 1.29 KB

Contents

# encoding: utf-8

module CouchRest
  module Model
    module Validations
      
      # Validates if a field is unique 
      class UniquenessValidator < ActiveModel::EachValidator

        # Ensure we have a class available so we can check for a usable view
        # or add one if necessary.
        def setup(model)
          @model = model
        end

        def validate_each(document, attribute, value)
          view_name = options[:view].nil? ? "by_#{attribute}" : options[:view]
          model = document.model_proxy || @model
          # Determine the base of the search
          base = options[:proxy].nil? ? model : document.instance_eval(options[:proxy])

          if base.respond_to?(:has_view?) && !base.has_view?(view_name)
            raise "View #{document.class.name}.#{options[:view]} does not exist!" unless options[:view].nil?
            model.view_by attribute
          end

          docs = base.view(view_name, :key => value, :limit => 2, :include_docs => false)['rows']
          return if docs.empty?

          unless document.new?
            return if docs.find{|doc| doc['id'] == document.id}
          end
          
          if docs.length > 0
            document.errors.add(attribute, :taken, options.merge(:value => value))
          end
        end

      end

    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
couchrest_model-1.1.0.beta lib/couchrest/model/validations/uniqueness.rb