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.
46 lines
1.6 KiB
46 lines
1.6 KiB
# -*- coding: utf-8 -*-
|
|
#
|
|
from django.utils.translation import ugettext as _
|
|
from rest_framework import serializers
|
|
|
|
from orgs.mixins.serializers import BulkOrgResourceModelSerializer
|
|
from ops.mixin import PeriodTaskSerializerMixin
|
|
from common.utils import get_logger
|
|
from common.const.choices import Trigger
|
|
from common.drf.fields import LabeledChoiceField
|
|
|
|
from assets.models import AccountBackupPlan, AccountBackupPlanExecution
|
|
|
|
logger = get_logger(__file__)
|
|
|
|
__all__ = ['AccountBackupPlanSerializer', 'AccountBackupPlanExecutionSerializer']
|
|
|
|
|
|
class AccountBackupPlanSerializer(PeriodTaskSerializerMixin, BulkOrgResourceModelSerializer):
|
|
class Meta:
|
|
model = AccountBackupPlan
|
|
fields = [
|
|
'id', 'name', 'is_periodic', 'interval', 'crontab', 'date_created',
|
|
'date_updated', 'created_by', 'periodic_display', 'comment',
|
|
'recipients', 'types'
|
|
]
|
|
extra_kwargs = {
|
|
'name': {'required': True},
|
|
'periodic_display': {'label': _('Periodic perform')},
|
|
'recipients': {'label': _('Recipient'), 'help_text': _(
|
|
'Currently only mail sending is supported'
|
|
)}
|
|
}
|
|
|
|
|
|
class AccountBackupPlanExecutionSerializer(serializers.ModelSerializer):
|
|
trigger = LabeledChoiceField(choices=Trigger.choices, label=_('Trigger mode'))
|
|
|
|
class Meta:
|
|
model = AccountBackupPlanExecution
|
|
read_only_fields = [
|
|
'id', 'date_start', 'timedelta', 'plan_snapshot', 'trigger', 'reason',
|
|
'is_success', 'org_id', 'recipients'
|
|
]
|
|
fields = read_only_fields + ['plan']
|