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.
67 lines
1.9 KiB
67 lines
1.9 KiB
# -*- coding: utf-8 -*-
|
|
#
|
|
from rest_framework import serializers
|
|
from rest_framework_bulk.serializers import BulkListSerializer
|
|
|
|
from common.mixins import BulkSerializerMixin
|
|
from ..models import Asset
|
|
from .system_user import AssetSystemUserSerializer
|
|
|
|
__all__ = [
|
|
'AssetSerializer', 'AssetGrantedSerializer', 'MyAssetGrantedSerializer',
|
|
]
|
|
|
|
|
|
class AssetSerializer(BulkSerializerMixin, serializers.ModelSerializer):
|
|
"""
|
|
资产的数据结构
|
|
"""
|
|
class Meta:
|
|
model = Asset
|
|
list_serializer_class = BulkListSerializer
|
|
fields = '__all__'
|
|
validators = []
|
|
|
|
def get_field_names(self, declared_fields, info):
|
|
fields = super().get_field_names(declared_fields, info)
|
|
fields.extend([
|
|
'hardware_info', 'is_connective', 'org_name'
|
|
])
|
|
return fields
|
|
|
|
|
|
class AssetGrantedSerializer(serializers.ModelSerializer):
|
|
"""
|
|
被授权资产的数据结构
|
|
"""
|
|
system_users_granted = AssetSystemUserSerializer(many=True, read_only=True)
|
|
system_users_join = serializers.SerializerMethodField()
|
|
# nodes = NodeTMPSerializer(many=True, read_only=True)
|
|
|
|
class Meta:
|
|
model = Asset
|
|
fields = (
|
|
"id", "hostname", "ip", "port", "system_users_granted",
|
|
"is_active", "system_users_join", "os", 'domain',
|
|
"platform", "comment", "protocol", "org_id", "org_name",
|
|
)
|
|
|
|
@staticmethod
|
|
def get_system_users_join(obj):
|
|
system_users = [s.username for s in obj.system_users_granted]
|
|
return ', '.join(system_users)
|
|
|
|
|
|
class MyAssetGrantedSerializer(AssetGrantedSerializer):
|
|
"""
|
|
普通用户获取授权的资产定义的数据结构
|
|
"""
|
|
|
|
class Meta:
|
|
model = Asset
|
|
fields = (
|
|
"id", "hostname", "system_users_granted",
|
|
"is_active", "system_users_join", "org_name",
|
|
"os", "platform", "comment", "org_id", "protocol"
|
|
)
|