view gpp/bio/search_indexes.py @ 467:b910cc1460c8

Add the ability to conditionally add model instances to the search index on update. This is not perfect, as some instances should be deleted from the index if they are updated such that they should not be in the index anymore. Will think about and address that later.
author Brian Neal <bgneal@gmail.com>
date Sun, 24 Jul 2011 18:12:20 +0000
parents 79240675b903
children 3b30286adba5
line wrap: on
line source
"""Haystack search index for the bio application."""
from haystack.indexes import *
from haystack import site
from custom_search import CondQueuedSearchIndex

from bio.models import UserProfile


class UserProfileIndex(CondQueuedSearchIndex):
    text = CharField(document=True, use_template=True)
    author = CharField(model_attr='user')

    def get_queryset(self):
        return UserProfile.objects.filter(user__is_active=True)

    def get_updated_field(self):
        return 'update_date'

    def can_index(self, instance):
        return instance.user.is_active


site.register(UserProfile, UserProfileIndex)