README.rst 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. Django REST Framework Bulk
  2. ==========================
  3. .. image:: https://badge.fury.io/py/djangorestframework-bulk.png
  4. :target: http://badge.fury.io/py/djangorestframework-bulk
  5. .. image:: https://travis-ci.org/miki725/django-rest-framework-bulk.svg?branch=master
  6. :target: https://travis-ci.org/miki725/django-rest-framework-bulk
  7. Django REST Framework bulk CRUD view mixins.
  8. Overview
  9. --------
  10. Django REST Framework comes with many generic views however none
  11. of them allow to do bulk operations such as create, update and delete.
  12. To keep the core of Django REST Framework simple, its maintainer
  13. suggested to create a separate project to allow for bulk operations
  14. within the framework. That is the purpose of this project.
  15. Requirements
  16. ------------
  17. * Python>=2.7
  18. * Django>=1.3
  19. * Django REST Framework >= 3.0.0
  20. * REST Framework >= 2.2.5
  21. (**only with** Django<1.8 since DRF<3 does not support Django1.8)
  22. Installing
  23. ----------
  24. Using pip::
  25. $ pip install djangorestframework-bulk
  26. or from source code::
  27. $ pip install -e git+http://github.com/miki725/django-rest-framework-bulk#egg=djangorestframework-bulk
  28. Example
  29. -------
  30. The bulk views (and mixins) are very similar to Django REST Framework's own
  31. generic views (and mixins)::
  32. from rest_framework_bulk import (
  33. BulkListSerializer,
  34. BulkSerializerMixin,
  35. ListBulkCreateUpdateDestroyAPIView,
  36. )
  37. class FooSerializer(BulkSerializerMixin, ModelSerializer):
  38. class Meta(object):
  39. model = FooModel
  40. # only necessary in DRF3
  41. list_serializer_class = BulkListSerializer
  42. class FooView(ListBulkCreateUpdateDestroyAPIView):
  43. queryset = FooModel.objects.all()
  44. serializer_class = FooSerializer
  45. The above will allow to create the following queries
  46. ::
  47. # list queryset
  48. GET
  49. ::
  50. # create single resource
  51. POST
  52. {"field":"value","field2":"value2"} <- json object in request data
  53. ::
  54. # create multiple resources
  55. POST
  56. [{"field":"value","field2":"value2"}]
  57. ::
  58. # update multiple resources (requires all fields)
  59. PUT
  60. [{"field":"value","field2":"value2"}] <- json list of objects in data
  61. ::
  62. # partial update multiple resources
  63. PATCH
  64. [{"field":"value"}] <- json list of objects in data
  65. ::
  66. # delete queryset (see notes)
  67. DELETE
  68. Router
  69. ------
  70. The bulk router can automatically map the bulk actions::
  71. from rest_framework_bulk.routes import BulkRouter
  72. class UserViewSet(BulkModelViewSet):
  73. model = User
  74. def allow_bulk_destroy(self, qs, filtered):
  75. """Don't forget to fine-grain this method"""
  76. router = BulkRouter()
  77. router.register(r'users', UserViewSet)
  78. DRF3
  79. ----
  80. Django REST Framework made many API changes which included major changes
  81. in serializers. As a result, please note the following in order to use
  82. DRF-bulk with DRF3:
  83. * You must specify custom ``list_serializer_class`` if your view(set)
  84. will require update functionality (when using ``BulkUpdateModelMixin``)
  85. * DRF3 removes read-only fields from ``serializer.validated_data``.
  86. As a result, it is impossible to correlate each ``validated_data``
  87. in ``ListSerializer`` with a model instance to update since ``validated_data``
  88. will be missing the model primary key since that is a read-only field.
  89. To deal with that, you must use ``BulkSerializerMixin`` mixin in your serializer
  90. class which will add the model primary key field back to the ``validated_data``.
  91. By default ``id`` field is used however you can customize that field
  92. by using ``update_lookup_field`` in the serializers ``Meta``::
  93. class FooSerializer(BulkSerializerMixin, ModelSerializer):
  94. class Meta(object):
  95. model = FooModel
  96. list_serializer_class = BulkListSerializer
  97. update_lookup_field = 'slug'
  98. Notes
  99. -----
  100. Most API urls have two URL levels for each resource:
  101. 1. ``url(r'foo/', ...)``
  102. 2. ``url(r'foo/(?P<pk>\d+)/', ...)``
  103. The second url however is not applicable for bulk operations because
  104. the url directly maps to a single resource. Therefore all bulk
  105. generic views only apply to the first url.
  106. There are multiple generic view classes in case only a certail
  107. bulk functionality is required. For example ``ListBulkCreateAPIView``
  108. will only do bulk operations for creating resources.
  109. For a complete list of available generic view classes, please
  110. take a look at the source code at ``generics.py`` as it is mostly
  111. self-explanatory.
  112. Most bulk operations are pretty safe in terms of how they operate,
  113. that is you explicitly describe all requests. For example, if you
  114. need to update 3 specific resources, you have to explicitly identify
  115. those resources in the request's ``PUT`` or ``PATCH`` data.
  116. The only exception to this is bulk delete. Consider a ``DELETE``
  117. request to the first url. That can potentially delete all resources
  118. without any special confirmation. To try to account for this, bulk delete
  119. mixin allows to implement a hook to determine if the bulk delete
  120. request should be allowed::
  121. class FooView(BulkDestroyAPIView):
  122. def allow_bulk_destroy(self, qs, filtered):
  123. # custom logic here
  124. # default checks if the qs was filtered
  125. # qs comes from self.get_queryset()
  126. # filtered comes from self.filter_queryset(qs)
  127. return qs is not filtered
  128. By default it checks if the queryset was filtered and if not will not
  129. allow the bulk delete to complete. The logic here is that if the request
  130. is filtered to only get certain resources, more attention was payed hence
  131. the action is less likely to be accidental. On how to filter requests,
  132. please refer to Django REST
  133. `docs <http://www.django-rest-framework.org/api-guide/filtering>`_.
  134. Either way, please use bulk deletes with extreme caution since they
  135. can be dangerous.