Skip to content
Snippets Groups Projects
serializers.py 3.3 KiB
Newer Older
  • Learn to ignore specific revisions
  • from rest_framework import serializers
    
    
    
    class Action(object):
    
        def __init__(self, name, allow_all=False, qs_filter=None):
    
            self.name = name
            self.allow_all = allow_all
    
            self.qs_filter = qs_filter
    
    
        def __repr__(self):
            return "<Action {}>".format(self.name)
    
    
    
    class ActionSerializer(serializers.Serializer):
        """
        A special serializer that can operate on a list of objects
        and apply actions on it.
        """
    
        action = serializers.CharField(required=True)
        objects = serializers.JSONField(required=True)
        filters = serializers.DictField(required=False)
        actions = None
    
        def __init__(self, *args, **kwargs):
    
            self.actions_by_name = {a.name: a for a in self.actions}
    
    Eliot Berriot's avatar
    Eliot Berriot committed
            self.queryset = kwargs.pop("queryset")
    
            if self.actions is None:
                raise ValueError(
    
    Eliot Berriot's avatar
    Eliot Berriot committed
                    "You must declare a list of actions on " "the serializer class"
                )
    
            for action in self.actions_by_name.keys():
    
    Eliot Berriot's avatar
    Eliot Berriot committed
                handler_name = "handle_{}".format(action)
                assert hasattr(self, handler_name), "{} miss a {} method".format(
                    self.__class__.__name__, handler_name
    
                )
            super().__init__(self, *args, **kwargs)
    
        def validate_action(self, value):
    
            try:
                return self.actions_by_name[value]
            except KeyError:
    
                raise serializers.ValidationError(
    
    Eliot Berriot's avatar
    Eliot Berriot committed
                    "{} is not a valid action. Pick one of {}.".format(
    
                        value, ", ".join(self.actions_by_name.keys())
    
                    )
                )
    
        def validate_objects(self, value):
    
    Eliot Berriot's avatar
    Eliot Berriot committed
            if value == "all":
                return self.queryset.all().order_by("id")
    
            if type(value) in [list, tuple]:
    
    Eliot Berriot's avatar
    Eliot Berriot committed
                return self.queryset.filter(pk__in=value).order_by("id")
    
    
            raise serializers.ValidationError(
    
    Eliot Berriot's avatar
    Eliot Berriot committed
                "{} is not a valid value for objects. You must provide either a "
                'list of identifiers or the string "all".'.format(value)
            )
    
    
        def validate(self, data):
    
            allow_all = data["action"].allow_all
            if not allow_all and self.initial_data["objects"] == "all":
    
                    "You cannot apply this action on all objects"
    
    Eliot Berriot's avatar
    Eliot Berriot committed
                )
    
            final_filters = data.get("filters", {}) or {}
            if self.filterset_class and final_filters:
                qs_filterset = self.filterset_class(final_filters, queryset=data["objects"])
    
                try:
                    assert qs_filterset.form.is_valid()
                except (AssertionError, TypeError):
    
    Eliot Berriot's avatar
    Eliot Berriot committed
                    raise serializers.ValidationError("Invalid filters")
                data["objects"] = qs_filterset.qs
    
            if data["action"].qs_filter:
                data["objects"] = data["action"].qs_filter(data["objects"])
    
    
    Eliot Berriot's avatar
    Eliot Berriot committed
            data["count"] = data["objects"].count()
            if data["count"] < 1:
                raise serializers.ValidationError("No object matching your request")
    
            return data
    
        def save(self):
    
            handler_name = "handle_{}".format(self.validated_data["action"].name)
    
            handler = getattr(self, handler_name)
    
    Eliot Berriot's avatar
    Eliot Berriot committed
            result = handler(self.validated_data["objects"])
    
            payload = {
    
    Eliot Berriot's avatar
    Eliot Berriot committed
                "updated": self.validated_data["count"],
    
                "action": self.validated_data["action"].name,
    
    Eliot Berriot's avatar
    Eliot Berriot committed
                "result": result,
    
            }
            return payload