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.

104 lines
3.1 KiB

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
7 years ago
7 years ago
6 years ago
7 years ago
6 years ago
6 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. import requests
  24. from simplejson import JSONDecodeError
  25. class KeycloakError(Exception):
  26. def __init__(self, error_message="", response_code=None,
  27. response_body=None):
  28. Exception.__init__(self, error_message)
  29. self.response_code = response_code
  30. self.response_body = response_body
  31. self.error_message = error_message
  32. def __str__(self):
  33. if self.response_code is not None:
  34. return "{0}: {1}".format(self.response_code, self.error_message)
  35. else:
  36. return "{0}".format(self.error_message)
  37. class KeycloakAuthenticationError(KeycloakError):
  38. pass
  39. class KeycloakConnectionError(KeycloakError):
  40. pass
  41. class KeycloakOperationError(KeycloakError):
  42. pass
  43. class KeycloakGetError(KeycloakOperationError):
  44. pass
  45. class KeycloakSecretNotFound(KeycloakOperationError):
  46. pass
  47. class KeycloakRPTNotFound(KeycloakOperationError):
  48. pass
  49. class KeycloakAuthorizationConfigError(KeycloakOperationError):
  50. pass
  51. class KeycloakInvalidTokenError(KeycloakOperationError):
  52. pass
  53. def raise_error_from_response(response, error, expected_code=200, skip_exists=False):
  54. if expected_code == response.status_code:
  55. if expected_code == requests.codes.no_content:
  56. return {}
  57. try:
  58. return response.json()
  59. except JSONDecodeError as e:
  60. return response.content
  61. if skip_exists and response.status_code == 409:
  62. return {"Already exists"}
  63. try:
  64. message = response.json()['message']
  65. except (KeyError, ValueError):
  66. message = response.content
  67. if isinstance(error, dict):
  68. error = error.get(response.status_code, KeycloakOperationError)
  69. else:
  70. if response.status_code == 401:
  71. error = KeycloakAuthenticationError
  72. raise error(error_message=message,
  73. response_code=response.status_code,
  74. response_body=response.content)