Module: MongoidExt::Encryptor::ClassMethods

Defined in:
lib/mongoid_ext/encryptor.rb

Instance Method Summary collapse

Instance Method Details

#encrypted_field(name, options = {}) ⇒ Object

Raises:

  • (ArgumentError)


10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# File 'lib/mongoid_ext/encryptor.rb', line 10

def encrypted_field(name, options = {})
  key = options.delete(:key)
  raise ArgumentError, ":key option must be given" if key.nil?

  field(name, options)
  alias_method :"#{name}_encrypted", name

  define_method(name) do
    value = [send(:"#{name}_encrypted").to_s].pack('H*')

    return if value.blank?
    Marshal.load(::Encryptor.decrypt(value, :key => key))
  end

  define_method("#{name}=") do |v|
    marshaled = Marshal.dump(v)
    enc_value = ::Encryptor.encrypt(marshaled, :key => key).unpack('H*')[0]

    attributes[name.to_s] = enc_value
  end
end