2022-12-02 03:12:14 +00:00
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from rest_framework import serializers
|
|
|
|
|
|
|
|
from acls.models.base import ActionChoices
|
|
|
|
from common.drf.fields import LabeledChoiceField, ObjectRelatedField
|
|
|
|
from orgs.models import Organization
|
|
|
|
from users.models import User
|
|
|
|
|
|
|
|
common_help_text = _(
|
|
|
|
"Format for comma-delimited string, with * indicating a match all. "
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class ACLUsersSerializer(serializers.Serializer):
|
|
|
|
username_group = serializers.ListField(
|
|
|
|
default=["*"],
|
|
|
|
child=serializers.CharField(max_length=128),
|
|
|
|
label=_("Username"),
|
|
|
|
help_text=common_help_text,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class ACLAssestsSerializer(serializers.Serializer):
|
|
|
|
address_group_help_text = _(
|
|
|
|
"Format for comma-delimited string, with * indicating a match all. "
|
|
|
|
"Such as: "
|
|
|
|
"192.168.10.1, 192.168.1.0/24, 10.1.1.1-10.1.1.20, 2001:db8:2de::e13, 2001:db8:1a:1110::/64"
|
|
|
|
" (Domain name support)"
|
|
|
|
)
|
|
|
|
|
|
|
|
name_group = serializers.ListField(
|
|
|
|
default=["*"],
|
|
|
|
child=serializers.CharField(max_length=128),
|
|
|
|
label=_("Name"),
|
|
|
|
help_text=common_help_text,
|
|
|
|
)
|
|
|
|
address_group = serializers.ListField(
|
|
|
|
default=["*"],
|
|
|
|
child=serializers.CharField(max_length=1024),
|
|
|
|
label=_("IP/Host"),
|
|
|
|
help_text=address_group_help_text,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class ACLAccountsSerializer(serializers.Serializer):
|
|
|
|
username_group = serializers.ListField(
|
|
|
|
default=["*"],
|
|
|
|
child=serializers.CharField(max_length=128),
|
|
|
|
label=_("Username"),
|
|
|
|
help_text=common_help_text,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class BaseUserAssetAccountACLSerializerMixin(serializers.Serializer):
|
2022-12-04 10:01:35 +00:00
|
|
|
users = ACLUsersSerializer(label=_('User'))
|
|
|
|
assets = ACLAssestsSerializer(label=_('Asset'))
|
|
|
|
accounts = ACLAccountsSerializer(label=_('Account'))
|
2022-12-02 03:12:14 +00:00
|
|
|
reviewers = ObjectRelatedField(
|
|
|
|
queryset=User.objects, many=True, required=False, label=_('Reviewers')
|
|
|
|
)
|
|
|
|
reviewers_amount = serializers.IntegerField(read_only=True, source="reviewers.count")
|
|
|
|
action = LabeledChoiceField(
|
2022-12-04 10:01:35 +00:00
|
|
|
choices=ActionChoices.choices, default=ActionChoices.reject, label=_("Action")
|
2022-12-02 03:12:14 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
fields_mini = ["id", "name"]
|
|
|
|
fields_small = fields_mini + [
|
|
|
|
"users", "accounts", "assets", "is_active",
|
|
|
|
"date_created", "date_updated", "priority",
|
|
|
|
"action", "comment", "created_by", "org_id",
|
|
|
|
]
|
|
|
|
fields_m2m = ["reviewers", "reviewers_amount"]
|
|
|
|
fields = fields_small + fields_m2m
|
|
|
|
extra_kwargs = {
|
|
|
|
"reviewers": {"allow_null": False, "required": True},
|
|
|
|
"priority": {"default": 50},
|
|
|
|
"is_active": {"default": True},
|
|
|
|
}
|
|
|
|
|
|
|
|
def validate_reviewers(self, reviewers):
|
2022-12-04 10:48:48 +00:00
|
|
|
action = self.initial_data.get('action')
|
|
|
|
if not action and self.instance:
|
|
|
|
action = self.instance.action
|
|
|
|
if action != ActionChoices.review:
|
|
|
|
return reviewers
|
2022-12-02 03:12:14 +00:00
|
|
|
org_id = self.fields["org_id"].default()
|
|
|
|
org = Organization.get_instance(org_id)
|
|
|
|
if not org:
|
|
|
|
error = _("The organization `{}` does not exist".format(org_id))
|
|
|
|
raise serializers.ValidationError(error)
|
|
|
|
users = org.get_members()
|
|
|
|
valid_reviewers = list(set(reviewers) & set(users))
|
|
|
|
if not valid_reviewers:
|
|
|
|
error = _(
|
|
|
|
"None of the reviewers belong to Organization `{}`".format(org.name)
|
|
|
|
)
|
|
|
|
raise serializers.ValidationError(error)
|
|
|
|
return valid_reviewers
|