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.
55 lines
1.3 KiB
55 lines
1.3 KiB
from django.utils.translation import gettext_lazy as _
|
|
|
|
from .base import BaseType
|
|
|
|
|
|
class WebTypes(BaseType):
|
|
WEBSITE = 'website', _('Website')
|
|
|
|
@classmethod
|
|
def _get_base_constrains(cls) -> dict:
|
|
return {
|
|
'*': {
|
|
'charset_enabled': False,
|
|
'domain_enabled': False,
|
|
'su_enabled': False,
|
|
}
|
|
}
|
|
|
|
@classmethod
|
|
def _get_automation_constrains(cls) -> dict:
|
|
constrains = {
|
|
'*': {
|
|
'ansible_enabled': False,
|
|
'ping_enabled': False,
|
|
'gather_facts_enabled': False,
|
|
'verify_account_enabled': False,
|
|
'change_secret_enabled': False,
|
|
'push_account_enabled': False,
|
|
'gather_accounts_enabled': False,
|
|
}
|
|
}
|
|
return constrains
|
|
|
|
@classmethod
|
|
def _get_protocol_constrains(cls) -> dict:
|
|
return {
|
|
'*': {
|
|
'choices': ['http'],
|
|
}
|
|
}
|
|
|
|
@classmethod
|
|
def internal_platforms(cls):
|
|
return {
|
|
cls.WEBSITE: [
|
|
{'name': 'Website'},
|
|
],
|
|
}
|
|
|
|
@classmethod
|
|
def get_community_types(cls):
|
|
return [
|
|
cls.WEBSITE,
|
|
]
|