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.
65 lines
1.8 KiB
65 lines
1.8 KiB
|
|
from .base import BaseType
|
|
|
|
|
|
class DatabaseTypes(BaseType):
|
|
MYSQL = 'mysql', 'MySQL'
|
|
MARIADB = 'mariadb', 'MariaDB'
|
|
POSTGRESQL = 'postgresql', 'PostgreSQL'
|
|
ORACLE = 'oracle', 'Oracle'
|
|
SQLSERVER = 'sqlserver', 'SQLServer'
|
|
CLICKHOUSE = 'clickhouse', 'ClickHouse'
|
|
MONGODB = 'mongodb', 'MongoDB'
|
|
REDIS = 'redis', 'Redis'
|
|
|
|
@classmethod
|
|
def _get_base_constrains(cls) -> dict:
|
|
return {
|
|
'*': {
|
|
'charset_enabled': False,
|
|
'domain_enabled': True,
|
|
'su_enabled': False,
|
|
}
|
|
}
|
|
|
|
@classmethod
|
|
def _get_automation_constrains(cls) -> dict:
|
|
constrains = {
|
|
'*': {
|
|
'ansible_enabled': True,
|
|
'ansible_config': {
|
|
'ansible_connection': 'local',
|
|
},
|
|
'gather_facts_enabled': True,
|
|
'gather_accounts_enabled': True,
|
|
'verify_account_enabled': True,
|
|
'change_secret_enabled': True,
|
|
'push_account_enabled': True,
|
|
}
|
|
}
|
|
return constrains
|
|
|
|
@classmethod
|
|
def _get_protocol_constrains(cls) -> dict:
|
|
return {
|
|
'*': {
|
|
'choices': '__self__',
|
|
}
|
|
}
|
|
|
|
@classmethod
|
|
def internal_platforms(cls):
|
|
return {
|
|
cls.MYSQL: [{'name': 'MySQL'}],
|
|
cls.MARIADB: [{'name': 'MariaDB'}],
|
|
cls.POSTGRESQL: [{'name': 'PostgreSQL'}],
|
|
cls.ORACLE: [{'name': 'Oracle'}],
|
|
cls.SQLSERVER: [{'name': 'SQLServer'}],
|
|
cls.CLICKHOUSE: [
|
|
{'name': 'ClickHouse', 'automation': {'ansible_enabled': False}}
|
|
],
|
|
cls.MONGODB: [{'name': 'MongoDB'}],
|
|
cls.REDIS: [{'name': 'Redis'}],
|
|
}
|
|
|