comparison gpp/weblinks/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 weblinks application.""" 1 """Haystack search index for the weblinks 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 weblinks.models import Link 6 from weblinks.models import Link
7 7
8 8
9 class LinkIndex(QueuedSearchIndex): 9 class LinkIndex(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 pub_date = DateTimeField(model_attr='date_added') 12 pub_date = DateTimeField(model_attr='date_added')
13 13
14 def get_queryset(self): 14 def get_queryset(self):
15 return Link.public_objects.all() 15 return Link.public_objects.all()
16 16
17 def get_updated_field(self): 17 def get_updated_field(self):
18 return 'update_date' 18 return 'update_date'
19 19
20 def can_index(self, instance):
21 return instance.is_public
20 22
21 site.register(Link, LinkIndex) 23 site.register(Link, LinkIndex)