mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-10 19:56:59 +03:00
137 lines
6.1 KiB
Markdown
137 lines
6.1 KiB
Markdown
|
# Tutorial 2: Request and Response objects
|
||
|
|
||
|
From this point we're going to really start covering the core of REST framework.
|
||
|
Let's introduce a couple of essential building blocks.
|
||
|
|
||
|
## Request objects
|
||
|
|
||
|
REST framework intoduces a `Request` object that extends the regular `HttpRequest`, and provides more flexible request parsing. The core functionality of the `Request` object is the `request.DATA` attribute, which is similar to `request.POST`, but more useful for working with Web APIs.
|
||
|
|
||
|
request.POST # Only handles form data. Only works for 'POST' method.
|
||
|
request.DATA # Handles arbitrary data. Works any HTTP request with content.
|
||
|
|
||
|
## Response objects
|
||
|
|
||
|
REST framework also introduces a `Response` object, which is a type of `TemplateResponse` that takes unrendered content and uses content negotiation to determine the correct content type to return to the client.
|
||
|
|
||
|
return Response(data) # Renders to content type as requested by the client.
|
||
|
|
||
|
## Status codes
|
||
|
|
||
|
Using numeric HTTP status codes in your views doesn't always make for obvious reading, and it's easy to not notice if you get an error code wrong. REST framework provides more explicit identifiers for each status code, such as `HTTP_400_BAD_REQUEST` in the `status` module. It's a good idea to use these throughout rather than using numeric identifiers.
|
||
|
|
||
|
## Wrapping API views
|
||
|
|
||
|
REST framework provides two wrappers you can use to write API views.
|
||
|
|
||
|
1. The `@api_view` decorator for working with function based views.
|
||
|
2. The `APIView` class for working with class based views.
|
||
|
|
||
|
These wrappers provide a few bits of functionality such as making sure you recieve `Request` instances in your view, and adding context to `Response` objects so that content negotiation can be performed.
|
||
|
|
||
|
The wrappers also provide behaviour such as returning `405 Method Not Allowed` responses when appropriate, and handling any `ParseError` exception that occurs when accessing `request.DATA` with malformed input.
|
||
|
|
||
|
|
||
|
## Pulling it all together
|
||
|
|
||
|
Okay, let's go ahead and start using these new components to write a few views.
|
||
|
|
||
|
from djangorestframework.decorators import api_view
|
||
|
from djangorestframework.status import *
|
||
|
|
||
|
@api_view(allow=['GET', 'POST'])
|
||
|
def comment_root(request):
|
||
|
"""
|
||
|
List all comments, or create a new comment.
|
||
|
"""
|
||
|
if request.method == 'GET':
|
||
|
comments = Comment.objects.all()
|
||
|
serializer = CommentSerializer(instance=comments)
|
||
|
return Response(serializer.data)
|
||
|
|
||
|
elif request.method == 'POST':
|
||
|
serializer = CommentSerializer(request.DATA)
|
||
|
if serializer.is_valid():
|
||
|
comment = serializer.object
|
||
|
comment.save()
|
||
|
return Response(serializer.data, status=HTTP_201_CREATED)
|
||
|
else:
|
||
|
return Response(serializer.error_data, status=HTTP_400_BAD_REQUEST)
|
||
|
|
||
|
|
||
|
Our instance view is an improvement over the previous example. It's slightly more concise, and the code now feels very similar to if we were working with the Forms API.
|
||
|
|
||
|
@api_view(allow=['GET', 'PUT', 'DELETE'])
|
||
|
def comment_instance(request, pk):
|
||
|
"""
|
||
|
Retrieve, update or delete a comment instance.
|
||
|
"""
|
||
|
try:
|
||
|
comment = Comment.objects.get(pk=pk)
|
||
|
except Comment.DoesNotExist:
|
||
|
return Response(status=HTTP_404_NOT_FOUND)
|
||
|
|
||
|
if request.method == 'GET':
|
||
|
serializer = CommentSerializer(instance=comment)
|
||
|
return Response(serializer.data)
|
||
|
|
||
|
elif request.method == 'PUT':
|
||
|
serializer = CommentSerializer(request.DATA, instance=comment)
|
||
|
if serializer.is_valid():
|
||
|
comment = serializer.object
|
||
|
comment.save()
|
||
|
return Response(serializer.data)
|
||
|
else:
|
||
|
return Response(serializer.error_data, status=HTTP_400_BAD_REQUEST)
|
||
|
|
||
|
elif request.method == 'DELETE':
|
||
|
comment.delete()
|
||
|
return Response(status=HTTP_204_NO_CONTENT)
|
||
|
|
||
|
This should all feel very familiar - it looks a lot like working with forms in regular Django views.
|
||
|
|
||
|
Notice that we're no longer explicitly tying our requests or responses to a given content type. `request.DATA` can handle incoming `json` requests, but it can also handle `yaml` and other formats. Similarly we're returning response objects with data, but allowing REST framework to render the response into the correct content type for us.
|
||
|
|
||
|
## Adding optional format suffixes to our URLs
|
||
|
|
||
|
To take advantage of that, let's add support for format suffixes to our API endpoints, so that we can use URLs that explicitly refer to a given format. That means our API will be able to handle URLs such as [http://example.com/api/items/4.json][1].
|
||
|
|
||
|
Start by adding a `format` keyword argument to both of the views, like so.
|
||
|
|
||
|
def comment_root(request, format=None):
|
||
|
|
||
|
and
|
||
|
|
||
|
def comment_instance(request, pk, format=None):
|
||
|
|
||
|
Now update the `urls.py` file slightly, to append a set of `format_suffix_patterns` in addition to the existing URLs.
|
||
|
|
||
|
from djangorestframework.urlpatterns import format_suffix_patterns
|
||
|
|
||
|
urlpatterns = patterns('blogpost.views',
|
||
|
url(r'^$', 'comment_root'),
|
||
|
url(r'^(?P<pk>[0-9]+)$', 'comment_instance')
|
||
|
)
|
||
|
|
||
|
urlpatterns = format_suffix_patterns(urlpatterns)
|
||
|
|
||
|
We don't necessarily need to add these extra url patterns in, but it gives us a simple, clean way of refering to a specific format.
|
||
|
|
||
|
## How's it looking?
|
||
|
|
||
|
Go ahead and test the API from the command line, as we did in [tutorial part 1][2]. Everything is working pretty similarly, although we've got some nicer error handling if we send invalid requests.
|
||
|
|
||
|
**TODO: Describe using accept headers, content-type headers, and format suffixed URLs**
|
||
|
|
||
|
Now go and open the API in a web browser, by visiting [http://127.0.0.1:8000/][3].
|
||
|
|
||
|
**TODO: Describe browseable API awesomeness**
|
||
|
|
||
|
## What's next?
|
||
|
|
||
|
In [tutorial part 3][4], we'll start using class based views, and see how generic views reduce the amount of code we need to write.
|
||
|
|
||
|
[1]: http://example.com/api/items/4.json
|
||
|
[2]: 1-serialization.md
|
||
|
[3]: http://127.0.0.1:8000/
|
||
|
[4]: 3-class-based-views.md
|