X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/0afa8ce8f8858c875404136d81dfb1645aeac19f..5822f0692d0f64c266cad998681e6f5aea6d91d8:/apps/pdcounter/models.py diff --git a/apps/pdcounter/models.py b/apps/pdcounter/models.py index f62781555..50eb43e1f 100644 --- a/apps/pdcounter/models.py +++ b/apps/pdcounter/models.py @@ -2,11 +2,12 @@ # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. # +from django.conf import settings from django.db import models from django.db.models import permalink from django.utils.translation import ugettext as _ from datetime import datetime - +from django.db.models.signals import post_save, post_delete class Author(models.Model): name = models.CharField(_('name'), max_length=50, db_index=True) @@ -83,3 +84,22 @@ class BookStub(models.Model): def name(self): return self.title + def pretty_title(self, html_links=False): + return ', '.join((self.author, self.title)) + + +if not settings.NO_SEARCH_INDEX: + def update_index(sender, instance, **kwargs): + import search + print "update pd index %s [update %s]" % (instance, 'created' in kwargs) + idx = search.Index() + idx.open() + try: + idx.index_tags(instance, remove_only=not 'created' in kwargs) + finally: + idx.close() + + post_delete.connect(update_index, Author) + post_delete.connect(update_index, BookStub) + post_save.connect(update_index, Author) + post_save.connect(update_index, BookStub)