summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@vyos.io>2022-10-20 09:14:53 -0400
committerDaniil Baturin <daniil@vyos.io>2022-10-20 09:19:45 -0400
commit36c475ec3524739f9ae49420e60a57a5266fa575 (patch)
tree8992b392f7114a28a1ffb27450803bd748e56cc9 /python
parent8403848a338d54f9e489fca1efd1143d820a14a6 (diff)
downloadvyos-1x-36c475ec3524739f9ae49420e60a57a5266fa575.tar.gz
vyos-1x-36c475ec3524739f9ae49420e60a57a5266fa575.zip
T4765: normalize dict fields in op mode ouputs
Diffstat (limited to 'python')
-rw-r--r--python/vyos/opmode.py41
1 files changed, 41 insertions, 0 deletions
diff --git a/python/vyos/opmode.py b/python/vyos/opmode.py
index 7e3545c87..ac9c0c353 100644
--- a/python/vyos/opmode.py
+++ b/python/vyos/opmode.py
@@ -44,6 +44,13 @@ class PermissionDenied(Error):
"""
pass
+class InternalError(Error):
+ """ Any situation when VyOS detects that it could not perform
+ an operation correctly due to logic errors in its own code
+ or errors in underlying software.
+ """
+ pass
+
def _is_op_mode_function_name(name):
if re.match(r"^(show|clear|reset|restart)", name):
@@ -93,6 +100,39 @@ def _get_arg_type(t):
else:
return t
+def _normalize_field_name(name):
+ # Replace all separators with underscores
+ name = re.sub(r'(\s|[\(\)\[\]\{\}\-\.\,:\"\'\`])+', '_', name)
+
+ # Replace specific characters with textual descriptions
+ name = re.sub(r'@', '_at_', name)
+ name = re.sub(r'%', '_percentage_', name)
+ name = re.sub(r'~', '_tilde_', name)
+
+ # Force all letters to lowercase
+ name = name.lower()
+
+ # Remove leading and trailing underscores, if any
+ name = re.sub(r'(^(_+)(?=[^_])|_+$)', '', name)
+
+ # Ensure there are only single underscores
+ name = re.sub(r'_+', '_', name)
+
+ return name
+
+def _normalize_field_names(old_dict):
+ new_dict = {}
+
+ for key in old_dict:
+ new_key = _normalize_field_name(key)
+ new_dict[new_key] = old_dict[key]
+
+ # Sanity check
+ if len(old_dict) != len(new_dict):
+ raise InternalError("Dictionary fields do not allow unique normalization")
+ else:
+ return new_dict
+
def run(module):
from argparse import ArgumentParser
@@ -145,6 +185,7 @@ def run(module):
# they may return human-formatted output
# or a raw dict that we need to serialize in JSON for printing
res = func(**args)
+ res = _normalize_field_names(res)
if not args["raw"]:
return res
else: