mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-11 12:17:24 +03:00
37 lines
1.2 KiB
Python
37 lines
1.2 KiB
Python
from djangorestframework.resources import ModelResource
|
|
from djangorestframework.reverse import reverse
|
|
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 url(self, instance):
|
|
return reverse('blog-post',
|
|
kwargs={'key': instance.key},
|
|
request=self.request)
|
|
|
|
def comments(self, instance):
|
|
return reverse('comments',
|
|
kwargs={'blogpost': instance.key},
|
|
request=self.request)
|
|
|
|
|
|
class CommentResource(ModelResource):
|
|
"""
|
|
A Comment is associated with a given Blog Post and has a *username* and *comment*, and optionally a *rating*.
|
|
"""
|
|
model = Comment
|
|
fields = ('username', 'comment', 'created', 'rating', 'url', 'blogpost')
|
|
ordering = ('-created',)
|
|
|
|
def blogpost(self, instance):
|
|
return reverse('blog-post',
|
|
kwargs={'key': instance.blogpost.key},
|
|
request=self.request)
|