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.
43 lines
1.9 KiB
43 lines
1.9 KiB
3 years ago
|
from django.utils.translation import ugettext_lazy as _
|
||
|
from rest_framework import serializers
|
||
|
|
||
|
|
||
|
class TerminalSettingSerializer(serializers.Serializer):
|
||
|
SORT_BY_CHOICES = (
|
||
|
('hostname', _('Hostname')),
|
||
|
('ip', _('IP'))
|
||
|
)
|
||
|
|
||
|
PAGE_SIZE_CHOICES = (
|
||
|
('all', _('All')),
|
||
|
('auto', _('Auto')),
|
||
|
('10', '10'),
|
||
|
('15', '15'),
|
||
|
('25', '25'),
|
||
|
('50', '50'),
|
||
|
)
|
||
|
TERMINAL_PASSWORD_AUTH = serializers.BooleanField(required=False, label=_('Password auth'))
|
||
|
TERMINAL_PUBLIC_KEY_AUTH = serializers.BooleanField(
|
||
|
required=False, label=_('Public key auth'),
|
||
|
help_text=_('Tips: If use other auth method, like AD/LDAP, you should disable this to '
|
||
|
'avoid being able to log in after deleting')
|
||
|
)
|
||
|
TERMINAL_ASSET_LIST_SORT_BY = serializers.ChoiceField(SORT_BY_CHOICES, required=False, label=_('List sort by'))
|
||
|
TERMINAL_ASSET_LIST_PAGE_SIZE = serializers.ChoiceField(PAGE_SIZE_CHOICES, required=False,
|
||
|
label=_('List page size'))
|
||
|
TERMINAL_SESSION_KEEP_DURATION = serializers.IntegerField(
|
||
|
min_value=1, max_value=99999, required=True, label=_('Session keep duration'),
|
||
|
help_text=_('Unit: days, Session, record, command will be delete if more than duration, only in database')
|
||
|
)
|
||
|
TERMINAL_TELNET_REGEX = serializers.CharField(
|
||
|
allow_blank=True, max_length=1024, required=False, label=_('Telnet login regex'),
|
||
|
help_text=_("The login success message varies with devices. "
|
||
|
"if you cannot log in to the device through Telnet, set this parameter")
|
||
|
)
|
||
|
TERMINAL_RDP_ADDR = serializers.CharField(
|
||
|
required=False, label=_("RDP address"),
|
||
|
max_length=1024,
|
||
|
allow_blank=True,
|
||
|
help_text=_('RDP visit address, eg: dev.jumpserver.org:3389')
|
||
|
)
|