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.

982 lines
37 KiB

7 years ago
6 years ago
6 years ago
6 years ago
7 years ago
6 years ago
7 years ago
7 years ago
7 years ago
7 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
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
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
6 years ago
7 years ago
7 years ago
7 years ago
6 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 .connection import ConnectionManager
  27. from .exceptions import raise_error_from_response, KeycloakGetError
  28. from .keycloak_openid import KeycloakOpenID
  29. from .urls_patterns import URL_ADMIN_SERVER_INFO, URL_ADMIN_CLIENT_AUTHZ_RESOURCES, URL_ADMIN_CLIENT_ROLES, \
  30. URL_ADMIN_GET_SESSIONS, URL_ADMIN_RESET_PASSWORD, URL_ADMIN_SEND_UPDATE_ACCOUNT, \
  31. URL_ADMIN_USER_CLIENT_ROLES_COMPOSITE, URL_ADMIN_USER_GROUP, URL_ADMIN_REALM_ROLES, URL_ADMIN_GROUP_CHILD, \
  32. URL_ADMIN_USER_CONSENTS, URL_ADMIN_SEND_VERIFY_EMAIL, URL_ADMIN_CLIENT, URL_ADMIN_USER, URL_ADMIN_CLIENT_ROLE, \
  33. URL_ADMIN_USER_GROUPS, URL_ADMIN_CLIENTS, URL_ADMIN_FLOWS_EXECUTIONS, URL_ADMIN_GROUPS, URL_ADMIN_USER_CLIENT_ROLES, \
  34. URL_ADMIN_REALMS, URL_ADMIN_USERS_COUNT, URL_ADMIN_FLOWS, URL_ADMIN_GROUP, URL_ADMIN_CLIENT_AUTHZ_SETTINGS, \
  35. URL_ADMIN_GROUP_MEMBERS, URL_ADMIN_USER_STORAGE, URL_ADMIN_GROUP_PERMISSIONS, URL_ADMIN_IDPS, \
  36. URL_ADMIN_USER_CLIENT_ROLES_AVAILABLE, URL_ADMIN_USERS, URL_ADMIN_CLIENT_SCOPES, \
  37. URL_ADMIN_CLIENT_SCOPES_ADD_MAPPER, URL_ADMIN_CLIENT_SCOPE, URL_ADMIN_CLIENT_SECRETS
  38. class KeycloakAdmin:
  39. PAGE_SIZE = 100
  40. def __init__(self, server_url, username, password, realm_name='master', client_id='admin-cli', verify=True, client_secret_key=None):
  41. """
  42. :param server_url: Keycloak server url
  43. :param username: admin username
  44. :param password: admin password
  45. :param realm_name: realm name
  46. :param client_id: client id
  47. :param verify: True if want check connection SSL
  48. :param client_secret_key: client secret key
  49. """
  50. self._username = username
  51. self._password = password
  52. self._client_id = client_id
  53. self._realm_name = realm_name
  54. # Get token Admin
  55. keycloak_openid = KeycloakOpenID(server_url=server_url, client_id=client_id, realm_name=realm_name,
  56. verify=verify, client_secret_key=client_secret_key)
  57. grant_type = ["password"]
  58. if client_secret_key:
  59. grant_type = ["client_credentials"]
  60. self._token = keycloak_openid.token(username, password, grant_type=grant_type)
  61. self._connection = ConnectionManager(base_url=server_url,
  62. headers={'Authorization': 'Bearer ' + self.token.get('access_token'),
  63. 'Content-Type': 'application/json'},
  64. timeout=60,
  65. verify=verify)
  66. @property
  67. def realm_name(self):
  68. return self._realm_name
  69. @realm_name.setter
  70. def realm_name(self, value):
  71. self._realm_name = value
  72. @property
  73. def connection(self):
  74. return self._connection
  75. @connection.setter
  76. def connection(self, value):
  77. self._connection = value
  78. @property
  79. def client_id(self):
  80. return self._client_id
  81. @client_id.setter
  82. def client_id(self, value):
  83. self._client_id = value
  84. @property
  85. def username(self):
  86. return self._username
  87. @username.setter
  88. def username(self, value):
  89. self._username = value
  90. @property
  91. def password(self):
  92. return self._password
  93. @password.setter
  94. def password(self, value):
  95. self._password = value
  96. @property
  97. def token(self):
  98. return self._token
  99. @token.setter
  100. def token(self, value):
  101. self._token = value
  102. def __fetch_all(self, url, query=None):
  103. '''Wrapper function to paginate GET requests
  104. :param url: The url on which the query is executed
  105. :param query: Existing query parameters (optional)
  106. :return: Combined results of paginated queries
  107. '''
  108. results = []
  109. # initalize query if it was called with None
  110. if not query:
  111. query = {}
  112. page = 0
  113. query['max'] = self.PAGE_SIZE
  114. # fetch until we can
  115. while True:
  116. query['first'] = page*self.PAGE_SIZE
  117. partial_results = raise_error_from_response(
  118. self.connection.raw_get(url, **query),
  119. KeycloakGetError)
  120. if not partial_results:
  121. break
  122. results.extend(partial_results)
  123. page += 1
  124. return results
  125. def import_realm(self, payload):
  126. """
  127. Import a new realm from a RealmRepresentation. Realm name must be unique.
  128. RealmRepresentation
  129. https://www.keycloak.org/docs-api/4.4/rest-api/index.html#_realmrepresentation
  130. :param payload: RealmRepresentation
  131. :return: RealmRepresentation
  132. """
  133. data_raw = self.connection.raw_post(URL_ADMIN_REALMS,
  134. data=json.dumps(payload))
  135. return raise_error_from_response(data_raw, KeycloakGetError, expected_code=201)
  136. def get_realms(self):
  137. """
  138. Lists all realms in Keycloak deployment
  139. :return: realms list
  140. """
  141. data_raw = self.connection.raw_get(URL_ADMIN_REALMS)
  142. return raise_error_from_response(data_raw, KeycloakGetError)
  143. def create_realm(self, payload, skip_exists=False):
  144. """
  145. Create a client
  146. ClientRepresentation: http://www.keycloak.org/docs-api/3.3/rest-api/index.html#_realmrepresentation
  147. :param skip_exists: Skip if Realm already exist.
  148. :param payload: RealmRepresentation
  149. :return: Keycloak server response (UserRepresentation)
  150. """
  151. data_raw = self.connection.raw_post(URL_ADMIN_REALMS,
  152. data=json.dumps(payload))
  153. return raise_error_from_response(data_raw, KeycloakGetError, expected_code=201, skip_exists=skip_exists)
  154. def get_users(self, query=None):
  155. """
  156. Get users Returns a list of users, filtered according to query parameters
  157. :return: users list
  158. """
  159. params_path = {"realm-name": self.realm_name}
  160. data_raw = self.connection.raw_get(URL_ADMIN_USERS.format(**params_path), **query)
  161. return raise_error_from_response(data_raw, KeycloakGetError)
  162. def get_idps(self):
  163. """
  164. Returns a list of ID Providers,
  165. IdentityProviderRepresentation
  166. https://www.keycloak.org/docs-api/3.3/rest-api/index.html#_identityproviderrepresentation
  167. :return: array IdentityProviderRepresentation
  168. """
  169. params_path = {"realm-name": self.realm_name}
  170. data_raw = self.connection.raw_get(URL_ADMIN_IDPS.format(**params_path))
  171. return raise_error_from_response(data_raw, KeycloakGetError)
  172. def create_user(self, payload):
  173. """
  174. Create a new user Username must be unique
  175. UserRepresentation
  176. http://www.keycloak.org/docs-api/3.3/rest-api/index.html#_userrepresentation
  177. :param payload: UserRepresentation
  178. :return: UserRepresentation
  179. """
  180. params_path = {"realm-name": self.realm_name}
  181. exists = self.get_user_id(username=payload['username'])
  182. if exists is not None:
  183. return str(exists)
  184. data_raw = self.connection.raw_post(URL_ADMIN_USERS.format(**params_path),
  185. data=json.dumps(payload))
  186. return raise_error_from_response(data_raw, KeycloakGetError, expected_code=201)
  187. def users_count(self):
  188. """
  189. User counter
  190. :return: counter
  191. """
  192. params_path = {"realm-name": self.realm_name}
  193. data_raw = self.connection.raw_get(URL_ADMIN_USERS_COUNT.format(**params_path))
  194. return raise_error_from_response(data_raw, KeycloakGetError)
  195. def get_user_id(self, username):
  196. """
  197. Get internal keycloak user id from username
  198. This is required for further actions against this user.
  199. UserRepresentation
  200. http://www.keycloak.org/docs-api/3.3/rest-api/index.html#_userrepresentation
  201. :param username: id in UserRepresentation
  202. :return: user_id
  203. """
  204. users = self.get_users(query={"search": username})
  205. return next((user["id"] for user in users if user["username"] == username), None)
  206. def get_user(self, user_id):
  207. """
  208. Get representation of the user
  209. :param user_id: User id
  210. UserRepresentation: http://www.keycloak.org/docs-api/3.3/rest-api/index.html#_userrepresentation
  211. :return: UserRepresentation
  212. """
  213. params_path = {"realm-name": self.realm_name, "id": user_id}
  214. data_raw = self.connection.raw_get(URL_ADMIN_USER.format(**params_path))
  215. return raise_error_from_response(data_raw, KeycloakGetError)
  216. def get_user_groups(self, user_id):
  217. """
  218. Get user groups Returns a list of groups of which the user is a member
  219. :param user_id: User id
  220. :return: user groups list
  221. """
  222. params_path = {"realm-name": self.realm_name, "id": user_id}
  223. data_raw = self.connection.raw_get(URL_ADMIN_USER_GROUPS.format(**params_path))
  224. return raise_error_from_response(data_raw, KeycloakGetError)
  225. def update_user(self, user_id, payload):
  226. """
  227. Update the user
  228. :param user_id: User id
  229. :param payload: UserRepresentation
  230. :return: Http response
  231. """
  232. params_path = {"realm-name": self.realm_name, "id": user_id}
  233. data_raw = self.connection.raw_put(URL_ADMIN_USER.format(**params_path),
  234. data=json.dumps(payload))
  235. return raise_error_from_response(data_raw, KeycloakGetError, expected_code=204)
  236. def delete_user(self, user_id):
  237. """
  238. Delete the user
  239. :param user_id: User id
  240. :return: Http response
  241. """
  242. params_path = {"realm-name": self.realm_name, "id": user_id}
  243. data_raw = self.connection.raw_delete(URL_ADMIN_USER.format(**params_path))
  244. return raise_error_from_response(data_raw, KeycloakGetError, expected_code=204)
  245. def set_user_password(self, user_id, password, temporary=True):
  246. """
  247. Set up a password for the user. If temporary is True, the user will have to reset
  248. the temporary password next time they log in.
  249. http://www.keycloak.org/docs-api/3.2/rest-api/#_users_resource
  250. http://www.keycloak.org/docs-api/3.2/rest-api/#_credentialrepresentation
  251. :param user_id: User id
  252. :param password: New password
  253. :param temporary: True if password is temporary
  254. :return:
  255. """
  256. payload = {"type": "password", "temporary": temporary, "value": password}
  257. params_path = {"realm-name": self.realm_name, "id": user_id}
  258. data_raw = self.connection.raw_put(URL_ADMIN_RESET_PASSWORD.format(**params_path),
  259. data=json.dumps(payload))
  260. return raise_error_from_response(data_raw, KeycloakGetError, expected_code=204)
  261. def consents_user(self, user_id):
  262. """
  263. Get consents granted by the user
  264. :param user_id: User id
  265. :return: consents
  266. """
  267. params_path = {"realm-name": self.realm_name, "id": user_id}
  268. data_raw = self.connection.raw_get(URL_ADMIN_USER_CONSENTS.format(**params_path))
  269. return raise_error_from_response(data_raw, KeycloakGetError)
  270. def send_update_account(self, user_id, payload, client_id=None, lifespan=None, redirect_uri=None):
  271. """
  272. Send a update account email to the user An email contains a
  273. link the user can click to perform a set of required actions.
  274. :param user_id:
  275. :param payload:
  276. :param client_id:
  277. :param lifespan:
  278. :param redirect_uri:
  279. :return:
  280. """
  281. params_path = {"realm-name": self.realm_name, "id": user_id}
  282. params_query = {"client_id": client_id, "lifespan": lifespan, "redirect_uri": redirect_uri}
  283. data_raw = self.connection.raw_put(URL_ADMIN_SEND_UPDATE_ACCOUNT.format(**params_path),
  284. data=payload, **params_query)
  285. return raise_error_from_response(data_raw, KeycloakGetError)
  286. def send_verify_email(self, user_id, client_id=None, redirect_uri=None):
  287. """
  288. Send a update account email to the user An email contains a
  289. link the user can click to perform a set of required actions.
  290. :param user_id: User id
  291. :param client_id: Client id
  292. :param redirect_uri: Redirect uri
  293. :return:
  294. """
  295. params_path = {"realm-name": self.realm_name, "id": user_id}
  296. params_query = {"client_id": client_id, "redirect_uri": redirect_uri}
  297. data_raw = self.connection.raw_put(URL_ADMIN_SEND_VERIFY_EMAIL.format(**params_path),
  298. data={}, **params_query)
  299. return raise_error_from_response(data_raw, KeycloakGetError)
  300. def get_sessions(self, user_id):
  301. """
  302. Get sessions associated with the user
  303. :param user_id: id of user
  304. UserSessionRepresentation
  305. http://www.keycloak.org/docs-api/3.3/rest-api/index.html#_usersessionrepresentation
  306. :return: UserSessionRepresentation
  307. """
  308. params_path = {"realm-name": self.realm_name, "id": user_id}
  309. data_raw = self.connection.raw_get(URL_ADMIN_GET_SESSIONS.format(**params_path))
  310. return raise_error_from_response(data_raw, KeycloakGetError)
  311. def get_server_info(self):
  312. """
  313. Get themes, social providers, auth providers, and event listeners available on this server
  314. ServerInfoRepresentation
  315. http://www.keycloak.org/docs-api/3.3/rest-api/index.html#_serverinforepresentation
  316. :return: ServerInfoRepresentation
  317. """
  318. data_raw = self.connection.raw_get(URL_ADMIN_SERVER_INFO)
  319. return raise_error_from_response(data_raw, KeycloakGetError)
  320. def get_groups(self):
  321. """
  322. Get groups belonging to the realm. Returns a list of groups belonging to the realm
  323. GroupRepresentation
  324. http://www.keycloak.org/docs-api/3.2/rest-api/#_grouprepresentation
  325. :return: array GroupRepresentation
  326. """
  327. params_path = {"realm-name": self.realm_name}
  328. data_raw = self.connection.raw_get(URL_ADMIN_GROUPS.format(**params_path))
  329. return raise_error_from_response(data_raw, KeycloakGetError)
  330. def get_group(self, group_id):
  331. """
  332. Get group by id. Returns full group details
  333. GroupRepresentation
  334. http://www.keycloak.org/docs-api/3.2/rest-api/#_grouprepresentation
  335. :return: Keycloak server response (GroupRepresentation)
  336. """
  337. params_path = {"realm-name": self.realm_name, "id": group_id}
  338. data_raw = self.connection.raw_get(URL_ADMIN_GROUP.format(**params_path))
  339. return raise_error_from_response(data_raw, KeycloakGetError)
  340. def get_subgroups(self, group, path):
  341. """
  342. Utility function to iterate through nested group structures
  343. GroupRepresentation
  344. http://www.keycloak.org/docs-api/3.2/rest-api/#_grouprepresentation
  345. :param name: group (GroupRepresentation)
  346. :param path: group path (string)
  347. :return: Keycloak server response (GroupRepresentation)
  348. """
  349. for subgroup in group["subGroups"]:
  350. if subgroup['path'] == path:
  351. return subgroup
  352. elif subgroup["subGroups"]:
  353. for subgroup in group["subGroups"]:
  354. return self.get_subgroups(subgroup, path)
  355. return None
  356. def get_group_members(self, group_id, **query):
  357. """
  358. Get members by group id. Returns group members
  359. GroupRepresentation
  360. http://www.keycloak.org/docs-api/3.2/rest-api/#_userrepresentation
  361. :return: Keycloak server response (UserRepresentation)
  362. """
  363. params_path = {"realm-name": self.realm_name, "id": group_id}
  364. data_raw = self.connection.raw_get(URL_ADMIN_GROUP_MEMBERS.format(**params_path), **query)
  365. return raise_error_from_response(data_raw, KeycloakGetError)
  366. def get_group_by_path(self, path, search_in_subgroups=False):
  367. """
  368. Get group id based on name or path.
  369. A straight name or path match with a top-level group will return first.
  370. Subgroups are traversed, the first to match path (or name with path) is returned.
  371. GroupRepresentation
  372. http://www.keycloak.org/docs-api/3.2/rest-api/#_grouprepresentation
  373. :param path: group path
  374. :param search_in_subgroups: True if want search in the subgroups
  375. :return: Keycloak server response (GroupRepresentation)
  376. """
  377. groups = self.get_groups()
  378. # TODO: Review this code is necessary
  379. for group in groups:
  380. if group['path'] == path:
  381. return group
  382. elif search_in_subgroups and group["subGroups"]:
  383. for group in group["subGroups"]:
  384. if group['path'] == path:
  385. return group
  386. res = self.get_subgroups(group, path)
  387. if res != None:
  388. return res
  389. return None
  390. def create_group(self, payload, parent=None, skip_exists=False):
  391. """
  392. Creates a group in the Realm
  393. :param payload: GroupRepresentation
  394. :param parent: parent group's id. Required to create a sub-group.
  395. GroupRepresentation
  396. http://www.keycloak.org/docs-api/3.2/rest-api/#_grouprepresentation
  397. :return: Http response
  398. """
  399. name = payload['name']
  400. path = payload['path']
  401. exists = None
  402. if name is None and path is not None:
  403. path = "/" + name
  404. elif path is not None:
  405. exists = self.get_group_by_path(path=path, search_in_subgroups=True)
  406. if exists is not None:
  407. return str(exists)
  408. if parent is None:
  409. params_path = {"realm-name": self.realm_name}
  410. data_raw = self.connection.raw_post(URL_ADMIN_GROUPS.format(**params_path),
  411. data=json.dumps(payload))
  412. else:
  413. params_path = {"realm-name": self.realm_name, "id": parent, }
  414. data_raw = self.connection.raw_post(URL_ADMIN_GROUP_CHILD.format(**params_path),
  415. data=json.dumps(payload))
  416. return raise_error_from_response(data_raw, KeycloakGetError, expected_code=201, skip_exists=skip_exists)
  417. def group_set_permissions(self, group_id, enabled=True):
  418. """
  419. Enable/Disable permissions for a group. Cannot delete group if disabled
  420. :param group_id: id of group
  421. :param enabled: boolean
  422. :return: Keycloak server response
  423. """
  424. params_path = {"realm-name": self.realm_name, "id": group_id}
  425. data_raw = self.connection.raw_put(URL_ADMIN_GROUP_PERMISSIONS.format(**params_path),
  426. data=json.dumps({"enabled": enabled}))
  427. return raise_error_from_response(data_raw, KeycloakGetError)
  428. def group_user_add(self, user_id, group_id):
  429. """
  430. Add user to group (user_id and group_id)
  431. :param group_id: id of group
  432. :param user_id: id of user
  433. :param group_id: id of group to add to
  434. :return: Keycloak server response
  435. """
  436. params_path = {"realm-name": self.realm_name, "id": user_id, "group-id": group_id}
  437. data_raw = self.connection.raw_put(URL_ADMIN_USER_GROUP.format(**params_path), data=None)
  438. return raise_error_from_response(data_raw, KeycloakGetError, expected_code=204)
  439. def group_user_remove(self, user_id, group_id):
  440. """
  441. Remove user from group (user_id and group_id)
  442. :param group_id: id of group
  443. :param user_id: id of user
  444. :param group_id: id of group to add to
  445. :return: Keycloak server response
  446. """
  447. params_path = {"realm-name": self.realm_name, "id": user_id, "group-id": group_id}
  448. data_raw = self.connection.raw_delete(URL_ADMIN_USER_GROUP.format(**params_path))
  449. return raise_error_from_response(data_raw, KeycloakGetError, expected_code=204)
  450. def delete_group(self, group_id):
  451. """
  452. Deletes a group in the Realm
  453. :param group_id: id of group to delete
  454. :return: Keycloak server response
  455. """
  456. params_path = {"realm-name": self.realm_name, "id": group_id}
  457. data_raw = self.connection.raw_delete(URL_ADMIN_GROUP.format(**params_path))
  458. return raise_error_from_response(data_raw, KeycloakGetError, expected_code=204)
  459. def get_clients(self):
  460. """
  461. Get clients belonging to the realm Returns a list of clients belonging to the realm
  462. ClientRepresentation
  463. http://www.keycloak.org/docs-api/3.3/rest-api/index.html#_clientrepresentation
  464. :return: Keycloak server response (ClientRepresentation)
  465. """
  466. params_path = {"realm-name": self.realm_name}
  467. data_raw = self.connection.raw_get(URL_ADMIN_CLIENTS.format(**params_path))
  468. return raise_error_from_response(data_raw, KeycloakGetError)
  469. def get_client(self, client_id):
  470. """
  471. Get representation of the client
  472. ClientRepresentation
  473. http://www.keycloak.org/docs-api/3.3/rest-api/index.html#_clientrepresentation
  474. :param client_id: id of client (not client-id)
  475. :return: Keycloak server response (ClientRepresentation)
  476. """
  477. params_path = {"realm-name": self.realm_name, "id": client_id}
  478. data_raw = self.connection.raw_get(URL_ADMIN_CLIENT.format(**params_path))
  479. return raise_error_from_response(data_raw, KeycloakGetError)
  480. def get_client_id(self, client_name):
  481. """
  482. Get internal keycloak client id from client-id.
  483. This is required for further actions against this client.
  484. :param client_name: name in ClientRepresentation
  485. http://www.keycloak.org/docs-api/3.3/rest-api/index.html#_clientrepresentation
  486. :return: client_id (uuid as string)
  487. """
  488. clients = self.get_clients()
  489. for client in clients:
  490. if client_name == client.get('name') or client_name == client.get('clientId'):
  491. return client["id"]
  492. return None
  493. def get_client_authz_settings(self, client_id):
  494. """
  495. Get authorization json from client.
  496. :param client_id: id in ClientRepresentation
  497. http://www.keycloak.org/docs-api/3.3/rest-api/index.html#_clientrepresentation
  498. :return: Keycloak server response
  499. """
  500. params_path = {"realm-name": self.realm_name, "id": client_id}
  501. data_raw = self.connection.raw_get(URL_ADMIN_CLIENT_AUTHZ_SETTINGS.format(**params_path))
  502. return data_raw
  503. def get_client_authz_resources(self, client_id):
  504. """
  505. Get resources from client.
  506. :param client_id: id in ClientRepresentation
  507. http://www.keycloak.org/docs-api/3.3/rest-api/index.html#_clientrepresentation
  508. :return: Keycloak server response
  509. """
  510. params_path = {"realm-name": self.realm_name, "id": client_id}
  511. data_raw = self.connection.raw_get(URL_ADMIN_CLIENT_AUTHZ_RESOURCES.format(**params_path))
  512. return data_raw
  513. def create_client(self, payload, skip_exists=False):
  514. """
  515. Create a client
  516. ClientRepresentation: http://www.keycloak.org/docs-api/3.3/rest-api/index.html#_clientrepresentation
  517. :param skip_exists: Skip if client already exist.
  518. :param payload: ClientRepresentation
  519. :return: Keycloak server response (UserRepresentation)
  520. """
  521. params_path = {"realm-name": self.realm_name}
  522. data_raw = self.connection.raw_post(URL_ADMIN_CLIENTS.format(**params_path),
  523. data=json.dumps(payload))
  524. return raise_error_from_response(data_raw, KeycloakGetError, expected_code=201, skip_exists=skip_exists)
  525. def delete_client(self, client_id):
  526. """
  527. Get representation of the client
  528. ClientRepresentation
  529. http://www.keycloak.org/docs-api/3.3/rest-api/index.html#_clientrepresentation
  530. :param client_id: keycloak client id (not oauth client-id)
  531. :return: Keycloak server response (ClientRepresentation)
  532. """
  533. params_path = {"realm-name": self.realm_name, "id": client_id}
  534. data_raw = self.connection.raw_delete(URL_ADMIN_CLIENT.format(**params_path))
  535. return raise_error_from_response(data_raw, KeycloakGetError, expected_code=204)
  536. def get_realm_roles(self):
  537. """
  538. Get all roles for the realm or client
  539. RoleRepresentation
  540. http://www.keycloak.org/docs-api/3.3/rest-api/index.html#_rolerepresentation
  541. :return: Keycloak server response (RoleRepresentation)
  542. """
  543. params_path = {"realm-name": self.realm_name}
  544. data_raw = self.connection.raw_get(URL_ADMIN_REALM_ROLES.format(**params_path))
  545. return raise_error_from_response(data_raw, KeycloakGetError)
  546. def get_client_roles(self, client_id):
  547. """
  548. Get all roles for the client
  549. :param client_id: id of client (not client-id)
  550. RoleRepresentation
  551. http://www.keycloak.org/docs-api/3.3/rest-api/index.html#_rolerepresentation
  552. :return: Keycloak server response (RoleRepresentation)
  553. """
  554. params_path = {"realm-name": self.realm_name, "id": client_id}
  555. data_raw = self.connection.raw_get(URL_ADMIN_CLIENT_ROLES.format(**params_path))
  556. return raise_error_from_response(data_raw, KeycloakGetError)
  557. def get_client_role(self, client_id, role_name):
  558. """
  559. Get client role id by name
  560. This is required for further actions with this role.
  561. :param client_id: id of client (not client-id)
  562. :param role_name: roles name (not id!)
  563. RoleRepresentation
  564. http://www.keycloak.org/docs-api/3.3/rest-api/index.html#_rolerepresentation
  565. :return: role_id
  566. """
  567. params_path = {"realm-name": self.realm_name, "id": client_id, "role-name": role_name}
  568. data_raw = self.connection.raw_get(URL_ADMIN_CLIENT_ROLE.format(**params_path))
  569. return raise_error_from_response(data_raw, KeycloakGetError)
  570. def get_client_role_id(self, client_id, role_name):
  571. """
  572. Warning: Deprecated
  573. Get client role id by name
  574. This is required for further actions with this role.
  575. :param client_id: id of client (not client-id)
  576. :param role_name: roles name (not id!)
  577. RoleRepresentation
  578. http://www.keycloak.org/docs-api/3.3/rest-api/index.html#_rolerepresentation
  579. :return: role_id
  580. """
  581. role = self.get_client_role(client_id, role_name)
  582. return role.get("id")
  583. def create_client_role(self, client_role_id, payload, skip_exists=False):
  584. """
  585. Create a client role
  586. RoleRepresentation
  587. http://www.keycloak.org/docs-api/3.3/rest-api/index.html#_rolerepresentation
  588. :param client_role_id: id of client (not client-id)
  589. :param payload: RoleRepresentation
  590. :return: Keycloak server response (RoleRepresentation)
  591. """
  592. params_path = {"realm-name": self.realm_name, "id": client_role_id}
  593. data_raw = self.connection.raw_post(URL_ADMIN_CLIENT_ROLES.format(**params_path),
  594. data=json.dumps(payload))
  595. return raise_error_from_response(data_raw, KeycloakGetError, expected_code=201, skip_exists=skip_exists)
  596. def delete_client_role(self, client_role_id, role_name):
  597. """
  598. Create a client role
  599. RoleRepresentation
  600. http://www.keycloak.org/docs-api/3.3/rest-api/index.html#_rolerepresentation
  601. :param client_role_id: id of client (not client-id)
  602. :param role_name: roles name (not id!)
  603. """
  604. params_path = {"realm-name": self.realm_name, "id": client_role_id, "role-name": role_name}
  605. data_raw = self.connection.raw_delete(URL_ADMIN_CLIENT_ROLE.format(**params_path))
  606. return raise_error_from_response(data_raw, KeycloakGetError, expected_code=204)
  607. def assign_client_role(self, user_id, client_id, roles):
  608. """
  609. Assign a client role to a user
  610. :param client_id: id of client (not client-id)
  611. :param user_id: id of user
  612. :param client_id: id of client containing role,
  613. :param roles: roles list or role (use RoleRepresentation)
  614. :return Keycloak server response
  615. """
  616. payload = roles if isinstance(roles, list) else [roles]
  617. params_path = {"realm-name": self.realm_name, "id": user_id, "client-id": client_id}
  618. data_raw = self.connection.raw_post(URL_ADMIN_USER_CLIENT_ROLES.format(**params_path),
  619. data=json.dumps(payload))
  620. return raise_error_from_response(data_raw, KeycloakGetError, expected_code=204)
  621. def get_client_roles_of_user(self, user_id, client_id):
  622. """
  623. Get all client roles for a user.
  624. :param client_id: id of client (not client-id)
  625. :param user_id: id of user
  626. :return: Keycloak server response (array RoleRepresentation)
  627. """
  628. return self._get_client_roles_of_user(URL_ADMIN_USER_CLIENT_ROLES, user_id, client_id)
  629. def get_available_client_roles_of_user(self, user_id, client_id):
  630. """
  631. Get available client role-mappings for a user.
  632. :param client_id: id of client (not client-id)
  633. :param user_id: id of user
  634. :return: Keycloak server response (array RoleRepresentation)
  635. """
  636. return self._get_client_roles_of_user(URL_ADMIN_USER_CLIENT_ROLES_AVAILABLE, user_id, client_id)
  637. def get_composite_client_roles_of_user(self, user_id, client_id):
  638. """
  639. Get composite client role-mappings for a user.
  640. :param client_id: id of client (not client-id)
  641. :param user_id: id of user
  642. :return: Keycloak server response (array RoleRepresentation)
  643. """
  644. return self._get_client_roles_of_user(URL_ADMIN_USER_CLIENT_ROLES_COMPOSITE, user_id, client_id)
  645. def _get_client_roles_of_user(self, client_level_role_mapping_url, user_id, client_id):
  646. params_path = {"realm-name": self.realm_name, "id": user_id, "client-id": client_id}
  647. data_raw = self.connection.raw_get(client_level_role_mapping_url.format(**params_path))
  648. return raise_error_from_response(data_raw, KeycloakGetError)
  649. def delete_client_roles_of_user(self, user_id, client_id, roles):
  650. """
  651. Delete client roles from a user.
  652. :param client_id: id of client (not client-id)
  653. :param user_id: id of user
  654. :param client_id: id of client containing role,
  655. :param roles: roles list or role to delete (use RoleRepresentation)
  656. :return: Keycloak server response
  657. """
  658. payload = roles if isinstance(roles, list) else [roles]
  659. params_path = {"realm-name": self.realm_name, "id": user_id, "client-id": client_id}
  660. data_raw = self.connection.raw_delete(URL_ADMIN_USER_CLIENT_ROLES.format(**params_path),
  661. data=json.dumps(payload))
  662. return raise_error_from_response(data_raw, KeycloakGetError, expected_code=204)
  663. def get_authentication_flows(self):
  664. """
  665. Get authentication flows. Returns all flow details
  666. AuthenticationFlowRepresentation
  667. https://www.keycloak.org/docs-api/4.1/rest-api/index.html#_authenticationflowrepresentation
  668. :return: Keycloak server response (AuthenticationFlowRepresentation)
  669. """
  670. params_path = {"realm-name": self.realm_name}
  671. data_raw = self.connection.raw_get(URL_ADMIN_FLOWS.format(**params_path))
  672. return raise_error_from_response(data_raw, KeycloakGetError)
  673. def create_authentication_flow(self, payload, skip_exists=False):
  674. """
  675. Create a new authentication flow
  676. AuthenticationFlowRepresentation
  677. https://www.keycloak.org/docs-api/4.1/rest-api/index.html#_authenticationflowrepresentation
  678. :param payload: AuthenticationFlowRepresentation
  679. :return: Keycloak server response (RoleRepresentation)
  680. """
  681. params_path = {"realm-name": self.realm_name}
  682. data_raw = self.connection.raw_post(URL_ADMIN_FLOWS.format(**params_path),
  683. data=payload)
  684. return raise_error_from_response(data_raw, KeycloakGetError, expected_code=201, skip_exists=skip_exists)
  685. def get_authentication_flow_executions(self, flow_alias):
  686. """
  687. Get authentication flow executions. Returns all execution steps
  688. :return: Response(json)
  689. """
  690. params_path = {"realm-name": self.realm_name, "flow-alias": flow_alias}
  691. data_raw = self.connection.raw_get(URL_ADMIN_FLOWS_EXECUTIONS.format(**params_path))
  692. return raise_error_from_response(data_raw, KeycloakGetError)
  693. def update_authentication_flow_executions(self, payload, flow_alias):
  694. """
  695. Update an authentication flow execution
  696. AuthenticationExecutionInfoRepresentation
  697. https://www.keycloak.org/docs-api/4.1/rest-api/index.html#_authenticationexecutioninforepresentation
  698. :param payload: AuthenticationExecutionInfoRepresentation
  699. :return: Keycloak server response
  700. """
  701. params_path = {"realm-name": self.realm_name, "flow-alias": flow_alias}
  702. data_raw = self.connection.raw_put(URL_ADMIN_FLOWS_EXECUTIONS.format(**params_path),
  703. data=payload)
  704. return raise_error_from_response(data_raw, KeycloakGetError, expected_code=204)
  705. def sync_users(self, storage_id, action):
  706. """
  707. Function to trigger user sync from provider
  708. :param storage_id:
  709. :param action:
  710. :return:
  711. """
  712. data = {'action': action}
  713. params_query = {"action": action}
  714. params_path = {"realm-name": self.realm_name, "id": storage_id}
  715. data_raw = self.connection.raw_post(URL_ADMIN_USER_STORAGE.format(**params_path),
  716. data=json.dumps(data), **params_query)
  717. return raise_error_from_response(data_raw, KeycloakGetError)
  718. def get_client_scopes(self):
  719. """
  720. Get representation of the client scopes for the realm where we are connected to
  721. https://www.keycloak.org/docs-api/4.5/rest-api/index.html#_getclientscopes
  722. :return: Keycloak server response Array of (ClientScopeRepresentation)
  723. """
  724. params_path = {"realm-name": self.realm_name}
  725. data_raw = self.connection.raw_get(URL_ADMIN_CLIENT_SCOPES.format(**params_path))
  726. return raise_error_from_response(data_raw, KeycloakGetError)
  727. def get_client_scope(self, client_scope_id):
  728. """
  729. Get representation of the client scopes for the realm where we are connected to
  730. https://www.keycloak.org/docs-api/4.5/rest-api/index.html#_getclientscopes
  731. :return: Keycloak server response (ClientScopeRepresentation)
  732. """
  733. params_path = {"realm-name": self.realm_name, "scope-id": client_scope_id}
  734. data_raw = self.connection.raw_get(URL_ADMIN_CLIENT_SCOPE.format(**params_path))
  735. return raise_error_from_response(data_raw, KeycloakGetError)
  736. def add_mapper_to_client_scope(self, client_scope_id, payload):
  737. """
  738. Add a mapper to a client scope
  739. https://www.keycloak.org/docs-api/4.5/rest-api/index.html#_create_mapper
  740. :param payload: ProtocolMapperRepresentation
  741. :return: Keycloak server Response
  742. """
  743. params_path = {"realm-name": self.realm_name, "scope-id": client_scope_id}
  744. data_raw = self.connection.raw_post(URL_ADMIN_CLIENT_SCOPES_ADD_MAPPER.format(**params_path), data=json.dumps(payload))
  745. return raise_error_from_response(data_raw, KeycloakGetError, expected_code=201)
  746. def get_client_secrets(self, client_id):
  747. """
  748. Get representation of the client secrets
  749. https://www.keycloak.org/docs-api/4.5/rest-api/index.html#_getclientsecret
  750. :param client_id: id of client (not client-id)
  751. :return: Keycloak server response (ClientRepresentation)
  752. """
  753. params_path = {"realm-name": self.realm_name, "id": client_id}
  754. data_raw = self.connection.raw_get(URL_ADMIN_CLIENT_SECRETS.format(**params_path))
  755. return raise_error_from_response(data_raw, KeycloakGetError)