Skip to content
Snippets Groups Projects
Verified Commit fea43f21 authored by Andreas Ellewsen's avatar Andreas Ellewsen
Browse files

Expand orgunit objects in api responses

When sending a GET request to an endpoint with an orgunit field you now
get the orgunit object instead of the id. Other http methods behave as
before.

Resolves: GREG-126
parent 76dadfb6
No related branches found
No related tags found
1 merge request!175Greg 126 api expand ou objects
Pipeline #101220 passed
from rest_framework import serializers
from rest_framework.fields import IntegerField
from greg.api.serializers.organizational_unit import OrganizationalUnitSerializer
from greg.models import Role, RoleType
......@@ -7,6 +9,7 @@ class RoleSerializer(serializers.ModelSerializer):
type = serializers.SlugRelatedField(
queryset=RoleType.objects.all(), slug_field="identifier"
)
orgunit = OrganizationalUnitSerializer()
class Meta:
model = Role
......@@ -20,3 +23,13 @@ class RoleSerializer(serializers.ModelSerializer):
"updated",
"type",
]
class RoleWriteSerializer(RoleSerializer):
"""
Serializer for use with GET.
When doing GET we want the complete orgunit object, not just the id.
"""
orgunit = IntegerField(source="orgunit_id") # type: ignore
......@@ -8,9 +8,9 @@ from greg.api.filters import PersonFilter, RoleFilter, IdentityFilter
from greg.api.pagination import PrimaryKeyCursorPagination
from greg.api.serializers.person import (
PersonSerializer,
RoleSerializer,
IdentitySerializer,
)
from greg.api.serializers.role import RoleSerializer, RoleWriteSerializer
from greg.models import Person, Role, Identity
......@@ -49,12 +49,21 @@ class RoleViewSet(viewsets.ModelViewSet):
"""Person role API"""
queryset = Role.objects.all().order_by("id")
serializer_class = RoleSerializer
pagination_class = PrimaryKeyCursorPagination
filter_backends = (filters.DjangoFilterBackend,)
filterset_class = RoleFilter
lookup_field = "id"
def get_serializer_class(self):
"""
Fetch different serializer depending on http method.
To return the complete orgunit object for GET we use a different serializer.
"""
if self.request.method in ("POST", "PATCH"):
return RoleWriteSerializer
return RoleSerializer
def get_queryset(self):
qs = self.queryset
if not self.kwargs:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment