You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.3 KiB
37 lines
1.3 KiB
|
13 years ago
|
from django.conf import settings
|
||
|
|
from django.contrib.syndication.feeds import Feed
|
||
|
|
from django.contrib.sites.models import Site
|
||
|
|
from django.contrib import comments
|
||
|
|
|
||
|
|
class LatestCommentFeed(Feed):
|
||
|
|
"""Feed of latest comments on the current site."""
|
||
|
|
|
||
|
|
def title(self):
|
||
|
|
if not hasattr(self, '_site'):
|
||
|
|
self._site = Site.objects.get_current()
|
||
|
|
return u"%s comments" % self._site.name
|
||
|
|
|
||
|
|
def link(self):
|
||
|
|
if not hasattr(self, '_site'):
|
||
|
|
self._site = Site.objects.get_current()
|
||
|
|
return "http://%s/" % (self._site.domain)
|
||
|
|
|
||
|
|
def description(self):
|
||
|
|
if not hasattr(self, '_site'):
|
||
|
|
self._site = Site.objects.get_current()
|
||
|
|
return u"Latest comments on %s" % self._site.name
|
||
|
|
|
||
|
|
def items(self):
|
||
|
|
qs = comments.get_model().objects.filter(
|
||
|
|
site__pk = settings.SITE_ID,
|
||
|
|
is_public = True,
|
||
|
|
is_removed = False,
|
||
|
|
)
|
||
|
|
if getattr(settings, 'COMMENTS_BANNED_USERS_GROUP', None):
|
||
|
|
where = ['user_id NOT IN (SELECT user_id FROM auth_users_group WHERE group_id = %s)']
|
||
|
|
params = [settings.COMMENTS_BANNED_USERS_GROUP]
|
||
|
|
qs = qs.extra(where=where, params=params)
|
||
|
|
return qs[:40]
|
||
|
|
|
||
|
|
def item_pubdate(self, item):
|
||
|
|
return item.submit_date
|