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.
52 lines
2.3 KiB
52 lines
2.3 KiB
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
|
|
from django.urls import path, re_path
|
|
from rest_framework_bulk.routes import BulkRouter
|
|
|
|
from common import api as capi
|
|
from .. import api
|
|
|
|
app_name = 'terminal'
|
|
|
|
router = BulkRouter()
|
|
router.register(r'sessions', api.SessionViewSet, 'session')
|
|
router.register(r'terminals/(?P<terminal>[a-zA-Z0-9\-]{36})?/?status', api.StatusViewSet, 'terminal-status')
|
|
router.register(r'terminals/(?P<terminal>[a-zA-Z0-9\-]{36})?/?sessions', api.SessionViewSet, 'terminal-sessions')
|
|
router.register(r'terminals', api.TerminalViewSet, 'terminal')
|
|
router.register(r'tasks', api.TaskViewSet, 'tasks')
|
|
router.register(r'commands', api.CommandViewSet, 'command')
|
|
router.register(r'status', api.StatusViewSet, 'status')
|
|
router.register(r'replay-storages', api.ReplayStorageViewSet, 'replay-storage')
|
|
router.register(r'command-storages', api.CommandStorageViewSet, 'command-storage')
|
|
|
|
urlpatterns = [
|
|
path('sessions/join/validate/', api.SessionJoinValidateAPI.as_view(), name='join-session-validate'),
|
|
path('sessions/<uuid:pk>/replay/',
|
|
api.SessionReplayViewSet.as_view({'get': 'retrieve', 'post': 'create'}),
|
|
name='session-replay'),
|
|
path('tasks/kill-session/', api.KillSessionAPI.as_view(), name='kill-session'),
|
|
path('terminals/config/', api.TerminalConfig.as_view(), name='terminal-config'),
|
|
path('commands/export/', api.CommandExportApi.as_view(), name="command-export"),
|
|
path('commands/insecure-command/', api.InsecureCommandAlertAPI.as_view(), name="command-alert"),
|
|
path('replay-storages/<uuid:pk>/test-connective/', api.ReplayStorageTestConnectiveApi.as_view(), name='replay-storage-test-connective'),
|
|
path('command-storages/<uuid:pk>/test-connective/', api.CommandStorageTestConnectiveApi.as_view(), name='command-storage-test-connective'),
|
|
# components
|
|
path('components/metrics/', api.ComponentsMetricsAPIView.as_view(), name='components-metrics'),
|
|
path('components/state/', api.ComponentsStateAPIView.as_view(), name='components-state'),
|
|
# v2: get session's replay
|
|
# path('v2/sessions/<uuid:pk>/replay/',
|
|
# api.SessionReplayV2ViewSet.as_view({'get': 'retrieve'}),
|
|
# name='session-replay-v2'),
|
|
]
|
|
|
|
old_version_urlpatterns = [
|
|
re_path('(?P<resource>terminal|command)/.*', capi.redirect_plural_name_api)
|
|
]
|
|
|
|
urlpatterns += router.urls + old_version_urlpatterns
|
|
|
|
|
|
|