utils.py 1.0 KB

123456789101112131415161718192021222324252627282930313233
  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. settings = SettingLoader.get_settings()
  9. # we only check the password if the user select password protected
  10. if settings.rest_api.password_protected:
  11. return username == settings.rest_api.login and password == settings.rest_api.password
  12. return True
  13. def authenticate():
  14. """Sends a 401 response that enables basic auth"""
  15. return Response(
  16. 'Could not verify your access level for that URL.\n'
  17. 'You have to login with proper credentials', 401,
  18. {'WWW-Authenticate': 'Basic realm="Login Required"'})
  19. def requires_auth(f):
  20. @wraps(f)
  21. def decorated(*args, **kwargs):
  22. auth = request.authorization
  23. if not auth or not check_auth(auth.username, auth.password):
  24. return authenticate()
  25. return f(*args, **kwargs)
  26. return decorated