2022-04-26 13:30:01 +00:00
|
|
|
from django.utils.translation import gettext_lazy as _
|
2022-11-11 07:04:31 +00:00
|
|
|
from rest_framework import serializers
|
2022-04-26 13:30:01 +00:00
|
|
|
|
2023-02-08 05:53:21 +00:00
|
|
|
from assets.const.web import FillType
|
2023-01-16 11:02:09 +00:00
|
|
|
from common.serializers import WritableNestedModelSerializer
|
2023-02-08 05:53:21 +00:00
|
|
|
from common.serializers.fields import LabeledChoiceField
|
2022-09-26 10:03:48 +00:00
|
|
|
from ..const import Category, AllTypes
|
2022-11-11 07:04:31 +00:00
|
|
|
from ..models import Platform, PlatformProtocol, PlatformAutomation
|
2022-04-26 13:30:01 +00:00
|
|
|
|
2022-11-11 07:04:31 +00:00
|
|
|
__all__ = ["PlatformSerializer", "PlatformOpsMethodSerializer"]
|
2022-04-26 13:30:01 +00:00
|
|
|
|
|
|
|
|
2022-08-29 07:50:25 +00:00
|
|
|
class ProtocolSettingSerializer(serializers.Serializer):
|
|
|
|
SECURITY_CHOICES = [
|
2022-11-11 07:04:31 +00:00
|
|
|
("any", "Any"),
|
|
|
|
("rdp", "RDP"),
|
|
|
|
("tls", "TLS"),
|
|
|
|
("nla", "NLA"),
|
2022-08-29 07:50:25 +00:00
|
|
|
]
|
2022-09-07 09:12:53 +00:00
|
|
|
# RDP
|
2022-08-29 07:50:25 +00:00
|
|
|
console = serializers.BooleanField(required=False)
|
2022-11-11 07:04:31 +00:00
|
|
|
security = serializers.ChoiceField(choices=SECURITY_CHOICES, default="any")
|
2022-09-08 12:31:04 +00:00
|
|
|
|
2022-09-07 09:12:53 +00:00
|
|
|
# SFTP
|
2022-09-08 12:31:04 +00:00
|
|
|
sftp_enabled = serializers.BooleanField(default=True, label=_("SFTP enabled"))
|
2022-11-11 07:04:31 +00:00
|
|
|
sftp_home = serializers.CharField(default="/tmp", label=_("SFTP home"))
|
2022-08-29 07:50:25 +00:00
|
|
|
|
2022-09-21 11:03:06 +00:00
|
|
|
# HTTP
|
2023-02-08 05:53:21 +00:00
|
|
|
autofill = serializers.ChoiceField(default='basic', choices=FillType.choices, label=_("Autofill"))
|
2022-11-11 07:04:31 +00:00
|
|
|
username_selector = serializers.CharField(
|
|
|
|
default="", allow_blank=True, label=_("Username selector")
|
|
|
|
)
|
|
|
|
password_selector = serializers.CharField(
|
|
|
|
default="", allow_blank=True, label=_("Password selector")
|
|
|
|
)
|
|
|
|
submit_selector = serializers.CharField(
|
|
|
|
default="", allow_blank=True, label=_("Submit selector")
|
|
|
|
)
|
2023-02-08 05:53:21 +00:00
|
|
|
script = serializers.JSONField(default=list, label=_("Script"))
|
2022-09-21 03:17:14 +00:00
|
|
|
|
2023-02-13 11:42:42 +00:00
|
|
|
# Redis
|
2023-02-14 07:53:08 +00:00
|
|
|
auth_username = serializers.BooleanField(default=False, label=_("Auth with username"))
|
2023-02-13 11:42:42 +00:00
|
|
|
|
2022-08-29 07:50:25 +00:00
|
|
|
|
2022-09-15 08:22:01 +00:00
|
|
|
class PlatformAutomationSerializer(serializers.ModelSerializer):
|
|
|
|
class Meta:
|
|
|
|
model = PlatformAutomation
|
|
|
|
fields = [
|
2022-11-11 07:04:31 +00:00
|
|
|
"id",
|
2022-12-07 10:58:57 +00:00
|
|
|
"ansible_enabled", "ansible_config",
|
|
|
|
"ping_enabled", "ping_method",
|
2023-01-16 11:02:09 +00:00
|
|
|
"push_account_enabled", "push_account_method",
|
2022-12-07 10:58:57 +00:00
|
|
|
"gather_facts_enabled", "gather_facts_method",
|
|
|
|
"change_secret_enabled", "change_secret_method",
|
|
|
|
"verify_account_enabled", "verify_account_method",
|
|
|
|
"gather_accounts_enabled", "gather_accounts_method",
|
2022-09-15 08:22:01 +00:00
|
|
|
]
|
|
|
|
extra_kwargs = {
|
2023-02-04 12:42:53 +00:00
|
|
|
# 启用资产探测
|
|
|
|
"ping_enabled": {"label": _("Ping enabled")},
|
|
|
|
"ping_method": {"label": _("Ping method")},
|
|
|
|
"gather_facts_enabled": {"label": _("Gather facts enabled")},
|
|
|
|
"gather_facts_method": {"label": _("Gather facts method")},
|
|
|
|
"verify_account_enabled": {"label": _("Verify account enabled")},
|
|
|
|
"verify_account_method": {"label": _("Verify account method")},
|
|
|
|
"change_secret_enabled": {"label": _("Change secret enabled")},
|
|
|
|
"change_secret_method": {"label": _("Change secret method")},
|
|
|
|
"push_account_enabled": {"label": _("Push account enabled")},
|
|
|
|
"push_account_method": {"label": _("Push account method")},
|
|
|
|
"gather_accounts_enabled": {"label": _("Gather accounts enabled")},
|
|
|
|
"gather_accounts_method": {"label": _("Gather accounts method")},
|
2022-09-15 08:22:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-08-18 09:58:59 +00:00
|
|
|
class PlatformProtocolsSerializer(serializers.ModelSerializer):
|
2022-09-07 09:12:53 +00:00
|
|
|
setting = ProtocolSettingSerializer(required=False, allow_null=True)
|
2022-10-18 12:37:17 +00:00
|
|
|
primary = serializers.BooleanField(read_only=True, label=_("Primary"))
|
2022-08-29 07:50:25 +00:00
|
|
|
|
2022-08-18 09:58:59 +00:00
|
|
|
class Meta:
|
|
|
|
model = PlatformProtocol
|
2022-10-18 12:37:17 +00:00
|
|
|
fields = [
|
2022-12-07 10:58:57 +00:00
|
|
|
"id", "name", "port", "primary",
|
|
|
|
"default", "required", "secret_types",
|
2022-11-11 07:04:31 +00:00
|
|
|
"setting",
|
2022-10-18 12:37:17 +00:00
|
|
|
]
|
2022-04-26 13:30:01 +00:00
|
|
|
|
|
|
|
|
2022-10-19 02:21:05 +00:00
|
|
|
class PlatformSerializer(WritableNestedModelSerializer):
|
2022-11-11 07:04:31 +00:00
|
|
|
charset = LabeledChoiceField(
|
|
|
|
choices=Platform.CharsetChoices.choices, label=_("Charset")
|
|
|
|
)
|
2022-09-26 10:03:48 +00:00
|
|
|
type = LabeledChoiceField(choices=AllTypes.choices(), label=_("Type"))
|
2022-09-01 06:46:31 +00:00
|
|
|
category = LabeledChoiceField(choices=Category.choices, label=_("Category"))
|
2022-11-11 07:04:31 +00:00
|
|
|
protocols = PlatformProtocolsSerializer(
|
|
|
|
label=_("Protocols"), many=True, required=False
|
|
|
|
)
|
|
|
|
automation = PlatformAutomationSerializer(label=_("Automation"), required=False)
|
2022-09-01 06:46:31 +00:00
|
|
|
su_method = LabeledChoiceField(
|
2022-11-11 07:04:31 +00:00
|
|
|
choices=[("sudo", "sudo su -"), ("su", "su - ")],
|
2023-02-04 12:42:53 +00:00
|
|
|
label=_("Su method"), required=False, default="sudo", allow_null=True
|
2022-08-29 02:49:53 +00:00
|
|
|
)
|
2022-04-26 13:30:01 +00:00
|
|
|
|
|
|
|
class Meta:
|
|
|
|
model = Platform
|
2022-11-11 07:04:31 +00:00
|
|
|
fields_mini = ["id", "name", "internal"]
|
2022-04-30 15:19:43 +00:00
|
|
|
fields_small = fields_mini + [
|
2022-12-07 10:58:57 +00:00
|
|
|
"category", "type", "charset",
|
2022-08-18 09:58:59 +00:00
|
|
|
]
|
2023-02-20 05:31:56 +00:00
|
|
|
fields_other = [
|
|
|
|
'date_created', 'date_updated', 'created_by', 'updated_by',
|
2022-04-30 15:19:43 +00:00
|
|
|
]
|
2023-02-20 05:31:56 +00:00
|
|
|
fields = fields_small + [
|
|
|
|
"protocols", "domain_enabled", "su_enabled",
|
|
|
|
"su_method", "automation", "comment",
|
|
|
|
] + fields_other
|
2022-08-29 02:49:53 +00:00
|
|
|
extra_kwargs = {
|
2023-02-04 12:42:53 +00:00
|
|
|
"su_enabled": {"label": _('Su enabled')},
|
|
|
|
"domain_enabled": {"label": _('Domain enabled')},
|
|
|
|
"domain_default": {"label": _('Default Domain')},
|
2022-08-29 02:49:53 +00:00
|
|
|
}
|
2022-04-30 15:19:43 +00:00
|
|
|
|
2023-01-16 11:02:09 +00:00
|
|
|
@classmethod
|
|
|
|
def setup_eager_loading(cls, queryset):
|
|
|
|
queryset = queryset.prefetch_related(
|
|
|
|
'protocols', 'automation'
|
|
|
|
)
|
|
|
|
return queryset
|
|
|
|
|
2022-08-30 06:13:33 +00:00
|
|
|
|
|
|
|
class PlatformOpsMethodSerializer(serializers.Serializer):
|
|
|
|
id = serializers.CharField(read_only=True)
|
2022-11-11 07:04:31 +00:00
|
|
|
name = serializers.CharField(max_length=50, label=_("Name"))
|
|
|
|
category = serializers.CharField(max_length=50, label=_("Category"))
|
2022-08-30 06:13:33 +00:00
|
|
|
type = serializers.ListSerializer(child=serializers.CharField())
|
|
|
|
method = serializers.CharField()
|