summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorcreate with ansible <daniil@vyos.io>2022-10-21 11:50:17 -0400
committercreate with ansible <daniil@vyos.io>2022-10-21 14:04:06 -0400
commitb6d2e0a4b08c81814cb2d9b5b611cbc3fc31dbeb (patch)
tree0a44f77e61874454b043371a76d962be95d73c58 /python
parentc8dbd6ce6cd466bd7903987e58b885f0e92d1691 (diff)
downloadvyos-1x-b6d2e0a4b08c81814cb2d9b5b611cbc3fc31dbeb.tar.gz
vyos-1x-b6d2e0a4b08c81814cb2d9b5b611cbc3fc31dbeb.zip
T4765: support list and primitives in op mode output normalization
Diffstat (limited to 'python')
-rw-r--r--python/vyos/opmode.py14
1 files changed, 10 insertions, 4 deletions
diff --git a/python/vyos/opmode.py b/python/vyos/opmode.py
index 5f9c2c1ce..c9827d634 100644
--- a/python/vyos/opmode.py
+++ b/python/vyos/opmode.py
@@ -120,12 +120,12 @@ def _normalize_field_name(name):
return name
-def _normalize_field_names(old_dict):
+def _normalize_dict_field_names(old_dict):
new_dict = {}
for key in old_dict:
new_key = _normalize_field_name(key)
- new_dict[new_key] = old_dict[key]
+ new_dict[new_key] = _normalize_field_names(old_dict[key])
# Sanity check
if len(old_dict) != len(new_dict):
@@ -133,6 +133,14 @@ def _normalize_field_names(old_dict):
else:
return new_dict
+def _normalize_field_names(value):
+ if isinstance(value, dict):
+ return _normalize_dict_field_names(value)
+ elif isinstance(value, list):
+ return list(map(lambda v: _normalize_field_names(v), value))
+ else:
+ return value
+
def run(module):
from argparse import ArgumentParser
@@ -188,8 +196,6 @@ def run(module):
if not args["raw"]:
return res
else:
- if not isinstance(res, dict):
- raise InternalError("'raw' output of 'show_*' command must be a dict")
res = _normalize_field_names(res)
from json import dumps
return dumps(res, indent=4)