Forráskód Böngészése

completely overwriting get_object() to support bulk requests

Miroslav Shubernetskiy 10 éve
szülő
commit
191c5e7c4a
2 módosított fájl, 30 hozzáadás és 34 törlés
  1. 17 18
      rest_framework_bulk/drf2/mixins.py
  2. 13 16
      rest_framework_bulk/drf3/mixins.py

+ 17 - 18
rest_framework_bulk/drf2/mixins.py

@@ -49,24 +49,23 @@ class BulkUpdateModelMixin(object):
     ``many=True`` ability from Django REST >= 2.2.5.
     """
 
-    def get_object(self):
-        try:
-            return super(BulkUpdateModelMixin, self).get_object()
-        except ImproperlyConfigured:
-            # probably happened when called get_object() within metadata()
-            # which is not allowed on list viewset however since we are enabling
-            # PUT here, we should handle the exception
-            # if called within metadata(), we can simply swallow exception
-            # since that method does not actually do anything
-            # with the returned object
-            for file, line, function, code in traceback.extract_stack():
-                if all((file.endswith('rest_framework/generics.py'),
-                        function == 'metadata')):
-                    return
-
-            # not called inside metadata() so probably something went
-            # wrong and so we should reraise exception
-            raise
+    def get_object(self, queryset=None):
+        lookup_url_kwarg = self.lookup_url_kwarg or self.lookup_field
+
+        if any((lookup_url_kwarg in self.kwargs,
+                self.pk_url_kwarg in self.kwargs,
+                self.slug_url_kwarg in self.kwargs)):
+            return super(BulkUpdateModelMixin, self).get_object(queryset)
+
+        # If the lookup_url_kwarg (or other deprecated variations)
+        # are not present, get_object() is most likely called
+        # as part of metadata() which by default simply checks
+        # for object permissions and raises permission denied if necessary.
+        # Here we don't need to check for general permissions
+        # and can simply return None since general permissions
+        # are checked in initial() which always gets executed
+        # before any of the API actions (e.g. create, update, etc)
+        return
 
     def bulk_update(self, request, *args, **kwargs):
         partial = kwargs.pop('partial', False)

+ 13 - 16
rest_framework_bulk/drf3/mixins.py

@@ -46,23 +46,20 @@ class BulkUpdateModelMixin(object):
     """
 
     def get_object(self):
-        try:
+        lookup_url_kwarg = self.lookup_url_kwarg or self.lookup_field
+
+        if lookup_url_kwarg in self.kwargs:
             return super(BulkUpdateModelMixin, self).get_object()
-        except AssertionError:
-            # probably happened when called get_object() within options()
-            # via self.metadata_class which is not allowed on list viewset
-            # however since we are enabling PUT here, we should handle the
-            # exception if called within options()
-            # We can simply swallow the exception since that method
-            # does not actually do anything with the returned object
-            for file, line, function, code in traceback.extract_stack():
-                if all((file.endswith('rest_framework/views.py'),
-                        function == 'options')):
-                    return
-
-            # not called inside metadata() so probably something went
-            # wrong and so we should reraise exception
-            raise
+
+        # If the lookup_url_kwarg is not present
+        # get_object() is most likely called as part of options()
+        # which by default simply checks for object permissions
+        # and raises permission denied if necessary.
+        # Here we don't need to check for general permissions
+        # and can simply return None since general permissions
+        # are checked in initial() which always gets executed
+        # before any of the API actions (e.g. create, update, etc)
+        return
 
     def bulk_update(self, request, *args, **kwargs):
         partial = kwargs.pop('partial', False)