2011-02-19 13:26:27 +03:00
|
|
|
from django.core.urlresolvers import reverse
|
2011-02-19 13:47:26 +03:00
|
|
|
|
2011-02-02 01:37:51 +03:00
|
|
|
from djangorestframework.resource import Resource
|
2011-02-19 13:47:26 +03:00
|
|
|
from djangorestframework.response import Response
|
|
|
|
from djangorestframework import status
|
|
|
|
|
2011-02-02 02:07:55 +03:00
|
|
|
from resourceexample.forms import MyForm
|
2011-02-02 01:37:51 +03:00
|
|
|
|
|
|
|
class ExampleResource(Resource):
|
2011-02-19 13:26:27 +03:00
|
|
|
"""A basic read-only resource that points to 3 other resources."""
|
2011-02-02 01:37:51 +03:00
|
|
|
allowed_methods = anon_allowed_methods = ('GET',)
|
|
|
|
|
|
|
|
def get(self, request, auth):
|
2011-02-19 13:26:27 +03:00
|
|
|
return {"Some other resources": [reverse('another-example-resource', kwargs={'num':num}) for num in range(3)]}
|
2011-02-02 01:37:51 +03:00
|
|
|
|
|
|
|
class AnotherExampleResource(Resource):
|
|
|
|
"""A basic GET-able/POST-able resource."""
|
|
|
|
allowed_methods = anon_allowed_methods = ('GET', 'POST')
|
2011-02-02 02:07:55 +03:00
|
|
|
form = MyForm # Optional form validation on input (Applies in this case the POST method, but can also apply to PUT)
|
2011-02-02 01:37:51 +03:00
|
|
|
|
|
|
|
def get(self, request, auth, num):
|
|
|
|
"""Handle GET requests"""
|
|
|
|
if int(num) > 2:
|
|
|
|
return Response(status.HTTP_404_NOT_FOUND)
|
|
|
|
return "GET request to AnotherExampleResource %s" % num
|
|
|
|
|
|
|
|
def post(self, request, auth, content, num):
|
|
|
|
"""Handle POST requests"""
|
|
|
|
if int(num) > 2:
|
|
|
|
return Response(status.HTTP_404_NOT_FOUND)
|
|
|
|
return "POST request to AnotherExampleResource %s, with content: %s" % (num, repr(content))
|