decorators.py 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # GNU MediaGoblin -- federated, autonomous media hosting
  2. # Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
  3. #
  4. # This program is free software: you can redistribute it and/or modify
  5. # it under the terms of the GNU Affero General Public License as published by
  6. # the Free Software Foundation, either version 3 of the License, or
  7. # (at your option) any later version.
  8. #
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. # GNU Affero General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU Affero General Public License
  15. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. from functools import wraps
  17. from mediagoblin.decorators import require_active_login
  18. from mediagoblin.tools.response import json_response
  19. def user_has_privilege(privilege_name):
  20. """
  21. Requires that a user have a particular privilege in order to access a page.
  22. In order to require that a user have multiple privileges, use this
  23. decorator twice on the same view. This decorator also makes sure that the
  24. user is not banned, or else it redirects them to the "You are Banned" page.
  25. :param privilege_name A unicode object that is that represents
  26. the privilege object. This object is
  27. the name of the privilege, as assigned
  28. in the Privilege.privilege_name column
  29. """
  30. def user_has_privilege_decorator(controller):
  31. @wraps(controller)
  32. @require_active_login
  33. def wrapper(request, *args, **kwargs):
  34. if not request.user.has_privilege(privilege_name):
  35. error = "User '{0}' needs '{1}' privilege".format(
  36. request.user.username,
  37. privilege_name
  38. )
  39. return json_response({"error": error}, status=403)
  40. return controller(request, *args, **kwargs)
  41. return wrapper
  42. return user_has_privilege_decorator