view gpp/forums/search_indexes.py @ 231:a2d388ed106e

Guard against the request object not having a user attribute in my Who's online middleware. This can happen if a redirect is issued before the authentication middleware gets to run.
author Brian Neal <bgneal@gmail.com>
date Wed, 14 Jul 2010 02:35:39 +0000
parents a5fcf3d1b663
children d424b8bae71d
line wrap: on
line source
"""Haystack search index for the weblinks application."""
from haystack.indexes import *
from haystack import site

from forums.models import Forum, Post


class PostIndex(SearchIndex):
    text = CharField(document=True, use_template=True)
    author = CharField(model_attr='user')
    pub_date = DateTimeField(model_attr='creation_date')

    def get_queryset(self):
        return Post.objects.filter(
                topic__forum__in=Forum.objects.public_forums())


site.register(Post, PostIndex)