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
|
# File 'app/models/effective/attribute.rb', line 69
def parse(value, name: nil)
case type
when :boolean
[true, 'true', 't', '1'].include?(value)
when :date, :datetime
if (digits = value.to_s.scan(/(\d+)/).flatten).present?
date = if digits.first.length == 4 Time.zone.local(*digits)
else year = digits.find { |d| d.length == 4}
digits = [year] + (digits - [year])
Time.zone.local(*digits)
end
name.to_s.start_with?('end_') ? date.end_of_day : date
end
when :time
if (digits = value.to_s.scan(/(\d+)/).flatten).present?
now = Time.zone.now
Time.zone.local(now.year, now.month, now.day, *digits)
end
when :decimal, :currency
(value.kind_of?(String) ? value.gsub(/[^0-9|\-|\.]/, '') : value).to_f
when :duration
if value.to_s.include?('h')
(hours, minutes) = (value.to_s.gsub(/[^0-9|\-|h]/, '').split('h'))
(hours.to_i * 60) + ((hours.to_i < 0) ? -(minutes.to_i) : minutes.to_i)
else
value.to_s.gsub(/[^0-9|\-|h]/, '').to_i
end
when :effective_obfuscation
klass.respond_to?(:deobfuscate) ? klass.deobfuscate(value) : value.to_s
when :effective_roles
EffectiveRoles.roles.include?(value.to_sym) ? value : EffectiveRoles.roles_for(value)
when :integer
(value.kind_of?(String) ? value.gsub(/\D/, '') : value).to_i
when :percent value.kind_of?(Integer) ? value : (value.to_s.gsub(/[^0-9|\-|\.]/, '').to_f * 1000.0).round
when :phone
digits = value.to_s.gsub(/\D/, '').chars
digits = (digits.first == '1' ? digits[1..10] : digits[0..9])
return nil unless digits.length == 10
"(#{digits[0..2].join}) #{digits[3..5].join}-#{digits[6..10].join}"
when :integer
(value.kind_of?(String) ? value.gsub(/\D/, '') : value).to_i
when :nil
value.presence
when :price value.kind_of?(Integer) ? value : (value.to_s.gsub(/[^0-9|\-|\.]/, '').to_f * 100.0).round
when :string, :text, :email
value.to_s
when :belongs_to_polymorphic
value.to_s
when :belongs_to, :has_many, :has_and_belongs_to_many, :has_one, :resource, :effective_addresses if value.kind_of?(Integer) || value.kind_of?(Array)
value
else
digits = value.to_s.gsub(/[^0-9|,]/, '')
if digits == value || digits.length == 10
if klass.respond_to?(:deobfuscate)
digits.split(',').map { |str| klass.deobfuscate(str).to_i }
else
digits.split(',').map { |str| str.to_i }
end
else
value.to_s
end
end
else
raise "unsupported type #{type}"
end
end
|