funkwhale/api/funkwhale_api/common/permissions.py

60 wiersze
1.7 KiB
Python
Czysty Zwykły widok Historia

import operator
from django.core.exceptions import ObjectDoesNotExist
from django.http import Http404
from rest_framework.permissions import BasePermission
from funkwhale_api.common import preferences
class ConditionalAuthentication(BasePermission):
def has_permission(self, request, view):
2018-06-09 13:36:16 +00:00
if preferences.get("common__api_authentication_required"):
2018-09-22 12:29:30 +00:00
return (request.user and request.user.is_authenticated) or (
hasattr(request, "actor") and request.actor
)
return True
2017-12-27 22:32:02 +00:00
class OwnerPermission(BasePermission):
"""
Ensure the request user is the owner of the object.
Usage:
class MyView(APIView):
model = MyModel
permission_classes = [OwnerPermission]
owner_field = 'owner'
owner_checks = ['read', 'write']
"""
2018-06-09 13:36:16 +00:00
perms_map = {
2018-06-09 13:36:16 +00:00
"GET": "read",
"OPTIONS": "read",
"HEAD": "read",
"POST": "write",
"PUT": "write",
"PATCH": "write",
"DELETE": "write",
}
def has_object_permission(self, request, view, obj):
method_check = self.perms_map[request.method]
2018-06-09 13:36:16 +00:00
owner_checks = getattr(view, "owner_checks", ["read", "write"])
if method_check not in owner_checks:
# check not enabled
return True
2018-06-09 13:36:16 +00:00
owner_field = getattr(view, "owner_field", "user")
owner_exception = getattr(view, "owner_exception", Http404)
try:
owner = operator.attrgetter(owner_field)(obj)
except ObjectDoesNotExist:
raise owner_exception
if not owner or not request.user.is_authenticated or owner != request.user:
raise owner_exception
return True