aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework
diff options
context:
space:
mode:
authorTom Christie2013-01-15 17:50:51 +0000
committerTom Christie2013-01-15 17:50:51 +0000
commit52847a215d4e8de88e81d9ae79ce8bee9a36a9a2 (patch)
treec0246d515129944bed13f249087cf914586124c1 /rest_framework
parent8f3931e02d0f0ba803075ca65dc8617ee959456f (diff)
downloaddjango-rest-framework-52847a215d4e8de88e81d9ae79ce8bee9a36a9a2.tar.bz2
Fix implementation
Diffstat (limited to 'rest_framework')
-rw-r--r--rest_framework/mixins.py3
-rw-r--r--rest_framework/resources.py67
2 files changed, 23 insertions, 47 deletions
diff --git a/rest_framework/mixins.py b/rest_framework/mixins.py
index 8873e4ae..9bd566da 100644
--- a/rest_framework/mixins.py
+++ b/rest_framework/mixins.py
@@ -25,9 +25,6 @@ class CreateModelMixin(object):
return Response(serializer.data, status=status.HTTP_201_CREATED)
return Response(serializer.errors, status=status.HTTP_400_BAD_REQUEST)
- def pre_save(self, obj):
- pass
-
class ListModelMixin(object):
"""
diff --git a/rest_framework/resources.py b/rest_framework/resources.py
index dd8a5471..d4019a94 100644
--- a/rest_framework/resources.py
+++ b/rest_framework/resources.py
@@ -1,31 +1,27 @@
##### RESOURCES AND ROUTERS ARE NOT YET IMPLEMENTED - PLACEHOLDER ONLY #####
from functools import update_wrapper
-import inspect
from django.utils.decorators import classonlymethod
-from rest_framework import views, generics
-
-
-def wrapped(source, dest):
- """
- Copy public, non-method attributes from source to dest, and return dest.
- """
- for attr in [attr for attr in dir(source)
- if not attr.startswith('_') and not inspect.ismethod(attr)]:
- setattr(dest, attr, getattr(source, attr))
- return dest
+from rest_framework import views, generics, mixins
##### RESOURCES AND ROUTERS ARE NOT YET IMPLEMENTED - PLACEHOLDER ONLY #####
class ResourceMixin(object):
"""
- Clone Django's `View.as_view()` behaviour *except* using REST framework's
- 'method -> action' binding for resources.
+ This is the magic.
+
+ Overrides `.as_view()` so that it takes an `actions` keyword that performs
+ the binding of HTTP methods to actions on the Resource.
+
+ For example, to create a concrete view binding the 'GET' and 'POST' methods
+ to the 'list' and 'create' actions...
+
+ my_resource = MyResource.as_view({'get': 'list', 'post': 'create'})
"""
@classonlymethod
- def as_view(cls, actions, **initkwargs):
+ def as_view(cls, actions=None, **initkwargs):
"""
Main entry point for a request-response process.
"""
@@ -61,36 +57,19 @@ class ResourceMixin(object):
return view
-##### RESOURCES AND ROUTERS ARE NOT YET IMPLEMENTED - PLACEHOLDER ONLY #####
-
class Resource(ResourceMixin, views.APIView):
pass
-##### RESOURCES AND ROUTERS ARE NOT YET IMPLEMENTED - PLACEHOLDER ONLY #####
-
-class ModelResource(ResourceMixin, views.APIView):
- # TODO: Actually delegation won't work
- root_class = generics.ListCreateAPIView
- detail_class = generics.RetrieveUpdateDestroyAPIView
-
- def root_view(self):
- return wrapped(self, self.root_class())
-
- def detail_view(self):
- return wrapped(self, self.detail_class())
-
- def list(self, request, *args, **kwargs):
- return self.root_view().list(request, args, kwargs)
-
- def create(self, request, *args, **kwargs):
- return self.root_view().create(request, args, kwargs)
-
- def retrieve(self, request, *args, **kwargs):
- return self.detail_view().retrieve(request, args, kwargs)
-
- def update(self, request, *args, **kwargs):
- return self.detail_view().update(request, args, kwargs)
-
- def destroy(self, request, *args, **kwargs):
- return self.detail_view().destroy(request, args, kwargs)
+# Note the inheritence of both MultipleObjectAPIView *and* SingleObjectAPIView
+# is a bit weird given the diamond inheritence, but it will work for now.
+# There's some implementation clean up that can happen later.
+class ModelResource(mixins.CreateModelMixin,
+ mixins.RetrieveModelMixin,
+ mixins.UpdateModelMixin,
+ mixins.DestroyModelMixin,
+ mixins.ListModelMixin,
+ ResourceMixin,
+ generics.MultipleObjectAPIView,
+ generics.SingleObjectAPIView):
+ pass