From 6899022a4e3e3beb3587fbdef593104e112d9652 Mon Sep 17 00:00:00 2001 From: Lucy Linder Date: Mon, 13 Nov 2023 12:56:00 +0100 Subject: [PATCH] feat: add KeycloakAdmin.get_idp() (#478) --- README.md | 5 ++++- src/keycloak/keycloak_admin.py | 17 +++++++++++++++++ tests/test_keycloak_admin.py | 12 ++++++++++++ 3 files changed, 33 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4c3d164..550d9d5 100644 --- a/README.md +++ b/README.md @@ -340,9 +340,12 @@ keycloak_admin.get_client_roles_of_client_scope(client_id=another_client_id, cli # Remove client roles assigned to client's scope keycloak_admin.delete_client_roles_of_client_scope(client_id=another_client_id, client_roles_owner_id=client_id, roles=client_roles) -# Get all ID Providers +# Get all IDP Providers idps = keycloak_admin.get_idps() +# Get a specific IDP Provider, using its alias +idp = keycloak_admin.get_idp("idp-alias") + # Create a new Realm keycloak_admin.create_realm(payload={"realm": "demo"}, skip_exists=False) diff --git a/src/keycloak/keycloak_admin.py b/src/keycloak/keycloak_admin.py index 2c31e29..adccddf 100644 --- a/src/keycloak/keycloak_admin.py +++ b/src/keycloak/keycloak_admin.py @@ -773,6 +773,23 @@ class KeycloakAdmin: data_raw = self.connection.raw_get(urls_patterns.URL_ADMIN_IDPS.format(**params_path)) return raise_error_from_response(data_raw, KeycloakGetError) + def get_idp(self, idp_alias): + """Get IDP provider. + + Get the representation of a specific IDP Provider. + + IdentityProviderRepresentation + https://www.keycloak.org/docs-api/18.0/rest-api/index.html#_identityproviderrepresentation + + :param: idp_alias: alias for IdP to get + :type idp_alias: str + :return: IdentityProviderRepresentation + :rtype: dict + """ + params_path = {"realm-name": self.connection.realm_name, "alias": idp_alias} + data_raw = self.connection.raw_get(urls_patterns.URL_ADMIN_IDP.format(**params_path)) + return raise_error_from_response(data_raw, KeycloakGetError) + def delete_idp(self, idp_alias): """Delete an ID Provider. diff --git a/tests/test_keycloak_admin.py b/tests/test_keycloak_admin.py index 5c16f77..104fc83 100644 --- a/tests/test_keycloak_admin.py +++ b/tests/test_keycloak_admin.py @@ -395,6 +395,18 @@ def test_idps(admin: KeycloakAdmin, realm: str): assert len(idps) == 1 assert "github" == idps[0]["alias"] + # Test get idp + idp = admin.get_idp("github") + assert "github" == idp["alias"] + assert idp.get("config") + assert "test" == idp["config"]["clientId"] + assert "**********" == idp["config"]["clientSecret"] + + # Test get idp fail + with pytest.raises(KeycloakGetError) as err: + admin.get_idp("does-not-exist") + assert err.match('404: b\'{"error":"HTTP 404 Not Found"}\'') + # Test IdP update res = admin.update_idp(idp_alias="github", payload=idps[0])