34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
|
# File 'lib/lockbox/model.rb', line 34
def encrypts(*attributes, **options)
attributes.each do |name|
encrypted_attribute = "#{name}_ciphertext"
options = options.dup
original_name = name.to_sym
name = "migrated_#{name}" if options[:migrating]
name = name.to_sym
options[:attribute] = name.to_s
options[:encrypted_attribute] = encrypted_attribute
class_method_name = "generate_#{encrypted_attribute}"
class_eval do
if options[:migrating]
before_validation do
send("#{name}=", send(original_name)) if send("#{original_name}_changed?")
end
end
@lockbox_attributes ||= {}
unless respond_to?(:lockbox_attributes)
def self.lockbox_attributes
parent_attributes =
if superclass.respond_to?(:lockbox_attributes)
superclass.lockbox_attributes
else
{}
end
parent_attributes.merge(@lockbox_attributes || {})
end
end
raise "Duplicate encrypted attribute: #{original_name}" if lockbox_attributes[original_name]
@lockbox_attributes[original_name] = options
if @lockbox_attributes.size == 1
def serializable_hash(options = nil)
options = options.try(:dup) || {}
options[:except] = Array(options[:except])
options[:except] += self.class.lockbox_attributes.values.reject { |v| v[:attached] }.flat_map { |v| [v[:attribute], v[:encrypted_attribute]] }
super(options)
end
def inspect
inspection =
serializable_hash.map do |k,v|
"#{k}: #{respond_to?(:attribute_for_inspect) ? attribute_for_inspect(k) : v.inspect}"
end
"#<#{self.class} #{inspection.join(", ")}>"
end
end
attribute name, :string
define_method("#{name}=") do |message|
begin
send(name)
rescue Lockbox::DecryptionError
nil
end
ciphertext =
if message.nil? || message == ""
message
else
self.class.send(class_method_name, message, context: self)
end
send("#{encrypted_attribute}=", ciphertext)
super(message)
end
define_method(name) do
message = super()
unless message
ciphertext = send(encrypted_attribute)
message =
if ciphertext.nil? || ciphertext == ""
ciphertext
else
decoded = Base64.decode64(ciphertext)
Lockbox::Utils.build_box(self, options, self.class.table_name, encrypted_attribute).decrypt(decoded)
end
@attributes[name.to_s].instance_variable_set("@value_before_type_cast", message)
if respond_to?(:_write_attribute, true)
_write_attribute(name, message)
else
raw_write_attribute(name, message)
end
end
message
end
define_singleton_method class_method_name do |message, **opts|
Base64.strict_encode64(Lockbox::Utils.build_box(opts[:context], options, table_name, encrypted_attribute).encrypt(message))
end
end
end
end
|