django-rest-framework/examples/blogpost/resources.py

28 lines
953 B
Python
Raw Normal View History

2011-06-15 17:09:57 +04:00
from djangorestframework.resources import ModelResource
2012-02-22 00:47:55 +04:00
from djangorestframework.reverse import reverse
2011-06-15 17:09:57 +04:00
from blogpost.models import BlogPost, Comment
class BlogPostResource(ModelResource):
"""
A Blog Post has a *title* and *content*, and can be associated with zero or more comments.
"""
model = BlogPost
fields = ('created', 'title', 'slug', 'content', 'url', 'comments')
ordering = ('-created',)
def comments(self, instance):
return reverse('comments', request, kwargs={'blogpost': instance.key})
2011-06-15 17:09:57 +04:00
class CommentResource(ModelResource):
"""
2011-12-29 17:31:12 +04:00
A Comment is associated with a given Blog Post and has a *username* and *comment*, and optionally a *rating*.
2011-06-15 17:09:57 +04:00
"""
model = Comment
fields = ('username', 'comment', 'created', 'rating', 'url', 'blogpost')
ordering = ('-created',)
2011-12-29 17:31:12 +04:00
2011-06-15 17:09:57 +04:00
def blogpost(self, instance):
return reverse('blog-post', request, kwargs={'key': instance.blogpost.key})