mirror of https://github.com/jumpserver/jumpserver
perf: 去掉几个不用的api
parent
243eedc4f9
commit
7b8f932dcd
|
@ -4,7 +4,6 @@ import uuid
|
||||||
|
|
||||||
from django.core.cache import cache
|
from django.core.cache import cache
|
||||||
from django.shortcuts import get_object_or_404
|
from django.shortcuts import get_object_or_404
|
||||||
from rest_framework.permissions import AllowAny
|
|
||||||
from rest_framework.response import Response
|
from rest_framework.response import Response
|
||||||
from rest_framework.views import APIView
|
from rest_framework.views import APIView
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
#
|
#
|
||||||
from collections import OrderedDict
|
|
||||||
import logging
|
import logging
|
||||||
import uuid
|
import uuid
|
||||||
|
|
||||||
|
@ -8,7 +7,6 @@ from django.core.cache import cache
|
||||||
from django.shortcuts import get_object_or_404
|
from django.shortcuts import get_object_or_404
|
||||||
from rest_framework import viewsets
|
from rest_framework import viewsets
|
||||||
from rest_framework.views import APIView, Response
|
from rest_framework.views import APIView, Response
|
||||||
from rest_framework.permissions import AllowAny
|
|
||||||
|
|
||||||
from common.drf.api import JMSBulkModelViewSet
|
from common.drf.api import JMSBulkModelViewSet
|
||||||
from common.utils import get_object_or_none
|
from common.utils import get_object_or_none
|
||||||
|
@ -18,7 +16,7 @@ from .. import serializers
|
||||||
from .. import exceptions
|
from .. import exceptions
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
'TerminalViewSet', 'TerminalTokenApi', 'StatusViewSet', 'TerminalConfig',
|
'TerminalViewSet', 'StatusViewSet', 'TerminalConfig',
|
||||||
]
|
]
|
||||||
logger = logging.getLogger(__file__)
|
logger = logging.getLogger(__file__)
|
||||||
|
|
||||||
|
@ -69,41 +67,6 @@ class TerminalViewSet(JMSBulkModelViewSet):
|
||||||
queryset = queryset.filter(id__in=filtered_queryset_id)
|
queryset = queryset.filter(id__in=filtered_queryset_id)
|
||||||
return queryset
|
return queryset
|
||||||
|
|
||||||
def get_permissions(self):
|
|
||||||
if self.action == "create":
|
|
||||||
self.permission_classes = (AllowAny,)
|
|
||||||
return super().get_permissions()
|
|
||||||
|
|
||||||
|
|
||||||
class TerminalTokenApi(APIView):
|
|
||||||
permission_classes = (AllowAny,)
|
|
||||||
queryset = Terminal.objects.filter(is_deleted=False)
|
|
||||||
|
|
||||||
def get(self, request, *args, **kwargs):
|
|
||||||
try:
|
|
||||||
terminal = self.queryset.get(id=kwargs.get('terminal'))
|
|
||||||
except Terminal.DoesNotExist:
|
|
||||||
terminal = None
|
|
||||||
|
|
||||||
token = request.query_params.get("token")
|
|
||||||
|
|
||||||
if terminal is None:
|
|
||||||
return Response('May be reject by administrator', status=401)
|
|
||||||
|
|
||||||
if token is None or cache.get(token, "") != str(terminal.id):
|
|
||||||
return Response('Token is not valid', status=401)
|
|
||||||
|
|
||||||
if not terminal.is_accepted:
|
|
||||||
return Response("Terminal was not accepted yet", status=400)
|
|
||||||
|
|
||||||
if not terminal.user or not terminal.user.access_key:
|
|
||||||
return Response("No access key generate", status=401)
|
|
||||||
|
|
||||||
access_key = terminal.user.access_key()
|
|
||||||
data = OrderedDict()
|
|
||||||
data['access_key'] = {'id': access_key.id, 'secret': access_key.secret}
|
|
||||||
return Response(data, status=200)
|
|
||||||
|
|
||||||
|
|
||||||
class StatusViewSet(viewsets.ModelViewSet):
|
class StatusViewSet(viewsets.ModelViewSet):
|
||||||
queryset = Status.objects.all()
|
queryset = Status.objects.all()
|
||||||
|
|
|
@ -27,8 +27,6 @@ urlpatterns = [
|
||||||
api.SessionReplayViewSet.as_view({'get': 'retrieve', 'post': 'create'}),
|
api.SessionReplayViewSet.as_view({'get': 'retrieve', 'post': 'create'}),
|
||||||
name='session-replay'),
|
name='session-replay'),
|
||||||
path('tasks/kill-session/', api.KillSessionAPI.as_view(), name='kill-session'),
|
path('tasks/kill-session/', api.KillSessionAPI.as_view(), name='kill-session'),
|
||||||
path('terminals/<uuid:terminal>/access-key/', api.TerminalTokenApi.as_view(),
|
|
||||||
name='terminal-access-key'),
|
|
||||||
path('terminals/config/', api.TerminalConfig.as_view(), name='terminal-config'),
|
path('terminals/config/', api.TerminalConfig.as_view(), name='terminal-config'),
|
||||||
path('commands/export/', api.CommandExportApi.as_view(), name="command-export"),
|
path('commands/export/', api.CommandExportApi.as_view(), name="command-export"),
|
||||||
path('commands/insecure-command/', api.InsecureCommandAlertAPI.as_view(), name="command-alert"),
|
path('commands/insecure-command/', api.InsecureCommandAlertAPI.as_view(), name="command-alert"),
|
||||||
|
|
Loading…
Reference in New Issue