jumpserver/apps/assets/serializers/domain.py

85 lines
2.7 KiB
Python
Raw Normal View History

2018-03-23 11:46:46 +00:00
# -*- coding: utf-8 -*-
#
from rest_framework import serializers
2020-11-11 02:27:18 +00:00
from django.utils.translation import ugettext_lazy as _
2018-03-23 11:46:46 +00:00
from common.validators import alphanumeric
Dev beta (#3048) * [Update] 统一url地址 * [Update] 修改api * [Update] 使用规范的签名 * [Update] 修改url * [Update] 修改swagger * [Update] 添加serializer class避免报错 * [Update] 修改token * [Update] 支持api key * [Update] 支持生成api key * [Update] 修改api重定向 * [Update] 修改翻译 * [Update] 添加说明文档 * [Update] 修复浏览器关闭后session不失效的问题 * [Update] 修改一些内容 * [Update] 修改 jms脚本 * [Update] 修改重定向 * [Update] 修改搜索trim * [Update] 修改搜索trim * [Update] 添加sys log * [Bugfix] 修改登陆错误 * [Update] 优化User操作private_token的接口 (#3091) * [Update] 优化User操作private_token的接口 * [Update] 优化User操作private_token的接口 2 * [Bugfix] 解决授权了一个节点,当移动节点后,被移动的节点下的资产会放到未分组节点下的问题 * [Update] 升级jquery * [Update] 默认使用page * [Update] 修改使用Orgmodel view set * [Update] 支持 nv的硬盘 https://github.com/jumpserver/jumpserver/issues/1804 * [UPdate] 解决命令执行宽度问题 * [Update] 优化节点 * [Update] 修改nodes过多时创建比较麻烦 * [Update] 修改导入 * [Update] 节点获取更新 * [Update] 修改nodes * [Update] nodes显示full value * [Update] 统一使用nodes select2 函数 * [Update] 修改磁盘大小小数 * [Update] 修改 Node service * [Update] 优化授权节点 * [Update] 修改 node permission * [Update] 修改asset permission * [Stash] * [Update] 修改node assets api * [Update] 修改tree service,支持资产数量 * [Update] 修改暂时完成 * [Update] 修改一些bug
2019-08-21 12:27:21 +00:00
from orgs.mixins.serializers import BulkOrgResourceModelSerializer
2018-03-23 11:46:46 +00:00
from ..models import Domain, Gateway
from .base import AuthSerializerMixin
2018-03-23 11:46:46 +00:00
class DomainSerializer(BulkOrgResourceModelSerializer):
2021-07-30 11:13:47 +00:00
asset_count = serializers.SerializerMethodField(label=_('Assets amount'))
application_count = serializers.SerializerMethodField(label=_('Applications amount'))
2020-11-11 02:27:18 +00:00
gateway_count = serializers.SerializerMethodField(label=_('Gateways count'))
2018-03-23 11:46:46 +00:00
class Meta:
model = Domain
fields_mini = ['id', 'name']
fields_small = fields_mini + [
'comment', 'date_created'
]
fields_m2m = [
'asset_count', 'assets', 'application_count', 'gateway_count',
]
fields = fields_small + fields_m2m
read_only_fields = ('asset_count', 'gateway_count', 'date_created')
extra_kwargs = {
2020-11-11 02:27:18 +00:00
'assets': {'required': False, 'label': _('Assets')},
}
2018-03-23 11:46:46 +00:00
@staticmethod
def get_asset_count(obj):
return obj.assets.count()
@staticmethod
def get_application_count(obj):
return obj.applications.count()
2018-03-23 11:46:46 +00:00
@staticmethod
def get_gateway_count(obj):
return obj.gateway_set.all().count()
class GatewaySerializer(AuthSerializerMixin, BulkOrgResourceModelSerializer):
2021-07-26 08:32:01 +00:00
is_connective = serializers.BooleanField(required=False)
2018-03-23 11:46:46 +00:00
class Meta:
model = Gateway
2021-04-29 11:10:45 +00:00
fields_mini = ['id', 'name']
fields_write_only = [
2021-12-30 02:47:46 +00:00
'password', 'private_key', 'public_key', 'passphrase'
2021-04-29 11:10:45 +00:00
]
fields_small = fields_mini + fields_write_only + [
'username', 'ip', 'port', 'protocol',
2021-07-26 08:32:01 +00:00
'is_active', 'is_connective',
2021-04-29 11:10:45 +00:00
'date_created', 'date_updated',
'created_by', 'comment',
2018-03-25 13:47:29 +00:00
]
2021-04-29 11:10:45 +00:00
fields_fk = ['domain']
fields = fields_small + fields_fk
extra_kwargs = {
'username': {"validators": [alphanumeric]},
'password': {'write_only': True},
'private_key': {"write_only": True},
'public_key': {"write_only": True},
}
2018-03-25 13:47:29 +00:00
class GatewayWithAuthSerializer(GatewaySerializer):
class Meta(GatewaySerializer.Meta):
extra_kwargs = {
'password': {'write_only': False},
'private_key': {"write_only": False},
'public_key': {"write_only": False},
}
2018-03-25 13:47:29 +00:00
class DomainWithGatewaySerializer(BulkOrgResourceModelSerializer):
2018-03-25 13:47:29 +00:00
gateways = GatewayWithAuthSerializer(many=True, read_only=True)
class Meta:
model = Domain
2018-03-23 11:46:46 +00:00
fields = '__all__'