diff options
author | Daniil Baturin <daniil@baturin.org> | 2023-11-22 00:53:35 +0000 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2023-11-23 11:32:45 +0100 |
commit | 1b7e8f9ff7a86125ca7c8a2035650d5203dc54c5 (patch) | |
tree | 337fa11842302140887bfc5738ead6566829c521 /python/vyos/util.py | |
parent | ed0570b31eac62a9c4f3fa794ca4b9848ae1f279 (diff) | |
download | vyos-1x-1b7e8f9ff7a86125ca7c8a2035650d5203dc54c5.tar.gz vyos-1x-1b7e8f9ff7a86125ca7c8a2035650d5203dc54c5.zip |
https api: T5772: check if keys are configured unless PAM auth is enabled for GraphQL
(cherry picked from commit 8c450ea7f538beb0b2cd21d35c05d18db49a1802)
Diffstat (limited to 'python/vyos/util.py')
-rw-r--r-- | python/vyos/util.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/python/vyos/util.py b/python/vyos/util.py index 3ffd025b9..bac327018 100644 --- a/python/vyos/util.py +++ b/python/vyos/util.py @@ -237,3 +237,22 @@ def process_named_running(name): if name in p.name(): return p.pid return None + +def dict_search(path, dict_object): + """ Traverse Python dictionary (dict_object) delimited by dot (.). + Return value of key if found, None otherwise. + This is faster implementation then jmespath.search('foo.bar', dict_object)""" + if not isinstance(dict_object, dict) or not path: + return None + + parts = path.split('.') + inside = parts[:-1] + if not inside: + if path not in dict_object: + return None + return dict_object[path] + c = dict_object + for p in parts[:-1]: + c = c.get(p, {}) + return c.get(parts[-1], None) + |