mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
921 B
30 lines
921 B
# -*- coding: utf-8 -*-
|
|
#
|
|
from rest_framework import viewsets
|
|
|
|
from common.permissions import IsValidUser
|
|
from common.exceptions import JMSException
|
|
from users.models import User
|
|
from orgs.models import Organization
|
|
from .. import serializers
|
|
|
|
|
|
class AssigneeViewSet(viewsets.ReadOnlyModelViewSet):
|
|
permission_classes = (IsValidUser,)
|
|
serializer_class = serializers.AssigneeSerializer
|
|
filterset_fields = ('id', 'name', 'username', 'email', 'source')
|
|
search_fields = filterset_fields
|
|
|
|
def get_org(self):
|
|
org_id = self.request.query_params.get('org_id')
|
|
org = Organization.get_instance(org_id)
|
|
if not org:
|
|
error = ('The organization `{}` does not exist'.format(org_id))
|
|
raise JMSException(error)
|
|
return org
|
|
|
|
def get_queryset(self):
|
|
org = self.get_org()
|
|
queryset = User.get_super_and_org_admins(org=org)
|
|
return queryset
|