diff options
author | Daniil Baturin <daniil@vyos.io> | 2023-12-04 18:09:51 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-04 18:09:51 +0000 |
commit | 5d42ac22b2dd152327ed7c12d13faf01268dd363 (patch) | |
tree | 9a30ee97a97a700a406916296e35f9c35bba6cb9 /src/conf_mode/http-api.py | |
parent | d8fe1088d647fc821e523686c78927ad017d3c4a (diff) | |
parent | 7c6de792279350c980160096887524836b44be47 (diff) | |
download | vyos-1x-5d42ac22b2dd152327ed7c12d13faf01268dd363.tar.gz vyos-1x-5d42ac22b2dd152327ed7c12d13faf01268dd363.zip |
Merge pull request #2570 from dmbaturin/https-api-keys-fix1.3.5
https: T5772: Move API key check to http-api.py
Diffstat (limited to 'src/conf_mode/http-api.py')
-rwxr-xr-x | src/conf_mode/http-api.py | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/src/conf_mode/http-api.py b/src/conf_mode/http-api.py index 2ade3476d..d96dbc789 100755 --- a/src/conf_mode/http-api.py +++ b/src/conf_mode/http-api.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2019-2021 VyOS maintainers and contributors +# Copyright (C) 2019-2023 VyOS maintainers and contributors # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 or later as @@ -38,7 +38,7 @@ vyos_conf_scripts_dir=vyos.defaults.directories['conf_mode'] def get_config(config=None): http_api = deepcopy(vyos.defaults.api_data) - x = http_api.get('api_keys') + x = http_api.get('api_keys', []) if not x: default_key = None else: @@ -94,16 +94,21 @@ def get_config(config=None): key = conf.return_value('keys id {0} key'.format(name)) new_key = { 'id': name, 'key': key } http_api['api_keys'].append(new_key) - keys_added = True - - if keys_added and default_key: - if default_key in http_api['api_keys']: - http_api['api_keys'].remove(default_key) + else: + raise ConfigError(f'Missing HTTPS API key string for key id "{name}"') return http_api def verify(http_api): - return None + if http_api is None: + return + # Verify API server settings, if present + keys = http_api['api_keys'] + + if not keys: + raise ConfigError('At least one HTTPS API key is required') + + return def generate(http_api): if http_api is None: |