1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Handle quoting of values in dict parameters

This commit is contained in:
Toshio Kuratomi 2014-12-22 10:30:36 -08:00
parent cb262449c7
commit 6a68be4e28

View file

@ -1070,7 +1070,32 @@ class AnsibleModule(object):
raise TypeError('unable to evaluate string as dictionary')
return result
elif '=' in value:
return dict([x.strip().split("=", 1) for x in value.split(",")])
fields = []
field_buffer = []
in_quote = False
in_escape = False
for c in value.strip():
if in_escape:
field_buffer.append(c)
in_escape = False
elif c == '\\':
in_escape = True
elif not in_quote and c in ('\'', '"'):
in_quote = c
elif in_quote and in_quote == c:
in_quote = False
elif not in_quote and c in (',', ' '):
field = ''.join(field_buffer)
if field:
fields.append(field)
field_buffer = []
else:
field_buffer.append(c)
field = ''.join(field_buffer)
if field:
fields.append(field)
return dict(x.split("=", 1) for x in fields)
else:
raise TypeError("dictionary requested, could not parse JSON or key=value")