You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1481 lines
57 KiB

7 years ago
6 years ago
6 years ago
6 years ago
7 years ago
6 years ago
4 years ago
4 years ago
7 years ago
7 years ago
7 years ago
6 years ago
6 years ago
6 years ago
6 years ago
7 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
4 years ago
7 years ago
  1. # -*- coding: utf-8 -*-
  2. #
  3. # The MIT License (MIT)
  4. #
  5. # Copyright (C) 2017 Marcos Pereira <marcospereira.mpj@gmail.com>
  6. #
  7. # Permission is hereby granted, free of charge, to any person obtaining a copy of
  8. # this software and associated documentation files (the "Software"), to deal in
  9. # the Software without restriction, including without limitation the rights to
  10. # use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
  11. # the Software, and to permit persons to whom the Software is furnished to do so,
  12. # subject to the following conditions:
  13. #
  14. # The above copyright notice and this permission notice shall be included in all
  15. # copies or substantial portions of the Software.
  16. #
  17. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  18. # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
  19. # FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
  20. # COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
  21. # IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  22. # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  23. # Unless otherwise stated in the comments, "id", in e.g. user_id, refers to the
  24. # internal Keycloak server ID, usually a uuid string
  25. import json
  26. from builtins import isinstance
  27. from typing import List, Iterable
  28. from keycloak.urls_patterns import URL_ADMIN_GROUPS_REALM_ROLES, \
  29. URL_ADMIN_GET_GROUPS_REALM_ROLES, URL_ADMIN_REALM_ROLES_ROLE_BY_NAME, URL_ADMIN_GROUPS_CLIENT_ROLES
  30. from .connection import ConnectionManager
  31. from .exceptions import raise_error_from_response, KeycloakGetError
  32. from .keycloak_openid import KeycloakOpenID
  33. from .urls_patterns import URL_ADMIN_SERVER_INFO, URL_ADMIN_CLIENT_AUTHZ_RESOURCES, URL_ADMIN_CLIENT_ROLES, \
  34. URL_ADMIN_GET_SESSIONS, URL_ADMIN_RESET_PASSWORD, URL_ADMIN_SEND_UPDATE_ACCOUNT, \
  35. URL_ADMIN_USER_CLIENT_ROLES_COMPOSITE, URL_ADMIN_USER_GROUP, URL_ADMIN_REALM_ROLES, URL_ADMIN_GROUP_CHILD, \
  36. URL_ADMIN_USER_CONSENTS, URL_ADMIN_SEND_VERIFY_EMAIL, URL_ADMIN_CLIENT, URL_ADMIN_USER, URL_ADMIN_CLIENT_ROLE, \
  37. URL_ADMIN_USER_GROUPS, URL_ADMIN_CLIENTS, URL_ADMIN_FLOWS_EXECUTIONS, URL_ADMIN_GROUPS, URL_ADMIN_USER_CLIENT_ROLES, \
  38. URL_ADMIN_REALMS, URL_ADMIN_USERS_COUNT, URL_ADMIN_FLOWS, URL_ADMIN_GROUP, URL_ADMIN_CLIENT_AUTHZ_SETTINGS, \
  39. URL_ADMIN_GROUP_MEMBERS, URL_ADMIN_USER_STORAGE, URL_ADMIN_GROUP_PERMISSIONS, URL_ADMIN_IDPS, \
  40. URL_ADMIN_USER_CLIENT_ROLES_AVAILABLE, URL_ADMIN_USERS, URL_ADMIN_CLIENT_SCOPES, \
  41. URL_ADMIN_CLIENT_SCOPES_ADD_MAPPER, URL_ADMIN_CLIENT_SCOPE, URL_ADMIN_CLIENT_SECRETS, \
  42. URL_ADMIN_USER_REALM_ROLES, URL_ADMIN_REALM, URL_ADMIN_COMPONENTS, URL_ADMIN_COMPONENT, URL_ADMIN_KEYS, \
  43. URL_ADMIN_USER_FEDERATED_IDENTITY, URL_ADMIN_USER_FEDERATED_IDENTITIES
  44. class KeycloakAdmin:
  45. PAGE_SIZE = 100
  46. _server_url = None
  47. _username = None
  48. _password = None
  49. _realm_name = None
  50. _client_id = None
  51. _verify = None
  52. _client_secret_key = None
  53. _auto_refresh_token = None
  54. _connection = None
  55. _token = None
  56. _custom_headers = None
  57. _user_realm_name = None
  58. def __init__(self, server_url, username=None, password=None, realm_name='master', client_id='admin-cli', verify=True,
  59. client_secret_key=None, custom_headers=None, user_realm_name=None, auto_refresh_token=None):
  60. """
  61. :param server_url: Keycloak server url
  62. :param username: admin username
  63. :param password: admin password
  64. :param realm_name: realm name
  65. :param client_id: client id
  66. :param verify: True if want check connection SSL
  67. :param client_secret_key: client secret key
  68. :param custom_headers: dict of custom header to pass to each HTML request
  69. :param user_realm_name: The realm name of the user, if different from realm_name
  70. :param auto_refresh_token: list of methods that allows automatic token refresh. ex: ['get', 'put', 'post', 'delete']
  71. """
  72. self.server_url = server_url
  73. self.username = username
  74. self.password = password
  75. self.realm_name = realm_name
  76. self.client_id = client_id
  77. self.verify = verify
  78. self.client_secret_key = client_secret_key
  79. self.auto_refresh_token = auto_refresh_token or []
  80. self.user_realm_name = user_realm_name
  81. self.custom_headers = custom_headers
  82. # Get token Admin
  83. self.get_token()
  84. @property
  85. def server_url(self):
  86. return self._server_url
  87. @server_url.setter
  88. def server_url(self, value):
  89. self._server_url = value
  90. @property
  91. def realm_name(self):
  92. return self._realm_name
  93. @realm_name.setter
  94. def realm_name(self, value):
  95. self._realm_name = value
  96. @property
  97. def connection(self):
  98. return self._connection
  99. @connection.setter
  100. def connection(self, value):
  101. self._connection = value
  102. @property
  103. def client_id(self):
  104. return self._client_id
  105. @client_id.setter
  106. def client_id(self, value):
  107. self._client_id = value
  108. @property
  109. def client_secret_key(self):
  110. return self._client_secret_key
  111. @client_secret_key.setter
  112. def client_secret_key(self, value):
  113. self._client_secret_key = value
  114. @property
  115. def verify(self):
  116. return self._verify
  117. @verify.setter
  118. def verify(self, value):
  119. self._verify = value
  120. @property
  121. def username(self):
  122. return self._username
  123. @username.setter
  124. def username(self, value):
  125. self._username = value
  126. @property
  127. def password(self):
  128. return self._password
  129. @password.setter
  130. def password(self, value):
  131. self._password = value
  132. @property
  133. def token(self):
  134. return self._token
  135. @token.setter
  136. def token(self, value):
  137. self._token = value
  138. @property
  139. def auto_refresh_token(self):
  140. return self._auto_refresh_token
  141. @property
  142. def user_realm_name(self):
  143. return self._user_realm_name
  144. @user_realm_name.setter
  145. def user_realm_name(self, value):
  146. self._user_realm_name = value
  147. @property
  148. def custom_headers(self):
  149. return self._custom_headers
  150. @custom_headers.setter
  151. def custom_headers(self, value):
  152. self._custom_headers = value
  153. @auto_refresh_token.setter
  154. def auto_refresh_token(self, value):
  155. allowed_methods = {'get', 'post', 'put', 'delete'}
  156. if not isinstance(value, Iterable):
  157. raise TypeError('Expected a list of strings among {allowed}'.format(allowed=allowed_methods))
  158. if not all(method in allowed_methods for method in value):
  159. raise TypeError('Unexpected method in auto_refresh_token, accepted methods are {allowed}'.format(allowed=allowed_methods))
  160. self._auto_refresh_token = value
  161. def __fetch_all(self, url, query=None):
  162. '''Wrapper function to paginate GET requests
  163. :param url: The url on which the query is executed
  164. :param query: Existing query parameters (optional)
  165. :return: Combined results of paginated queries
  166. '''
  167. results = []
  168. # initalize query if it was called with None
  169. if not query:
  170. query = {}
  171. page = 0
  172. query['max'] = self.PAGE_SIZE
  173. # fetch until we can
  174. while True:
  175. query['first'] = page*self.PAGE_SIZE
  176. partial_results = raise_error_from_response(
  177. self.raw_get(url, **query),
  178. KeycloakGetError)
  179. if not partial_results:
  180. break
  181. results.extend(partial_results)
  182. page += 1
  183. return results
  184. def import_realm(self, payload):
  185. """
  186. Import a new realm from a RealmRepresentation. Realm name must be unique.
  187. RealmRepresentation
  188. https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_realmrepresentation
  189. :param payload: RealmRepresentation
  190. :return: RealmRepresentation
  191. """
  192. data_raw = self.raw_post(URL_ADMIN_REALMS,
  193. data=json.dumps(payload))
  194. return raise_error_from_response(data_raw, KeycloakGetError, expected_codes=[201])
  195. def get_realms(self):
  196. """
  197. Lists all realms in Keycloak deployment
  198. :return: realms list
  199. """
  200. data_raw = self.raw_get(URL_ADMIN_REALMS)
  201. return raise_error_from_response(data_raw, KeycloakGetError)
  202. def create_realm(self, payload, skip_exists=False):
  203. """
  204. Create a realm
  205. RealmRepresentation:
  206. https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_realmrepresentation
  207. :param payload: RealmRepresentation
  208. :param skip_exists: Skip if Realm already exist.
  209. :return: Keycloak server response (RealmRepresentation)
  210. """
  211. data_raw = self.raw_post(URL_ADMIN_REALMS,
  212. data=json.dumps(payload))
  213. return raise_error_from_response(data_raw, KeycloakGetError, expected_codes=[201], skip_exists=skip_exists)
  214. def update_realm(self, realm_name, payload):
  215. """
  216. Update a realm. This wil only update top level attributes and will ignore any user,
  217. role, or client information in the payload.
  218. RealmRepresentation:
  219. https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_realmrepresentation
  220. :param realm_name: Realm name (not the realm id)
  221. :param payload: RealmRepresentation
  222. :return: Http response
  223. """
  224. params_path = {"realm-name": realm_name}
  225. data_raw = self.raw_put(URL_ADMIN_REALM.format(**params_path),
  226. data=json.dumps(payload))
  227. return raise_error_from_response(data_raw, KeycloakGetError, expected_codes=[204])
  228. def delete_realm(self, realm_name):
  229. """
  230. Delete a realm
  231. :param realm_name: Realm name (not the realm id)
  232. :return: Http response
  233. """
  234. params_path = {"realm-name": realm_name}
  235. data_raw = self.raw_delete(URL_ADMIN_REALM.format(**params_path))
  236. return raise_error_from_response(data_raw, KeycloakGetError, expected_codes=[204])
  237. def get_users(self, query=None):
  238. """
  239. Return a list of users, filtered according to query parameters
  240. UserRepresentation
  241. https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_userrepresentation
  242. :param query: Query parameters (optional)
  243. :return: users list
  244. """
  245. params_path = {"realm-name": self.realm_name}
  246. return self.__fetch_all(URL_ADMIN_USERS.format(**params_path), query)
  247. def get_idps(self):
  248. """
  249. Returns a list of ID Providers,
  250. IdentityProviderRepresentation
  251. https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_identityproviderrepresentation
  252. :return: array IdentityProviderRepresentation
  253. """
  254. params_path = {"realm-name": self.realm_name}
  255. data_raw = self.raw_get(URL_ADMIN_IDPS.format(**params_path))
  256. return raise_error_from_response(data_raw, KeycloakGetError)
  257. def create_user(self, payload):
  258. """
  259. Create a new user. Username must be unique
  260. UserRepresentation
  261. https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_userrepresentation
  262. :param payload: UserRepresentation
  263. :return: UserRepresentation
  264. """
  265. params_path = {"realm-name": self.realm_name}
  266. exists = self.get_user_id(username=payload['username'])
  267. if exists is not None:
  268. return str(exists)
  269. data_raw = self.raw_post(URL_ADMIN_USERS.format(**params_path),
  270. data=json.dumps(payload))
  271. raise_error_from_response(data_raw, KeycloakGetError, expected_codes=[201])
  272. _last_slash_idx = data_raw.headers['Location'].rindex('/')
  273. return data_raw.headers['Location'][_last_slash_idx + 1:]
  274. def users_count(self):
  275. """
  276. User counter
  277. :return: counter
  278. """
  279. params_path = {"realm-name": self.realm_name}
  280. data_raw = self.raw_get(URL_ADMIN_USERS_COUNT.format(**params_path))
  281. return raise_error_from_response(data_raw, KeycloakGetError)
  282. def get_user_id(self, username):
  283. """
  284. Get internal keycloak user id from username
  285. This is required for further actions against this user.
  286. UserRepresentation
  287. https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_userrepresentation
  288. :param username: id in UserRepresentation
  289. :return: user_id
  290. """
  291. users = self.get_users(query={"search": username})
  292. return next((user["id"] for user in users if user["username"] == username), None)
  293. def get_user(self, user_id):
  294. """
  295. Get representation of the user
  296. :param user_id: User id
  297. UserRepresentation
  298. https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_userrepresentation
  299. :return: UserRepresentation
  300. """
  301. params_path = {"realm-name": self.realm_name, "id": user_id}
  302. data_raw = self.raw_get(URL_ADMIN_USER.format(**params_path))
  303. return raise_error_from_response(data_raw, KeycloakGetError)
  304. def get_user_groups(self, user_id):
  305. """
  306. Returns a list of groups of which the user is a member
  307. :param user_id: User id
  308. :return: user groups list
  309. """
  310. params_path = {"realm-name": self.realm_name, "id": user_id}
  311. data_raw = self.raw_get(URL_ADMIN_USER_GROUPS.format(**params_path))
  312. return raise_error_from_response(data_raw, KeycloakGetError)
  313. def update_user(self, user_id, payload):
  314. """
  315. Update the user
  316. :param user_id: User id
  317. :param payload: UserRepresentation
  318. :return: Http response
  319. """
  320. params_path = {"realm-name": self.realm_name, "id": user_id}
  321. data_raw = self.raw_put(URL_ADMIN_USER.format(**params_path),
  322. data=json.dumps(payload))
  323. return raise_error_from_response(data_raw, KeycloakGetError, expected_codes=[204])
  324. def delete_user(self, user_id):
  325. """
  326. Delete the user
  327. :param user_id: User id
  328. :return: Http response
  329. """
  330. params_path = {"realm-name": self.realm_name, "id": user_id}
  331. data_raw = self.raw_delete(URL_ADMIN_USER.format(**params_path))
  332. return raise_error_from_response(data_raw, KeycloakGetError, expected_codes=[204])
  333. def set_user_password(self, user_id, password, temporary=True):
  334. """
  335. Set up a password for the user. If temporary is True, the user will have to reset
  336. the temporary password next time they log in.
  337. https://www.keycloak.org/docs-api/8.0/rest-api/#_users_resource
  338. https://www.keycloak.org/docs-api/8.0/rest-api/#_credentialrepresentation
  339. :param user_id: User id
  340. :param password: New password
  341. :param temporary: True if password is temporary
  342. :return:
  343. """
  344. payload = {"type": "password", "temporary": temporary, "value": password}
  345. params_path = {"realm-name": self.realm_name, "id": user_id}
  346. data_raw = self.raw_put(URL_ADMIN_RESET_PASSWORD.format(**params_path),
  347. data=json.dumps(payload))
  348. return raise_error_from_response(data_raw, KeycloakGetError, expected_codes=[204])
  349. def consents_user(self, user_id):
  350. """
  351. Get consents granted by the user
  352. :param user_id: User id
  353. :return: consents
  354. """
  355. params_path = {"realm-name": self.realm_name, "id": user_id}
  356. data_raw = self.raw_get(URL_ADMIN_USER_CONSENTS.format(**params_path))
  357. return raise_error_from_response(data_raw, KeycloakGetError)
  358. def get_user_social_logins(self, user_id):
  359. """
  360. Returns a list of federated identities/social logins of which the user has been associated with
  361. :param user_id: User id
  362. :return: federated identities list
  363. """
  364. params_path = {"realm-name": self.realm_name, "id": user_id}
  365. data_raw = self.raw_get(URL_ADMIN_USER_FEDERATED_IDENTITIES.format(**params_path))
  366. return raise_error_from_response(data_raw, KeycloakGetError)
  367. def add_user_social_login(self, user_id, provider_id, provider_userid, provider_username):
  368. """
  369. Add a federated identity / social login provider to the user
  370. :param user_id: User id
  371. :param provider_id: Social login provider id
  372. :param provider_userid: userid specified by the provider
  373. :param provider_username: username specified by the provider
  374. :return:
  375. """
  376. payload = {"identityProvider": provider_id, "userId": provider_userid, "userName": provider_username}
  377. params_path = {"realm-name": self.realm_name, "id": user_id, "provider": provider_id}
  378. data_raw = self.raw_post(URL_ADMIN_USER_FEDERATED_IDENTITY.format(**params_path), data=json.dumps(payload))
  379. def send_update_account(self, user_id, payload, client_id=None, lifespan=None, redirect_uri=None):
  380. """
  381. Send an update account email to the user. An email contains a
  382. link the user can click to perform a set of required actions.
  383. :param user_id: User id
  384. :param payload: A list of actions for the user to complete
  385. :param client_id: Client id (optional)
  386. :param lifespan: Number of seconds after which the generated token expires (optional)
  387. :param redirect_uri: The redirect uri (optional)
  388. :return:
  389. """
  390. params_path = {"realm-name": self.realm_name, "id": user_id}
  391. params_query = {"client_id": client_id, "lifespan": lifespan, "redirect_uri": redirect_uri}
  392. data_raw = self.raw_put(URL_ADMIN_SEND_UPDATE_ACCOUNT.format(**params_path),
  393. data=payload, **params_query)
  394. return raise_error_from_response(data_raw, KeycloakGetError)
  395. def send_verify_email(self, user_id, client_id=None, redirect_uri=None):
  396. """
  397. Send a update account email to the user An email contains a
  398. link the user can click to perform a set of required actions.
  399. :param user_id: User id
  400. :param client_id: Client id (optional)
  401. :param redirect_uri: Redirect uri (optional)
  402. :return:
  403. """
  404. params_path = {"realm-name": self.realm_name, "id": user_id}
  405. params_query = {"client_id": client_id, "redirect_uri": redirect_uri}
  406. data_raw = self.raw_put(URL_ADMIN_SEND_VERIFY_EMAIL.format(**params_path),
  407. data={}, **params_query)
  408. return raise_error_from_response(data_raw, KeycloakGetError)
  409. def get_sessions(self, user_id):
  410. """
  411. Get sessions associated with the user
  412. :param user_id: id of user
  413. UserSessionRepresentation
  414. https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_usersessionrepresentation
  415. :return: UserSessionRepresentation
  416. """
  417. params_path = {"realm-name": self.realm_name, "id": user_id}
  418. data_raw = self.raw_get(URL_ADMIN_GET_SESSIONS.format(**params_path))
  419. return raise_error_from_response(data_raw, KeycloakGetError)
  420. def get_server_info(self):
  421. """
  422. Get themes, social providers, auth providers, and event listeners available on this server
  423. ServerInfoRepresentation
  424. https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_serverinforepresentation
  425. :return: ServerInfoRepresentation
  426. """
  427. data_raw = self.raw_get(URL_ADMIN_SERVER_INFO)
  428. return raise_error_from_response(data_raw, KeycloakGetError)
  429. def get_groups(self):
  430. """
  431. Returns a list of groups belonging to the realm
  432. GroupRepresentation
  433. https://www.keycloak.org/docs-api/8.0/rest-api/#_grouprepresentation
  434. :return: array GroupRepresentation
  435. """
  436. params_path = {"realm-name": self.realm_name}
  437. return self.__fetch_all(URL_ADMIN_GROUPS.format(**params_path))
  438. def get_group(self, group_id):
  439. """
  440. Get group by id. Returns full group details
  441. GroupRepresentation
  442. https://www.keycloak.org/docs-api/8.0/rest-api/#_grouprepresentation
  443. :param group_id: The group id
  444. :return: Keycloak server response (GroupRepresentation)
  445. """
  446. params_path = {"realm-name": self.realm_name, "id": group_id}
  447. data_raw = self.raw_get(URL_ADMIN_GROUP.format(**params_path))
  448. return raise_error_from_response(data_raw, KeycloakGetError)
  449. def get_subgroups(self, group, path):
  450. """
  451. Utility function to iterate through nested group structures
  452. GroupRepresentation
  453. https://www.keycloak.org/docs-api/8.0/rest-api/#_grouprepresentation
  454. :param name: group (GroupRepresentation)
  455. :param path: group path (string)
  456. :return: Keycloak server response (GroupRepresentation)
  457. """
  458. for subgroup in group["subGroups"]:
  459. if subgroup['path'] == path:
  460. return subgroup
  461. elif subgroup["subGroups"]:
  462. for subgroup in group["subGroups"]:
  463. result = self.get_subgroups(subgroup, path)
  464. if result:
  465. return result
  466. # went through the tree without hits
  467. return None
  468. def get_group_members(self, group_id, **query):
  469. """
  470. Get members by group id. Returns group members
  471. GroupRepresentation
  472. https://www.keycloak.org/docs-api/8.0/rest-api/#_userrepresentation
  473. :param group_id: The group id
  474. :param query: Additional query parameters (see https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_getmembers)
  475. :return: Keycloak server response (UserRepresentation)
  476. """
  477. params_path = {"realm-name": self.realm_name, "id": group_id}
  478. return self.__fetch_all(URL_ADMIN_GROUP_MEMBERS.format(**params_path), query)
  479. def get_group_by_path(self, path, search_in_subgroups=False):
  480. """
  481. Get group id based on name or path.
  482. A straight name or path match with a top-level group will return first.
  483. Subgroups are traversed, the first to match path (or name with path) is returned.
  484. GroupRepresentation
  485. https://www.keycloak.org/docs-api/8.0/rest-api/#_grouprepresentation
  486. :param path: group path
  487. :param search_in_subgroups: True if want search in the subgroups
  488. :return: Keycloak server response (GroupRepresentation)
  489. """
  490. groups = self.get_groups()
  491. # TODO: Review this code is necessary
  492. for group in groups:
  493. if group['path'] == path:
  494. return group
  495. elif search_in_subgroups and group["subGroups"]:
  496. for group in group["subGroups"]:
  497. if group['path'] == path:
  498. return group
  499. res = self.get_subgroups(group, path)
  500. if res != None:
  501. return res
  502. return None
  503. def create_group(self, payload, parent=None, skip_exists=False):
  504. """
  505. Creates a group in the Realm
  506. :param payload: GroupRepresentation
  507. :param parent: parent group's id. Required to create a sub-group.
  508. :param skip_exists: If true then do not raise an error if it already exists
  509. GroupRepresentation
  510. https://www.keycloak.org/docs-api/8.0/rest-api/#_grouprepresentation
  511. :return: Http response
  512. """
  513. if parent is None:
  514. params_path = {"realm-name": self.realm_name}
  515. data_raw = self.raw_post(URL_ADMIN_GROUPS.format(**params_path),
  516. data=json.dumps(payload))
  517. else:
  518. params_path = {"realm-name": self.realm_name, "id": parent, }
  519. data_raw = self.raw_post(URL_ADMIN_GROUP_CHILD.format(**params_path),
  520. data=json.dumps(payload))
  521. return raise_error_from_response(data_raw, KeycloakGetError, expected_codes=[201], skip_exists=skip_exists)
  522. def update_group(self, group_id, payload):
  523. """
  524. Update group, ignores subgroups.
  525. :param group_id: id of group
  526. :param payload: GroupRepresentation with updated information.
  527. GroupRepresentation
  528. https://www.keycloak.org/docs-api/8.0/rest-api/#_grouprepresentation
  529. :return: Http response
  530. """
  531. params_path = {"realm-name": self.realm_name, "id": group_id}
  532. data_raw = self.raw_put(URL_ADMIN_GROUP.format(**params_path),
  533. data=json.dumps(payload))
  534. return raise_error_from_response(data_raw, KeycloakGetError, expected_codes=[204])
  535. def group_set_permissions(self, group_id, enabled=True):
  536. """
  537. Enable/Disable permissions for a group. Cannot delete group if disabled
  538. :param group_id: id of group
  539. :param enabled: boolean
  540. :return: Keycloak server response
  541. """
  542. params_path = {"realm-name": self.realm_name, "id": group_id}
  543. data_raw = self.raw_put(URL_ADMIN_GROUP_PERMISSIONS.format(**params_path),
  544. data=json.dumps({"enabled": enabled}))
  545. return raise_error_from_response(data_raw, KeycloakGetError)
  546. def group_user_add(self, user_id, group_id):
  547. """
  548. Add user to group (user_id and group_id)
  549. :param user_id: id of user
  550. :param group_id: id of group to add to
  551. :return: Keycloak server response
  552. """
  553. params_path = {"realm-name": self.realm_name, "id": user_id, "group-id": group_id}
  554. data_raw = self.raw_put(URL_ADMIN_USER_GROUP.format(**params_path), data=None)
  555. return raise_error_from_response(data_raw, KeycloakGetError, expected_codes=[204])
  556. def group_user_remove(self, user_id, group_id):
  557. """
  558. Remove user from group (user_id and group_id)
  559. :param user_id: id of user
  560. :param group_id: id of group to remove from
  561. :return: Keycloak server response
  562. """
  563. params_path = {"realm-name": self.realm_name, "id": user_id, "group-id": group_id}
  564. data_raw = self.raw_delete(URL_ADMIN_USER_GROUP.format(**params_path))
  565. return raise_error_from_response(data_raw, KeycloakGetError, expected_codes=[204])
  566. def delete_group(self, group_id):
  567. """
  568. Deletes a group in the Realm
  569. :param group_id: id of group to delete
  570. :return: Keycloak server response
  571. """
  572. params_path = {"realm-name": self.realm_name, "id": group_id}
  573. data_raw = self.raw_delete(URL_ADMIN_GROUP.format(**params_path))
  574. return raise_error_from_response(data_raw, KeycloakGetError, expected_codes=[204])
  575. def get_clients(self):
  576. """
  577. Returns a list of clients belonging to the realm
  578. ClientRepresentation
  579. https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_clientrepresentation
  580. :return: Keycloak server response (ClientRepresentation)
  581. """
  582. params_path = {"realm-name": self.realm_name}
  583. data_raw = self.raw_get(URL_ADMIN_CLIENTS.format(**params_path))
  584. return raise_error_from_response(data_raw, KeycloakGetError)
  585. def get_client(self, client_id):
  586. """
  587. Get representation of the client
  588. ClientRepresentation
  589. https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_clientrepresentation
  590. :param client_id: id of client (not client-id)
  591. :return: Keycloak server response (ClientRepresentation)
  592. """
  593. params_path = {"realm-name": self.realm_name, "id": client_id}
  594. data_raw = self.raw_get(URL_ADMIN_CLIENT.format(**params_path))
  595. return raise_error_from_response(data_raw, KeycloakGetError)
  596. def get_client_id(self, client_name):
  597. """
  598. Get internal keycloak client id from client-id.
  599. This is required for further actions against this client.
  600. :param client_name: name in ClientRepresentation
  601. https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_clientrepresentation
  602. :return: client_id (uuid as string)
  603. """
  604. clients = self.get_clients()
  605. for client in clients:
  606. if client_name == client.get('name') or client_name == client.get('clientId'):
  607. return client["id"]
  608. return None
  609. def get_client_authz_settings(self, client_id):
  610. """
  611. Get authorization json from client.
  612. :param client_id: id in ClientRepresentation
  613. https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_clientrepresentation
  614. :return: Keycloak server response
  615. """
  616. params_path = {"realm-name": self.realm_name, "id": client_id}
  617. data_raw = self.raw_get(URL_ADMIN_CLIENT_AUTHZ_SETTINGS.format(**params_path))
  618. return data_raw
  619. def get_client_authz_resources(self, client_id):
  620. """
  621. Get resources from client.
  622. :param client_id: id in ClientRepresentation
  623. https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_clientrepresentation
  624. :return: Keycloak server response
  625. """
  626. params_path = {"realm-name": self.realm_name, "id": client_id}
  627. data_raw = self.raw_get(URL_ADMIN_CLIENT_AUTHZ_RESOURCES.format(**params_path))
  628. return data_raw
  629. def create_client(self, payload, skip_exists=False):
  630. """
  631. Create a client
  632. ClientRepresentation: https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_clientrepresentation
  633. :param skip_exists: If true then do not raise an error if client already exists
  634. :param payload: ClientRepresentation
  635. :return: Keycloak server response (UserRepresentation)
  636. """
  637. params_path = {"realm-name": self.realm_name}
  638. data_raw = self.raw_post(URL_ADMIN_CLIENTS.format(**params_path),
  639. data=json.dumps(payload))
  640. return raise_error_from_response(data_raw, KeycloakGetError, expected_codes=[201], skip_exists=skip_exists)
  641. def update_client(self, client_id, payload):
  642. """
  643. Update a client
  644. :param client_id: Client id
  645. :param payload: ClientRepresentation
  646. :return: Http response
  647. """
  648. params_path = {"realm-name": self.realm_name, "id": client_id}
  649. data_raw = self.raw_put(URL_ADMIN_CLIENT.format(**params_path),
  650. data=json.dumps(payload))
  651. return raise_error_from_response(data_raw, KeycloakGetError, expected_codes=[204])
  652. def delete_client(self, client_id):
  653. """
  654. Get representation of the client
  655. ClientRepresentation
  656. https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_clientrepresentation
  657. :param client_id: keycloak client id (not oauth client-id)
  658. :return: Keycloak server response (ClientRepresentation)
  659. """
  660. params_path = {"realm-name": self.realm_name, "id": client_id}
  661. data_raw = self.raw_delete(URL_ADMIN_CLIENT.format(**params_path))
  662. return raise_error_from_response(data_raw, KeycloakGetError, expected_codes=[204])
  663. def get_realm_roles(self):
  664. """
  665. Get all roles for the realm or client
  666. RoleRepresentation
  667. https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_rolerepresentation
  668. :return: Keycloak server response (RoleRepresentation)
  669. """
  670. params_path = {"realm-name": self.realm_name}
  671. data_raw = self.raw_get(URL_ADMIN_REALM_ROLES.format(**params_path))
  672. return raise_error_from_response(data_raw, KeycloakGetError)
  673. def get_client_roles(self, client_id):
  674. """
  675. Get all roles for the client
  676. :param client_id: id of client (not client-id)
  677. RoleRepresentation
  678. https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_rolerepresentation
  679. :return: Keycloak server response (RoleRepresentation)
  680. """
  681. params_path = {"realm-name": self.realm_name, "id": client_id}
  682. data_raw = self.raw_get(URL_ADMIN_CLIENT_ROLES.format(**params_path))
  683. return raise_error_from_response(data_raw, KeycloakGetError)
  684. def get_client_role(self, client_id, role_name):
  685. """
  686. Get client role id by name
  687. This is required for further actions with this role.
  688. :param client_id: id of client (not client-id)
  689. :param role_name: roles name (not id!)
  690. RoleRepresentation
  691. https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_rolerepresentation
  692. :return: role_id
  693. """
  694. params_path = {"realm-name": self.realm_name, "id": client_id, "role-name": role_name}
  695. data_raw = self.raw_get(URL_ADMIN_CLIENT_ROLE.format(**params_path))
  696. return raise_error_from_response(data_raw, KeycloakGetError)
  697. def get_client_role_id(self, client_id, role_name):
  698. """
  699. Warning: Deprecated
  700. Get client role id by name
  701. This is required for further actions with this role.
  702. :param client_id: id of client (not client-id)
  703. :param role_name: roles name (not id!)
  704. RoleRepresentation
  705. https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_rolerepresentation
  706. :return: role_id
  707. """
  708. role = self.get_client_role(client_id, role_name)
  709. return role.get("id")
  710. def create_client_role(self, client_role_id, payload, skip_exists=False):
  711. """
  712. Create a client role
  713. RoleRepresentation
  714. https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_rolerepresentation
  715. :param client_role_id: id of client (not client-id)
  716. :param payload: RoleRepresentation
  717. :param skip_exists: If true then do not raise an error if client role already exists
  718. :return: Keycloak server response (RoleRepresentation)
  719. """
  720. params_path = {"realm-name": self.realm_name, "id": client_role_id}
  721. data_raw = self.raw_post(URL_ADMIN_CLIENT_ROLES.format(**params_path),
  722. data=json.dumps(payload))
  723. return raise_error_from_response(data_raw, KeycloakGetError, expected_codes=[201], skip_exists=skip_exists)
  724. def delete_client_role(self, client_role_id, role_name):
  725. """
  726. Delete a client role
  727. RoleRepresentation
  728. https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_rolerepresentation
  729. :param client_role_id: id of client (not client-id)
  730. :param role_name: roles name (not id!)
  731. """
  732. params_path = {"realm-name": self.realm_name, "id": client_role_id, "role-name": role_name}
  733. data_raw = self.raw_delete(URL_ADMIN_CLIENT_ROLE.format(**params_path))
  734. return raise_error_from_response(data_raw, KeycloakGetError, expected_codes=[204])
  735. def assign_client_role(self, user_id, client_id, roles):
  736. """
  737. Assign a client role to a user
  738. :param user_id: id of user
  739. :param client_id: id of client (not client-id)
  740. :param roles: roles list or role (use RoleRepresentation)
  741. :return Keycloak server response
  742. """
  743. payload = roles if isinstance(roles, list) else [roles]
  744. params_path = {"realm-name": self.realm_name, "id": user_id, "client-id": client_id}
  745. data_raw = self.raw_post(URL_ADMIN_USER_CLIENT_ROLES.format(**params_path),
  746. data=json.dumps(payload))
  747. return raise_error_from_response(data_raw, KeycloakGetError, expected_codes=[204])
  748. def create_realm_role(self, payload, skip_exists=False):
  749. """
  750. Create a new role for the realm or client
  751. :param payload: The role (use RoleRepresentation)
  752. :param skip_exists: If true then do not raise an error if realm role already exists
  753. :return Keycloak server response
  754. """
  755. params_path = {"realm-name": self.realm_name}
  756. data_raw = self.raw_post(URL_ADMIN_REALM_ROLES.format(**params_path),
  757. data=json.dumps(payload))
  758. return raise_error_from_response(data_raw, KeycloakGetError, expected_codes=[201], skip_exists=skip_exists)
  759. def update_realm_role(self, role_name, payload):
  760. """
  761. Update a role for the realm by name
  762. :param role_name: The name of the role to be updated
  763. :param payload: The role (use RoleRepresentation)
  764. :return Keycloak server response
  765. """
  766. params_path = {"realm-name": self.realm_name, "role-name": role_name}
  767. data_raw = self.connection.raw_put(URL_ADMIN_REALM_ROLES_ROLE_BY_NAME.format(**params_path),
  768. data=json.dumps(payload))
  769. return raise_error_from_response(data_raw, KeycloakGetError, expected_codes=[204])
  770. def delete_realm_role(self, role_name):
  771. """
  772. Delete a role for the realm by name
  773. :param payload: The role name {'role-name':'name-of-the-role'}
  774. :return Keycloak server response
  775. """
  776. params_path = {"realm-name": self.realm_name, "role-name": role_name}
  777. data_raw = self.connection.raw_delete(
  778. URL_ADMIN_REALM_ROLES_ROLE_BY_NAME.format(**params_path))
  779. return raise_error_from_response(data_raw, KeycloakGetError, expected_codes=[204])
  780. def assign_realm_roles(self, user_id, client_id, roles):
  781. """
  782. Assign realm roles to a user
  783. :param user_id: id of user
  784. :param client_id: id of client containing role (not client-id)
  785. :param roles: roles list or role (use RoleRepresentation)
  786. :return Keycloak server response
  787. """
  788. payload = roles if isinstance(roles, list) else [roles]
  789. params_path = {"realm-name": self.realm_name, "id": user_id}
  790. data_raw = self.raw_post(URL_ADMIN_USER_REALM_ROLES.format(**params_path),
  791. data=json.dumps(payload))
  792. return raise_error_from_response(data_raw, KeycloakGetError, expected_codes=[204])
  793. def get_realm_roles_of_user(self, user_id):
  794. params_path = {"realm-name": self.realm_name, "id": user_id}
  795. data_raw = self.raw_get(URL_ADMIN_USER_REALM_ROLES.format(**params_path))
  796. return raise_error_from_response(data_raw, KeycloakGetError)
  797. def assign_group_realm_roles(self, group_id, roles):
  798. """
  799. Assign realm roles to a group
  800. :param group_id: id of groupp
  801. :param roles: roles list or role (use GroupRoleRepresentation)
  802. :return Keycloak server response
  803. """
  804. payload = roles if isinstance(roles, list) else [roles]
  805. params_path = {"realm-name": self.realm_name, "id": group_id}
  806. data_raw = self.raw_post(URL_ADMIN_GROUPS_REALM_ROLES.format(**params_path),
  807. data=json.dumps(payload))
  808. return raise_error_from_response(data_raw, KeycloakGetError, expected_codes=[204])
  809. def delete_group_realm_roles(self, group_id, roles):
  810. """
  811. Delete realm roles of a group
  812. :param group_id: id of group
  813. :param roles: roles list or role (use GroupRoleRepresentation)
  814. :return Keycloak server response
  815. """
  816. payload = roles if isinstance(roles, list) else [roles]
  817. params_path = {"realm-name": self.realm_name, "id": group_id}
  818. data_raw = self.raw_delete(URL_ADMIN_GROUPS_REALM_ROLES.format(**params_path),
  819. data=json.dumps(payload))
  820. return raise_error_from_response(data_raw, KeycloakGetError, expected_codes=[204])
  821. def get_group_realm_roles(self, group_id):
  822. """
  823. Get all realm roles for a group.
  824. :param user_id: id of the group
  825. :return: Keycloak server response (array RoleRepresentation)
  826. """
  827. params_path = {"realm-name": self.realm_name, "id": group_id}
  828. data_raw = self.raw_get(URL_ADMIN_GET_GROUPS_REALM_ROLES.format(**params_path))
  829. return raise_error_from_response(data_raw, KeycloakGetError)
  830. def assign_group_client_roles(self, group_id, client_id, roles):
  831. """
  832. Assign client roles to a group
  833. :param group_id: id of group
  834. :param client_id: id of client (not client-id)
  835. :param roles: roles list or role (use GroupRoleRepresentation)
  836. :return Keycloak server response
  837. """
  838. payload = roles if isinstance(roles, list) else [roles]
  839. params_path = {"realm-name": self.realm_name, "id": group_id, "client-id": client_id}
  840. data_raw = self.raw_post(URL_ADMIN_GROUPS_CLIENT_ROLES.format(**params_path),
  841. data=json.dumps(payload))
  842. return raise_error_from_response(data_raw, KeycloakGetError, expected_codes=[204])
  843. def delete_group_client_roles(self, group_id, client_id, roles):
  844. """
  845. Delete client roles of a group
  846. :param group_id: id of group
  847. :param client_id: id of client (not client-id)
  848. :param roles: roles list or role (use GroupRoleRepresentation)
  849. :return Keycloak server response
  850. """
  851. payload = roles if isinstance(roles, list) else [roles]
  852. params_path = {"realm-name": self.realm_name, "id": group_id, "client-id": client_id}
  853. data_raw = self.raw_get(URL_ADMIN_GROUPS_CLIENT_ROLES.format(**params_path))
  854. return raise_error_from_response(data_raw, KeycloakGetError)
  855. def get_group_client_roles(self, group_id, client_id, roles):
  856. """
  857. Get client roles of a group
  858. :param group_id: id of group
  859. :param client_id: id of client (not client-id)
  860. :param roles: roles list or role (use GroupRoleRepresentation)
  861. :return Keycloak server response (array RoleRepresentation)
  862. """
  863. payload = roles if isinstance(roles, list) else [roles]
  864. params_path = {"realm-name": self.realm_name, "id": group_id, "client-id": client_id}
  865. data_raw = self.raw_delete(URL_ADMIN_GROUPS_CLIENT_ROLES.format(**params_path),
  866. data=json.dumps(payload))
  867. return raise_error_from_response(data_raw, KeycloakGetError, expected_codes=[204])
  868. def get_client_roles_of_user(self, user_id, client_id):
  869. """
  870. Get all client roles for a user.
  871. :param user_id: id of user
  872. :param client_id: id of client (not client-id)
  873. :return: Keycloak server response (array RoleRepresentation)
  874. """
  875. return self._get_client_roles_of_user(URL_ADMIN_USER_CLIENT_ROLES, user_id, client_id)
  876. def get_available_client_roles_of_user(self, user_id, client_id):
  877. """
  878. Get available client role-mappings for a user.
  879. :param user_id: id of user
  880. :param client_id: id of client (not client-id)
  881. :return: Keycloak server response (array RoleRepresentation)
  882. """
  883. return self._get_client_roles_of_user(URL_ADMIN_USER_CLIENT_ROLES_AVAILABLE, user_id, client_id)
  884. def get_composite_client_roles_of_user(self, user_id, client_id):
  885. """
  886. Get composite client role-mappings for a user.
  887. :param user_id: id of user
  888. :param client_id: id of client (not client-id)
  889. :return: Keycloak server response (array RoleRepresentation)
  890. """
  891. return self._get_client_roles_of_user(URL_ADMIN_USER_CLIENT_ROLES_COMPOSITE, user_id, client_id)
  892. def _get_client_roles_of_user(self, client_level_role_mapping_url, user_id, client_id):
  893. params_path = {"realm-name": self.realm_name, "id": user_id, "client-id": client_id}
  894. data_raw = self.raw_get(client_level_role_mapping_url.format(**params_path))
  895. return raise_error_from_response(data_raw, KeycloakGetError)
  896. def delete_client_roles_of_user(self, user_id, client_id, roles):
  897. """
  898. Delete client roles from a user.
  899. :param user_id: id of user
  900. :param client_id: id of client containing role (not client-id)
  901. :param roles: roles list or role to delete (use RoleRepresentation)
  902. :return: Keycloak server response
  903. """
  904. payload = roles if isinstance(roles, list) else [roles]
  905. params_path = {"realm-name": self.realm_name, "id": user_id, "client-id": client_id}
  906. data_raw = self.raw_delete(URL_ADMIN_USER_CLIENT_ROLES.format(**params_path),
  907. data=json.dumps(payload))
  908. return raise_error_from_response(data_raw, KeycloakGetError, expected_codes=[204])
  909. def get_authentication_flows(self):
  910. """
  911. Get authentication flows. Returns all flow details
  912. AuthenticationFlowRepresentation
  913. https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_authenticationflowrepresentation
  914. :return: Keycloak server response (AuthenticationFlowRepresentation)
  915. """
  916. params_path = {"realm-name": self.realm_name}
  917. data_raw = self.raw_get(URL_ADMIN_FLOWS.format(**params_path))
  918. return raise_error_from_response(data_raw, KeycloakGetError)
  919. def create_authentication_flow(self, payload, skip_exists=False):
  920. """
  921. Create a new authentication flow
  922. AuthenticationFlowRepresentation
  923. https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_authenticationflowrepresentation
  924. :param payload: AuthenticationFlowRepresentation
  925. :param skip_exists: If true then do not raise an error if authentication flow already exists
  926. :return: Keycloak server response (RoleRepresentation)
  927. """
  928. params_path = {"realm-name": self.realm_name}
  929. data_raw = self.raw_post(URL_ADMIN_FLOWS.format(**params_path),
  930. data=payload)
  931. return raise_error_from_response(data_raw, KeycloakGetError, expected_codes=[201], skip_exists=skip_exists)
  932. def get_authentication_flow_executions(self, flow_alias):
  933. """
  934. Get authentication flow executions. Returns all execution steps
  935. :param flow_alias: the flow alias
  936. :return: Response(json)
  937. """
  938. params_path = {"realm-name": self.realm_name, "flow-alias": flow_alias}
  939. data_raw = self.raw_get(URL_ADMIN_FLOWS_EXECUTIONS.format(**params_path))
  940. return raise_error_from_response(data_raw, KeycloakGetError)
  941. def update_authentication_flow_executions(self, payload, flow_alias):
  942. """
  943. Update an authentication flow execution
  944. AuthenticationExecutionInfoRepresentation
  945. https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_authenticationexecutioninforepresentation
  946. :param payload: AuthenticationExecutionInfoRepresentation
  947. :param flow_alias: The flow alias
  948. :return: Keycloak server response
  949. """
  950. params_path = {"realm-name": self.realm_name, "flow-alias": flow_alias}
  951. data_raw = self.raw_put(URL_ADMIN_FLOWS_EXECUTIONS.format(**params_path),
  952. data=payload)
  953. return raise_error_from_response(data_raw, KeycloakGetError, expected_codes=[204])
  954. def sync_users(self, storage_id, action):
  955. """
  956. Function to trigger user sync from provider
  957. :param storage_id: The id of the user storage provider
  958. :param action: Action can be "triggerFullSync" or "triggerChangedUsersSync"
  959. :return:
  960. """
  961. data = {'action': action}
  962. params_query = {"action": action}
  963. params_path = {"realm-name": self.realm_name, "id": storage_id}
  964. data_raw = self.raw_post(URL_ADMIN_USER_STORAGE.format(**params_path),
  965. data=json.dumps(data), **params_query)
  966. return raise_error_from_response(data_raw, KeycloakGetError)
  967. def get_client_scopes(self):
  968. """
  969. Get representation of the client scopes for the realm where we are connected to
  970. https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_getclientscopes
  971. :return: Keycloak server response Array of (ClientScopeRepresentation)
  972. """
  973. params_path = {"realm-name": self.realm_name}
  974. data_raw = self.raw_get(URL_ADMIN_CLIENT_SCOPES.format(**params_path))
  975. return raise_error_from_response(data_raw, KeycloakGetError)
  976. def get_client_scope(self, client_scope_id):
  977. """
  978. Get representation of the client scopes for the realm where we are connected to
  979. https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_getclientscopes
  980. :param client_scope_id: The id of the client scope
  981. :return: Keycloak server response (ClientScopeRepresentation)
  982. """
  983. params_path = {"realm-name": self.realm_name, "scope-id": client_scope_id}
  984. data_raw = self.raw_get(URL_ADMIN_CLIENT_SCOPE.format(**params_path))
  985. return raise_error_from_response(data_raw, KeycloakGetError)
  986. def add_mapper_to_client_scope(self, client_scope_id, payload):
  987. """
  988. Add a mapper to a client scope
  989. https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_create_mapper
  990. :param client_scope_id: The id of the client scope
  991. :param payload: ProtocolMapperRepresentation
  992. :return: Keycloak server Response
  993. """
  994. params_path = {"realm-name": self.realm_name, "scope-id": client_scope_id}
  995. data_raw = self.raw_post(
  996. URL_ADMIN_CLIENT_SCOPES_ADD_MAPPER.format(**params_path), data=json.dumps(payload))
  997. return raise_error_from_response(data_raw, KeycloakGetError, expected_codes=[201])
  998. def generate_client_secrets(self, client_id):
  999. """
  1000. Generate a new secret for the client
  1001. https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_regeneratesecret
  1002. :param client_id: id of client (not client-id)
  1003. :return: Keycloak server response (ClientRepresentation)
  1004. """
  1005. params_path = {"realm-name": self.realm_name, "id": client_id}
  1006. data_raw = self.raw_post(URL_ADMIN_CLIENT_SECRETS.format(**params_path), data=None)
  1007. return raise_error_from_response(data_raw, KeycloakGetError)
  1008. def get_client_secrets(self, client_id):
  1009. """
  1010. Get representation of the client secrets
  1011. https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_getclientsecret
  1012. :param client_id: id of client (not client-id)
  1013. :return: Keycloak server response (ClientRepresentation)
  1014. """
  1015. params_path = {"realm-name": self.realm_name, "id": client_id}
  1016. data_raw = self.raw_get(URL_ADMIN_CLIENT_SECRETS.format(**params_path))
  1017. return raise_error_from_response(data_raw, KeycloakGetError)
  1018. def get_components(self, query=None):
  1019. """
  1020. Return a list of components, filtered according to query parameters
  1021. ComponentRepresentation
  1022. https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_componentrepresentation
  1023. :param query: Query parameters (optional)
  1024. :return: components list
  1025. """
  1026. params_path = {"realm-name": self.realm_name}
  1027. data_raw = self.raw_get(URL_ADMIN_COMPONENTS.format(**params_path),
  1028. data=None, **query)
  1029. return raise_error_from_response(data_raw, KeycloakGetError)
  1030. def create_component(self, payload):
  1031. """
  1032. Create a new component.
  1033. ComponentRepresentation
  1034. https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_componentrepresentation
  1035. :param payload: ComponentRepresentation
  1036. :return: UserRepresentation
  1037. """
  1038. params_path = {"realm-name": self.realm_name}
  1039. data_raw = self.raw_post(URL_ADMIN_COMPONENTS.format(**params_path),
  1040. data=json.dumps(payload))
  1041. return raise_error_from_response(data_raw, KeycloakGetError, expected_codes=[201])
  1042. def get_component(self, component_id):
  1043. """
  1044. Get representation of the component
  1045. :param component_id: Component id
  1046. ComponentRepresentation
  1047. https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_componentrepresentation
  1048. :return: ComponentRepresentation
  1049. """
  1050. params_path = {"realm-name": self.realm_name, "component-id": component_id}
  1051. data_raw = self.raw_get(URL_ADMIN_COMPONENT.format(**params_path))
  1052. return raise_error_from_response(data_raw, KeycloakGetError)
  1053. def update_component(self, component_id, payload):
  1054. """
  1055. Update the component
  1056. :param component_id: Component id
  1057. :param payload: ComponentRepresentation
  1058. https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_componentrepresentation
  1059. :return: Http response
  1060. """
  1061. params_path = {"realm-name": self.realm_name, "component-id": component_id}
  1062. data_raw = self.raw_put(URL_ADMIN_COMPONENT.format(**params_path),
  1063. data=json.dumps(payload))
  1064. return raise_error_from_response(data_raw, KeycloakGetError, expected_codes=[204])
  1065. def delete_component(self, component_id):
  1066. """
  1067. Delete the component
  1068. :param component_id: Component id
  1069. :return: Http response
  1070. """
  1071. params_path = {"realm-name": self.realm_name, "component-id": component_id}
  1072. data_raw = self.raw_delete(URL_ADMIN_COMPONENT.format(**params_path))
  1073. return raise_error_from_response(data_raw, KeycloakGetError, expected_codes=[204])
  1074. def get_keys(self):
  1075. """
  1076. Return a list of keys, filtered according to query parameters
  1077. KeysMetadataRepresentation
  1078. https://www.keycloak.org/docs-api/8.0/rest-api/index.html#_key_resource
  1079. :return: keys list
  1080. """
  1081. params_path = {"realm-name": self.realm_name}
  1082. data_raw = self.raw_get(URL_ADMIN_KEYS.format(**params_path),
  1083. data=None)
  1084. return raise_error_from_response(data_raw, KeycloakGetError)
  1085. def raw_get(self, *args, **kwargs):
  1086. """
  1087. Calls connection.raw_get.
  1088. If auto_refresh is set for *get* and *access_token* is expired, it will refresh the token
  1089. and try *get* once more.
  1090. """
  1091. r = self.connection.raw_get(*args, **kwargs)
  1092. if 'get' in self.auto_refresh_token and r.status_code == 401:
  1093. self.refresh_token()
  1094. return self.connection.raw_get(*args, **kwargs)
  1095. return r
  1096. def raw_post(self, *args, **kwargs):
  1097. """
  1098. Calls connection.raw_post.
  1099. If auto_refresh is set for *post* and *access_token* is expired, it will refresh the token
  1100. and try *post* once more.
  1101. """
  1102. r = self.connection.raw_post(*args, **kwargs)
  1103. if 'post' in self.auto_refresh_token and r.status_code == 401:
  1104. self.refresh_token()
  1105. return self.connection.raw_post(*args, **kwargs)
  1106. return r
  1107. def raw_put(self, *args, **kwargs):
  1108. """
  1109. Calls connection.raw_put.
  1110. If auto_refresh is set for *put* and *access_token* is expired, it will refresh the token
  1111. and try *put* once more.
  1112. """
  1113. r = self.connection.raw_put(*args, **kwargs)
  1114. if 'put' in self.auto_refresh_token and r.status_code == 401:
  1115. self.refresh_token()
  1116. return self.connection.raw_put(*args, **kwargs)
  1117. return r
  1118. def raw_delete(self, *args, **kwargs):
  1119. """
  1120. Calls connection.raw_delete.
  1121. If auto_refresh is set for *delete* and *access_token* is expired, it will refresh the token
  1122. and try *delete* once more.
  1123. """
  1124. r = self.connection.raw_delete(*args, **kwargs)
  1125. if 'delete' in self.auto_refresh_token and r.status_code == 401:
  1126. self.refresh_token()
  1127. return self.connection.raw_delete(*args, **kwargs)
  1128. return r
  1129. def get_token(self):
  1130. self.keycloak_openid = KeycloakOpenID(server_url=self.server_url, client_id=self.client_id,
  1131. realm_name=self.user_realm_name or self.realm_name, verify=self.verify,
  1132. client_secret_key=self.client_secret_key,
  1133. custom_headers=self.custom_headers)
  1134. grant_type = ["password"]
  1135. if self.client_secret_key:
  1136. grant_type = ["client_credentials"]
  1137. self._token = self.keycloak_openid.token(self.username, self.password, grant_type=grant_type)
  1138. headers = {
  1139. 'Authorization': 'Bearer ' + self.token.get('access_token'),
  1140. 'Content-Type': 'application/json'
  1141. }
  1142. if self.custom_headers is not None:
  1143. # merge custom headers to main headers
  1144. headers.update(self.custom_headers)
  1145. self._connection = ConnectionManager(base_url=self.server_url,
  1146. headers=headers,
  1147. timeout=60,
  1148. verify=self.verify)
  1149. def refresh_token(self):
  1150. refresh_token = self.token.get('refresh_token')
  1151. try:
  1152. self.token = self.keycloak_openid.refresh_token(refresh_token)
  1153. except KeycloakGetError as e:
  1154. if e.response_code == 400 and (b'Refresh token expired' in e.response_body or
  1155. b'Token is not active' in e.response_body):
  1156. self.get_token()
  1157. else:
  1158. raise
  1159. self.connection.add_param_headers('Authorization', 'Bearer ' + self.token.get('access_token'))