mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
[PR #8605/229ed6da backport][stable-9] Add a keycloak module to query keys metadata (#8696)
Add a keycloak module to query keys metadata (#8605)
* feat(keycloak): module to query keys metadata
* chore: add thomasbach-dev as maintainer in team_keycloak
* test: adding a unit test for keycloak_real_keys_metadata_info module
* fixup! feat(keycloak): module to query keys metadata
(cherry picked from commit 229ed6dad9
)
Co-authored-by: Thomas Bach <63091663+thomasbach-dev@users.noreply.github.com>
This commit is contained in:
parent
70acdf1f6d
commit
569bd30148
4 changed files with 349 additions and 1 deletions
2
.github/BOTMETA.yml
vendored
2
.github/BOTMETA.yml
vendored
|
@ -1533,7 +1533,7 @@ macros:
|
||||||
team_huawei: QijunPan TommyLike edisonxiang freesky-edward hwDCN niuzhenguo xuxiaowei0512 yanzhangi zengchen1024 zhongjun2
|
team_huawei: QijunPan TommyLike edisonxiang freesky-edward hwDCN niuzhenguo xuxiaowei0512 yanzhangi zengchen1024 zhongjun2
|
||||||
team_ipa: Akasurde Nosmoht justchris1
|
team_ipa: Akasurde Nosmoht justchris1
|
||||||
team_jboss: Wolfant jairojunior wbrefvem
|
team_jboss: Wolfant jairojunior wbrefvem
|
||||||
team_keycloak: eikef ndclt mattock
|
team_keycloak: eikef ndclt mattock thomasbach-dev
|
||||||
team_linode: InTheCloudDan decentral1se displague rmcintosh Charliekenney23 LBGarber
|
team_linode: InTheCloudDan decentral1se displague rmcintosh Charliekenney23 LBGarber
|
||||||
team_macos: Akasurde kyleabenson martinm82 danieljaouen indrajitr
|
team_macos: Akasurde kyleabenson martinm82 danieljaouen indrajitr
|
||||||
team_manageiq: abellotti cben gtanzillo yaacov zgalor dkorn evertmulder
|
team_manageiq: abellotti cben gtanzillo yaacov zgalor dkorn evertmulder
|
||||||
|
|
|
@ -19,6 +19,7 @@ from ansible.module_utils.common.text.converters import to_native, to_text
|
||||||
URL_REALM_INFO = "{url}/realms/{realm}"
|
URL_REALM_INFO = "{url}/realms/{realm}"
|
||||||
URL_REALMS = "{url}/admin/realms"
|
URL_REALMS = "{url}/admin/realms"
|
||||||
URL_REALM = "{url}/admin/realms/{realm}"
|
URL_REALM = "{url}/admin/realms/{realm}"
|
||||||
|
URL_REALM_KEYS_METADATA = "{url}/admin/realms/{realm}/keys"
|
||||||
|
|
||||||
URL_TOKEN = "{url}/realms/{realm}/protocol/openid-connect/token"
|
URL_TOKEN = "{url}/realms/{realm}/protocol/openid-connect/token"
|
||||||
URL_CLIENT = "{url}/admin/realms/{realm}/clients/{id}"
|
URL_CLIENT = "{url}/admin/realms/{realm}/clients/{id}"
|
||||||
|
@ -306,6 +307,37 @@ class KeycloakAPI(object):
|
||||||
self.module.fail_json(msg='Could not obtain realm %s: %s' % (realm, str(e)),
|
self.module.fail_json(msg='Could not obtain realm %s: %s' % (realm, str(e)),
|
||||||
exception=traceback.format_exc())
|
exception=traceback.format_exc())
|
||||||
|
|
||||||
|
def get_realm_keys_metadata_by_id(self, realm='master'):
|
||||||
|
"""Obtain realm public info by id
|
||||||
|
|
||||||
|
:param realm: realm id
|
||||||
|
|
||||||
|
:return: None, or a 'KeysMetadataRepresentation'
|
||||||
|
(https://www.keycloak.org/docs-api/latest/rest-api/index.html#KeysMetadataRepresentation)
|
||||||
|
-- a dict containing the keys 'active' and 'keys', the former containing a mapping
|
||||||
|
from algorithms to key-ids, the latter containing a list of dicts with key
|
||||||
|
information.
|
||||||
|
"""
|
||||||
|
realm_keys_metadata_url = URL_REALM_KEYS_METADATA.format(url=self.baseurl, realm=realm)
|
||||||
|
|
||||||
|
try:
|
||||||
|
return json.loads(to_native(open_url(realm_keys_metadata_url, method='GET', http_agent=self.http_agent, headers=self.restheaders,
|
||||||
|
timeout=self.connection_timeout,
|
||||||
|
validate_certs=self.validate_certs).read()))
|
||||||
|
|
||||||
|
except HTTPError as e:
|
||||||
|
if e.code == 404:
|
||||||
|
return None
|
||||||
|
else:
|
||||||
|
self.fail_open_url(e, msg='Could not obtain realm %s: %s' % (realm, str(e)),
|
||||||
|
exception=traceback.format_exc())
|
||||||
|
except ValueError as e:
|
||||||
|
self.module.fail_json(msg='API returned incorrect JSON when trying to obtain realm %s: %s' % (realm, str(e)),
|
||||||
|
exception=traceback.format_exc())
|
||||||
|
except Exception as e:
|
||||||
|
self.module.fail_json(msg='Could not obtain realm %s: %s' % (realm, str(e)),
|
||||||
|
exception=traceback.format_exc())
|
||||||
|
|
||||||
def get_realm_by_id(self, realm='master'):
|
def get_realm_by_id(self, realm='master'):
|
||||||
""" Obtain realm representation by id
|
""" Obtain realm representation by id
|
||||||
|
|
||||||
|
|
133
plugins/modules/keycloak_realm_keys_metadata_info.py
Normal file
133
plugins/modules/keycloak_realm_keys_metadata_info.py
Normal file
|
@ -0,0 +1,133 @@
|
||||||
|
#!/usr/bin/python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
# Copyright (c) Ansible project
|
||||||
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
from __future__ import absolute_import, division, print_function
|
||||||
|
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
|
DOCUMENTATION = """
|
||||||
|
---
|
||||||
|
module: keycloak_realm_keys_metadata_info
|
||||||
|
|
||||||
|
short_description: Allows obtaining Keycloak realm keys metadata via Keycloak API
|
||||||
|
|
||||||
|
version_added: 9.3.0
|
||||||
|
|
||||||
|
description:
|
||||||
|
- This module allows you to get Keycloak realm keys metadata via the Keycloak REST API.
|
||||||
|
|
||||||
|
- The names of module options are snake_cased versions of the camelCase ones found in the
|
||||||
|
Keycloak API and its documentation at U(https://www.keycloak.org/docs-api/latest/rest-api/index.html).
|
||||||
|
|
||||||
|
options:
|
||||||
|
realm:
|
||||||
|
type: str
|
||||||
|
description:
|
||||||
|
- They Keycloak realm to fetch keys metadata.
|
||||||
|
default: 'master'
|
||||||
|
|
||||||
|
extends_documentation_fragment:
|
||||||
|
- community.general.keycloak
|
||||||
|
- community.general.attributes
|
||||||
|
- community.general.attributes.info_module
|
||||||
|
|
||||||
|
author:
|
||||||
|
- Thomas Bach (@thomasbach-dev)
|
||||||
|
"""
|
||||||
|
|
||||||
|
EXAMPLES = """
|
||||||
|
- name: Fetch Keys metadata
|
||||||
|
community.general.keycloak_realm_keys_metadata_info:
|
||||||
|
auth_keycloak_url: https://auth.example.com/auth
|
||||||
|
auth_realm: master
|
||||||
|
auth_username: USERNAME
|
||||||
|
auth_password: PASSWORD
|
||||||
|
realm: MyCustomRealm
|
||||||
|
delegate_to: localhost
|
||||||
|
register: keycloak_keys_metadata
|
||||||
|
|
||||||
|
- name: Write the Keycloak keys certificate into a file
|
||||||
|
ansible.builtin.copy:
|
||||||
|
dest: /tmp/keycloak.cert
|
||||||
|
content: |
|
||||||
|
{{ keys_metadata['keycloak_keys_metadata']['keys']
|
||||||
|
| selectattr('algorithm', 'equalto', 'RS256')
|
||||||
|
| map(attribute='certificate')
|
||||||
|
| first
|
||||||
|
}}
|
||||||
|
delegate_to: localhost
|
||||||
|
"""
|
||||||
|
|
||||||
|
RETURN = """
|
||||||
|
msg:
|
||||||
|
description: Message as to what action was taken.
|
||||||
|
returned: always
|
||||||
|
type: str
|
||||||
|
|
||||||
|
keys_metadata:
|
||||||
|
description:
|
||||||
|
|
||||||
|
- Representation of the realm keys metadata (see
|
||||||
|
U(https://www.keycloak.org/docs-api/latest/rest-api/index.html#KeysMetadataRepresentation)).
|
||||||
|
|
||||||
|
returned: always
|
||||||
|
type: dict
|
||||||
|
contains:
|
||||||
|
active:
|
||||||
|
description: A mapping (that is, a dict) from key algorithms to UUIDs.
|
||||||
|
type: dict
|
||||||
|
returned: always
|
||||||
|
keys:
|
||||||
|
description: A list of dicts providing detailed information on the keys.
|
||||||
|
type: list
|
||||||
|
elements: dict
|
||||||
|
returned: always
|
||||||
|
"""
|
||||||
|
|
||||||
|
from ansible.module_utils.basic import AnsibleModule
|
||||||
|
from ansible_collections.community.general.plugins.module_utils.identity.keycloak.keycloak import (
|
||||||
|
KeycloakAPI, KeycloakError, get_token, keycloak_argument_spec)
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
argument_spec = keycloak_argument_spec()
|
||||||
|
|
||||||
|
meta_args = dict(
|
||||||
|
realm=dict(default="master"),
|
||||||
|
)
|
||||||
|
argument_spec.update(meta_args)
|
||||||
|
|
||||||
|
module = AnsibleModule(
|
||||||
|
argument_spec=argument_spec,
|
||||||
|
supports_check_mode=True,
|
||||||
|
required_one_of=([["token", "auth_realm", "auth_username", "auth_password"]]),
|
||||||
|
required_together=([["auth_realm", "auth_username", "auth_password"]]),
|
||||||
|
)
|
||||||
|
|
||||||
|
result = dict(changed=False, msg="", keys_metadata="")
|
||||||
|
|
||||||
|
# Obtain access token, initialize API
|
||||||
|
try:
|
||||||
|
connection_header = get_token(module.params)
|
||||||
|
except KeycloakError as e:
|
||||||
|
module.fail_json(msg=str(e))
|
||||||
|
|
||||||
|
kc = KeycloakAPI(module, connection_header)
|
||||||
|
|
||||||
|
realm = module.params.get("realm")
|
||||||
|
|
||||||
|
keys_metadata = kc.get_realm_keys_metadata_by_id(realm=realm)
|
||||||
|
|
||||||
|
result["keys_metadata"] = keys_metadata
|
||||||
|
result["msg"] = "Get realm keys metadata successful for ID {realm}".format(
|
||||||
|
realm=realm
|
||||||
|
)
|
||||||
|
module.exit_json(**result)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
|
@ -0,0 +1,183 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
# Copyright (c) 2021, Ansible Project
|
||||||
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
from __future__ import absolute_import, division, print_function
|
||||||
|
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
|
from contextlib import contextmanager
|
||||||
|
from itertools import count
|
||||||
|
|
||||||
|
from ansible.module_utils.six import StringIO
|
||||||
|
from ansible_collections.community.general.plugins.modules import \
|
||||||
|
keycloak_realm_keys_metadata_info
|
||||||
|
from ansible_collections.community.general.tests.unit.compat import unittest
|
||||||
|
from ansible_collections.community.general.tests.unit.compat.mock import patch
|
||||||
|
from ansible_collections.community.general.tests.unit.plugins.modules.utils import (
|
||||||
|
AnsibleExitJson, ModuleTestCase, set_module_args)
|
||||||
|
|
||||||
|
|
||||||
|
@contextmanager
|
||||||
|
def patch_keycloak_api(side_effect):
|
||||||
|
"""Mock context manager for patching the methods in PwPolicyIPAClient that contact the IPA server
|
||||||
|
|
||||||
|
Patches the `login` and `_post_json` methods
|
||||||
|
|
||||||
|
Keyword arguments are passed to the mock object that patches `_post_json`
|
||||||
|
|
||||||
|
No arguments are passed to the mock object that patches `login` because no tests require it
|
||||||
|
|
||||||
|
Example::
|
||||||
|
|
||||||
|
with patch_ipa(return_value={}) as (mock_login, mock_post):
|
||||||
|
...
|
||||||
|
"""
|
||||||
|
|
||||||
|
obj = keycloak_realm_keys_metadata_info.KeycloakAPI
|
||||||
|
with patch.object(obj, "get_realm_keys_metadata_by_id", side_effect=side_effect) as obj_mocked:
|
||||||
|
yield obj_mocked
|
||||||
|
|
||||||
|
|
||||||
|
def get_response(object_with_future_response, method, get_id_call_count):
|
||||||
|
if callable(object_with_future_response):
|
||||||
|
return object_with_future_response()
|
||||||
|
if isinstance(object_with_future_response, dict):
|
||||||
|
return get_response(
|
||||||
|
object_with_future_response[method], method, get_id_call_count
|
||||||
|
)
|
||||||
|
if isinstance(object_with_future_response, list):
|
||||||
|
call_number = next(get_id_call_count)
|
||||||
|
return get_response(
|
||||||
|
object_with_future_response[call_number], method, get_id_call_count
|
||||||
|
)
|
||||||
|
return object_with_future_response
|
||||||
|
|
||||||
|
|
||||||
|
def build_mocked_request(get_id_user_count, response_dict):
|
||||||
|
def _mocked_requests(*args, **kwargs):
|
||||||
|
url = args[0]
|
||||||
|
method = kwargs["method"]
|
||||||
|
future_response = response_dict.get(url, None)
|
||||||
|
return get_response(future_response, method, get_id_user_count)
|
||||||
|
|
||||||
|
return _mocked_requests
|
||||||
|
|
||||||
|
|
||||||
|
def create_wrapper(text_as_string):
|
||||||
|
"""Allow to mock many times a call to one address.
|
||||||
|
Without this function, the StringIO is empty for the second call.
|
||||||
|
"""
|
||||||
|
|
||||||
|
def _create_wrapper():
|
||||||
|
return StringIO(text_as_string)
|
||||||
|
|
||||||
|
return _create_wrapper
|
||||||
|
|
||||||
|
|
||||||
|
def mock_good_connection():
|
||||||
|
token_response = {
|
||||||
|
"http://keycloak.url/auth/realms/master/protocol/openid-connect/token": create_wrapper(
|
||||||
|
'{"access_token": "alongtoken"}'
|
||||||
|
),
|
||||||
|
}
|
||||||
|
return patch(
|
||||||
|
"ansible_collections.community.general.plugins.module_utils.identity.keycloak.keycloak.open_url",
|
||||||
|
side_effect=build_mocked_request(count(), token_response),
|
||||||
|
autospec=True,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class TestKeycloakRealmRole(ModuleTestCase):
|
||||||
|
def setUp(self):
|
||||||
|
super(TestKeycloakRealmRole, self).setUp()
|
||||||
|
self.module = keycloak_realm_keys_metadata_info
|
||||||
|
|
||||||
|
def test_get_public_info(self):
|
||||||
|
"""Get realm public info"""
|
||||||
|
|
||||||
|
module_args = {
|
||||||
|
"auth_keycloak_url": "http://keycloak.url/auth",
|
||||||
|
"token": "{{ access_token }}",
|
||||||
|
"realm": "my-realm",
|
||||||
|
}
|
||||||
|
return_value = [
|
||||||
|
{
|
||||||
|
"active": {
|
||||||
|
"AES": "aba3778d-d69d-4240-a578-a30720dbd3ca",
|
||||||
|
"HS512": "6e4fe29d-a7e4-472b-a348-298d8ae45dcc",
|
||||||
|
"RS256": "jaON84xLYg2fsKiV4p3wZag_S8MTjAp-dkpb1kRqzEs",
|
||||||
|
"RSA-OAEP": "3i_GikMqBBxtqhWXwpucxMvwl55jYlhiNIvxDTgNAEk",
|
||||||
|
},
|
||||||
|
"keys": [
|
||||||
|
{
|
||||||
|
"algorithm": "HS512",
|
||||||
|
"kid": "6e4fe29d-a7e4-472b-a348-298d8ae45dcc",
|
||||||
|
"providerId": "225dbe0b-3fc4-4e0d-8479-90a0cbc8adf7",
|
||||||
|
"providerPriority": 100,
|
||||||
|
"status": "ACTIVE",
|
||||||
|
"type": "OCT",
|
||||||
|
"use": "SIG",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"algorithm": "RS256",
|
||||||
|
"certificate": "MIIC…",
|
||||||
|
"kid": "jaON84xLYg2fsKiV4p3wZag_S8MTjAp-dkpb1kRqzEs",
|
||||||
|
"providerId": "98c1ebeb-c690-4c5c-8b32-81bebe264cda",
|
||||||
|
"providerPriority": 100,
|
||||||
|
"publicKey": "MIIB…",
|
||||||
|
"status": "ACTIVE",
|
||||||
|
"type": "RSA",
|
||||||
|
"use": "SIG",
|
||||||
|
"validTo": 2034748624000,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"algorithm": "AES",
|
||||||
|
"kid": "aba3778d-d69d-4240-a578-a30720dbd3ca",
|
||||||
|
"providerId": "99c70057-9b8d-4177-a83c-de2d081139e8",
|
||||||
|
"providerPriority": 100,
|
||||||
|
"status": "ACTIVE",
|
||||||
|
"type": "OCT",
|
||||||
|
"use": "ENC",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"algorithm": "RSA-OAEP",
|
||||||
|
"certificate": "MIIC…",
|
||||||
|
"kid": "3i_GikMqBBxtqhWXwpucxMvwl55jYlhiNIvxDTgNAEk",
|
||||||
|
"providerId": "ab3de3fb-a32d-4be8-8324-64aa48d14c36",
|
||||||
|
"providerPriority": 100,
|
||||||
|
"publicKey": "MIIB…",
|
||||||
|
"status": "ACTIVE",
|
||||||
|
"type": "RSA",
|
||||||
|
"use": "ENC",
|
||||||
|
"validTo": 2034748625000,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
|
set_module_args(module_args)
|
||||||
|
|
||||||
|
# Run the module
|
||||||
|
|
||||||
|
with mock_good_connection():
|
||||||
|
with patch_keycloak_api(side_effect=return_value) as (
|
||||||
|
mock_get_realm_keys_metadata_by_id
|
||||||
|
):
|
||||||
|
with self.assertRaises(AnsibleExitJson) as exec_info:
|
||||||
|
self.module.main()
|
||||||
|
|
||||||
|
result = exec_info.exception.args[0]
|
||||||
|
self.assertIs(result["changed"], False)
|
||||||
|
self.assertEqual(
|
||||||
|
result["msg"], "Get realm keys metadata successful for ID my-realm"
|
||||||
|
)
|
||||||
|
self.assertEqual(result["keys_metadata"], return_value[0])
|
||||||
|
|
||||||
|
self.assertEqual(len(mock_get_realm_keys_metadata_by_id.mock_calls), 1)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
unittest.main()
|
Loading…
Reference in a new issue