mirror of https://github.com/jumpserver/jumpserver
86 lines
3.1 KiB
Python
86 lines
3.1 KiB
Python
from rest_framework import serializers
|
|
from django.utils.translation import ugettext_lazy as _
|
|
from django.db.models import F
|
|
|
|
from assets.models import Account
|
|
from orgs.mixins.serializers import BulkOrgResourceModelSerializer
|
|
|
|
from .base import AuthSerializerMixin
|
|
from common.utils.encode import ssh_pubkey_gen
|
|
from common.drf.serializers import SecretReadableMixin
|
|
|
|
|
|
class AccountSerializer(AuthSerializerMixin, BulkOrgResourceModelSerializer):
|
|
ip = serializers.ReadOnlyField(label=_("IP"))
|
|
hostname = serializers.ReadOnlyField(label=_("Hostname"))
|
|
platform = serializers.ReadOnlyField(label=_("Platform"))
|
|
date_created = serializers.DateTimeField(
|
|
label=_('Date created'), format="%Y/%m/%d %H:%M:%S", read_only=True
|
|
)
|
|
date_updated = serializers.DateTimeField(
|
|
label=_('Date updated'), format="%Y/%m/%d %H:%M:%S", read_only=True
|
|
)
|
|
|
|
class Meta:
|
|
model = Account
|
|
fields_mini = [
|
|
'id', 'type', 'username', 'ip', 'hostname',
|
|
'platform', 'version'
|
|
]
|
|
fields_write_only = ['password', 'private_key', 'public_key', 'passphrase']
|
|
fields_other = ['date_created', 'date_updated', 'connectivity', 'date_verified', 'comment']
|
|
fields_small = fields_mini + fields_write_only + fields_other
|
|
fields_fk = ['asset']
|
|
fields = fields_small + fields_fk
|
|
extra_kwargs = {
|
|
'username': {'required': True},
|
|
'private_key': {'write_only': True},
|
|
'public_key': {'write_only': True},
|
|
}
|
|
ref_name = 'AssetAccountSerializer'
|
|
|
|
def _validate_gen_key(self, attrs):
|
|
private_key = attrs.get('private_key')
|
|
if not private_key:
|
|
return attrs
|
|
|
|
password = attrs.get('passphrase')
|
|
username = attrs.get('username')
|
|
public_key = ssh_pubkey_gen(private_key, password=password, username=username)
|
|
attrs['public_key'] = public_key
|
|
return attrs
|
|
|
|
def validate(self, attrs):
|
|
attrs = self._validate_gen_key(attrs)
|
|
return attrs
|
|
|
|
@classmethod
|
|
def setup_eager_loading(cls, queryset):
|
|
""" Perform necessary eager loading of data. """
|
|
queryset = queryset.prefetch_related('asset')\
|
|
.annotate(ip=F('asset__ip')) \
|
|
.annotate(hostname=F('asset__hostname'))
|
|
return queryset
|
|
|
|
|
|
class AccountSecretSerializer(SecretReadableMixin, AccountSerializer):
|
|
class Meta(AccountSerializer.Meta):
|
|
fields_backup = [
|
|
'hostname', 'ip', 'platform', 'protocols', 'username', 'password',
|
|
'private_key', 'public_key', 'date_created', 'date_updated', 'version'
|
|
]
|
|
extra_kwargs = {
|
|
'password': {'write_only': False},
|
|
'private_key': {'write_only': False},
|
|
'public_key': {'write_only': False},
|
|
'systemuser_display': {'label': _('System user display')}
|
|
}
|
|
|
|
|
|
class AccountTaskSerializer(serializers.Serializer):
|
|
ACTION_CHOICES = (
|
|
('test', 'test'),
|
|
)
|
|
action = serializers.ChoiceField(choices=ACTION_CHOICES, write_only=True)
|
|
task = serializers.CharField(read_only=True)
|