README.rst 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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.6, 2.7 and 3.3)
  18. * Django 1.3+
  19. * Django REST Framework >= 2.2.5 (when bulk features were added to serializers), < 3.0
  20. Installing
  21. ----------
  22. Using pip::
  23. $ pip install djangorestframework-bulk
  24. or from source code::
  25. $ pip install -e git+http://github.com/miki725/django-rest-framework-bulk#egg=djangorestframework-bulk
  26. Example
  27. -------
  28. The bulk views (and mixins) are very similar to Django REST Framework's own
  29. generic views (and mixins)::
  30. from rest_framework_bulk import ListBulkCreateUpdateDestroyAPIView
  31. class FooView(ListBulkCreateUpdateDestroyAPIView):
  32. model = FooModel
  33. The above will allow to create the following queries
  34. ::
  35. # list queryset
  36. GET
  37. ::
  38. # create single resource
  39. POST
  40. {"field":"value","field2":"value2"} <- json object in request data
  41. ::
  42. # create multiple resources
  43. POST
  44. [{"field":"value","field2":"value2"}]
  45. ::
  46. # update multiple resources (requires all fields)
  47. PUT
  48. [{"field":"value","field2":"value2"}] <- json list of objects in data
  49. ::
  50. # partial update multiple resources
  51. PATCH
  52. [{"field":"value"}] <- json list of objects in data
  53. ::
  54. # delete queryset (see notes)
  55. DELETE
  56. Router
  57. ------
  58. The bulk router can map automatically the bulk actions::
  59. from rest_framework_bulk.routes import BulkRouter
  60. class UserViewSet(BulkModelViewSet):
  61. model = User
  62. def allow_bulk_destroy(self, qs, filtered):
  63. """Don't forget to fine-grain this method"""
  64. router = BulkRouter()
  65. router.register(r'users', UserViewSet)
  66. Notes
  67. -----
  68. Most API urls have two URL levels for each resource:
  69. 1. ``url(r'foo/', ...)``
  70. 2. ``url(r'foo/(?P<pk>\d+)/', ...)``
  71. The second url however is not applicable for bulk operations because
  72. the url directly maps to a single resource. Therefore all bulk
  73. generic views only apply to the first url.
  74. There are multiple generic view classes in case only a certail
  75. bulk functionality is required. For example ``ListBulkCreateAPIView``
  76. will only do bulk operations for creating resources.
  77. For a complete list of available generic view classes, please
  78. take a look at the source code at ``generics.py`` as it is mostly
  79. self-explanatory.
  80. Most bulk operations are pretty safe in terms of how they operate,
  81. that is you explicitly describe all requests. For example, if you
  82. need to update 3 specific resources, you have to explicitly identify
  83. those resources in the request's ``PUT`` or ``PATCH`` data.
  84. The only exception to this is bulk delete. Consider a ``DELETE``
  85. request to the first url. That can potentially delete all resources
  86. without any special confirmation. To try to account for this, bulk delete
  87. mixin allows to implement a hook to determine if the bulk delete
  88. request should be allowed::
  89. class FooView(BulkDestroyAPIView):
  90. def allow_bulk_destroy(self, qs, filtered):
  91. # custom logic here
  92. # default checks if the qs was filtered
  93. # qs comes from self.get_queryset()
  94. # filtered comes from self.filter_queryset(qs)
  95. return qs is not filtered
  96. By default it checks if the queryset was filtered and if not will not
  97. allow the bulk delete to complete. The logic here is that if the request
  98. is filtered to only get certain resources, more attention was payed hence
  99. the action is less likely to be accidental. On how to filter requests,
  100. please refer to Django REST
  101. `docs <http://www.django-rest-framework.org/api-guide/filtering>`_.
  102. Either way, please use bulk deletes with extreme caution since they
  103. can be dangerous.