Skip to main content

DRF filter for complex queries.

Project description

Django Rest Framework Complex Filter

codecov

DRF filter for complex queries

Installing

For installing use pip

    pip install drf-complex-filter

Usage

Add ComplexQueryFilter to filter_backends:

  from drf_complex_filter.filters import ComplexQueryFilter

  class UserViewSet(ModelViewSet):
      queryset = User.objects.all()
      serializer_class = UserSerializer
      filter_backends = [ComplexQueryFilter]

And get some records

  GET /users?filters={"type":"operator","data":{"attribute":"first_name","operator":"=","value":"John"}}

Filter operator

Operator may be one of three types

  # Will return Q(field_name=value_for_compare)
  operator_filter = {
    "type": "operator",
    "data": {
      "attribute": "field_name",
      "operator": "=",
      "value": "value_for_compare",
    }
  }

  # Will combine through AND all operators passed in "data"
  and_filter = {
    "type": "and",
    "data": []
  }

  # Will combine through OR all operators passed in "data"
  or_filter = {
    "type": "or",
    "data": []
  }

Lookup operators

There are several basic operators in the package, but you are free to replace or expand this list.

Existing operators

Operator label Query operator
Is =
Is not !=
Case-insensitive contains *
Case-insensitive not contains !
Greater >
Greater than or is >=
Less <
Less than or is <=
Value in list in
Value not in list not_in
Current user me
Not current user not_me

Adding operators

First, create a class containing your operators. It should contain at least a "get_operators" method that returns a dictionary with your operators.

class YourClassWithOperators:
    def get_operators(self):
        return {
            "simple_operator": lambda f, v, r, m: Q(**{f"{f}": v}),
            "complex_operator": self.complex_operator,
        }

    @staticmethod
    def complex_operator(field: str, value=None, request=None, model: Model = None)
      return Q(**{f"{field}": value})

Next, specify this class in the configuration.

COMPLEX_FILTER_SETTINGS = {
    "COMPARISON_CLASSES": [
        "drf_complex_filter.comparisons.CommonComparison",
        "drf_complex_filter.comparisons.DynamicComparison",
        "path.to.your.module.YourClassWithOperators",
    ],
}

You can now use these operators to filter models.

Computed value

Sometimes you need to get the value dynamically on the server side instead of writing it directly to the filter. To do this, you can create a class containing the "get_functions" method.

class YourClassWithFunctions:
    def get_functions(self):
        return {
            "calculate_value": self.calculate_value,
        }
    def calculate_value(request, model, my_arg):
      return str(my_arg)

Then register this class in settings.

COMPLEX_FILTER_SETTINGS = {
    "VALUE_FUNCTIONS": [
        "drf_complex_filter.functions.DateFunctions"
        "path.to.your.module.YourClassWithFunctions",
    ],
}

And create an operator with a value like this:

  value = {
    "func": "name_of_func",
    "kwargs": { "my_arg": "value_of_my_arg" },
  }

  operator_filter = {
    "type": "operator",
    "data": {
      "attribute": "field_name",
      "operator": "=",
      "value": value,
    }
  }

Where:

  • func - the name of the method to call
  • kwargs - a dictionary with arguments to pass to the method

The value will be calculated before being passed to the operator. That allows you to use the value obtained in this way with any operator that can correctly process it

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

drf-complex-filter-1.1.0.tar.gz (13.6 kB view hashes)

Uploaded Source

Built Distribution

drf_complex_filter-1.1.0-py3-none-any.whl (7.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page