Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/HealthByRo/drf_tweaks

Extensions for Django Rest Framework
https://github.com/HealthByRo/drf_tweaks

api django django-rest-framework extensions rest

Last synced: about 2 months ago
JSON representation

Extensions for Django Rest Framework

Awesome Lists containing this project

README

        

DRF Tweaks
========================
|travis|_ |pypi|_ |codecov|_

--------------

Set of tweaks for `Django Rest Framework `_

This project is intended to contain a set of improvements/addons for DRF that we've developed during using DRF.

Current tweaks
--------------
* `Extended Serializers`_
* `Auto filtering and ordering`_
* `Pagination without counts`_
* `Versioning extensions`_
* `Autodocumentation`_ - extension for `Django Rest Swagger `_
* `Autooptimization`_
* `Linting database usage`_
* `Bulk edit API mixin`_

--------------------

Extended Serializers
--------------------

There are a few improvements that the standard DRF Serializer could benefit from. Each improvement, how to use it
& rationale for it is described in the sections below.

One-step validation
~~~~~~~~~~~~~~~~~~~

Standard serializer is validating the data in three steps:
* field-level validation (required, blank, validators)
* custom field-level validation (method validate_fieldname(...))
* custom general validation (method validate(...))

So for example if you have a serializer with 4 required fields: first_name, email, password & confirm_password and you
pass data without first_name and with wrong confirm_password, you'll get first the error for first_name, and then, after
you correct it you'll get error for confirm_password, instead of getting both errors at once. This results in bad user
experience, and that's why we've changed all validation to be run in one step.

Validation of our Serializer runs all three phases, and merges errors from all of them. However if a given field
generated an error on two different stages, it returns the error only from the former one.

When using our Serializer/ModelSerializer, when writing "validate" method, you need to remember that given field may
not be in a dictionary, so the validation must be more sophisticated:

.. code:: python

def validate(self, data):
errors = {}
# wrong - password & confirm_password may raise KeyError
if data["password"] != data["confirm_password"]:
errors["confirm_password"] = [_("This field must match")]

# correct
if data.get("password") != data.get("confirm_password"):
errors["confirm_password"] = [_("Passwords")]

if errors:
raise serializer.ValidationError(errors)

return data

Making fields required
~~~~~~~~~~~~~~~~~~~~~~

Standard ModelSerializer is taking the "required" state from the corresponding Model field. To make not-required model
field required in serializer, you have to declare it explicitly on serializer, so if the field first_name is not
required in the model, you need to do:

.. code:: python

class MySerializer(serializers.ModelSerializer):
first_name = serializers.CharField(..., required=True)

This is quite annoying when you have to do it often, that's why our ModelSerializer allows you to override this by simple
specifying the list of fields you want to make required:

.. code:: python

from drf_tweaks.serializers import ModelSerializer

class MySerializer(ModelSerializer):
required_fields = ["first_name"]

Custom errors
~~~~~~~~~~~~~

Our serializers provide a simple way to override blank & required error messages, by either specifying default error for
all fields or specifying error for specific field. To each error message "fieldname" is passed as format parameter.
Example:

.. code:: python

from drf_tweaks.serializers import ModelSerializer

class MySerializer(ModelSerializer):
required_error = blank_error = "{fieldname} is required"
custom_required_errors = custom_blank_errors = {
"credit_card_number": "You make me a saaaad Panda."
}

