module Mongoid::Clients::Validators::Storage

Validates the options passed to :store_in.

Constants

VALID_OPTIONS

The valid options for storage.

Public Instance Methods

validate(klass, options) click to toggle source

Validate the options provided to :store_in.

@example Validate the options.

Storage.validate(:collection_name)

@param [ Class ] klass The model class. @param [ Hash | String | Symbol ] options The provided options.

# File lib/mongoid/clients/validators/storage.rb, line 22
def validate(klass, options)
  valid_keys?(options) or raise Errors::InvalidStorageOptions.new(klass, options)
end

Private Instance Methods

valid_keys?(options) click to toggle source

Determine if all keys in the options hash are valid.

@api private

@example Are all keys valid?

validator.valid_keys?({ collection: "name" })

@param [ Hash ] options The options hash.

@return [ true | false ] If all keys are valid.

# File lib/mongoid/clients/validators/storage.rb, line 38
def valid_keys?(options)
  return false unless options.is_a?(::Hash)
  options.keys.all? do |key|
    VALID_OPTIONS.include?(key)
  end
end