Mercurial > public > sg101
comparison 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 |
comparison
equal
deleted
inserted
replaced
466:c78c6e007e61 | 467:b910cc1460c8 |
---|---|
1 """Haystack search index for the bio application.""" | 1 """Haystack search index for the bio application.""" |
2 from haystack.indexes import * | 2 from haystack.indexes import * |
3 from haystack import site | 3 from haystack import site |
4 from queued_search.indexes import QueuedSearchIndex | 4 from custom_search import CondQueuedSearchIndex |
5 | 5 |
6 from bio.models import UserProfile | 6 from bio.models import UserProfile |
7 | 7 |
8 | 8 |
9 class UserProfileIndex(QueuedSearchIndex): | 9 class UserProfileIndex(CondQueuedSearchIndex): |
10 text = CharField(document=True, use_template=True) | 10 text = CharField(document=True, use_template=True) |
11 author = CharField(model_attr='user') | 11 author = CharField(model_attr='user') |
12 | 12 |
13 def get_queryset(self): | 13 def get_queryset(self): |
14 return UserProfile.objects.filter(user__is_active=True) | 14 return UserProfile.objects.filter(user__is_active=True) |
15 | 15 |
16 def get_updated_field(self): | 16 def get_updated_field(self): |
17 return 'update_date' | 17 return 'update_date' |
18 | 18 |
19 def can_index(self, instance): | |
20 return instance.user.is_active | |
21 | |
19 | 22 |
20 site.register(UserProfile, UserProfileIndex) | 23 site.register(UserProfile, UserProfileIndex) |