1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
|
class CustomField < ApplicationModel
extend Enumerize
belongs_to :workgroup
enumerize :field_type, in: %i{list integer string attachment}
validates :name, uniqueness: {scope: [:resource_type, :workgroup_id]}
validates :code, uniqueness: {scope: [:resource_type, :workgroup_id], case_sensitive: false}, presence: true
class Collection < HashWithIndifferentAccess
def initialize object, workgroup=nil
vals = object.class.custom_fields(workgroup).map do |v|
[v.code, CustomField::Instance.new(object, v, object.custom_field_value(v.code))]
end
super Hash[*vals.flatten]
end
def to_hash
HashWithIndifferentAccess[*self.map{|k, v| [k, v.to_hash]}.flatten(1)]
end
end
class Instance
def self.new owner, custom_field, value
field_type = custom_field.field_type
klass_name = field_type && "CustomField::Instance::#{field_type.classify}"
klass = klass_name.safe_constantize || CustomField::Instance::Base
klass.new owner, custom_field, value
end
class Base
def initialize owner, custom_field, value
@custom_field = custom_field
@raw_value = value
@owner = owner
@errors = []
@validated = false
@valid = false
end
attr_accessor :owner, :custom_field
delegate :code, :name, :field_type, to: :@custom_field
def default_value
options["default"]
end
def options
@custom_field.options || {}
end
def validate
@valid = true
end
def valid?
validate unless @validated
@valid
end
def value
@raw_value
end
def checksum
@raw_value
end
def input form_helper
@input ||= begin
klass_name = field_type && "CustomField::Instance::#{field_type.classify}::Input"
klass = klass_name.safe_constantize || CustomField::Instance::Base::Input
klass.new self, form_helper
end
end
def errors_key
"custom_fields.#{code}"
end
def to_hash
HashWithIndifferentAccess[*%w(code name field_type options value).map{|k| [k, send(k)]}.flatten(1)]
end
def display_value
value
end
def initialize_custom_field
end
def preprocess_value_for_assignment val
val
end
def render_partial
ActionView::Base.new(Rails.configuration.paths["app/views"].first).render(
:partial => "shared/custom_fields/#{field_type}",
:locals => { field: self}
)
end
class Input
def initialize instance, form_helper
@instance = instance
@form_helper = form_helper
end
def custom_field
@instance.custom_field
end
delegate :custom_field, :value, :options, to: :@instance
delegate :code, :name, :field_type, to: :custom_field
def to_s
out = form_input
out.html_safe
end
protected
def form_input_id
"custom_field_#{code}"
end
def form_input_name
"#{@form_helper.object_name}[custom_field_values][#{code}]"
end
def form_input_options
{
input_html: {value: value, name: form_input_name},
label: name
}
end
def form_input
@form_helper.input form_input_id, form_input_options
end
end
end
class Integer < Base
def value
@raw_value&.to_i
end
def validate
@valid = true
return if @raw_value.is_a?(Fixnum) || @raw_value.is_a?(Float)
unless @raw_value.to_s =~ /\A\d*\Z/
@owner.errors.add errors_key, "'#{@raw_value}' is not a valid integer"
@valid = false
end
end
end
class List < Integer
def validate
super
return unless value.present?
unless value >= 0 && value < options["list_values"].size
@owner.errors.add errors_key, "'#{@raw_value}' is not a valid value"
@valid = false
end
end
def display_value
return unless value
k = options["list_values"].is_a?(Hash) ? value.to_s : value.to_i
options["list_values"][k]
end
class Input < Base::Input
def form_input_options
collection = options["list_values"]
collection = collection.each_with_index.to_a if collection.is_a?(Array)
collection = collection.map(&:reverse) if collection.is_a?(Hash)
super.update({
selected: value,
collection: collection
})
end
end
end
class Attachment < Base
def initialize_custom_field
custom_field_code = self.code
_attr_name = attr_name
_uploader_name = uploader_name
_digest_name = digest_name
owner.send :define_singleton_method, "read_uploader" do |attr|
if attr.to_s == _attr_name
custom_field_values[custom_field_code] && custom_field_values[custom_field_code]["path"]
else
read_attribute attr
end
end
owner.send :define_singleton_method, "write_uploader" do |attr, val|
if attr.to_s == _attr_name
self.custom_field_values[custom_field_code] ||= {}
self.custom_field_values[custom_field_code]["path"] = val
self.custom_field_values[custom_field_code]["digest"] = self.send _digest_name
else
write_attribute attr, val
end
end
owner.send :define_singleton_method, "#{_attr_name}_will_change!" do
self.send "#{_digest_name}=", nil
custom_field_values_will_change!
end
owner.send :define_singleton_method, _digest_name do
val = instance_variable_get "@#{_digest_name}"
if val.nil? && (file = send(_uploader_name)).present?
val = CustomField::Instance::Attachment.digest(file)
instance_variable_set "@#{_digest_name}", val
end
val
end
_extension_whitelist = options["extension_whitelist"]
owner.send :define_singleton_method, "#{_uploader_name}_extension_whitelist" do
_extension_whitelist
end
unless owner.class.uploaders.has_key? _uploader_name.to_sym
owner.class.mount_uploader _uploader_name, CustomFieldAttachmentUploader, mount_on: "custom_field_#{code}_raw_value"
owner.class.send :attr_accessor, _digest_name
end
digest = @raw_value && @raw_value["digest"]
owner.send "#{_digest_name}=", digest
end
def self.digest file
Digest::SHA256.file(file.path).hexdigest
end
def preprocess_value_for_assignment val
if val.present? && !val.is_a?(Hash)
owner.send "#{uploader_name}=", val
else
@raw_value
end
end
def checksum
owner.send digest_name
end
def value
owner.send "custom_field_#{code}"
end
def raw_value
@raw_value
end
def attr_name
"custom_field_#{code}_raw_value"
end
def uploader_name
"custom_field_#{code}"
end
def digest_name
"#{uploader_name}_digest"
end
def display_value
render_partial
end
class Input < Base::Input
def form_input_options
super.update({
as: :file,
wrapper: :horizontal_file_input
})
end
end
end
class String < Base
def value
"#{@raw_value}"
end
end
end
end
|