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.
128 lines
5.7 KiB
128 lines
5.7 KiB
from django.db import models
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
from assets.const import AllTypes
|
|
from assets.const import Protocol
|
|
from common.db.fields import JsonDictTextField
|
|
from common.db.models import JMSBaseModel
|
|
|
|
__all__ = ['Platform', 'PlatformProtocol', 'PlatformAutomation']
|
|
|
|
from common.utils import lazyproperty
|
|
from labels.mixins import LabeledMixin
|
|
|
|
|
|
class PlatformProtocol(models.Model):
|
|
name = models.CharField(max_length=32, verbose_name=_('Name'))
|
|
port = models.IntegerField(verbose_name=_('Port'))
|
|
primary = models.BooleanField(default=False, verbose_name=_('Primary'))
|
|
required = models.BooleanField(default=False, verbose_name=_('Required'))
|
|
default = models.BooleanField(default=False, verbose_name=_('Default'))
|
|
public = models.BooleanField(default=True, verbose_name=_('Public'))
|
|
setting = models.JSONField(verbose_name=_('Setting'), default=dict)
|
|
platform = models.ForeignKey('Platform', on_delete=models.CASCADE, related_name='protocols')
|
|
|
|
def __str__(self):
|
|
return '{}/{}'.format(self.name, self.port)
|
|
|
|
@property
|
|
def secret_types(self):
|
|
return Protocol.settings().get(self.name, {}).get('secret_types', ['password'])
|
|
|
|
@lazyproperty
|
|
def port_from_addr(self):
|
|
from assets.const.protocol import Protocol as ProtocolConst
|
|
return ProtocolConst.settings().get(self.name, {}).get('port_from_addr', False)
|
|
|
|
|
|
class PlatformAutomation(models.Model):
|
|
ansible_enabled = models.BooleanField(default=False, verbose_name=_("Enabled"))
|
|
ansible_config = models.JSONField(default=dict, verbose_name=_("Ansible config"))
|
|
|
|
ping_enabled = models.BooleanField(default=False, verbose_name=_("Ping enabled"))
|
|
ping_method = models.CharField(max_length=32, blank=True, null=True, verbose_name=_("Ping method"))
|
|
ping_params = models.JSONField(default=dict, verbose_name=_("Ping params"))
|
|
|
|
gather_facts_enabled = models.BooleanField(default=False, verbose_name=_("Gather facts enabled"))
|
|
gather_facts_method = models.TextField(
|
|
max_length=32, blank=True, null=True, verbose_name=_("Gather facts method")
|
|
)
|
|
gather_facts_params = models.JSONField(default=dict, verbose_name=_("Gather facts params"))
|
|
|
|
change_secret_enabled = models.BooleanField(default=False, verbose_name=_("Change secret enabled"))
|
|
change_secret_method = models.TextField(
|
|
max_length=32, blank=True, null=True, verbose_name=_("Change secret method")
|
|
)
|
|
change_secret_params = models.JSONField(default=dict, verbose_name=_("Change secret params"))
|
|
|
|
push_account_enabled = models.BooleanField(default=False, verbose_name=_("Push account enabled"))
|
|
push_account_method = models.TextField(
|
|
max_length=32, blank=True, null=True, verbose_name=_("Push account method")
|
|
)
|
|
push_account_params = models.JSONField(default=dict, verbose_name=_("Push account params"))
|
|
|
|
verify_account_enabled = models.BooleanField(default=False, verbose_name=_("Verify account enabled"))
|
|
verify_account_method = models.TextField(
|
|
max_length=32, blank=True, null=True, verbose_name=_("Verify account method")
|
|
)
|
|
verify_account_params = models.JSONField(default=dict, verbose_name=_("Verify account params"))
|
|
|
|
gather_accounts_enabled = models.BooleanField(default=False, verbose_name=_("Gather facts enabled"))
|
|
gather_accounts_method = models.TextField(
|
|
max_length=32, blank=True, null=True, verbose_name=_("Gather facts method")
|
|
)
|
|
gather_accounts_params = models.JSONField(default=dict, verbose_name=_("Gather facts params"))
|
|
|
|
remove_account_enabled = models.BooleanField(default=False, verbose_name=_("Remove account enabled"))
|
|
remove_account_method = models.TextField(
|
|
max_length=32, blank=True, null=True, verbose_name=_("Remove account method")
|
|
)
|
|
remove_account_params = models.JSONField(default=dict, verbose_name=_("Remove account params"))
|
|
platform = models.OneToOneField('Platform', on_delete=models.CASCADE, related_name='automation', null=True)
|
|
|
|
|
|
class Platform(LabeledMixin, JMSBaseModel):
|
|
"""
|
|
对资产提供 约束和默认值
|
|
对资产进行抽象
|
|
"""
|
|
|
|
class CharsetChoices(models.TextChoices):
|
|
utf8 = 'utf-8', 'UTF-8'
|
|
gbk = 'gbk', 'GBK'
|
|
|
|
id = models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')
|
|
name = models.SlugField(verbose_name=_("Name"), unique=True, allow_unicode=True)
|
|
category = models.CharField(default='host', max_length=32, verbose_name=_("Category"))
|
|
type = models.CharField(max_length=32, default='linux', verbose_name=_("Type"))
|
|
meta = JsonDictTextField(blank=True, null=True, verbose_name=_("Meta"))
|
|
internal = models.BooleanField(default=False, verbose_name=_("Internal"))
|
|
# 资产有关的
|
|
charset = models.CharField(
|
|
default=CharsetChoices.utf8, choices=CharsetChoices.choices,
|
|
max_length=8, verbose_name=_("Charset")
|
|
)
|
|
domain_enabled = models.BooleanField(default=True, verbose_name=_("Domain enabled"))
|
|
# 账号有关的
|
|
su_enabled = models.BooleanField(default=False, verbose_name=_("Su enabled"))
|
|
su_method = models.CharField(max_length=32, blank=True, null=True, verbose_name=_("Su method"))
|
|
custom_fields = models.JSONField(null=True, default=list, verbose_name=_("Custom fields"))
|
|
|
|
@property
|
|
def type_constraints(self):
|
|
return AllTypes.get_constraints(self.category, self.type)
|
|
|
|
@classmethod
|
|
def default(cls):
|
|
linux, created = cls.objects.get_or_create(
|
|
defaults={'name': 'Linux'}, name='Linux'
|
|
)
|
|
return linux.id
|
|
|
|
def __str__(self):
|
|
return self.name
|
|
|
|
class Meta:
|
|
verbose_name = _("Platform")
|
|
# ordering = ('name',)
|