utils.py 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. from functools import wraps
  2. from flask import request, Response
  3. from core.ConfigurationManager import SettingLoader
  4. def check_auth(username, password):
  5. """This function is called to check if a username /
  6. password combination is valid.
  7. """
  8. sl = SettingLoader.Instance()
  9. settings = sl.settings
  10. return username == settings.rest_api.login and password == settings.rest_api.password
  11. def authenticate():
  12. """Sends a 401 response that enables basic auth"""
  13. return Response(
  14. 'Could not verify your access level for that URL.\n'
  15. 'You have to login with proper credentials', 401,
  16. {'WWW-Authenticate': 'Basic realm="Login Required"'})
  17. def requires_auth(f):
  18. @wraps(f)
  19. def decorated(*args, **kwargs):
  20. sl = SettingLoader.Instance()
  21. settings = sl.settings
  22. if settings.rest_api.password_protected:
  23. auth = request.authorization
  24. if not auth or not check_auth(auth.username, auth.password):
  25. return authenticate()
  26. return f(*args, **kwargs)
  27. return decorated