summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authoromnom62 <75066712+omnom62@users.noreply.github.com>2026-08-28 18:58:01 +1000
committerGitHub <noreply@github.com>2026-08-28 11:58:01 +0300
commit97c43a34bd953a06bfe6c4b010ab79f645bac061 (patch)
tree45b798ec312666c6f593708b2c77c6197b0b2500 /plugins
parent657aabbfd2ea43a441447093ef9880716775ed16 (diff)
downloadrest.vyos-97c43a34bd953a06bfe6c4b010ab79f645bac061.tar.gz
rest.vyos-97c43a34bd953a06bfe6c4b010ab79f645bac061.zip
T8989: module_utils.vyos update to cast_by_spec method (#24)
* T8989: module_utils.vyos update to cast_by_spec method * T8989: module_utils.vyos update to cast_by_spec method * T8989: Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> T8989: Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> T8989: Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> T8989: vyos_banner SIT fix
Diffstat (limited to 'plugins')
-rw-r--r--plugins/module_utils/vyos.py84
1 files changed, 4 insertions, 80 deletions
diff --git a/plugins/module_utils/vyos.py b/plugins/module_utils/vyos.py
index a37a0c2..92549d6 100644
--- a/plugins/module_utils/vyos.py
+++ b/plugins/module_utils/vyos.py
@@ -19,85 +19,6 @@ from ansible_collections.vyos.rest.plugins.module_utils.vyos_rest import (
# ---------------------------------------------------------------------------
-# Legacy dynamic config utilities (used by Wave 1-3 modules)
-# ---------------------------------------------------------------------------
-
-
-def _kebab_to_snake(s):
- """Convert kebab-case string to snake_case."""
- return s.replace("-", "_")
-
-
-def _snake_to_kebab(s):
- """Convert snake_case string to kebab-case."""
- return s.replace("_", "-")
-
-
-def normalize(raw):
- """Recursively normalize an API response dict to snake_case keys."""
- if isinstance(raw, dict):
- return {_kebab_to_snake(k): normalize(v) for k, v in raw.items()}
- if isinstance(raw, list):
- return [normalize(v) for v in raw]
- return raw
-
-
-def denormalize_path(path):
- """Convert a snake_case path list to kebab-case for the API."""
- return [_snake_to_kebab(p) for p in path]
-
-
-def _diff_value(want_val, have_val, path, cmds, delete_missing):
- if isinstance(want_val, dict):
- if not want_val:
- if have_val is None:
- cmds.append(("set", denormalize_path(path)))
- else:
- have_dict = have_val if isinstance(have_val, dict) else {}
- _diff_dict(want_val, have_dict, path, cmds, delete_missing)
- elif isinstance(want_val, list):
- have_set = set(have_val) if isinstance(have_val, list) else set()
- for item in want_val:
- if item not in have_set:
- cmds.append(("set", denormalize_path(path + [str(item)])))
- if delete_missing:
- want_set = set(str(i) for i in want_val)
- for item in have_val or []:
- if str(item) not in want_set:
- cmds.append(("delete", denormalize_path(path + [str(item)])))
- else:
- if want_val != have_val:
- cmds.append(("set", denormalize_path(path + [str(want_val)])))
-
-
-def _diff_dict(want, have, path, cmds, delete_missing):
- for key, want_val in want.items():
- _diff_value(want_val, have.get(key), path + [key], cmds, delete_missing)
- if delete_missing:
- for key in have:
- if key not in want:
- cmds.append(("delete", denormalize_path(path + [key])))
-
-
-def diff_configs(want, have, base_path, delete_missing=False):
- """Diff two normalized config dicts and return API command tuples.
-
- Args:
- want (dict): Desired configuration (snake_case keys).
- have (dict): Current configuration (snake_case keys).
- base_path (list): Base API path for commands.
- delete_missing (bool): Generate delete commands for keys in
- ``have`` absent from ``want``.
-
- Returns:
- list: Tuples of ``("set", path)`` or ``("delete", path)``.
- """
- cmds = []
- _diff_dict(want, have, base_path, cmds, delete_missing)
- return cmds
-
-
-# ---------------------------------------------------------------------------
# Generic dict diff engine (used by Wave 4+ modules)
#
# Design principles:
@@ -229,7 +150,10 @@ def cast_by_spec(entry, options):
continue
spec_type = spec.get("type")
if spec_type == "int":
- entry[key] = int(entry[key])
+ val = entry[key]
+ if isinstance(val, list) and len(val) <= 1:
+ val = val[0] if val else None
+ entry[key] = int(val) if val is not None else None
elif spec_type == "dict":
cast_by_spec(entry[key], spec.get("options"))
elif spec_type == "list":