# frozen_string_literal: true module ActiveRecord module Encryption module ExtendedDeterministicUniquenessValidator def self.install_support ActiveRecord::Validations::UniquenessValidator.prepend(EncryptedUniquenessValidator) end module EncryptedUniquenessValidator def validate_each(record, attribute, value) super(record, attribute, value) klass = record.class klass.deterministic_encrypted_attributes&.each do |attribute_name| encrypted_type = klass.type_for_attribute(attribute_name) [ encrypted_type, *encrypted_type.previous_types ].each do |type| encrypted_value = type.serialize(value) ActiveRecord::Encryption.without_encryption do super(record, attribute, encrypted_value) end end end end end end end end