Mercurial > public > sg101
view forums/search_indexes.py @ 661:15dbe0ccda95
Prevent exceptions when viewing downloads in the admin when the file
doesn't exist on the filesystem. This is usually seen in development
but can also happen in production if the file is missing.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 14 May 2013 21:02:47 -0500 |
parents | ee87ea74d46b |
children | ad53d929281a |
line wrap: on
line source
"""Haystack search index for the weblinks application.""" from haystack.indexes import * from haystack import site from custom_search.indexes import CondQueuedSearchIndex from forums.models import Forum, Topic, Post from forums.signals import topic_content_update, post_content_update class TopicIndex(CondQueuedSearchIndex): text = CharField(document=True, use_template=True) author = CharField(model_attr='user') pub_date = DateTimeField(model_attr='creation_date') def index_queryset(self): return Topic.objects.filter(forum__in=Forum.objects.public_forum_ids()) def get_updated_field(self): return 'update_date' def _setup_save(self, model): topic_content_update.connect(self.enqueue_save) def _teardown_save(self, model): topic_content_update.disconnect(self.enqueue_save) def enqueue_save(self, sender, **kwargs): return self.enqueue('update', sender) def can_index(self, instance): return instance.forum.id in Forum.objects.public_forum_ids() class PostIndex(CondQueuedSearchIndex): text = CharField(document=True, use_template=True) author = CharField(model_attr='user') pub_date = DateTimeField(model_attr='creation_date') def index_queryset(self): return Post.objects.filter( topic__forum__in=Forum.objects.public_forum_ids()) def get_updated_field(self): return 'update_date' def _setup_save(self, model): post_content_update.connect(self.enqueue_save) def _teardown_save(self, model): post_content_update.disconnect(self.enqueue_save) def enqueue_save(self, sender, **kwargs): return self.enqueue('update', sender) def can_index(self, instance): return instance.topic.forum.id in Forum.objects.public_forum_ids() site.register(Topic, TopicIndex) site.register(Post, PostIndex)