Passing context to subserializers
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Rationale: In DRF context is not passed to sub-serializers. So for example, in the standard serializer, you will have "request" in the context for the main object (say, Message), but the context for a sub-serializer (say, sender's Account) context will be empty. To workaround this you could for example re-initialize sub-serializers on the serializer's init, or instead of using a sub-serializer use a SerializerMethodField and initialize a sub-serializer inside it, etc. The problem is described here: https://github.com/encode/django-rest-framework/issues/2471

Our serializers includes a mechanism to pass context to sub-serializers, workarounding the problem stated above.

If for any reason you are using SerializerMethodField with a Serializer inside, and you want to pass context, use pass_context method to filter the fields & include fields properly.

.. code:: python

from drf_tweaks.serializers import pass_context

class SomeSerializer(Serializer):
some_field = serializers.SerializerMethodField()

def get_some_field(self, obj):
return OtherSerializer(obj, context=pass_context("some_field", self.context)).data

**WARNING: passing context may cause some unexpected behaviours, since sub-serializer will start receive the main context (and earlier they were not getting it).**

Control over serialized fields
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Our serializers provide control over serialized fields. It may be useful in following cases:
* You have quite heavy serializer (many fields, foreign keys, db calls, etc.), that you need in one place, but in the
other place you just need some basic data from it - say just name & id. You could provide separate serializer for such
case, or even separate endpoint, but it would be easier if the client can have control over which fields get serialized.
* You have some fields that should be serialized only for some state of the serialized object, and not for other.

Both things can be achieved with our serializer. By default they check if the "fields" were passed in the context or if
"fields" were passed as a GET parameter (in such case "request" must be present in the context), but you can define
custom behaviour by overriding the followin method in the Serializer:

.. code:: python

def get_fields_for_serialization(self, fields): # fields must be in ("fields", "include_fields")
return {"name", "id"}

This works also with sub-serializers (using context-passing). Here is an example usage:

.. code::

https://your.url?fields=some_field,other_field,nested_serializer__some_field,nested_serializer__other_field

Making fields available only on demand
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Rationale: it is a good practice to minimize the number of APIs, by making them as generic as possible. This however creates a performance problem when the amount of data being serialized grows by including sub-serializers (which can include sub-serializers themselves). Using control over serialized fields, as described above should be sufficient. However, in practice this mechanism will not be used as frequent as it should. That's why we've introduced another mechanism: on demand fields. Those are fields, specified in the serializer, that will be returned only if requested either by passing their name in "fields" (see the previous chapter) or in "include_fields" parameter.

.. code:: python

class MySerializer(serializers.ModelSerializer):
some_subserializer = OtherSerializer()

class Meta:
model = MyModel
fields = ["some_property", "some_subserializer"]
on_demand_fields = ["some_subserializer"]

.. code::

https://your.url?include_fields=some_subserializer

Auto filtering and ordering
---------------------------

Rationale
~~~~~~~~~

There are nice OrderingFilter and DjangoFilterBackend backends in place, however sorting and filtering fields have to be declared explicitly, which is sometimes time consuming. That's why we've created a decorator that allows to sort & filter (with some extra lookup methods by default) by all the indexed fields present in model and in serializer class (as non write-only). Non-indexed fields may also be added to sorting & filtering, but it must be done explicitly - the idea is, that ordering or filtering by non-indexed field is not optimal from the DB perspective, so if the field is not included in sorting/filtering you should rather create index on it than declare it explicitly.

Decorator works with explicitly defined FilterBackends, as well as with explicitly defined ordering_fields, filter_fields or filter_class. In order to work, it requires ModelSerializer (obtainable either serializer_class or get_serializer_class), from which fields & model class are extracted.

Usage
~~~~~

.. code:: python

@autofilter()
class SomeAPI(...):
serializer_class = SomeModelSerializer

# it works well with autodoc:
@autodoc() # autodoc should be before autofilter, so it operates on the result from autofilter
@autofilter()
class SomeAPI(...):
serializer_class = SomeModelSerializer

# you can add some extra fields to sort or filter
@autofilter(extra_filter=("non_indexed_field", ), extra_ordering=("non_indexed_field", ), exclude_fields=("some_field", ))
class SomeAPI(...):
serializer_class = SomeModelSerializer
ordering_fields = ("other_non_indexed_field", )
filter_fields = ("other_non_indexed_field", )

# it works also when you have a custom filter_class set
class SomeFilter(filters.FilterSet):
class Meta:
model = SomeModel
fields = ("non_indexed_field", )

@autofilter()
class SomeAPI(...):
serializer_class = SomeModelSerializer
filter_class = SomeFilter

Pagination without counts
-------------------------

Rationale
~~~~~~~~~

Calling "count" each time a queryset gets paginated is inefficient - especialy for large datasets. Moreover, in most
cases it is unnecessary to have counts (for example for endless scrolls). The fastest pagination in such case is
CursorPaginator, however it is not as easy to use as LimitOffsetPaginator/PageNumberPaginator and does not allow
sorting.

Usage
~~~~~

.. code:: python

from drf_tweaks.pagination import NoCountsLimitOffsetPagination
from drf_tweaks.pagination import NoCountsPageNumberPagination

Use it as standard pagination - the only difference is that it does not return "count" in the dictionary. Page indicated
by "next" may be empty. Next page url is present if the current page size is as requested - if it contains less items
then requested, it means we're on the last page.

NoCountsLimitOffsetPagination
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

A limit/offset based pagination, without performing counts. For example:
* http://api.example.org/accounts/?limit=100 - will return first 100 items
* http://api.example.org/accounts/?offset=400&limit=100 - will returns 100 items starting from 401th
* http://api.example.org/accounts/?offset=-50&limit=100 - will return first 50 items

HTML is not handled (no get_html_context).

Pros:
* no counts
* easier to use than cursor pagination (especially if you need sorting)
* works with angular ui-scroll (which requires negative offsets)

Cons:
* skip is a relatively slow operation, so this paginator is not as fast as cursor paginator when you use large offsets

NoCountsPageNumberPagination
~~~~~~~~~~~~~~~~~~~~~~~~~~~~

A standard page number pagination, without performing counts.

HTML is not handled (no get_html_context).

Pros:
* no counts
* easier to use than cursor pagination (especially if you need sorting)

Cons:
* skip is a relatively slow operation, so this paginator is not as fast as cursor paginator when you use large page
numbers

Versioning extensions
---------------------

Rationale
~~~~~~~~~

DRF provides a nice `versioning mechanism `_, however there are two things that could be more automated,
and this is the point of this extension:

* Handling deprecation & obsoletion: when you don't have control over upgrading client app, it is best to set the deprecation/obsoletion mechanism at the very beginning of your project - something that will start reminding a user that he is using old app and he should update it, or in case of obsolition - information, that this app is outdated and it must be upgraded in order to use it. This extension adds warning to header if the API version client is using is deprecated and responds with 410: Gone error when the API version is obsolete.
* Choosing serializer. In DRF you have to overwrite get_serializer_class to provide different serializers for different versions. This extension allows you to define just dictionary with it: versioning_serializer_classess. You may still override get_serializer_class however if you choose to.

Configuration
~~~~~~~~~~~~~

In order to make deprecation warning work, you need to add DeprecationMiddleware to MIDDLEWARE or MIDDLEWARE_CLASSESS
(depends on django version you're using):

.. code:: python

# django >= 1.10
MIDDLEWARE (
...
"drf_tweaks.versioning.DeprecationMiddleware"
)

It is highly recommended to add DEFAULT_VERSION along with DEFAUlt_VERSIONINg_CLASS to DRF settings:

.. code:: python

REST_FRAMEWORK = {
...
"DEFAULT_VERSIONING_CLASS": "rest_framework.versioning.AcceptHeaderVersioning",
"DEFAULT_VERSION": "1",
}

By default the DEFAULT_VERSION is None, which will in effect work as "latest" - it is safer to make passing newer
version explicitly.

ApiVersionMixin
~~~~~~~~~~~~~~~
Use this as first in inheritance chain when creating own API classes, so for example:

.. code:: python

class MyApi(ApiVersionMixin, GenericApiView):
...

Returns serializer depending on versioning_serializer_classess and version:

.. code:: python

versioning_serializer_classess = {
1: "x",
2: "x",
}

You can set custom deprecated/obsolete versions on the class-level

.. code:: python

CUSTOM_DEPRECATED_VERSION = X
CUSTOM_OBSOLETE_VERSION = Y

It can be also configured on the settings level as a fixed version

.. code:: python

API_DEPRECATED_VERSION = X
API_OBSOLETE_VERSION = Y

or as an offset - for example:

.. code:: python

API_VERSION_DEPRECATION_OFFSET = 6
API_VERSION_OBSOLETE_OFFSET = 10

Offset is calculated using the highest version number, only if versioning_serializer_classess is defined:

.. code:: python

deprecated = max(self.versioning_serializer_classess.keys() - API_VERSION_DEPRECATION_OFFSET)
obsolete = max(self.versioning_serializer_classess.keys() - API_VERSION_OBSOLETE_OFFSET)

If neither is set, deprecation/obsolete will not work. Only the first applicable setting is taken into account
(in the order as presented above).

Autodocumentation
-----------------

Rationale
~~~~~~~~~

[Django Rest Swagger][drs] is a awesome tool that generates swagger documentation out of your DRF API. There is however
one deficiency - it does not offer any hooks that would allow you to automaticaly generate some additional documentation.
For example, if you want pagination parameters to be visible in the docs, you'd have to set it explicitly:

.. code:: python

class SomeAPi(ListAPIView):
def get(...):
""" page_number -- optional, page number """

You may also want to generate some part of description based on some fields in API and make it change automatically
each time you update them. Django Rest Swagger does not offer any hooks for that, and that is why this extension was
created.

Since there are no hooks available to add custom documentation, this extension is made in a form of class decorator,
that creates facade for each API method (get/post/patch/put - defined on the Autodoc class level) and creates a
docstring for them based on original docstring (if present) & applicable Autodoc classess.

Usage & Configuration
~~~~~~~~~~~~~~~~~~~~~

.. code:: python

@autodoc("List or create an account")
class SomeApi(ApiVersionMixin, ListCreateAPIView):
...

# you can skip certain classes:
@autodoc("Base docstring", skip_classess=[PaginationAutodoc])

# or add certain classess:
@autodoc("Base docstring", add_classess=[CustomAutodoc])

# you can also override autodoc classess - this one cannot be used with skip_classess or add_classess:
@autodoc("Base docstring", classess=[PaginationAutodoc])

Available Classess
~~~~~~~~~~~~~~~~~~

Classess are applied in the same order they are defined.

BaseInfo
********

This one is adding basic info (the one passed to the decorator itself), as well as custom text or yaml if defined,
as in following examples:

.. code:: python

@autodoc("some caption")
class SomeApi(RetrieveUpdateAPIView):

@classmethod
def get_custom_get_doc(cls):
return "custom get doc"

@classmethod
def get_custom_patch_doc_yaml(cls):
return "some yaml"

Pagination
**********

This one is adding parameters to "get" method in swagger in following format:

.. code:: python

page_number -- optional, page number
page_size -- optional, page size

It adds all "\*_query_param" from pagination class, as long as they have name defined, so for standard
PageNumberPagination, that has page_size_query_param defined as None it will not be enclodes.

If default pagination class is defined, and you don't want it to be added, you can simply:

.. code:: python

class SomeClassWithoutPagination(RetrieveAPIView):
pagination_class = None

OrderingAndFiltering
********************

This one is adding ordering & filtering information, based on OrderingFilter and DjangoFilterBackend for "get" method in swagger in following format:
.. code::

Sorting:
usage: ?ordering=FIELD_NAME,-OTHER_FIELD_NAME
available fields: id, first_name, last_name, date_of_birth

Filtering:
id: exact, __gt, __gte, __lt, __lte, __in, __isnull
date_of_birth: exact, __gt, __gte, __lt, __lte, __in
first_name: exact, __gt, __gte, __lt, __lte, __in, __icontains, __istartswith
last_name: exact, __gt, __gte, __lt, __lte, __in, __icontains, __istartswith

Versioning
**********

Autodoc for versioning - applied only when ApiVersionMixin is present and the decorated class is using
rest_framework.versioning.AcceptHeaderVersioning and has versioning_serializer_classess defined. It adds all available
versions to a swagger, so you can make a call from it using different API versions.

Permissions
***********

Autodoc for permissions - adds permission class name & it's docstring to the method description.

Adding custom classess
~~~~~~~~~~~~~~~~~~~~~~

Custom class should inherit from AutodocBase:

.. code:: python

class CustomAutodoc(AutodocBase):
applies_to = ("get", "post", "put", "patch", "delete")

@classmethod
def _generate_yaml(cls, documented_cls, method_name):
return "" # your implementation goes here

@classmethod
def _generate_text(cls, documented_cls, base_doc, method_name):
return "" # your implementation goes here

Autooptimization
----------------

You can discover select related & prefetch related structure just by using AutoOptimizeMixin mixin. It takes fields & include_fields parameters, so if the related object is not going to be serialized, it will not be queried.

The structure is discovered based on serializer that is retrieved by get_serializer_class() with context obtained by get_serializer_context().

The optimization discovery is run in get_queryset, and it obtains serializer_class thorugh get_serializer_class.

.. code:: python

from drf_tweaks.optimizator import AutoOptimizeMixin

class MyAPI(AutoOptimizeMixin, ListCreateAPIView):
serializer_class = SerializerClassWithManyLevelsOfSubserializers

Linting database usage
----------------------

Rationale
~~~~~~~~~

It is important to make sure your web application is efficient and can work well under high load. The ``drf_tweaks.test_utils.DatabaseAccessLintingApiTestCase`` can detect two potential gotchas:
* large number of queries: print out warnings and raise an Exception based on thresholds on query counts set via project settings,
* multi-table `select_for_update`: raise an Exception if the code tries to lock more than one table, unless it's a combination whitelisted in project settings.

Usage & Configuration
~~~~~~~~~~~~~~~~~~~~~

.. code:: python

from django.urls import reverse_lazy
from drf_tweaks.test_utils import DatabaseAccessLintingApiTestCase

class TestFoo(DatabaseAccessLintingApiTestCase):
def test_bar():
# the linter will raise an Exception or print out a warning when it detects one of gotchas, as configured in settings
self.client.post(reverse_lazy("some-post-url"))
# ...

To configure, set in your settings:

TEST_QUERY_NUMBER_SHOW_WARNING
Print out a warning if the count of queries in a single view reaches this threshold. Default: 10.

TEST_QUERY_NUMBER_RAISE_ERROR
Raise an Exception if the count of queries in a single view reaches this threshold. Default: 15.

TEST_QUERY_NUMBER_PRINT_QUERIES
Set to True to print out queries stack (with tracebacks). Default: False.

TEST_QUERY_COUNTER_IGNORE_PATTERNS
Exclude some queries from counting. Set as a list of texts containing regular expressions. Default: [".*SAVEPOINT.*"].

TEST_SELECT_FOR_UPDATE_LIMITER_ENABLED
Raise an Exception if the view tries to select_for_update more than one table. Default: False.

TEST_SELECT_FOR_UPDATE_WHITELISTED_TABLE_SETS
Allow to perform select_for_update on specified combinations of multiple tables. Default: []. Example: [("table1", "table2"), ...]

To override those settings in tests, use the ``django.test.override_settings`` decorator
(check the `docs `_).

To temporarily disable query counting (for example, not to count queries executed in Celery tasks), use `TestQueryCounter.freeze`:

.. code:: python

with TestQueryCounter.freeze():
# the query counter will ignore all queries executed within this block

Bulk edit API mixin
-------------------
Bulk edit/create/delete can be easily enabled for any model. All you need to have are details and list serializer.

.. code:: python

class BulkEditAPI(BulkEditAPIMixin, ListCreateAPIView):
queryset = SomeModel.objects.all()
serializer_class = SomeModelSerializer
details_serializer_class = SomeModelDetailsSerializer
BULK_EDIT_ALLOW_DELETE_ITEMS = True # default: False
BULK_EDIT_MAX_ITEMS = 10 # API will not be limited if set to None

Creating
~~~~~~~~
To create a new object, **"temp_id"** key must be passed along with object's data.
Temporary id is required to match validation errors to appropriate object.
The create method uses the **serializer_class** serializer to create new objects.
The view must implement the **create** method to be able to add new items - if the method is not present, the view will
still work but adding new items will not be allowed.

Editing
~~~~~~~
The **details_serializer_class** is used for editing items. If one item does not pass validation, none of the items will
be editied.

Deleting
~~~~~~~~
The **BULK_EDIT_ALLOW_DELETE_ITEMS** flag must be set to **True** to enable deleting objects. To mark that object
should be deleted, add **"delete_object": True** next to it's **id** in the payload, for example:

.. code:: json

[{"id": 1, "delete_object": True}]

.. |travis| image:: https://secure.travis-ci.org/HealthByRo/drf_tweaks.svg?branch=master
.. _travis: http://travis-ci.org/HealthByRo/drf_tweaks?branch=master

.. |pypi| image:: https://img.shields.io/pypi/v/drf_tweaks.svg
.. _pypi: https://pypi.python.org/pypi/drf_tweaks

.. |codecov| image:: https://img.shields.io/codecov/c/github/HealthByRo/drf_tweaks/master.svg
.. _codecov: http://codecov.io/github/HealthByRo/drf_tweaks?branch=master