193 lines
5.4 KiB
Python
193 lines
5.4 KiB
Python
from drf_spectacular.utils import extend_schema, extend_schema_view, OpenApiParameter, OpenApiResponse
|
|
|
|
from access.models.tenant import Tenant as Organization
|
|
# THis import only exists so that the migrations can be created
|
|
from access.models.team_history import TeamHistory # pylint: disable=W0611:unused-import
|
|
from access.serializers.teams import (
|
|
Team,
|
|
TeamModelSerializer,
|
|
TeamViewSerializer
|
|
)
|
|
|
|
from api.viewsets.common import ModelViewSet
|
|
|
|
|
|
|
|
# @extend_schema(tags=['access'])
|
|
@extend_schema_view(
|
|
create=extend_schema(
|
|
summary = 'Create a team within this organization',
|
|
description='',
|
|
parameters = [
|
|
OpenApiParameter(
|
|
name = 'organization_id',
|
|
location = 'path',
|
|
type = int
|
|
),
|
|
],
|
|
responses = {
|
|
200: OpenApiResponse(description='Allready exists', response=TeamViewSerializer),
|
|
201: OpenApiResponse(description='Created', response=TeamViewSerializer),
|
|
# 400: OpenApiResponse(description='Validation failed.'),
|
|
403: OpenApiResponse(description='User is missing add permissions'),
|
|
}
|
|
),
|
|
destroy = extend_schema(
|
|
summary = 'Delete a team from this organization',
|
|
description = '',
|
|
parameters = [
|
|
OpenApiParameter(
|
|
name = 'id',
|
|
location = 'path',
|
|
type = int
|
|
),
|
|
OpenApiParameter(
|
|
name = 'organization_id',
|
|
location = 'path',
|
|
type = int
|
|
),
|
|
],
|
|
responses = {
|
|
204: OpenApiResponse(description=''),
|
|
403: OpenApiResponse(description='User is missing delete permissions'),
|
|
}
|
|
),
|
|
list = extend_schema(
|
|
summary = 'Fetch all teams from this organization',
|
|
description='',
|
|
parameters = [
|
|
OpenApiParameter(
|
|
name = 'organization_id',
|
|
location = 'path',
|
|
type = int
|
|
),
|
|
],
|
|
responses = {
|
|
200: OpenApiResponse(description='', response=TeamViewSerializer),
|
|
403: OpenApiResponse(description='User is missing view permissions'),
|
|
}
|
|
),
|
|
retrieve = extend_schema(
|
|
summary = 'Fetch a single team from this organization',
|
|
description='',
|
|
parameters = [
|
|
OpenApiParameter(
|
|
name = 'id',
|
|
location = 'path',
|
|
type = int
|
|
),
|
|
OpenApiParameter(
|
|
name = 'organization_id',
|
|
location = 'path',
|
|
type = int
|
|
),
|
|
],
|
|
responses = {
|
|
200: OpenApiResponse(description='', response=TeamViewSerializer),
|
|
403: OpenApiResponse(description='User is missing view permissions'),
|
|
}
|
|
),
|
|
update = extend_schema(exclude = True),
|
|
partial_update = extend_schema(
|
|
summary = 'Update a team within this organization',
|
|
description = '',
|
|
parameters = [
|
|
OpenApiParameter(
|
|
name = 'id',
|
|
location = 'path',
|
|
type = int
|
|
),
|
|
OpenApiParameter(
|
|
name = 'organization_id',
|
|
location = 'path',
|
|
type = int
|
|
),
|
|
],
|
|
responses = {
|
|
200: OpenApiResponse(description='', response=TeamViewSerializer),
|
|
# 201: OpenApiResponse(description='Created', response=OrganizationViewSerializer),
|
|
# # 400: OpenApiResponse(description='Validation failed.'),
|
|
403: OpenApiResponse(description='User is missing change permissions'),
|
|
}
|
|
),
|
|
)
|
|
class ViewSet( ModelViewSet ):
|
|
|
|
filterset_fields = [
|
|
'team_name',
|
|
]
|
|
|
|
search_fields = [
|
|
'team_name',
|
|
]
|
|
|
|
model = Team
|
|
|
|
view_description = 'Teams belonging to a single organization'
|
|
|
|
|
|
def get_back_url(self) -> str:
|
|
|
|
if(
|
|
getattr(self, '_back_url', None) is None
|
|
):
|
|
|
|
return_model = Organization.objects.get(
|
|
pk = self.kwargs['organization_id']
|
|
)
|
|
|
|
self._back_url = str(
|
|
return_model.get_url( self.request )
|
|
)
|
|
|
|
return self._back_url
|
|
|
|
|
|
def get_queryset(self):
|
|
|
|
if self.queryset is not None:
|
|
|
|
return self.queryset
|
|
|
|
queryset = super().get_queryset()
|
|
|
|
queryset = queryset.filter(organization_id=self.kwargs['organization_id'])
|
|
|
|
self.queryset = queryset
|
|
|
|
return self.queryset
|
|
|
|
def get_serializer_class(self):
|
|
|
|
if (
|
|
self.action == 'list'
|
|
or self.action == 'retrieve'
|
|
):
|
|
|
|
self.serializer_class = globals()[str( self.model._meta.verbose_name) + 'ViewSerializer']
|
|
|
|
else:
|
|
|
|
self.serializer_class = globals()[str( self.model._meta.verbose_name) + 'ModelSerializer']
|
|
|
|
return self.serializer_class
|
|
|
|
|
|
def get_return_url(self) -> str:
|
|
|
|
if getattr(self, '_get_return_url', None):
|
|
|
|
return self._get_return_url
|
|
|
|
if self.kwargs.get('pk', None) is None:
|
|
|
|
return_model = Organization.objects.get(
|
|
pk = self.kwargs['organization_id']
|
|
)
|
|
|
|
self._get_return_url = return_model.get_url( self.request )
|
|
|
|
return self._get_return_url
|
|
|
|
return None
|