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.
39 lines
1.3 KiB
39 lines
1.3 KiB
# coding: utf-8
|
|
#
|
|
|
|
from orgs.mixins.api import OrgBulkModelViewSet
|
|
from rest_framework.decorators import action
|
|
from rest_framework.response import Response
|
|
|
|
from common.tree import TreeNodeSerializer
|
|
from common.mixins.views import SuggestionMixin
|
|
from ..hands import IsOrgAdminOrAppUser
|
|
from .. import serializers
|
|
from ..models import Application
|
|
|
|
__all__ = ['ApplicationViewSet']
|
|
|
|
|
|
class ApplicationViewSet(SuggestionMixin, OrgBulkModelViewSet):
|
|
model = Application
|
|
filterset_fields = {
|
|
'name': ['exact'],
|
|
'category': ['exact'],
|
|
'type': ['exact', 'in'],
|
|
}
|
|
search_fields = ('name', 'type', 'category')
|
|
permission_classes = (IsOrgAdminOrAppUser,)
|
|
serializer_classes = {
|
|
'default': serializers.AppSerializer,
|
|
'get_tree': TreeNodeSerializer,
|
|
'suggestion': serializers.MiniAppSerializer
|
|
}
|
|
|
|
@action(methods=['GET'], detail=False, url_path='tree')
|
|
def get_tree(self, request, *args, **kwargs):
|
|
show_count = request.query_params.get('show_count', '1') == '1'
|
|
queryset = self.filter_queryset(self.get_queryset())
|
|
tree_nodes = Application.create_tree_nodes(queryset, show_count=show_count)
|
|
serializer = self.get_serializer(tree_nodes, many=True)
|
|
return Response(serializer.data)
|