forked from theforeman/hammer-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnormalizers.rb
More file actions
320 lines (258 loc) · 8.44 KB
/
normalizers.rb
File metadata and controls
320 lines (258 loc) · 8.44 KB
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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
require 'json'
require 'hammer_cli/csv_parser'
module HammerCLI
module Options
module Normalizers
class AbstractNormalizer
def description
""
end
def format(val)
raise NotImplementedError, "Class #{self.class.name} must implement method format."
end
def complete(val)
[]
end
end
class Default < AbstractNormalizer
def format(value)
value
end
end
class KeyValueList < AbstractNormalizer
PAIR_RE = '([^,=]+)=([^,\{\[]+|[\{\[][^\{\}\[\]]*[\}\]])'
FULL_RE = "^((%s)[,]?)+$" % PAIR_RE
def description
_("Comma-separated list of key=value.") + "\n" +
_("JSON is acceptable and preferred way for complex parameters")
end
def format(val)
return {} unless val.is_a?(String)
return {} if val.empty?
if valid_key_value?(val)
parse_key_value(val)
else
begin
formatter = JSONInput.new
formatter.format(val)
rescue ArgumentError
raise ArgumentError, _("Value must be defined as a comma-separated list of key=value or valid JSON.")
end
end
end
private
def valid_key_value?(val)
Regexp.new(FULL_RE).match(val)
end
def parse_key_value(val)
result = {}
val.scan(Regexp.new(PAIR_RE)) do |key, value|
value = value.strip
if value.start_with?('[')
value = value.scan(/[^,\[\]]+/)
elsif value.start_with?('{')
value = parse_key_value(value[1...-1])
end
result[key.strip] = strip_value(value)
end
result
end
def strip_value(value)
if value.is_a? Array
value.map do |item|
strip_chars(item.strip, '"\'')
end
elsif value.is_a? Hash
value.map do |key, val|
[strip_chars(key.strip, '"\''), strip_chars(val.strip, '"\'')]
end.to_h
else
strip_chars(value.strip, '"\'')
end
end
def strip_chars(string, chars)
chars = Regexp.escape(chars)
string.gsub(/\A[#{chars}]+|[#{chars}]+\z/, '')
end
end
class List < AbstractNormalizer
def description
_("Comma separated list of values. Values containing comma should be quoted or escaped with backslash.") + "\n" +
_("JSON is acceptable and preferred way for complex parameters")
end
def format(val)
return [] unless val.is_a?(String) && !val.empty?
begin
[JSON.parse(val)].flatten(1)
rescue JSON::ParserError
HammerCLI::CSVParser.new.parse(val)
end
end
end
class ListNested < AbstractNormalizer
class Schema < Array
def description(richtext: true)
'"' + reduce([]) do |schema, nested_param|
name = nested_param.name
name = HighLine.color(name, :bold) if nested_param.required? && richtext
values = nested_param.validator.scan(/<[^>]+>[\w]+<\/?[^>]+>/)
value_pattern = if values.empty?
"<#{nested_param.expected_type.downcase}>"
else
values = values.map do |value|
value.gsub(/(<\/?[^>]+>)*([\.,]*)*/, '')
end
"[#{values.join('|')}]"
end
schema << "#{name}=#{value_pattern}"
end.join('\,').concat(', ... "')
end
end
attr_reader :schema
def initialize(schema)
@schema = Schema.new(schema)
end
def description
_("Comma separated list of values defined by a schema. See Option details section below.") + "\n" +
_("JSON is acceptable and preferred way for complex parameters")
end
def format(val)
return [] unless val.is_a?(String) && !val.empty?
begin
JSON.parse(val)
rescue JSON::ParserError
HammerCLI::CSVParser.new.parse(val).inject([]) do |results, item|
next if item.empty?
results << KeyValueList.new.format(item)
end
end
end
end
class Number < AbstractNormalizer
def format(val)
if numeric?(val)
val.to_i
else
raise ArgumentError, _("Numeric value is required.")
end
end
def numeric?(val)
Integer(val) != nil rescue false
end
end
class Bool < AbstractNormalizer
def allowed_values
['yes', 'no', 'true', 'false', '1', '0']
end
def description
_('One of %s.') % ['true/false', 'yes/no', '1/0'].join(', ')
end
def format(bool)
bool = bool.to_s
if bool.downcase.match(/^(true|t|yes|y|1)$/i)
return true
elsif bool.downcase.match(/^(false|f|no|n|0)$/i)
return false
else
raise ArgumentError, _('Value must be one of %s.') % ['true/false', 'yes/no', '1/0'].join(', ')
end
end
def complete(value)
allowed_values.map { |v| v + ' ' }
end
end
class File < AbstractNormalizer
def format(path)
::File.read(::File.expand_path(path))
end
def complete(value)
Dir[value.to_s+'*'].collect do |file|
if ::File.directory?(file)
file+'/'
else
file+' '
end
end
end
end
class JSONInput < File
def format(val)
# The JSON input can be either the path to a file whose contents are
# JSON or a JSON string. For example:
# /my/path/to/file.json
# or
# '{ "units":[ { "name":"zip", "version":"9.0", "inclusion":"false" } ] }')
json_string = ::File.exist?(::File.expand_path(val)) ? super(val) : val
::JSON.parse(json_string)
rescue ::JSON::ParserError => e
raise ArgumentError, _("Unable to parse JSON input.")
end
end
class Enum < AbstractNormalizer
attr_reader :allowed_values
def initialize(allowed_values)
@allowed_values = allowed_values
end
def description
_("Possible value(s): %s") % quoted_values
end
def format(value)
if @allowed_values.include? value
value
else
if allowed_values.count == 1
msg = _("Value must be %s.") % quoted_values
else
msg = _("Value must be one of %s.") % quoted_values
end
raise ArgumentError, msg
end
end
def complete(value)
Completer::finalize_completions(@allowed_values)
end
private
def quoted_values
@allowed_values.map { |v| "'#{v}'" }.join(', ')
end
end
class DateTime < AbstractNormalizer
def description
_("Date and time in YYYY-MM-DD HH:MM:SS or ISO 8601 format")
end
def format(date)
raise ArgumentError unless date
::DateTime.parse(date).to_s
rescue ArgumentError
raise ArgumentError, _("'%s' is not a valid date.") % date
end
end
class EnumList < AbstractNormalizer
attr_reader :allowed_values
def initialize(allowed_values)
@allowed_values = allowed_values
end
def description
_("Any combination (comma separated list) of '%s'") % quoted_values
end
def format(value)
value.is_a?(String) ? parse(value) : []
end
def complete(value)
Completer::finalize_completions(@allowed_values)
end
private
def quoted_values
@allowed_values.map { |v| "'#{v}'" }.join(', ')
end
def parse(arr)
arr.split(",").uniq.tap do |values|
unless values.inject(true) { |acc, cur| acc & (@allowed_values.include? cur) }
raise ArgumentError, _("Value must be a combination of '%s'.") % quoted_values
end
end
end
end
end
end
end